diff options
| author | user@node5.net <user@node5.net> | 2026-04-14 22:17:33 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2026-04-14 22:17:33 +0200 |
| commit | 7fe279ada3c9a23d78e882b76bd95ef774b43a8e (patch) | |
| tree | ff46b0e7ce56db3abb98e6c32578c7bb26a45886 | |
| parent | 029671f77da344a1326e413e93939574eae4f891 (diff) | |
| parent | 9b01d51a610a26141ef0f21d1b61c681d46d2426 (diff) | |
merge upstream main 2026-04-14 onto map libremaplibre
some functionalities still broken
364 files changed, 14975 insertions, 251 deletions
@@ -1 +1,2 @@ -*~
\ No newline at end of file +*~ +/venv/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b1b9982 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +# This file is a template, and might need editing before it works on your project. +# To contribute improvements to CI/CD templates, please follow the Development guide at: +# https://docs.gitlab.com/development/cicd/templates/ +# This specific template is located at: +# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Pages/HTML.gitlab-ci.yml + +# Full project: https://gitlab.com/pages/plain-html +image: busybox + +pages: + stage: deploy + environment: production + script: + - echo "The site will be deployed to $CI_PAGES_URL" + - mkdir public + - cp -r index.html about.html static public/ + artifacts: + paths: + - public + rules: + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH diff --git a/about.html b/about.html new file mode 100644 index 0000000..0efd56f --- /dev/null +++ b/about.html @@ -0,0 +1,69 @@ +<!DOCTYPE html> +<html lang="da"> + <head> + <meta charset="UTF-8"> + <title>SPYOSCAPE</title> + <meta name="viewport" content="width=device-width,initial-scale=1, maximum-scale=1.0, user-scalable=0"> + <meta name="description" content="Mapping of artwork by artist SPYO"> + <meta name="keywords" content="spyo, spyoscape, copenhagen, grafitti, artwork, urban"> + <meta name="robots" content="index, follow"> + <link rel="icon" type="image/x-icon" href="static/icons/bird.svg"> + <link rel="stylesheet" href="static/style/style.css"> + <link rel="stylesheet" href="static/style/all.css"> + </head> + <body> + <div class="wrapper grid"> + <header> + <a href="/"><img class="banner" src="static/images/SPYOSCAPE.svg" alt="SPYOSCAPE"></a> + <a class="source-code" href="javascript:void(0);" class="icon" onclick="toggleNav()"> + <i class="fa-solid fa-bars"></i> + </a> + <div id="navlinks"> + <a href="/"><i class="fa-solid fa-house"></i> Home</a> + <a href="https://gitlab.com/ztychr/spyoscape"><i class="fa-solid fa-code"></i> Source code</a> + </div> + </header> + <div class="about"> + <h1>What is SPYOSCAPE?</h1> + <p><b>SPYOSCAPE</b> is a hobby project that aims to localise and map the artwork of the Danish graffiti artist SPYO. The artwork included on this site contains only political statements, phrases or alike. This means that regular tags and throwups etc. are not mapped.</p> + + <h3>How do you know it actually is SPYO?</h3> + <p>I don't. I make a guess based on context, painting style and letter formatting.</p> + + <h3>Am I missing something?</h3> + <p>You are very welcome to create a pull request with images of artwork I have not yet mapped. To do so, head to the <a href="https://gitlab.com/ztychr/spyoscape">Gitlab page</a> and follow the steps in the contribution section. You are also welcome to tip me by e-mail at <a href="mailto:hello@spyoscape.dk">hello@spyoscape.dk</a></p> + <p>Thank you for stopping by!</p> + </div> + <div class="contributors"> + <h2>Code contributors</h2> + <ul> + <li>chris@node5.net</li> + <li>bofrede</li> + </ul> + <h2>Artwork contributors</h2> + <ul> + <li>chris@node5.net</li> + <li>bofrede</li> + <li>Congo</li> + <li>Amack Daddy</li> + <li>Dzeinuda</li> + <li>fonzy74</li> + <li>wizard</li> + <li>K1NGFIXED</li> + <li>BLAL</li> + <li>Ingahild Grathmer</li> + <li>lillefitimand</li> + <li>Doctore</li> + <li>R. Jarlov</li> + <li>Otto Berner</li> + <li>GarseFather</li> + <li>far</li> + <li>Jappa</li> + <li>Bejsing</li> + <li>Sparehjorten</li> + </ul> + </div> + </div> + <script src="static/js/menu.js"></script> + </body> +</html> @@ -4,6 +4,7 @@ import sys import re import json import os +from datetime import date from exif import Image as ExifImage from PIL import Image as PILImage import urllib.parse @@ -21,7 +22,7 @@ def to_dec_deg(input_string): return (float(deg) + float(minutes)/60 + float(seconds)/(60*60)) * (-1 if direction in ['W', 'S'] else 1) def prompt_for_coordinates(): - coord_input = input("Enter coordinates in format: lat, lng (e.g., 40.23123, 12.21314): ").strip() + coord_input = input("Enter coordinates in format: lat, lng (e.g., 55.123123, 12.123123): ").strip() try: lat_str, lon_str = map(str.strip, coord_input.split(",")) return float(lat_str), float(lon_str) @@ -39,7 +40,7 @@ def clean_and_resize_image(image_path, width=1920): # Resize and strip EXIF img = img.resize((width, height), PILImage.LANCZOS) img_no_exif = PILImage.new(img.mode, img.size) - img_no_exif.putdata(list(img.getdata())) + img_no_exif.putdata(list(img.get_flattened_data())) img_no_exif.save(image_path) print(f"Image resized to {width}px wide and EXIF removed: {image_path}") except Exception as e: @@ -75,10 +76,10 @@ def main(): print("No GPS data found in the image.") lat_dec_deg, lon_dec_deg = prompt_for_coordinates() - # Resize and strip EXIF - clean_and_resize_image(filename) + if "-q" not in sys.argv: + print("Reformatting image...") + clean_and_resize_image(filename) - # URL encode symbols in image filename to ensure image loads filename_encoded = urllib.parse.quote(filename) new_entry = { @@ -86,11 +87,11 @@ def main(): "lat": round(lat_dec_deg, 6), "lng": round(lon_dec_deg, 6), "authors": authors, - "image": filename_encoded + "image": filename_encoded, + "date": date.today().isoformat() } } - # Load existing data if os.path.exists(DATA_FILE): with open(DATA_FILE, 'r', encoding='utf-8') as f: try: @@ -100,11 +101,9 @@ def main(): else: existing_data = {} - # Add and sort quotes alphabetically existing_data.update(new_entry) sorted_data = dict(sorted(existing_data.items(), key=lambda item: item[0].lower())) - # Write updated JSON with minimal diff noise with open(DATA_FILE, 'w', encoding='utf-8', newline='\n') as f: json.dump(sorted_data, f, indent=4, separators=(',', ': ')) f.write('\n') diff --git a/get-commit-dates.py b/get-commit-dates.py new file mode 100644 index 0000000..53485d5 --- /dev/null +++ b/get-commit-dates.py @@ -0,0 +1,95 @@ +#!/usr/bin/env python3 +import json +import subprocess + +INPUT_FILE = "static/js/data.json" +OUTPUT_FILE = "data_with_dates.json" + +def get_git_info(filepath): + try: + cmd = [ + "git", "log", + "--diff-filter=A", + "--follow", + "--reverse", + "--format=%ad|%an", + "--date=format:%Y-%m-%d", + "--", filepath + ] + + output = subprocess.check_output(cmd, text=True).strip() + if not output: + return None, None + + first_line = output.splitlines()[0] + date, author = first_line.split("|", 1) + return date, author + + except subprocess.CalledProcessError: + return None, None + + +with open(INPUT_FILE, "r", encoding="utf-8") as f: + data = json.load(f) + + +cache = {} + +for key, entry in data.items(): + image = entry.get("image") + if not image: + continue + + if image not in cache: + cache[image] = get_git_info(image) + + date, author = cache[image] + + if date: + entry["date"] = date +# if author: +# entry["committer"] = author + + +with open(OUTPUT_FILE, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2, ensure_ascii=False) + + +#import subprocess +#import json +#from pathlib import Path +# +#repo_path = Path(".") +#images_path = repo_path / "static/images" +# +#result = {} +# +#for image in images_path.glob("*"): +# try: +# cmd = [ +# "git", "log", +# "--diff-filter=A", +# "--follow", +# "--reverse", +# "--format=%ad|%an", +# "--date=format:%Y-%m-%d", +# "--", str(image) +# ] +# +# output = subprocess.check_output(cmd, text=True).strip() +# if not output: +# continue +# +# first_line = output.splitlines()[0] +# date, author = first_line.split("|", 1) +# +# result[str(image)] = { +# "date": date, +# "committer": author +# } +# +# except subprocess.CalledProcessError: +# continue +# +#print(json.dumps(result, indent=2)) +# @@ -7,27 +7,54 @@ <meta name="description" content="Mapping of artwork by artist SPYO"> <meta name="keywords" content="spyo, spyoscape, copenhagen, grafitti, artwork, urban"> <meta name="robots" content="index, follow"> - <link rel="icon" type="image/x-icon" href="static/icons/pin.svg"> + <meta property="og:title" content="SPYOSCAPE"> + <meta property="og:description" content="Mapping of artwork by artist SPYO"> + <meta property="og:image" content="https://spyoscape.dk/static/images/dine-problemer-har-ingen-problemer.jpg"> + <meta property="og:url" content="https://spyoscape.dk"> + <link rel="icon" href="/static/icons/bird.svg" type="image/svg+xml"> + <!--<link rel="icon" href="/static/icons/bird-light.svg" media="(prefers-color-scheme: light)"> + <link rel="icon" href="/static/icons/bird-dark.svg" media="(prefers-color-scheme: dark)"> + <link rel="icon" type="image/x-icon" href="static/icons/bird.svg">--> <link rel="stylesheet" href="static/style/style.css"> <!-- MapLibre --> <script src="static/js/maplibre-gl.js"></script> <link href="static/style/maplibre-gl.css" rel="stylesheet" /> <link href="static/style/marker.css" rel="stylesheet" /> + <link rel="stylesheet" href="static/style/all.css"> </head> <body> <div class="wrapper grid"> <header> - <img class="banner" src="static/images/spyoscape.svg" alt="SPYOSCAPE"> - <a class="source-code" href="https://github.com/ztychr/spyoscape"><img src="static/icons/gh.svg"><br>fork me!</a> + <a href="/"><img class="banner" src="static/images/SPYOSCAPE.svg" alt="SPYOSCAPE"></a> + <a class="source-code" href="javascript:void(0);" class="icon" onclick="toggleNav()"> + <i class="fa-solid fa-bars"></i> + </a> + <div id="navlinks"> + <a href="/about.html"><i class="fa-solid fa-circle-info"></i> About</a> + <a href="https://gitlab.com/ztychr/spyoscape"><i class="fa-solid fa-code"></i> Source code</a> + </div> </header> <div id="map"></div> - - <ul id="links" class="map-link"></ul> + <ul id="links" class="map-link"> + <div class="filter-bar"> + <input type="text" id="search" onkeyup="searchList()" onfocus="handleFocus()" placeholder="Search..."> + <select id="sortSelect" onchange="sortList()"> + </div> + <option value="" disabled selected>Sort by</option> + <option value="az">A → Z</Option> + <Option value="za">Z → A</option> + <option value="newest">Newest</option> + <option value="oldest">Oldest</option> + </select> + <!--<button onclick="sortByName()">Sort by Name</button> + <button onclick="sortByDate()">Sort by Date</button>--> + </ul> </div> <script src="static/js/map-list.js"></script> <script src="static/js/map-helper-functions.js"></script> <script src="static/js/drawmap.js"></script> <script src="static/js/wheel-zoom.min.js"></script> + <script src="static/js/menu.js"></script> </body> </html> diff --git a/spyoscape.png b/spyoscape.png Binary files differindex 16c7f53..1a7c950 100644 --- a/spyoscape.png +++ b/spyoscape.png diff --git a/static/fonts/fa-solid-900.woff2 b/static/fonts/fa-solid-900.woff2 Binary files differindex 42eaaa6..ea09c93 100644 --- a/static/fonts/fa-solid-900.woff2 +++ b/static/fonts/fa-solid-900.woff2 diff --git a/static/icons/bird-dark.svg b/static/icons/bird-dark.svg new file mode 100644 index 0000000..aedebdd --- /dev/null +++ b/static/icons/bird-dark.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + version="1.1" + id="svg297" + width="2458.6667" + height="1858.6667" + viewBox="0 0 2458.6667 1858.6667" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs301" /> + <g + id="g303" + transform="translate(-104.58786,-530.83635)"> + <path + style="fill:#fefefe;stroke-width:1.33333" + d="m 149.41978,2386.708 c 4.32147,-5.798 -1.54235,-11.9102 -2.97816,-17.5153 1.91638,-6.3002 -2.83813,-10.8126 -3.21845,-16.7998 0.2703,-7.8943 -8.39185,-8.7772 -14.31807,-8.7893 -6.54124,0.3013 -12.28912,-3.2729 -16.03383,-8.4431 -5.41034,-4.4244 -9.49306,-11.1812 -8.15094,-18.4195 1.75472,-9.9329 3.81358,-19.9619 8.29614,-29.0869 0.68223,-5.1652 4.47678,-10.7001 1.52769,-15.7442 -6.78311,-2.1368 -3.20411,-8.6547 -1.67463,-13.4481 -0.26993,-6.9784 0.98253,-13.9202 3.04481,-20.559 2.01513,-7.937 4.53482,-15.7895 5.19738,-23.9973 0.31491,-6.5318 6.17669,-11.7842 4.70221,-18.4223 -3.27656,-6.2954 1.89935,-11.6703 1.445,-17.9099 -0.96291,-6.9243 -0.60653,-13.6742 -1.4581,-20.569 0.59329,-6.5071 4.05295,-12.5833 2.72451,-19.3191 -1.81246,-6.5281 2.8168,-13.3082 -0.43895,-19.6363 -3.93024,-3.3145 9.11291,-4.6487 3.37437,-8.5549 -7.56085,-3.8716 -0.23477,-12.4337 5.51111,-12.3565 4.11142,-5.7874 -5.33948,-8.7392 -6.4695,-13.7899 -2.20766,-6.0134 -0.43837,-12.6419 2.66541,-17.9707 2.58655,-7.3554 2.64262,-15.256 2.98247,-22.9113 2.32914,-5.4601 8.00653,3.6724 10.65931,-2.3644 2.77482,-5.2163 1.04927,-11.3675 2.03641,-16.9864 1.69946,-26.2948 5.93589,-52.39 6.64156,-78.7549 -0.37441,-5.4657 -13.03052,-3.0978 -9.50163,-9.0019 6.77188,-2.5453 6.60985,-10.8627 7.97449,-16.7837 2.32746,-12.2533 1.60242,-24.7983 1.24615,-37.1801 -1.03929,-7.2976 -0.62634,-15.2442 3.00313,-21.8273 3.61879,-4.1842 6.74182,-9.0379 7.07525,-14.7608 0.4624,-8.1191 0.0995,-16.8284 4.75384,-23.9458 0.6493,-6.378 11.30082,-2.2434 10.72826,-9.7303 1.89766,-8.3754 2.59505,-16.9696 4.01216,-25.4319 0.91831,-6.7125 1.94721,-13.4318 3.73714,-19.9759 6.73936,3.352 7.0955,-6.2432 6.56329,-10.6303 0.22365,-6.7483 0.55384,-13.5588 1.18895,-20.2918 2.21463,-12.3645 2.37872,-24.9798 2.12971,-37.5018 0.17794,-5.2251 -3.52993,-10.053 -0.60726,-15.2479 2.71424,-7.0429 2.28473,-14.7492 3.70299,-22.0892 0.21985,-5.8646 2.9878,-13.0925 1.38176,-18.1209 -6.34767,0.2964 0.35785,-3.273 -0.8228,-6.8134 -0.074,-6.574 3.79265,-12.1117 3.33908,-18.8036 0.0652,-6.1799 6.16136,-8.8491 8.72896,-13.7569 5.03799,-9.1665 7.87807,-19.31 11.70772,-28.9934 2.55586,-6.6454 9.44985,-11.5072 8.80147,-19.2766 0.95624,-8.9611 -11.95575,-4.2913 -13.20104,-11.079 1.59294,-7.1466 2.30076,-14.621 5.34414,-21.4019 3.92298,-1.9715 7.1079,-5.9181 5.04712,-9.9096 3.83966,-3.8581 7.85736,-7.7832 6.80379,-13.526 2.26696,-5.7925 7.98911,-11.095 5.90678,-17.8457 -0.17848,-5.1669 9.36323,-1.0906 6.47562,-7.5458 -2.10491,-5.4924 -12.06272,-11.4094 -3.58857,-16.5001 5.12977,-2.5188 7.59752,-7.527 10.85617,-11.8665 3.19071,-4.1116 7.19811,-9.1815 5.63675,-14.6935 -2.89048,-2.9383 -5.17814,-6.9578 -0.32854,-9.4482 3.99288,-4.0561 7.92521,-8.9479 7.56308,-15.0036 0.77662,-5.1893 -1.88353,-8.8516 -5.67202,-11.6562 6.63263,-0.1064 8.44486,-7.545 13.08554,-11.0182 6.27923,-4.7478 -0.152,-12.8737 0.93042,-18.955 2.12752,-6.5762 6.40864,-12.1716 9.13458,-18.4764 3.64965,-5.9346 5.98391,-12.7646 5.99336,-19.7381 2.19659,-7.0361 -3.93451,-12.777 -4.70846,-19.3391 -1.80881,-2.8476 -4.46695,-6.6725 -0.15443,-8.2701 -0.0873,-3.8281 -10.99708,-7.267 -4.05381,-10.1345 7.97421,-1.3006 5.47562,-10.4851 0.57798,-13.7451 -1.59375,-6.1956 9.14892,-1.8673 5.82106,-7.8927 -6.21356,-5.0871 -6.23397,-12.8394 -2.11036,-19.3238 2.40135,-5.3358 2.1362,-11.2795 4.83249,-16.541 1.89857,-5.3028 3.63596,-10.7637 3.88895,-16.4323 -3.98738,-2.4899 -6.46012,-8.7475 -0.0983,-9.8641 3.51833,-2.5354 1.80304,-8.035 -0.93023,-8.0811 3.03618,-6.4728 5.03996,-13.6105 4.60002,-20.8132 4.09095,-5.1419 3.65614,-11.7448 3.18019,-17.451 3.09731,-5.6627 8.52481,-10.9316 7.90664,-17.7129 -2.58568,-4.7324 -2.10789,-9.9131 3.03301,-12.2528 4.22153,-4.7314 4.40137,-11.4475 4.38899,-17.4473 7.6926,-2.7247 1.41528,-12.1502 5.23644,-17.0311 3.60736,-2.9503 14.18936,-3.1506 10.97333,-9.9906 -3.99192,-1.5106 -3.28116,-5.0971 0.73578,-5.6582 6.05606,-0.7307 12.67733,-10.3676 4.16462,-12.6286 -6.09733,-0.7591 -4.97763,-6.6867 -1.18448,-9.6375 3.71825,-5.5985 1.9499,-12.8653 6.33358,-17.8525 1.38412,-4.2766 -5.92061,-7.0467 0.0345,-9.7519 4.13842,-2.2924 3.38308,-6.3126 0.55827,-8.7767 0.18892,-7.1179 9.35514,-9.0348 12.01069,-14.8038 0.40657,-4.11026 -3.06197,-10.23121 3.02284,-11.231 1.03771,-4.4608 -3.33396,-9.83818 1.66893,-13.40133 2.77032,-5.58179 1.51515,-15.0443 9.47536,-16.3217 5.70743,-2.02704 2.82861,-9.23426 8.23816,-11.40915 3.94069,-3.581 -4.0218,-9.89285 3.28332,-11.74867 5.01207,-2.25559 5.18417,-8.45746 6.41748,-13.11685 1.81543,-13.87627 6.51022,-27.13537 10.16174,-40.59317 0.81923,-7.21954 11.2938,-9.32464 10.51561,-17.35031 -0.71023,-3.92777 1.19413,-7.82216 1.76191,-11.71746 1.03211,-5.51268 3.02082,-10.73163 4.54838,-16.09586 1.84562,-9.38288 3.69702,-20.18914 12.3407,-25.85218 6.38634,-4.05565 13.24899,-7.56324 19.43913,-12.03683 5.68825,-5.41806 13.71121,-7.04061 20.8969,-9.59812 6.99392,-3.579 2.20672,-13.13817 7.18699,-17.48224 5.45328,-4.31 0.83126,-10.11913 2.80172,-15.06809 2.39646,-7.55594 4.59991,-16.02943 11.37744,-20.91719 5.79228,-4.54307 12.28565,-8.25008 17.44177,-13.55312 -0.15138,-4.49644 8.99866,-5.63471 13.348,-7.10572 9.07528,-0.89683 18.52212,0.20277 27.14754,-3.41804 6.26708,-1.97867 10.26281,-8.05245 10.52959,-14.46392 0.7731,-6.61518 1.73723,-13.24183 4.18314,-19.47436 1.68674,-5.67359 3.19233,-11.5115 3.07752,-17.47602 7.33779,-1.83821 10.43576,-10.42766 11.18872,-17.05511 3.24761,-4.13098 9.82715,-6.93022 7.66718,-13.39628 -0.51361,-6.3276 3.84662,-11.84654 9.76984,-13.58051 9.85796,-5.10373 20.23017,-9.66568 31.3666,-10.89405 14.5289,-3.3099 29.8673,-3.30393 43.84216,-8.82596 5.37161,-2.61253 10.12942,-6.74535 16.15903,-7.78343 9.64174,-7.61548 22.06199,-9.53322 33.8068,-11.59967 14.73684,-2.59765 30.33642,0.59042 44.52659,-5.14803 9.06913,-6.71102 14.56507,-17.01213 23.39686,-24.00388 5.86405,-4.21584 10.36714,-12.06682 18.30849,-11.67317 9.91666,-1.00105 19.81126,-2.53765 29.4448,-5.06205 13.61738,-0.87262 27.5049,1.14635 40.87788,-2.34666 20.2653,-2.71926 41.13412,-4.13216 61.2441,0.45601 7.38357,3.25731 13.93475,8.67354 22.00003,10.19448 4.21765,-0.0783 0.811,-7.98842 5.43993,-4.03976 5.77392,2.85574 11.45337,-0.74078 17.17545,-1.48986 16.87338,-2.80796 34.17168,-2.85586 51.14258,-0.99103 8.023,1.30246 15.3105,5.19122 21.967,9.6552 5.3449,0.92267 9.81,-8.31714 14.7102,-1.9687 2.5121,2.06307 4.8483,-0.41903 2.3373,-2.685 5.9796,0.94896 12.1615,2.00481 17.9901,-0.31473 9.4901,-2.33862 19.5046,-4.76916 29.2339,-2.34614 9.2351,-1.43035 18.8582,0.89571 26.4091,6.39937 10.8981,6.87008 19.0973,17.1204 26.2226,27.6782 5.3703,4.39123 11.6429,-0.75402 16.6543,-3.12552 12.77,-5.47464 26.9719,-2.1155 40.3003,-4.56159 7.3183,-1.15799 14.1069,-4.84804 21.6612,-4.73276 14.7038,-1.10064 29.4586,-0.4329 44.1675,0.19182 6.3125,4.19231 14.1282,-0.26186 20.7146,2.33038 4.3283,3.17906 8.9639,8.89426 14.0267,7.62481 2.3277,6.83965 10.8866,9.15118 12.7624,16.26019 4.7666,4.62369 12.5319,7.19068 18.9011,6.41618 4.8747,-1.74274 7.5608,3.99696 12.1654,1.70224 4.7862,-0.79486 11.294,0.47122 12.4458,5.99867 2.923,6.25076 -3.471,12.36399 -1.0473,18.5799 4.2725,5.38856 12.4935,4.66723 18.4602,7.25042 6.9223,0.85698 -2.0533,9.93327 4.9821,12.01261 4.4248,4.53378 5.4443,11.68287 10.9391,15.28892 3.7678,5.89614 11.1684,7.16702 16.582,10.96987 2.8109,5.61166 -2.7729,15.9512 6.7645,17.08197 11.2421,3.25873 23.7677,1.04549 34.2645,7.03715 6.5953,2.80788 12.9312,6.23248 18.864,10.25744 5.2116,1.689 12.3743,2.60209 14.1187,8.75837 0.2016,9.51258 5.589,17.82736 8.6984,26.58654 2.7209,6.0164 6.1138,15.80726 14.6304,13.44034 6.1179,-2.50497 12.5778,-2.59429 18.9151,-3.84674 7.7945,-2.23061 15.97,-6.27302 24.1777,-3.49398 6.1921,0.52178 12.5552,-1.67843 18.54,0.91422 6.3177,1.55497 14.4676,2.3049 17.7057,8.84479 2.7612,6.17905 0.3326,13.96673 5.0363,19.39441 6.6272,3.20212 14.2213,1.20675 21.0797,0.0745 5.8585,-2.45279 12.6484,-5.13751 18.8913,-2.38393 5.5032,0.0891 10.998,-2.32895 16.1606,0.66718 7.969,1.45346 16.7014,1.46177 23.6482,6.09787 5.0944,4.96226 3.1354,12.6417 4.3353,18.96746 0.8566,8.20071 1.2082,16.68679 4.2463,24.43285 2.9601,4.92876 9.2766,2.26413 13.5483,0.98493 6.5725,-2.01956 13.5817,-0.95479 20.3552,-1.33498 10.2128,-0.0932 20.5165,-0.0489 30.6466,-1.0758 2.9646,-1.4447 7.0899,-2.5941 6.5447,2.15496 5.1683,3.81182 12.2811,-3.50999 17.4823,1.3757 6.3125,5.40725 7.4161,14.43516 7.4335,22.28599 0.4531,6.93161 3.4651,13.3379 5.0503,20.02757 3.4978,7.3991 12.3805,3.46211 18.3138,2.28827 18.4287,-3.0787 37.0827,-0.0641 55.3491,2.56385 7.7357,0.44782 17.0694,1.28405 21.8447,8.24281 4.1934,6.66675 5.8324,14.44741 7.7813,21.94905 2.3892,7.30565 8.6034,12.37285 11.9203,19.21184 2.3309,3.61035 3.5462,7.85864 6.0463,11.33049 4.3102,4.71203 11.2393,3.54927 16.5611,1.61029 10.7303,-2.04388 21.6987,-2.47538 32.5717,-3.29 23.8792,-1.0902 48.307,-1.31429 71.5212,5.14647 8.2307,2.42637 16.9078,6.86562 20.0992,15.39118 2.5087,4.77186 1.0064,10.15752 1.7832,15.1605 1.3796,7.555 9.3267,9.59322 15.7905,7.75614 20.2441,-1.38803 40.6576,0.45179 60.5359,4.3497 6.6581,1.68711 14.1801,2.87384 19.1863,7.97207 4.487,4.63503 6.1418,11.09338 9.0007,16.63065 5.1993,5.10787 12.5784,1.13877 18.8224,1.88267 23.8495,-0.2673 48.23,1.1337 70.8898,9.1308 7.2115,3.5678 14.0348,9.8134 15.1357,18.1738 0.1918,7.4704 5.9434,13.512 13.7077,10.9415 12.8675,-1.7553 25.9923,-0.6075 38.7772,1.3812 9.8882,1.7876 19.7861,4.1853 29.0221,8.1794 4.6959,2.1709 8.2404,8.0778 5.1955,12.9297 -2.4037,7.9912 8.1695,9.0316 13.6462,9.2738 17.2414,3.1907 35.445,0.9168 51.9739,7.7682 8.6498,3.7254 17.7994,6.0733 26.2949,10.1315 4.2673,1.5709 4.7144,5.4595 0.2838,7.1029 -6.2262,4.5222 -2.0641,11.0518 3.3197,13.6448 4.4022,4.0754 9.0354,8.6795 15.3535,9.2289 6.8554,1.2256 13.6507,3.0926 19.7214,6.5739 8.0472,3.396 17.8149,4.6601 23.5945,11.8387 1.4978,5.6445 1.9216,12.8051 9.4219,13.1831 6.075,3.3518 11.4746,9.9955 18.9906,6.763 8.2606,-0.6983 12.6019,7.6802 11.0353,14.9199 -0.3474,22.4802 -0.041,44.9838 -0.2084,67.474 -0.076,22.0356 -0.2693,44.072 -0.7947,66.102 -2.0017,8.5545 -8.896,14.5217 -14.0064,21.2542 -5.268,4.2009 -14.4898,1.8182 -17.8128,8.7153 -4.0041,8.6914 -7.2826,17.7027 -11.6673,26.222 -4.062,8.5601 -7.454,17.8552 -14.0555,24.8311 -4.3232,5.0505 -11.8217,2.8626 -16.4041,6.6023 -6.7022,5.9538 -9.8409,14.6308 -12.0986,23.0542 -3.2795,10.5183 -8.5983,20.2776 -14.311,29.6487 -1.0143,6.8991 -9.1389,4.6168 -13.9107,3.838 -5.1291,-0.8029 -8.212,4.6728 -10.0329,8.6592 -3.3926,7.5705 -8.0541,14.4855 -12.1204,21.7047 -3.8743,6.0727 -8.0206,12.3167 -13.7782,16.7225 -6.3493,2.7829 -13.475,-2.3343 -19.6797,1.1471 -8.0139,1.5345 -12.158,9.3715 -15.4119,16.051 -4.4675,7.7706 -7.638,16.235 -11.828,24.1098 -3.9846,5.7327 -9.6718,12.3359 -17.441,11.2986 -6.7778,-1.3792 -13.9241,1.1921 -16.6318,7.9138 -5.0815,8.9995 -7.6427,19.1214 -11.5887,28.6244 -2.0189,5.3155 -4.4373,10.5748 -8.0651,15.0016 -0.4101,7.111 -10.0934,10.6234 -15.2737,5.9999 -8.6981,-3.049 -19.6499,2.0319 -21.7673,11.2837 -3.1672,6.5545 -6.2469,13.2253 -10.6107,19.0936 -1.9793,7.1108 -9.6817,13.392 -17.2579,10.9962 -7.0899,-1.7636 -14.2321,3.3359 -15.0121,10.4611 -3.757,7.6028 -8.9108,14.458 -12.2205,22.2881 -6.0174,10.2013 -18.2715,15.7177 -29.9196,14.3989 -6.3462,-0.6669 -14.1796,0.9395 -16.2553,7.8622 -3.0222,6.9167 -4.5603,14.9634 -10.6895,20.0075 -5.6173,5.0588 -8.3067,12.5512 -14.5338,17.003 -10.0284,8.3091 -23.5794,9.9215 -36.1424,9.0827 -5.948,-0.8413 -12.8358,0.4715 -15.3884,6.6494 -2.9505,6.1337 -5.3077,12.8047 -10.701,17.337 -7.2236,7.129 -17.0261,10.3797 -26.5323,13.135 -5.9271,2.0188 -12.3484,2.7486 -18.5042,1.3992 -6.8953,-0.8704 -13.5635,3.5062 -15.6739,10.0786 -4.5432,10.324 -10.9566,19.9885 -19.6992,27.2235 -5.1787,4.57 -11.9409,6.3607 -18.5641,7.3601 -7.4656,2.3533 -8.3671,10.5225 -10.795,16.7147 -3.912,9.567 -8.3358,19.7803 -16.8226,26.1455 -4.7853,2.4102 -11.189,0.7543 -15.1287,4.8848 -2.9094,6.3341 1.6441,13.3992 1.7,20.0196 4.2483,31.0493 14.0375,61.0361 18.6524,92.0287 5.3554,23.7048 13.3078,46.8439 16.5146,71.0102 7.2081,40.1135 11.052,80.8563 20.6794,120.5144 3.577,12.9277 6.9989,25.9022 9.893,38.9976 2.5685,8.5803 4.5009,17.317 6.1471,26.1112 2.163,7.5837 3.0564,15.4178 3.1069,23.2889 0.4663,16.2311 -1.3631,32.4002 -1.9782,48.6013 1.8185,6.9334 -3.2268,13.4639 -9.9309,14.7792 -5.949,3.1581 -12.2009,6.4642 -19.1197,6.3979 -8.9661,1.5296 -18.0271,2.4857 -27.1284,2.3732 -9.2846,0.7568 -18.5958,2.5447 -27.9186,1.1107 -4.033,-0.3869 -8.0697,-0.8277 -12.1258,-0.8483 -5.6381,4.0597 -12.5552,0.482 -18.3407,1.7646 -7.2336,1.8089 -13.7354,-5.239 -20.6624,-0.9987 -8.2453,2.0832 -15.8609,-5.423 -16.3708,-13.3467 -1.5321,-17.6128 1.7129,-35.2702 0.043,-52.8789 2.6021,-6.8036 3.7251,-14.6158 0.5577,-21.4333 -3.1157,-11.1541 -8.5221,-22.1068 -7.6931,-33.9734 -2.8093,-8.4937 -6.8322,-16.6704 -7.8193,-25.6719 -1.7243,-10.4024 -3.7508,-20.8153 -7.6052,-30.6636 -2.0213,-5.6411 -1.0893,-11.7749 -3.0907,-17.3481 -1.6132,-7.9274 -0.4478,-16.2887 -3.4515,-23.9618 -2.1512,-6.2831 -3.3757,-12.9773 -2.02,-19.562 1.0016,-6.2724 -2.635,-11.7819 -3.1813,-17.8582 -1.1405,-9.4419 -0.3139,-19.478 -4.8547,-28.1695 -1.804,-6.2215 -0.9044,-13.7934 -6.0256,-18.6066 -0.7056,-7.9867 -1.5391,-16.1052 -4.7111,-23.5532 -2.7495,-6.5623 -1.5818,-14.144 -4.7359,-20.4026 -3.6714,-9.2358 -3.6177,-19.3625 -5.6883,-28.9879 -2.0457,-12.4487 -3.2616,-25.0514 -5.2899,-37.4794 -2.9467,-7.8206 -6.415,-15.5684 -7.2443,-23.9812 -2.1263,-13.0481 -2.3335,-26.4127 -5.7701,-39.2344 -0.9246,-7.6009 -0.4676,-15.5433 -3.5759,-22.7123 -1.6084,-7.5065 -1.9935,-15.2255 -3.5651,-22.7333 0.147,-6.3458 -1.1953,-12.4454 -3.5724,-18.2805 -1.9475,-7.8122 -3.1073,-15.8374 -6.0419,-23.3739 -2.1653,-5.9655 1.9067,-12.4162 -1.8076,-17.989 -3.5064,-5.1205 -4.1376,-11.1856 -5.3583,-17.0789 -1.1416,-5.3014 -1.2528,-10.8055 -1.8469,-16.1235 -5.3526,-14.0022 -7.0114,-29.0168 -10.4564,-43.5287 -2.5978,-13.5681 -4.8491,-27.2251 -8.4756,-40.5667 -1.0924,-6.1314 -1.7562,-12.3769 -3.8129,-18.2845 -2.5234,-12.2304 -1.8059,-25.1114 -6.4478,-36.884 -4.8514,-18.8086 -8.5768,-37.9004 -13.9651,-56.5715 0.6456,-8.0455 -6.9576,-13.9317 -6.5394,-21.9793 -1.2472,-6.6878 -5.5188,-12.4718 -6.1015,-19.3304 -6.4322,-21.4867 -8.0459,-44.1182 -15.0289,-65.4525 -2.2236,-6.9708 -0.9553,-14.4778 -3.3953,-21.4177 -4.4222,-15.8929 -8.1931,-32.4105 -17.453,-46.3529 -5.6351,-10.8411 -8.7677,-22.7477 -12.7188,-34.2493 -2.061,-6.0653 -4.4965,-11.9639 -6.3471,-18.0973 -2.8252,-6.899 -4.3016,-14.1868 -6.1456,-21.3725 -0.9181,-5.8942 -3.4156,-11.2844 -5.8541,-16.6584 -3.0965,-7.6292 -5.7005,-15.4515 -8.9467,-23.0209 -0.7369,-9.4038 -7.6767,-16.679 -9.8883,-25.6592 -2.1877,-6.512 -6.4074,-12.247 -7.2729,-19.1793 -2.4144,-10.2909 -6.1764,-20.2495 -7.4552,-30.8009 -3.155,-21.6266 -10.6656,-42.7537 -22.6383,-61.0898 -1.6637,-6.7502 -5.8512,-12.1908 -11.5481,-15.3827 -2.9249,-6.4244 2.6679,-12.8536 0.8886,-19.4157 -1.608,-9.305 -4.9855,-18.2065 -8.0919,-27.0916 -5.3167,-13.9466 -11.1463,-27.714 -15.6905,-41.9395 -2.7244,-7.26428 -8.913,-12.07606 -14.2288,-17.34284 -5.106,-5.32755 -9.9728,-11.42544 -17.0308,-14.17356 -6.0599,-3.41299 -8.6832,-10.13914 -11.0503,-16.2686 -4.6468,-10.75448 -8.295,-21.92524 -13.3436,-32.50859 -4.9662,-4.04545 -12.1521,-6.7344 -13.8064,-13.60173 -3.304,-5.94325 -6.5469,-12.15084 -11.7283,-16.70757 1.7661,4.57903 -4.1328,2.32645 -2.7495,-1.26104 -1.0986,-6.32837 -5.5439,-12.40419 -11.0829,-15.24782 -4.2487,1.43522 -9.4169,0.53169 -8.4245,-5.16102 -0.3851,-6.18499 -6e-4,-12.84859 -3.6345,-18.21126 -2.8465,-5.54055 -4.1227,-11.68342 -5.0796,-17.77148 -1.621,-7.43258 -9.6657,-7.25055 -15.2632,-7.32596 -6.4229,-3.34656 -10.6066,-9.6097 -15.1221,-15.07194 -7.8384,-10.23343 -13.706,-21.84054 -18.0312,-33.94938 -1.6038,-6.4364 -6.683,-12.92261 -14.0976,-11.18919 -5.665,0.83682 -11.1919,2.89259 -16.8012,0.86672 -5.8524,-0.72936 -12.6589,0.20296 -17.2765,-4.25011 -5.0317,-3.24483 -11.7148,-4.93461 -14.3545,-10.87985 -4.8539,-5.89251 -10.5282,-11.59942 -12.345,-19.28492 -1.7095,-4.9946 -4.7577,-11.70723 -11.0694,-11.18418 -5.7938,1.05919 -11.6232,2.20355 -17.536,1.79952 -6.1408,0.42419 -13.128,0.19817 -17.7336,-4.48924 -5.986,-4.37883 -13.6783,-4.01552 -20.6252,-5.21869 -6.1109,-1.57411 -11.2221,-6.245 -13.3559,-12.16148 -5.4526,-5.99076 -12.5238,1.98534 -18.4606,3.10331 -6.3307,2.31601 -12.8995,0.62805 -19.319,-0.004 -27.9661,-2.0587 -55.9473,1.69694 -83.9313,0.51069 -7.2254,-0.38979 -15.1189,1.98538 -21.6393,-2.19096 -5.7613,-4.22805 -12.6549,-1.84149 -19.1256,-1.81924 -17.2933,0.7484 -35.3132,-0.97004 -51.7904,5.39646 -7.3655,3.56819 -15.2202,6.29216 -23.46,6.64535 -12.26268,1.30296 -24.61146,0.77277 -36.9149,1.17483 -5.29086,-3.36019 -11.46648,-2.79941 -17.08647,-1.18173 -7.68143,0.33584 -15.31634,-0.95707 -22.80274,-2.54629 -7.40772,-4.41949 -15.27407,1.24941 -22.74602,2.34109 -9.97092,1.84764 -20.16798,0.98031 -30.21614,2.0047 -7.1009,4.09386 2.48846,13.96932 -4.51399,18.14048 -5.67684,3.24645 -11.85332,5.54738 -17.66309,8.55732 -8.66944,3.38477 -17.23136,7.34737 -26.55776,8.57357 -10.30033,1.63234 -20.76628,2.03097 -31.16937,2.26356 -6.87555,-0.22598 -14.14452,-2.38672 -20.6903,0.68251 -19.42749,7.10002 -40.41776,6.14718 -60.7524,5.99011 -6.17179,-2.2262 -16.33448,4.52318 -11.94813,11.16637 2.60138,3.57949 0.48784,10.90444 -4.8399,8.30342 -4.47308,4.50282 -10.84945,5.6481 -16.91031,5.61529 -7.39367,0.78611 -14.8173,1.5898 -22.0477,3.33434 -9.00696,0.87493 -18.06219,0.3473 -27.0918,0.37588 -0.23599,7.29849 0.81109,14.89214 -1.86696,21.88015 -5.45639,2.58851 -9.9652,10.37599 -5.38052,15.66975 3.00779,1.80736 4.32319,8.16316 -0.43781,4.59678 -7.46862,0.137 -9.36413,9.04708 -14.51074,12.92108 -5.76051,3.34827 -12.79748,2.27258 -19.04851,4.16568 -5.82488,1.19217 -11.62048,2.59878 -17.23194,4.58131 -4.72291,6.205 -5.83895,14.17571 -8.99934,21.13892 -5.28712,18.625 -11.96632,37.44223 -11.2269,57.06999 3.12091,7.35496 -5.3976,10.54242 -7.33971,16.47826 0.10178,4.61647 -5.33043,6.34777 -8.35547,8.95429 -5.20735,3.14821 -6.77544,9.30324 -9.324,14.41166 -3.86134,9.86077 -7.86795,19.65524 -12.1151,29.35566 -5.32705,12.4965 -9.15907,25.5389 -13.58132,38.3584 -10.01259,27.2452 -21.91025,53.829 -29.93067,81.7779 -6.68525,22.601 -10.71971,45.8919 -17.63117,68.4358 -11.47269,40.4996 -24.34994,80.6897 -32.68664,121.9972 -3.09482,15.5904 -4.75677,31.5226 -9.9428,46.6307 -2.24245,7.3532 -3.47328,14.9965 -6.10528,22.2566 -4.29099,12.756 -6.02787,26.1607 -9.74853,39.0781 -4.37638,17.3179 -10.72148,34.0772 -14.45343,51.5663 -2.68891,12.0565 -5.82769,24.0087 -8.71701,36.0116 -2.48138,11.6642 -2.2385,23.6927 -4.15849,35.4124 -2.66065,11.3293 -7.16945,22.1868 -8.80682,33.7624 -6.64073,32.9883 -13.74624,65.8819 -20.8251,98.7765 -2.61324,14.0051 -2.75874,28.3052 -5.08423,42.3514 -2.40997,17.5055 -3.94487,35.1098 -6.19294,52.6349 -1.49752,12.4939 -1.97012,25.0869 -4.08139,37.5052 -6.16218,46.2039 -10.42035,92.6323 -15.43496,138.9677 -1.90813,18.6802 -2.85975,37.4422 -4.01786,56.1719 -2.50511,21.5605 -8.04686,42.7754 -8.27673,64.5805 -0.9481,19.4588 -2.39554,38.8897 -4.14412,58.2889 -2.13376,35.6672 -3.05563,71.3978 -5.29038,107.0585 -0.46773,13.6899 0.0642,27.4186 -0.33434,41.0907 -1.53299,6.7532 -4.99006,13.3275 -3.86074,20.4412 0.0663,9.938 -0.4551,20.1499 -4.22706,29.4711 -4.52055,1.9058 -2.57063,13.4311 -7.29572,11.7529 0.0732,-6.8276 6.47953,-12.4403 4.63965,-19.4628 -5.81542,-5.2833 -7.69257,5.7095 -7.73041,9.8451 1.00818,5.1866 -5.15653,14.0354 -8.55604,6.1576 -0.0656,-6.0028 3.14914,-13.7834 -4.66448,-16.5059 -1.17406,-3.0815 3.9405,-11.0559 -3.24871,-9.9726 -5.14979,4.2045 -10.38484,8.5019 -16.07652,12.0449 -1.692,2.9375 2.02625,10.2811 0.21772,10.6938 -1.1056,-4.435 -8.81467,-3.9177 -4.79446,1.2536 2.37623,7.7692 -6.09296,14.0818 -13.15801,11.0193 -7.51241,-1.3507 -10.01866,-9.5803 -17.01736,-11.4 -2.49072,-2.0185 -9.67964,-8.2739 -8.0677,-0.9857 1.56335,2.4461 2.74934,7.4858 -1.93584,5.2148 -6.14918,2.5154 -3.3421,-5.0601 -3.79194,-7.7645 -5.05954,-4.3238 -11.41426,2.1414 -16.79367,3.2596 -5.75084,2.086 -0.38777,7.6617 -2.46308,11.8226 -1.24501,5.6061 -2.51262,11.2575 -2.05129,17.0406 -0.1616,8.7556 -0.30005,17.5815 -2.01074,26.1997 -0.4623,1.3517 -5.7175,3.6129 -4.09929,0.3378 z M 1926.1257,1690.4471 c 8.7016,-4.0531 18.4665,-5.2535 27.9832,-4.8931 5.3687,-2.2562 11.2823,3.5914 16.2826,-0.074 4.0528,-5.7196 1.9714,-13.5778 5.5063,-19.6011 5.0308,-6.6523 0.3258,-14.9403 1.4687,-22.3344 3.6702,-5.9891 12.0252,-1.2063 17.6189,-3.5512 11.0505,-1.8797 22.207,-3.2112 33.4345,-2.9194 5.764,-0.048 11.5287,-0.01 17.2924,-0.099 6.5641,-4.673 4.8238,-13.5525 6.9797,-20.321 4.2343,-6.9413 5.0708,-15.1947 5.6794,-23.11 1.489,-5.7405 8.4273,-4.3378 12.9121,-4.4307 11.2704,-1.2371 23.0681,-0.3249 33.8992,-4.0349 5.923,-4.2965 3.7636,-12.3736 5.5368,-18.4409 2.297,-5.7685 7.4108,-11.1694 5.9185,-17.8236 -0.361,-6.9031 6.4556,-13.308 13.2542,-10.4632 6.9792,0.4838 13.793,-1.5025 20.7165,-1.9532 7.3432,-4.1622 5.5022,-15.2736 13.1134,-19.1736 5.2341,-4.3289 -1.2156,-12.7772 4.6417,-16.7219 6.9715,-3.2508 14.8814,-0.7011 22.2422,-1.933 5.1523,-0.9287 12.646,-0.3099 14.792,-6.2287 2.7114,-5.9614 2.9768,-12.7975 6.3871,-18.4849 2.8615,-6.2521 6.4123,-12.6697 5.7391,-19.7676 1.6285,-5.8732 9.0237,-6.6748 14.1398,-5.91 7.6883,-0.1128 16.0582,0.9023 23.0214,-3.009 6.3876,-5.3328 6.9831,-14.6103 12.9341,-20.3362 3.9583,-6.2944 -0.1416,-15.64 6.5088,-20.5893 4.7879,-3.46 11.0885,-1.9513 16.6178,-2.3492 6.0478,-0.032 12.7183,0.1823 17.9819,-3.1863 5.1766,-5.3075 5.2887,-13.3069 8.9593,-19.4839 1.3231,-6.5983 7.2827,-12.8701 6.3878,-19.3777 -4.3501,-4.6828 -11.7942,-0.7007 -17.0566,-3.8456 -5.7533,-2.6227 -13.0951,-3.6017 -17.2642,2.2046 -9.8745,7.6783 -22.5371,11.471 -35.0068,10.8799 -11.3999,-0.3159 -23.1884,-1.2046 -34.0625,3.0172 -14.9612,5.6245 -31.7962,5.6209 -46.9272,0.6154 -7.8754,-0.3308 -15.0403,4.1625 -22.9384,3.8042 -5.6808,0.5415 -12.8392,-0.7093 -16.8759,4.3058 -2.3223,4.0695 -1.7632,9.1789 -4.0757,13.3383 -3.4243,9.1282 -13.3052,13.1038 -22.2469,14.4737 -8.1628,1.6541 -16.5943,1.8812 -24.6299,4.1167 -6.0718,4.163 -6.2586,12.8778 -12.3863,17.0503 -9.0965,8.6174 -22.3362,9.181 -34.103,10.6554 -11.997,1.1757 -24.1406,0.6002 -36.0958,1.9614 -6.8147,2.3666 -12.5522,7.8518 -20.1047,7.9096 -24.3925,3.9961 -49.2203,2.1566 -73.7721,4.2641 -14.9211,0.6922 -30.3548,1.1075 -44.6118,-4.0657 -5.0801,-0.3178 -11.625,-11.2311 -15.1932,-4.1111 0.724,6.3474 4.6285,11.7447 6.084,17.9204 9.5575,28.0587 14.3653,57.5073 24.4553,85.4015 7.7487,28.5709 10.0917,58.2705 17.6132,86.8979 3.8502,16.4455 7.6352,32.9516 9.6604,49.7402 1.5641,7.5667 10.9876,8.4591 16.918,5.7371 1.577,-0.499 3.1247,-1.0839 4.6707,-1.67 z m -234.1951,-275.7225 c -2.4182,1.4361 1.9405,2.3711 0,0 z m 240.454,-97.0993 c 11.6943,-5.3468 25.304,-0.3987 36.9753,-5.8335 6.4526,-0.4466 13.6841,3.8539 19.4702,-0.6674 7.4006,-2.9366 6.9493,-12.8812 13.0849,-16.6538 5.2316,-2.5088 4.7473,-7.971 3.0988,-12.2813 0.5302,-6.2889 5.3131,-11.682 11.1011,-13.8609 4.7721,0.961 1.2735,12.7745 8.2089,7.8056 4.8377,-4.333 -3.1043,-14.8979 5.9126,-16.2444 5.7721,-0.8262 13.0405,-5.0904 9.3203,-11.5006 1.9696,-5.8457 10.3112,-4.8917 12.7393,-10.5409 4.752,-5.6554 12.1262,-8.2799 19.2944,-8.9363 6.3634,-1.8323 9.1497,-10.2382 16.3657,-10.0046 3.7971,-4.8788 9.2663,-9.0714 11.4945,-14.8347 -1.2076,-2.6136 -2.9999,-6.2477 1.6945,-6.1536 6.7041,-1.2754 11.3857,-6.7215 17.3963,-9.2124 7.6645,-2.1657 15.6595,1.8842 23.2278,-0.8763 13.8668,-3.0969 28.2348,-2.4665 42.3238,-1.6286 9.0253,0.9073 18.228,1.0773 27.0332,3.3828 9.6412,3.0065 14.0643,12.7055 19.8911,20.039 6.3153,4.911 14.4106,1.2265 21.3469,0.1167 9.9753,-2.1633 19.627,-5.7815 28.6008,-10.6403 7.0678,-0.3785 9.312,-13.41 1.945,-14.6919 -6.5356,-2.8326 1.7345,-7.1126 3.5805,-10.4824 3.1452,-3.7391 6.8466,-7.439 11.717,-8.7197 3.961,-2.8551 9.0371,-5.5148 10.3507,-10.5905 -0.083,-6.0355 -7.6773,-5.7012 -12.0331,-6.0738 -5.1157,-0.052 -10.534,-0.6753 -14.6156,-4.0754 -6.3977,-1.6088 -10.9731,-6.614 -16.8494,-8.6922 -6.1859,0.6475 -11.7838,-2.2438 -12.6928,-8.6528 -2.0348,-5.9516 -8.3595,-8.6047 -14.2451,-7.5181 -14.0896,0.2781 -29.0974,0.4647 -41.7153,-6.7586 -8.3473,-4.2646 -17.8267,-6.4195 -27.1844,-6.3723 -4.171,-4.7983 -9.231,-11.1149 -16.3798,-8.9927 -10.6092,-0.6158 -21.4205,0.3574 -31.8259,-2.2764 -6.7639,-6.4274 -16.7374,-1.9686 -24.7045,-4.9992 -7.043,-2.2782 -14.0152,-5.4506 -21.5726,-5.2966 -7.1165,-0.9706 -10.0173,-9.7043 -17.0972,-10.5683 -3.6024,-0.06 -6.2141,8.806 -6.7691,1.8941 -0.882,-6.8531 -8.3409,-9.0007 -14.2734,-8.1302 -8.1888,0.6958 -16.3381,-0.7752 -24.4845,-1.4967 -11.8081,-1.3087 -23.5276,-4.8538 -33.2207,-11.9091 -8.1801,-5.332 -15.9274,-11.882 -20.7588,-20.4789 -4.4651,-4.8393 -12.0327,-1.2377 -15.0683,3.4395 -7.0742,5.8247 -8.5476,15.8652 -6.979,24.4286 -0.1133,7.3778 -5.7456,13.698 -4.5632,21.2463 0.2797,22.9142 0.9513,45.9141 4.1222,68.6329 1.3513,6.0089 1.6228,12.1655 0.928,18.2772 -0.058,5.0994 -0.1261,10.0226 -2.9663,14.4261 -1.3914,4.2179 -6.124,10.9364 -10.788,6.6946 -4.582,-4.3631 -3.8987,-11.5897 -8.0762,-16.2184 0.4417,-3.9871 0.5633,-13.0592 -5.8701,-9.1211 -5.5827,-1.6566 -1.7699,9.7505 -6.8145,3.9757 -3.8834,-5.5318 1.6837,-11.9162 -0.2068,-17.9456 -1.7315,-6.5687 -4.0923,-12.678 -0.7309,-19.2396 0.8237,-5.2203 -8.0065,-6.4302 -4.2565,-12.3353 3.4767,-6.5696 -4.2257,-11.8493 -1.7831,-18.8651 0.5239,-7.3802 -0.7064,-14.732 -1.041,-22.1079 -0.1333,-5.8023 -1.8495,-11.8314 -1.2807,-17.4581 0.8542,-4.7766 -2.6272,-9.7388 -4.5921,-13.6297 -5.0926,-1.2325 -6.4043,-5.6519 -5.9253,-10.332 -0.8024,-5.6309 -2.7695,-11.6553 -7.1263,-15.4954 -5.7854,-3.9529 -12.645,-6.141 -19.419,-7.6018 -10.0406,-0.1031 -19.4278,-4.2015 -27.8384,-9.3853 -4.9309,-3.1945 -10.5175,-5.3297 -15.2033,-8.86504 -5.2707,-4.66278 -7.2909,-11.79734 -12.7489,-16.33364 -4.1916,-4.72487 -7.6045,-10.60131 -14.6336,-10.9557 -4.5285,-1.89202 -8.8783,-4.2646 -13.7617,-5.29949 -5.8187,-1.34846 -11.2726,-3.74126 -16.7146,-6.1147 -5.8951,-2.18192 -12.2456,-1.76048 -18.3863,-1.87897 -6.2195,-2.39837 -11.484,-6.88564 -18.3675,-7.41251 -7.2103,-2.97236 -11.9321,-10.81095 -20.1416,-11.53142 -6.9908,-2.7696 -6.6717,6.69778 -6.513,11.13882 -0.3609,11.7169 -1.7006,23.72883 1.0712,35.24731 3.9679,14.01295 9.7872,27.45714 16.8176,40.18124 3.6736,10.2809 3.5027,21.5452 7.8415,31.6457 5.4287,14.828 14.5085,27.9662 20.2183,42.6777 6.0324,13.2744 10.8588,27.2027 12.7343,41.7168 3.8092,22.9182 9.0769,46.1441 21.0172,66.3441 2.5078,4.9512 6.5583,8.5293 10.3038,12.4301 3.4359,3.948 3.3055,9.5408 1.3704,14.0214 0.4238,9.0314 8.643,16.7958 17.6296,17.1657 6.9891,0.781 15.2015,0.013 20.5176,5.5606 -1.8535,2.6203 -6.892,6.3246 -1.2677,8.177 7.3755,6.7385 12.9595,15.5909 14.6068,25.5432 1.1603,5.2955 1.801,10.6908 3.015,15.9756 6.1747,4.2223 13.8928,2.0134 20.8048,1.9873 7.4626,-3.4691 15.7013,-4.9778 23.9035,-4.5351 6.2137,-0.1339 12.4386,-0.115 18.6389,0.3578 3.1299,3.634 8.0781,9.27 11.9508,6.5671 -0.54,5.8428 4.9785,7.5087 9.3605,8.9303 3.3117,1.4615 7.6686,2.2007 10.4605,-0.7196 z m -12.7847,-159.8885 c 3.7218,-6.3113 -0.7365,-13.3546 -0.03,-20.0238 -1.9288,-21.3465 -3.1521,-42.7509 -4.0264,-64.1646 -2.0389,-6.6889 -10.5544,-0.2077 -6.619,4.5607 0.5371,22.7449 2.8879,45.3893 4.3533,68.0815 -1.3897,4.1609 -4.0112,13.5796 2.878,13.6269 1.4532,-0.07 2.5613,-1.0089 3.444,-2.0807 z M 1456.3531,874.38664 c -2.2443,-4.33628 -3.9927,3.40799 0,0 z m -3.7388,-8.41203 c -2.3359,-4.19596 0.2896,6.50058 0.115,0.64321 -0.038,-0.2144 -0.077,-0.42881 -0.115,-0.64321 z M 429.68645,820.30794 c -3.09457,-5.53952 -2.27167,4.59028 0,0 z M 1245.6864,2041.5696 c -15.6586,-3.9362 -32.3831,-1.0147 -47.7043,-6.7118 -7.3984,-2.2827 -14.8577,-4.8106 -22.6589,-5.1576 -6.2895,-3.1149 -12.8274,-5.8665 -18.5392,-10.0074 -2.45,-5.9014 -0.089,-12.6218 -2.7777,-18.4932 -2.9246,-6.2653 3.8663,-7.6931 6.6131,-11.4483 3.0661,-5.9351 1.1501,-12.8477 2.4261,-19.1818 0.6993,-7.3207 -1.948,-14.3708 -2.7203,-21.5242 0.035,-6.6884 -3.5647,-14.3145 -10.7009,-15.6854 -5.9769,-3.9236 -1.0379,-11.9705 3.9128,-14.3199 3.0762,-3.2389 4.4567,-8.2705 9.6931,-5.8961 5.5567,-0.05 10.677,-3.1662 14.285,-7.2296 6.5548,-0.4362 13.0663,-2.3447 19.3893,0.3497 6.5145,0.414 15.7121,-3.9309 19.4428,3.8098 2.104,4.8864 6.4254,3.2388 9.6367,1.0165 5.9456,0.8534 11.9773,4.2547 17.5512,-0.081 6.0049,-2.8656 12.1529,-0.5173 17.8953,1.5243 5.2329,1.5706 10.7041,3.429 16.2328,2.4245 6.1134,3.9945 13.7,3.2609 20.6435,3.8265 5.2143,2.5097 3.6507,9.0779 3.4112,13.7147 0.3035,5.3674 0.9873,10.7218 0.8214,16.1489 0.25,16.4107 -0.79,32.8127 -2.1403,49.1521 0.4656,8.2402 4.6239,16.2143 2.606,24.5689 -1.1832,8.0707 -4.7878,17.6209 -13.3458,20.1989 -7.0592,1.9156 -14.475,1.0995 -21.6971,1.5834 -7.4873,-0.013 -15.023,-0.6416 -22.2758,-2.5821 z m -833.33329,-51.8495 c -7.70435,-2.2746 -16.88715,-1.2937 -22.98793,-7.465 -7.28813,-6.2199 -9.19049,-16.0432 -10.9826,-24.9601 -3.34229,-12.2732 -12.72094,-22.7371 -12.75865,-35.8856 1.44346,-6.3292 9.10362,-7.0229 13.36534,-10.7992 6.5058,-5.2108 15.88267,-1.6872 22.41623,-6.6907 4.56331,-6.5882 13.76602,0.5637 18.84496,-5.1489 6.68687,-3.4213 14.48015,-2.8318 21.56798,-4.9189 6.99561,-1.6839 13.88503,-4.0582 21.13973,-4.2901 5.74636,-0.1135 10.72911,-5.0475 16.32895,-3.3628 5.72734,0.5442 12.92489,-2.0193 17.24468,3.0936 4.98028,4.2199 12.86967,5.1269 16.20888,11.3909 6.13845,4.8715 4.98178,13.393 6.98399,20.1219 2.90145,5.3736 8.59618,9.0325 9.82999,15.3604 1.8833,7.1245 1.43182,14.6241 1.303,21.913 0.0733,6.6646 -3.85934,13.5421 -11.07971,14.138 -6.34638,0.5951 -11.52358,4.2668 -17.36406,6.3334 -10.91336,3.4403 -22.50182,3.4821 -33.66829,5.7237 -17.94693,2.7929 -35.96082,6.0098 -54.17181,6.0882 -0.76712,-0.094 -1.52974,-0.2876 -2.22068,-0.6418 z m 1192.83749,-21.019 c -15.6346,-4.725 -32.3377,-4.4711 -47.8253,-9.818 -7.4458,-1.745 -15.0666,-2.826 -22.3174,-5.3025 -9.2146,-2.1278 -17.8853,-6.113 -27.2044,-7.8475 -10.1165,-2.6241 -20.19,-6.4347 -28.361,-13.1177 -6.7487,0.9407 -13.2837,-6.0852 -9.4325,-12.1155 -1.8031,-4.253 2.1582,-7.6535 4.8276,-8.8063 0.2004,-5.7392 0.7085,-11.4292 2.3358,-16.9503 2.4363,-8.8863 7.4854,-17.1114 7.6119,-26.561 -0.4152,-6.7271 3.5118,-12.1453 6.1825,-17.9177 2.9638,-7.2218 -1.4731,-15.645 3.1105,-22.484 3.871,-6.083 11.9388,-4.7948 17.816,-3.0985 12.482,2.6307 24.6516,6.7504 37.3222,8.465 10.8413,0.2574 21.1121,4.4558 31.9162,5.0913 8.2975,1.5531 15.9991,5.4649 24.431,6.4233 6.0694,3.0354 11.5583,7.5871 18.8436,6.9545 5.8312,0.7713 13.4851,1.2576 16.2608,7.3252 2.7773,6.5737 -0.72,13.4155 -2.1945,19.8235 -2.284,6.2893 -8.6027,9.3894 -13.504,13.2894 -5.0117,5.7053 3.9602,9.5463 5.2083,14.3756 0.78,6.1973 -4.4571,10.8908 -5.2064,16.8031 -4.3622,12.3083 -5.7626,25.4658 -9.9832,37.7828 -2.006,3.8128 -5.8323,6.3543 -9.8377,7.6853 z m -923.9333,-35.5883 c -5.8304,-4.2638 -13.87366,-2.0219 -19.83148,-5.9913 -5.37862,-2.3802 -12.76769,-4.2142 -14.14273,-10.8754 0.15523,-7.6183 -6.65952,-14.2178 -4.16801,-21.9467 1.63102,-9.5227 2.23445,-19.5252 -0.6606,-28.8738 -1.00755,-6.5297 7.95634,-6.5908 9.83917,-1.675 6.71561,2.4515 8.75903,-7.3279 14.98226,-7.4822 7.24658,-2.2052 14.51269,1.7043 21.73818,0.024 9.53771,-1.9715 18.37484,-6.9561 28.30149,-7.0686 20.47746,-1.9944 41.15868,-3.3754 61.7012,-1.6638 6.47944,0.8156 14.67397,3.1826 16.5344,10.3192 1.6557,7.5046 0.90526,15.2723 1.213,22.8951 -0.1609,13.3752 -1.08209,26.8054 -3.91528,39.9041 -3.79274,6.3728 -12.0843,5.4415 -18.30767,7.2109 -7.2396,2.4426 -15.0786,2.7668 -22.06255,6.0218 -6.39448,1.1646 -12.68849,-2.4897 -19.11667,-0.7099 -8.92066,1.4612 -18.1352,1.6388 -26.88494,-0.9152 -7.90362,-2.831 -15.09443,4.8002 -22.94797,2.2763 -0.78461,-0.3953 -1.81831,-0.6121 -2.2718,-1.4499 z m 762.4292,-150.153 c -10.4858,-1.9585 -21.3839,-1.0818 -31.6924,-4.0531 -12.4818,-1.0151 -24.416,-5.0909 -36.6351,-7.5562 -11.1961,-2.9184 -22.5178,-5.2891 -33.8195,-7.7286 -3.6905,-1.0659 -8.0563,-1.387 -4.7369,-5.5074 0.5916,-6.0959 -5.4372,-11.1193 -3.5617,-17.3301 1.6684,-6.83 3.9107,-13.5967 3.8412,-20.705 0.7925,-9.1531 -0.7663,-18.2617 -1.6362,-27.323 -0.01,-6.3579 2.7319,-12.6292 7.5145,-16.8034 4.3079,-6.1953 12.5591,-4.699 18.8263,-3.3285 7.1999,0.7694 14.2319,2.6199 21.1734,4.5452 19.325,2.2626 38.7154,-3.1223 58.0201,-0.1289 6.8402,0.4666 13.5593,1.9287 20.0756,3.9605 8.999,1.4589 19.5184,-0.5392 26.8581,6.1353 5.6749,5.8929 3.7431,14.7266 3.7486,22.1068 -0.9024,16.8197 -5.6583,33.3665 -4.283,50.3089 0.059,6.8143 -0.1133,14.3616 -4.2409,20.077 -5.4666,4.633 -13.0548,2.4555 -19.5229,3.7606 -6.6384,0.3445 -13.3293,0.5154 -19.9292,-0.4301 z M 189.94638,1754.308 c 0.47322,-4.4191 0.79898,4.764 0,0 z m 0.75827,-10 c -3.25421,-1.9655 1.24643,-9.9821 1.5073,-3.2996 0.13304,1.0674 -0.41031,7.7471 -1.5073,3.2996 z m 275.28248,-13.1719 c -6.04211,-0.4159 -11.29803,-9.8646 -17.30107,-4.7538 -6.3741,3.8914 -7.90341,-4.013 -7.71019,-8.6948 -1.15186,-9.5006 -0.68903,-19.1091 -1.7686,-28.6 -2.04491,-5.4737 6.99081,-12.9822 -0.76212,-15.2635 -2.04527,-5.7217 0.13375,-12.7647 -0.42689,-18.9915 0.2244,-6.5655 -1.21584,-13.0286 -3.44048,-19.1361 -1.19501,-7.6583 1.22618,-16.3489 7.36751,-21.3295 3.89742,-2.962 9.2127,-0.7753 10.98182,2.9339 3.96354,1.0965 4.29416,-5.1866 4.09224,-5.7144 6.62734,0.1515 12.42593,-4.5212 19.11321,-3.779 11.00299,-1.7998 22.16521,-2.5097 33.24393,-3.3548 9.43679,-2.4563 19.00269,-4.2783 28.62477,-5.8332 6.68578,-3.0725 12.80988,3.5309 19.52172,1.2905 5.7383,-5.05 13.77414,-0.1981 20.34318,-2.8895 6.75756,0.7458 2.31007,11.2032 3.87905,16.1129 0.28585,12.9802 2.40078,25.8584 2.53879,38.8404 1.97366,4.7786 1.297,10.7163 4.52972,14.7121 6.05216,4.06 3.1062,11.962 5.46018,18.0161 1.45699,9.1117 2.32681,18.3444 2.07927,27.5788 -5.64328,4.1128 -12.77059,7.0787 -16.00224,13.6853 -4.99549,4.91 -12.19043,1.4465 -18.20275,1.6231 -19.03326,1.7651 -38.06055,3.9736 -57.20108,4.1314 -10.81482,0.3577 -21.64503,1.2828 -32.45825,1.0721 -2.21762,-0.3216 -4.39741,-0.8886 -6.50172,-1.6565 z M 1329.6864,1576.134 c -7.5974,-1.9644 -15.829,1.1997 -23.1614,-2.1869 -8.5643,2.6521 -17.4499,-0.092 -26.141,-0.4073 -16.1916,-2.3047 -32.5336,-3.6003 -48.569,-6.9264 -11.5848,-2.6034 -23.769,-1.2407 -35.2066,-4.78 -12.0815,-2.057 -24.483,-1.4003 -36.5623,-2.9882 -6.0756,-2.7476 -11.6921,-6.8579 -18.4235,-7.8177 -6.0436,-3.052 -4.0494,-12.7437 -10.9962,-14.7862 -9.094,-1.1543 -18.3674,-0.5499 -27.3731,-2.4542 -3.99,2.0437 -10.5294,3.5683 -9.964,-3.1194 -4.1709,-6.6456 -1.2104,-13.9973 1.9699,-20.2091 1.9331,-6.1244 1.7043,-13.2384 -0.8635,-18.9478 -3.8759,-4.9435 -10.5405,-3.952 -15.9888,-5.3924 -12.03,-2.0968 -24.5419,-2.6669 -35.9525,-7.3377 -6.3314,-4.3722 -0.9385,-12.9647 -4.4576,-18.8305 -1.5068,-6.9889 2.3751,-14.4844 -1.2559,-21.1385 -1.0249,-3.4658 -0.6699,-14.8034 -6.4352,-10.4338 -4.0052,5.1092 -5.5196,11.649 -8.6084,17.3025 -2.7937,6.6905 -7.7425,13.3361 -15.3619,14.5852 -5.9162,1.5249 -13.86909,1.857 -16.52166,8.4327 -3.04939,6.3803 -3.87376,13.5752 -7.12286,19.889 -3.08952,7.4456 -5.82324,15.2328 -10.43089,21.8807 -6.92033,6.5691 -17.154,3.8548 -25.60016,6.066 -10.04427,2.1443 -20.27707,6.0111 -27.38922,13.6689 -6.1593,4.5897 -14.30945,3.1094 -21.14709,5.8738 -6.11215,1.9244 -12.47379,2.7855 -18.84098,3.1366 -6.02787,0.9014 -11.95719,2.3535 -17.82942,3.9671 -10.22086,-2.2632 -20.54853,1.0464 -30.82097,-0.1178 -16.16115,-0.8953 -32.33995,-1.4122 -48.45239,-3.0442 -11.77306,-1.1783 -23.6131,-1.5315 -35.39232,-2.5095 -7.90584,-1.1237 -16.18411,-1.8212 -23.44742,-5.3253 -5.06022,-3.9294 -11.73046,-8.4762 -12.59875,-15.2251 -0.40951,-4.6954 0.48796,-11.3701 -5.01417,-13.401 -6.665,-0.8516 -13.14541,-2.7367 -19.6034,-4.5873 -7.40342,-1.5315 -14.93812,-5.8793 -18.29799,-12.8478 -2.20934,-6.9716 1.75066,-14.7273 -1.94361,-21.3858 -6.53425,-4.2932 -14.82986,-3.2353 -22.03907,-5.6798 -8.2141,-2.0996 -16.56352,-8.0388 -17.43892,-17.1 -0.78259,-6.4372 3.08095,-13.7998 -1.53043,-19.4569 -4.31966,-5.251 -12.85539,-5.5931 -18.00868,-1.3935 -4.38254,-3.4737 -10.27785,-6.6349 -15.27368,-4.4611 -4.20994,-5.4196 7.6713,-6.883 4.54367,-12.7499 -1.25915,-6.4914 -4.26829,-15.3247 2.41036,-19.928 6.10341,-2.489 9.48572,-9.1785 4.48308,-14.5723 -3.78279,-5.0175 -2.44709,-10.72 1.74076,-14.5594 1.18626,-6.4342 -4.45906,-11.3743 -5.4487,-17.5105 -6.15584,-18.0863 -9.27623,-36.9786 -12.59983,-55.7287 -3.32703,-16.0505 -4.25967,-32.4731 -4.04059,-48.8312 -0.0902,-9.9077 -0.92092,-19.82 -1.22147,-29.6982 1.29377,-7.8759 2.0337,-15.8647 1.38514,-23.8364 0.2217,-15.689 3.40911,-31.2007 2.97388,-46.9227 0.36549,-23.8548 -2.01798,-47.6467 -2.20699,-71.4836 0.28849,-13.5156 3.40879,-26.7155 5.99473,-39.9121 1.97219,-12.0204 3.54292,-24.40847 9.09944,-35.41982 5.65616,-4.45414 2.17736,-13.988 8.79431,-17.70826 7.87271,-2.37569 13.28787,-10.49176 22.0371,-10.36689 7.97219,-0.43744 15.97694,-0.15919 23.91049,-1.24782 16.5499,-1.4744 33.11375,0.45968 49.63421,1.41706 11.44422,1.24469 23.37639,1.12516 34.15145,5.65739 6.0764,2.46448 10.74023,8.06435 11.16027,14.75161 0.88195,7.05886 3.59943,14.34358 -0.25534,21.09552 -2.90578,7.94451 -3.89823,16.43651 -5.92273,24.63601 -4.35877,20.082 -6.98295,40.7186 -5.06387,61.2717 1.06693,14.006 3.60025,27.9767 2.46878,42.0661 -1.16408,23.1469 -5.03986,46.1343 -4.6192,69.3618 -0.36316,27.0343 -1.23212,54.3036 3.04108,81.0995 5.18889,29.9978 16.39201,58.8508 31.78319,85.0613 15.09958,24.6147 36.01398,45.338 59.45132,62.0303 5.25586,2.9373 10.55313,-1.8676 13.35784,-6.0145 2.86183,-4.2837 6.59686,-8.005 8.50668,-12.9106 1.51033,-4.5276 5.20426,-8.2262 5.73488,-12.9815 -2.12966,-6.7019 3.41262,-10.0644 7.98426,-13.4669 5.54304,-4.4258 10.3743,-10.303 11.37556,-17.5437 1.1744,-6.4321 4.86002,-11.7927 8.49606,-17.0376 8.93013,-14.8575 14.62221,-31.3271 21.3491,-47.2262 9.98128,-26.7895 18.43902,-54.2901 23.14951,-82.5286 1.2501,-9.1144 2.16143,-18.2664 3.61185,-27.3454 0.70641,-8.7632 0.85908,-17.6062 2.54183,-26.2494 0.7638,-13.3899 -0.55191,-26.9127 1.72169,-40.1996 -0.95117,-6.3865 -3.64507,-12.4636 -3.14776,-19.0264 -1.96764,-17.5601 -1.66654,-35.3312 0.61374,-52.8417 0.63033,-8.5673 0.81514,-17.2847 -1.01273,-25.7018 0.32447,-7.4147 1.31002,-14.8356 0.56063,-22.274 -0.36523,-6.6024 -2.55823,-12.98046 -2.0002,-19.64749 1.07888,-7.13726 -7.68803,-12.86965 -2.52868,-19.7872 4.69557,-3.78295 1.0963,-11.41032 6.63283,-13.875 5.78429,-0.43199 10.92712,-5.90917 17.28897,-3.66788 3.9249,0.10945 7.6126,-2.74184 11.52543,-3.59726 5.47105,-1.82792 11.35603,-1.41889 16.82444,-3.32847 7.11617,-1.89981 15.25426,-0.0734 21.54881,-4.75911 6.6851,-3.78704 14.5474,0.80605 21.6322,-1.26974 14.8831,-1.91908 30.3339,-2.09469 44.8389,2.14573 5.589,1.62577 9.0703,6.93504 9.3037,12.59031 0.9191,8.43095 0.1708,16.94063 0.9277,25.38861 1.2952,34.857 2.7205,69.7185 4.523,104.5485 2.7623,20.167 9.2976,39.5354 14.2968,59.2005 6.377,20.9372 13.2008,41.9897 14.8845,63.945 3.7554,24.617 8.8392,49.0252 14.5339,73.2593 5.771,22.518 15.796,43.7303 28.2417,63.2994 5.4972,9.2816 11.7316,18.0948 18.2254,26.6906 7.5755,12.0065 18.6784,21.0806 28.1478,31.4924 3.9206,4.0452 7.4425,9.3335 13.4867,10.1822 5.4998,1.0266 11.1625,1.3005 16.4425,3.2726 16.6745,3.606 33.7614,0.8137 50.4169,-1.3447 9.0023,-0.1981 18.1539,0.341 26.9769,-1.6268 7.0304,0.2902 14.2823,-1.8371 20.0127,-5.8697 5.4437,-4.8217 10.0426,-12.4111 7.5497,-19.8601 -0.8337,-6.9158 0.8069,-13.8827 -0.2652,-20.8084 -1.0179,-12.5799 -3.5,-25.1603 -8.5691,-36.7693 2.6211,-6.231 -3.4945,-10.5253 -5.2146,-15.5649 -3.3376,-4.9198 -6.7217,-11.2357 -0.9334,-15.9798 4.7024,-5.0303 5.0262,-12.3384 1.1577,-17.9281 -3.434,-5.1919 2.1764,-7.1443 6.1204,-8.1597 6.8776,-4.6755 -1.4875,-10.7853 -0.1134,-16.5733 0.8888,-3.9566 -0.049,-9.1135 -4.3564,-8.054 1.9653,-5.3025 -1.6467,-9.9527 -0.9905,-15.3009 0.1158,-7.1232 6.3008,-11.6421 8.5779,-17.9137 0.1025,-4.8651 2.2086,-9.3039 5.796,-12.6267 3.1971,-3.1118 5.342,-7.3303 4.8084,-11.8808 0.4557,-9.1749 -1.1797,-18.615 -5.7825,-26.6311 -2.0073,-5.2626 2.7232,-13.1497 7.8669,-7.8014 7.4711,-0.7871 1.2889,-9.7013 0.2243,-13.6427 -0.3336,-5.702 3.7839,-11.7927 0.2026,-17.1279 -1.2551,-6.6455 -9.5106,-13.9688 -4.894,-20.1623 2.9469,-4.6422 3.4922,-11.1836 -0.6127,-15.3144 -2.3778,-5.7154 -4.4414,-12.575 -10.8012,-15.0555 -6.5749,-2.5826 -11.5177,-10.7052 -8.4781,-17.5186 1.9116,-2.8792 9.123,2.848 7.7722,-3.8885 -4.3715,-7.629 -9.4332,-15.5119 -9.7375,-24.6205 -0.04,-6.3638 -2.6901,-12.0751 -4.6597,-17.9397 -3.1304,-5.14823 -2.7506,-11.07483 2.6368,-14.19375 3.3038,-5.09086 -4.1467,-10.87767 1.625,-15.68545 3.8002,-6.32329 -3.4525,-11.61431 -6.7253,-16.28495 -4.3998,-6.9164 -2.9114,-18.43672 5.1787,-21.99766 8.5783,-3.09814 17.861,-2.93155 26.8211,-3.95139 12.5776,-0.90468 25.262,-0.26691 37.7902,-1.68568 12.0262,-2.24374 24.3437,-1.63463 36.4983,-1.16732 12.4494,0.89041 26.333,4.32313 33.719,15.3047 10.2112,18.35072 14.1703,39.24922 19.6546,59.3175 3.7372,14.9917 5.0194,30.4657 9.0945,45.3838 5.396,23.6532 11.8773,47.0371 18.992,70.2259 7.0857,24.9276 11.3777,50.7106 12.0794,76.6352 1.1018,17.2051 2.8926,34.5103 0.7093,51.7135 -1.5511,14.8278 -3.5915,29.6424 -6.4349,44.2678 -3.7336,5.6855 -1.347,11.9922 -2.6921,18.0717 -2.9701,8.5639 -4.0424,17.664 -3.3333,26.6942 0.9991,14.1669 3.999,28.1423 4.1701,42.3802 0.629,13.0123 0.9993,26.0815 3.0769,38.9662 -0.8667,6.1053 3.4034,14.5497 -3.075,18.6682 -6.4046,4.4201 -14.377,8.3997 -16.6502,16.4999 -3.1242,8.0222 -5.2674,16.4655 -9.4253,24.0555 -4.1757,4.0607 -13.766,3.5918 -12.9694,11.5338 -0.9573,8.7318 -6.5066,16.0288 -12.9203,21.6554 -3.2979,2.4309 -6.2469,7.8999 -8.8024,9.2875 -7.4318,-5.0406 -11.4351,6.1763 -13.21,11.577 -5.8068,12.6519 -10.4243,27.5745 -23.2539,34.947 -8.1919,4.8785 -17.9916,7.8553 -27.5357,6.9427 -5.8265,-1.4154 -12.9005,-2.2696 -17.718,2.1224 -8.9929,3.5091 -18.8745,4.1819 -28.4287,4.0117 -1.3908,-0.1354 -2.7757,-0.3264 -4.1547,-0.551 z" + id="path313" /> + </g> +</svg> diff --git a/static/icons/bird-light.svg b/static/icons/bird-light.svg new file mode 100644 index 0000000..5409e1b --- /dev/null +++ b/static/icons/bird-light.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + version="1.1" + id="svg297" + width="2458.6667" + height="1858.6667" + viewBox="0 0 2458.6667 1858.6667" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs301" /> + <g + id="g303" + transform="translate(-104.58786,-530.83635)"> + <path + style="fill:#1c2024;stroke-width:1.33333" + d="m 149.41978,2386.708 c 4.32147,-5.798 -1.54235,-11.9102 -2.97816,-17.5153 1.91638,-6.3002 -2.83813,-10.8126 -3.21845,-16.7998 0.2703,-7.8943 -8.39185,-8.7772 -14.31807,-8.7893 -6.54124,0.3013 -12.28912,-3.2729 -16.03383,-8.4431 -5.41034,-4.4244 -9.49306,-11.1812 -8.15094,-18.4195 1.75472,-9.9329 3.81358,-19.9619 8.29614,-29.0869 0.68223,-5.1652 4.47678,-10.7001 1.52769,-15.7442 -6.78311,-2.1368 -3.20411,-8.6547 -1.67463,-13.4481 -0.26993,-6.9784 0.98253,-13.9202 3.04481,-20.559 2.01513,-7.937 4.53482,-15.7895 5.19738,-23.9973 0.31491,-6.5318 6.17669,-11.7842 4.70221,-18.4223 -3.27656,-6.2954 1.89935,-11.6703 1.445,-17.9099 -0.96291,-6.9243 -0.60653,-13.6742 -1.4581,-20.569 0.59329,-6.5071 4.05295,-12.5833 2.72451,-19.3191 -1.81246,-6.5281 2.8168,-13.3082 -0.43895,-19.6363 -3.93024,-3.3145 9.11291,-4.6487 3.37437,-8.5549 -7.56085,-3.8716 -0.23477,-12.4337 5.51111,-12.3565 4.11142,-5.7874 -5.33948,-8.7392 -6.4695,-13.7899 -2.20766,-6.0134 -0.43837,-12.6419 2.66541,-17.9707 2.58655,-7.3554 2.64262,-15.256 2.98247,-22.9113 2.32914,-5.4601 8.00653,3.6724 10.65931,-2.3644 2.77482,-5.2163 1.04927,-11.3675 2.03641,-16.9864 1.69946,-26.2948 5.93589,-52.39 6.64156,-78.7549 -0.37441,-5.4657 -13.03052,-3.0978 -9.50163,-9.0019 6.77188,-2.5453 6.60985,-10.8627 7.97449,-16.7837 2.32746,-12.2533 1.60242,-24.7983 1.24615,-37.1801 -1.03929,-7.2976 -0.62634,-15.2442 3.00313,-21.8273 3.61879,-4.1842 6.74182,-9.0379 7.07525,-14.7608 0.4624,-8.1191 0.0995,-16.8284 4.75384,-23.9458 0.6493,-6.378 11.30082,-2.2434 10.72826,-9.7303 1.89766,-8.3754 2.59505,-16.9696 4.01216,-25.4319 0.91831,-6.7125 1.94721,-13.4318 3.73714,-19.9759 6.73936,3.352 7.0955,-6.2432 6.56329,-10.6303 0.22365,-6.7483 0.55384,-13.5588 1.18895,-20.2918 2.21463,-12.3645 2.37872,-24.9798 2.12971,-37.5018 0.17794,-5.2251 -3.52993,-10.053 -0.60726,-15.2479 2.71424,-7.0429 2.28473,-14.7492 3.70299,-22.0892 0.21985,-5.8646 2.9878,-13.0925 1.38176,-18.1209 -6.34767,0.2964 0.35785,-3.273 -0.8228,-6.8134 -0.074,-6.574 3.79265,-12.1117 3.33908,-18.8036 0.0652,-6.1799 6.16136,-8.8491 8.72896,-13.7569 5.03799,-9.1665 7.87807,-19.31 11.70772,-28.9934 2.55586,-6.6454 9.44985,-11.5072 8.80147,-19.2766 0.95624,-8.9611 -11.95575,-4.2913 -13.20104,-11.079 1.59294,-7.1466 2.30076,-14.621 5.34414,-21.4019 3.92298,-1.9715 7.1079,-5.9181 5.04712,-9.9096 3.83966,-3.8581 7.85736,-7.7832 6.80379,-13.526 2.26696,-5.7925 7.98911,-11.095 5.90678,-17.8457 -0.17848,-5.1669 9.36323,-1.0906 6.47562,-7.5458 -2.10491,-5.4924 -12.06272,-11.4094 -3.58857,-16.5001 5.12977,-2.5188 7.59752,-7.527 10.85617,-11.8665 3.19071,-4.1116 7.19811,-9.1815 5.63675,-14.6935 -2.89048,-2.9383 -5.17814,-6.9578 -0.32854,-9.4482 3.99288,-4.0561 7.92521,-8.9479 7.56308,-15.0036 0.77662,-5.1893 -1.88353,-8.8516 -5.67202,-11.6562 6.63263,-0.1064 8.44486,-7.545 13.08554,-11.0182 6.27923,-4.7478 -0.152,-12.8737 0.93042,-18.955 2.12752,-6.5762 6.40864,-12.1716 9.13458,-18.4764 3.64965,-5.9346 5.98391,-12.7646 5.99336,-19.7381 2.19659,-7.0361 -3.93451,-12.777 -4.70846,-19.3391 -1.80881,-2.8476 -4.46695,-6.6725 -0.15443,-8.2701 -0.0873,-3.8281 -10.99708,-7.267 -4.05381,-10.1345 7.97421,-1.3006 5.47562,-10.4851 0.57798,-13.7451 -1.59375,-6.1956 9.14892,-1.8673 5.82106,-7.8927 -6.21356,-5.0871 -6.23397,-12.8394 -2.11036,-19.3238 2.40135,-5.3358 2.1362,-11.2795 4.83249,-16.541 1.89857,-5.3028 3.63596,-10.7637 3.88895,-16.4323 -3.98738,-2.4899 -6.46012,-8.7475 -0.0983,-9.8641 3.51833,-2.5354 1.80304,-8.035 -0.93023,-8.0811 3.03618,-6.4728 5.03996,-13.6105 4.60002,-20.8132 4.09095,-5.1419 3.65614,-11.7448 3.18019,-17.451 3.09731,-5.6627 8.52481,-10.9316 7.90664,-17.7129 -2.58568,-4.7324 -2.10789,-9.9131 3.03301,-12.2528 4.22153,-4.7314 4.40137,-11.4475 4.38899,-17.4473 7.6926,-2.7247 1.41528,-12.1502 5.23644,-17.0311 3.60736,-2.9503 14.18936,-3.1506 10.97333,-9.9906 -3.99192,-1.5106 -3.28116,-5.0971 0.73578,-5.6582 6.05606,-0.7307 12.67733,-10.3676 4.16462,-12.6286 -6.09733,-0.7591 -4.97763,-6.6867 -1.18448,-9.6375 3.71825,-5.5985 1.9499,-12.8653 6.33358,-17.8525 1.38412,-4.2766 -5.92061,-7.0467 0.0345,-9.7519 4.13842,-2.2924 3.38308,-6.3126 0.55827,-8.7767 0.18892,-7.1179 9.35514,-9.0348 12.01069,-14.8038 0.40657,-4.11026 -3.06197,-10.23121 3.02284,-11.231 1.03771,-4.4608 -3.33396,-9.83818 1.66893,-13.40133 2.77032,-5.58179 1.51515,-15.0443 9.47536,-16.3217 5.70743,-2.02704 2.82861,-9.23426 8.23816,-11.40915 3.94069,-3.581 -4.0218,-9.89285 3.28332,-11.74867 5.01207,-2.25559 5.18417,-8.45746 6.41748,-13.11685 1.81543,-13.87627 6.51022,-27.13537 10.16174,-40.59317 0.81923,-7.21954 11.2938,-9.32464 10.51561,-17.35031 -0.71023,-3.92777 1.19413,-7.82216 1.76191,-11.71746 1.03211,-5.51268 3.02082,-10.73163 4.54838,-16.09586 1.84562,-9.38288 3.69702,-20.18914 12.3407,-25.85218 6.38634,-4.05565 13.24899,-7.56324 19.43913,-12.03683 5.68825,-5.41806 13.71121,-7.04061 20.8969,-9.59812 6.99392,-3.579 2.20672,-13.13817 7.18699,-17.48224 5.45328,-4.31 0.83126,-10.11913 2.80172,-15.06809 2.39646,-7.55594 4.59991,-16.02943 11.37744,-20.91719 5.79228,-4.54307 12.28565,-8.25008 17.44177,-13.55312 -0.15138,-4.49644 8.99866,-5.63471 13.348,-7.10572 9.07528,-0.89683 18.52212,0.20277 27.14754,-3.41804 6.26708,-1.97867 10.26281,-8.05245 10.52959,-14.46392 0.7731,-6.61518 1.73723,-13.24183 4.18314,-19.47436 1.68674,-5.67359 3.19233,-11.5115 3.07752,-17.47602 7.33779,-1.83821 10.43576,-10.42766 11.18872,-17.05511 3.24761,-4.13098 9.82715,-6.93022 7.66718,-13.39628 -0.51361,-6.3276 3.84662,-11.84654 9.76984,-13.58051 9.85796,-5.10373 20.23017,-9.66568 31.3666,-10.89405 14.5289,-3.3099 29.8673,-3.30393 43.84216,-8.82596 5.37161,-2.61253 10.12942,-6.74535 16.15903,-7.78343 9.64174,-7.61548 22.06199,-9.53322 33.8068,-11.59967 14.73684,-2.59765 30.33642,0.59042 44.52659,-5.14803 9.06913,-6.71102 14.56507,-17.01213 23.39686,-24.00388 5.86405,-4.21584 10.36714,-12.06682 18.30849,-11.67317 9.91666,-1.00105 19.81126,-2.53765 29.4448,-5.06205 13.61738,-0.87262 27.5049,1.14635 40.87788,-2.34666 20.2653,-2.71926 41.13412,-4.13216 61.2441,0.45601 7.38357,3.25731 13.93475,8.67354 22.00003,10.19448 4.21765,-0.0783 0.811,-7.98842 5.43993,-4.03976 5.77392,2.85574 11.45337,-0.74078 17.17545,-1.48986 16.87338,-2.80796 34.17168,-2.85586 51.14258,-0.99103 8.023,1.30246 15.3105,5.19122 21.967,9.6552 5.3449,0.92267 9.81,-8.31714 14.7102,-1.9687 2.5121,2.06307 4.8483,-0.41903 2.3373,-2.685 5.9796,0.94896 12.1615,2.00481 17.9901,-0.31473 9.4901,-2.33862 19.5046,-4.76916 29.2339,-2.34614 9.2351,-1.43035 18.8582,0.89571 26.4091,6.39937 10.8981,6.87008 19.0973,17.1204 26.2226,27.6782 5.3703,4.39123 11.6429,-0.75402 16.6543,-3.12552 12.77,-5.47464 26.9719,-2.1155 40.3003,-4.56159 7.3183,-1.15799 14.1069,-4.84804 21.6612,-4.73276 14.7038,-1.10064 29.4586,-0.4329 44.1675,0.19182 6.3125,4.19231 14.1282,-0.26186 20.7146,2.33038 4.3283,3.17906 8.9639,8.89426 14.0267,7.62481 2.3277,6.83965 10.8866,9.15118 12.7624,16.26019 4.7666,4.62369 12.5319,7.19068 18.9011,6.41618 4.8747,-1.74274 7.5608,3.99696 12.1654,1.70224 4.7862,-0.79486 11.294,0.47122 12.4458,5.99867 2.923,6.25076 -3.471,12.36399 -1.0473,18.5799 4.2725,5.38856 12.4935,4.66723 18.4602,7.25042 6.9223,0.85698 -2.0533,9.93327 4.9821,12.01261 4.4248,4.53378 5.4443,11.68287 10.9391,15.28892 3.7678,5.89614 11.1684,7.16702 16.582,10.96987 2.8109,5.61166 -2.7729,15.9512 6.7645,17.08197 11.2421,3.25873 23.7677,1.04549 34.2645,7.03715 6.5953,2.80788 12.9312,6.23248 18.864,10.25744 5.2116,1.689 12.3743,2.60209 14.1187,8.75837 0.2016,9.51258 5.589,17.82736 8.6984,26.58654 2.7209,6.0164 6.1138,15.80726 14.6304,13.44034 6.1179,-2.50497 12.5778,-2.59429 18.9151,-3.84674 7.7945,-2.23061 15.97,-6.27302 24.1777,-3.49398 6.1921,0.52178 12.5552,-1.67843 18.54,0.91422 6.3177,1.55497 14.4676,2.3049 17.7057,8.84479 2.7612,6.17905 0.3326,13.96673 5.0363,19.39441 6.6272,3.20212 14.2213,1.20675 21.0797,0.0745 5.8585,-2.45279 12.6484,-5.13751 18.8913,-2.38393 5.5032,0.0891 10.998,-2.32895 16.1606,0.66718 7.969,1.45346 16.7014,1.46177 23.6482,6.09787 5.0944,4.96226 3.1354,12.6417 4.3353,18.96746 0.8566,8.20071 1.2082,16.68679 4.2463,24.43285 2.9601,4.92876 9.2766,2.26413 13.5483,0.98493 6.5725,-2.01956 13.5817,-0.95479 20.3552,-1.33498 10.2128,-0.0932 20.5165,-0.0489 30.6466,-1.0758 2.9646,-1.4447 7.0899,-2.5941 6.5447,2.15496 5.1683,3.81182 12.2811,-3.50999 17.4823,1.3757 6.3125,5.40725 7.4161,14.43516 7.4335,22.28599 0.4531,6.93161 3.4651,13.3379 5.0503,20.02757 3.4978,7.3991 12.3805,3.46211 18.3138,2.28827 18.4287,-3.0787 37.0827,-0.0641 55.3491,2.56385 7.7357,0.44782 17.0694,1.28405 21.8447,8.24281 4.1934,6.66675 5.8324,14.44741 7.7813,21.94905 2.3892,7.30565 8.6034,12.37285 11.9203,19.21184 2.3309,3.61035 3.5462,7.85864 6.0463,11.33049 4.3102,4.71203 11.2393,3.54927 16.5611,1.61029 10.7303,-2.04388 21.6987,-2.47538 32.5717,-3.29 23.8792,-1.0902 48.307,-1.31429 71.5212,5.14647 8.2307,2.42637 16.9078,6.86562 20.0992,15.39118 2.5087,4.77186 1.0064,10.15752 1.7832,15.1605 1.3796,7.555 9.3267,9.59322 15.7905,7.75614 20.2441,-1.38803 40.6576,0.45179 60.5359,4.3497 6.6581,1.68711 14.1801,2.87384 19.1863,7.97207 4.487,4.63503 6.1418,11.09338 9.0007,16.63065 5.1993,5.10787 12.5784,1.13877 18.8224,1.88267 23.8495,-0.2673 48.23,1.1337 70.8898,9.1308 7.2115,3.5678 14.0348,9.8134 15.1357,18.1738 0.1918,7.4704 5.9434,13.512 13.7077,10.9415 12.8675,-1.7553 25.9923,-0.6075 38.7772,1.3812 9.8882,1.7876 19.7861,4.1853 29.0221,8.1794 4.6959,2.1709 8.2404,8.0778 5.1955,12.9297 -2.4037,7.9912 8.1695,9.0316 13.6462,9.2738 17.2414,3.1907 35.445,0.9168 51.9739,7.7682 8.6498,3.7254 17.7994,6.0733 26.2949,10.1315 4.2673,1.5709 4.7144,5.4595 0.2838,7.1029 -6.2262,4.5222 -2.0641,11.0518 3.3197,13.6448 4.4022,4.0754 9.0354,8.6795 15.3535,9.2289 6.8554,1.2256 13.6507,3.0926 19.7214,6.5739 8.0472,3.396 17.8149,4.6601 23.5945,11.8387 1.4978,5.6445 1.9216,12.8051 9.4219,13.1831 6.075,3.3518 11.4746,9.9955 18.9906,6.763 8.2606,-0.6983 12.6019,7.6802 11.0353,14.9199 -0.3474,22.4802 -0.041,44.9838 -0.2084,67.474 -0.076,22.0356 -0.2693,44.072 -0.7947,66.102 -2.0017,8.5545 -8.896,14.5217 -14.0064,21.2542 -5.268,4.2009 -14.4898,1.8182 -17.8128,8.7153 -4.0041,8.6914 -7.2826,17.7027 -11.6673,26.222 -4.062,8.5601 -7.454,17.8552 -14.0555,24.8311 -4.3232,5.0505 -11.8217,2.8626 -16.4041,6.6023 -6.7022,5.9538 -9.8409,14.6308 -12.0986,23.0542 -3.2795,10.5183 -8.5983,20.2776 -14.311,29.6487 -1.0143,6.8991 -9.1389,4.6168 -13.9107,3.838 -5.1291,-0.8029 -8.212,4.6728 -10.0329,8.6592 -3.3926,7.5705 -8.0541,14.4855 -12.1204,21.7047 -3.8743,6.0727 -8.0206,12.3167 -13.7782,16.7225 -6.3493,2.7829 -13.475,-2.3343 -19.6797,1.1471 -8.0139,1.5345 -12.158,9.3715 -15.4119,16.051 -4.4675,7.7706 -7.638,16.235 -11.828,24.1098 -3.9846,5.7327 -9.6718,12.3359 -17.441,11.2986 -6.7778,-1.3792 -13.9241,1.1921 -16.6318,7.9138 -5.0815,8.9995 -7.6427,19.1214 -11.5887,28.6244 -2.0189,5.3155 -4.4373,10.5748 -8.0651,15.0016 -0.4101,7.111 -10.0934,10.6234 -15.2737,5.9999 -8.6981,-3.049 -19.6499,2.0319 -21.7673,11.2837 -3.1672,6.5545 -6.2469,13.2253 -10.6107,19.0936 -1.9793,7.1108 -9.6817,13.392 -17.2579,10.9962 -7.0899,-1.7636 -14.2321,3.3359 -15.0121,10.4611 -3.757,7.6028 -8.9108,14.458 -12.2205,22.2881 -6.0174,10.2013 -18.2715,15.7177 -29.9196,14.3989 -6.3462,-0.6669 -14.1796,0.9395 -16.2553,7.8622 -3.0222,6.9167 -4.5603,14.9634 -10.6895,20.0075 -5.6173,5.0588 -8.3067,12.5512 -14.5338,17.003 -10.0284,8.3091 -23.5794,9.9215 -36.1424,9.0827 -5.948,-0.8413 -12.8358,0.4715 -15.3884,6.6494 -2.9505,6.1337 -5.3077,12.8047 -10.701,17.337 -7.2236,7.129 -17.0261,10.3797 -26.5323,13.135 -5.9271,2.0188 -12.3484,2.7486 -18.5042,1.3992 -6.8953,-0.8704 -13.5635,3.5062 -15.6739,10.0786 -4.5432,10.324 -10.9566,19.9885 -19.6992,27.2235 -5.1787,4.57 -11.9409,6.3607 -18.5641,7.3601 -7.4656,2.3533 -8.3671,10.5225 -10.795,16.7147 -3.912,9.567 -8.3358,19.7803 -16.8226,26.1455 -4.7853,2.4102 -11.189,0.7543 -15.1287,4.8848 -2.9094,6.3341 1.6441,13.3992 1.7,20.0196 4.2483,31.0493 14.0375,61.0361 18.6524,92.0287 5.3554,23.7048 13.3078,46.8439 16.5146,71.0102 7.2081,40.1135 11.052,80.8563 20.6794,120.5144 3.577,12.9277 6.9989,25.9022 9.893,38.9976 2.5685,8.5803 4.5009,17.317 6.1471,26.1112 2.163,7.5837 3.0564,15.4178 3.1069,23.2889 0.4663,16.2311 -1.3631,32.4002 -1.9782,48.6013 1.8185,6.9334 -3.2268,13.4639 -9.9309,14.7792 -5.949,3.1581 -12.2009,6.4642 -19.1197,6.3979 -8.9661,1.5296 -18.0271,2.4857 -27.1284,2.3732 -9.2846,0.7568 -18.5958,2.5447 -27.9186,1.1107 -4.033,-0.3869 -8.0697,-0.8277 -12.1258,-0.8483 -5.6381,4.0597 -12.5552,0.482 -18.3407,1.7646 -7.2336,1.8089 -13.7354,-5.239 -20.6624,-0.9987 -8.2453,2.0832 -15.8609,-5.423 -16.3708,-13.3467 -1.5321,-17.6128 1.7129,-35.2702 0.043,-52.8789 2.6021,-6.8036 3.7251,-14.6158 0.5577,-21.4333 -3.1157,-11.1541 -8.5221,-22.1068 -7.6931,-33.9734 -2.8093,-8.4937 -6.8322,-16.6704 -7.8193,-25.6719 -1.7243,-10.4024 -3.7508,-20.8153 -7.6052,-30.6636 -2.0213,-5.6411 -1.0893,-11.7749 -3.0907,-17.3481 -1.6132,-7.9274 -0.4478,-16.2887 -3.4515,-23.9618 -2.1512,-6.2831 -3.3757,-12.9773 -2.02,-19.562 1.0016,-6.2724 -2.635,-11.7819 -3.1813,-17.8582 -1.1405,-9.4419 -0.3139,-19.478 -4.8547,-28.1695 -1.804,-6.2215 -0.9044,-13.7934 -6.0256,-18.6066 -0.7056,-7.9867 -1.5391,-16.1052 -4.7111,-23.5532 -2.7495,-6.5623 -1.5818,-14.144 -4.7359,-20.4026 -3.6714,-9.2358 -3.6177,-19.3625 -5.6883,-28.9879 -2.0457,-12.4487 -3.2616,-25.0514 -5.2899,-37.4794 -2.9467,-7.8206 -6.415,-15.5684 -7.2443,-23.9812 -2.1263,-13.0481 -2.3335,-26.4127 -5.7701,-39.2344 -0.9246,-7.6009 -0.4676,-15.5433 -3.5759,-22.7123 -1.6084,-7.5065 -1.9935,-15.2255 -3.5651,-22.7333 0.147,-6.3458 -1.1953,-12.4454 -3.5724,-18.2805 -1.9475,-7.8122 -3.1073,-15.8374 -6.0419,-23.3739 -2.1653,-5.9655 1.9067,-12.4162 -1.8076,-17.989 -3.5064,-5.1205 -4.1376,-11.1856 -5.3583,-17.0789 -1.1416,-5.3014 -1.2528,-10.8055 -1.8469,-16.1235 -5.3526,-14.0022 -7.0114,-29.0168 -10.4564,-43.5287 -2.5978,-13.5681 -4.8491,-27.2251 -8.4756,-40.5667 -1.0924,-6.1314 -1.7562,-12.3769 -3.8129,-18.2845 -2.5234,-12.2304 -1.8059,-25.1114 -6.4478,-36.884 -4.8514,-18.8086 -8.5768,-37.9004 -13.9651,-56.5715 0.6456,-8.0455 -6.9576,-13.9317 -6.5394,-21.9793 -1.2472,-6.6878 -5.5188,-12.4718 -6.1015,-19.3304 -6.4322,-21.4867 -8.0459,-44.1182 -15.0289,-65.4525 -2.2236,-6.9708 -0.9553,-14.4778 -3.3953,-21.4177 -4.4222,-15.8929 -8.1931,-32.4105 -17.453,-46.3529 -5.6351,-10.8411 -8.7677,-22.7477 -12.7188,-34.2493 -2.061,-6.0653 -4.4965,-11.9639 -6.3471,-18.0973 -2.8252,-6.899 -4.3016,-14.1868 -6.1456,-21.3725 -0.9181,-5.8942 -3.4156,-11.2844 -5.8541,-16.6584 -3.0965,-7.6292 -5.7005,-15.4515 -8.9467,-23.0209 -0.7369,-9.4038 -7.6767,-16.679 -9.8883,-25.6592 -2.1877,-6.512 -6.4074,-12.247 -7.2729,-19.1793 -2.4144,-10.2909 -6.1764,-20.2495 -7.4552,-30.8009 -3.155,-21.6266 -10.6656,-42.7537 -22.6383,-61.0898 -1.6637,-6.7502 -5.8512,-12.1908 -11.5481,-15.3827 -2.9249,-6.4244 2.6679,-12.8536 0.8886,-19.4157 -1.608,-9.305 -4.9855,-18.2065 -8.0919,-27.0916 -5.3167,-13.9466 -11.1463,-27.714 -15.6905,-41.9395 -2.7244,-7.26428 -8.913,-12.07606 -14.2288,-17.34284 -5.106,-5.32755 -9.9728,-11.42544 -17.0308,-14.17356 -6.0599,-3.41299 -8.6832,-10.13914 -11.0503,-16.2686 -4.6468,-10.75448 -8.295,-21.92524 -13.3436,-32.50859 -4.9662,-4.04545 -12.1521,-6.7344 -13.8064,-13.60173 -3.304,-5.94325 -6.5469,-12.15084 -11.7283,-16.70757 1.7661,4.57903 -4.1328,2.32645 -2.7495,-1.26104 -1.0986,-6.32837 -5.5439,-12.40419 -11.0829,-15.24782 -4.2487,1.43522 -9.4169,0.53169 -8.4245,-5.16102 -0.3851,-6.18499 -6e-4,-12.84859 -3.6345,-18.21126 -2.8465,-5.54055 -4.1227,-11.68342 -5.0796,-17.77148 -1.621,-7.43258 -9.6657,-7.25055 -15.2632,-7.32596 -6.4229,-3.34656 -10.6066,-9.6097 -15.1221,-15.07194 -7.8384,-10.23343 -13.706,-21.84054 -18.0312,-33.94938 -1.6038,-6.4364 -6.683,-12.92261 -14.0976,-11.18919 -5.665,0.83682 -11.1919,2.89259 -16.8012,0.86672 -5.8524,-0.72936 -12.6589,0.20296 -17.2765,-4.25011 -5.0317,-3.24483 -11.7148,-4.93461 -14.3545,-10.87985 -4.8539,-5.89251 -10.5282,-11.59942 -12.345,-19.28492 -1.7095,-4.9946 -4.7577,-11.70723 -11.0694,-11.18418 -5.7938,1.05919 -11.6232,2.20355 -17.536,1.79952 -6.1408,0.42419 -13.128,0.19817 -17.7336,-4.48924 -5.986,-4.37883 -13.6783,-4.01552 -20.6252,-5.21869 -6.1109,-1.57411 -11.2221,-6.245 -13.3559,-12.16148 -5.4526,-5.99076 -12.5238,1.98534 -18.4606,3.10331 -6.3307,2.31601 -12.8995,0.62805 -19.319,-0.004 -27.9661,-2.0587 -55.9473,1.69694 -83.9313,0.51069 -7.2254,-0.38979 -15.1189,1.98538 -21.6393,-2.19096 -5.7613,-4.22805 -12.6549,-1.84149 -19.1256,-1.81924 -17.2933,0.7484 -35.3132,-0.97004 -51.7904,5.39646 -7.3655,3.56819 -15.2202,6.29216 -23.46,6.64535 -12.26268,1.30296 -24.61146,0.77277 -36.9149,1.17483 -5.29086,-3.36019 -11.46648,-2.79941 -17.08647,-1.18173 -7.68143,0.33584 -15.31634,-0.95707 -22.80274,-2.54629 -7.40772,-4.41949 -15.27407,1.24941 -22.74602,2.34109 -9.97092,1.84764 -20.16798,0.98031 -30.21614,2.0047 -7.1009,4.09386 2.48846,13.96932 -4.51399,18.14048 -5.67684,3.24645 -11.85332,5.54738 -17.66309,8.55732 -8.66944,3.38477 -17.23136,7.34737 -26.55776,8.57357 -10.30033,1.63234 -20.76628,2.03097 -31.16937,2.26356 -6.87555,-0.22598 -14.14452,-2.38672 -20.6903,0.68251 -19.42749,7.10002 -40.41776,6.14718 -60.7524,5.99011 -6.17179,-2.2262 -16.33448,4.52318 -11.94813,11.16637 2.60138,3.57949 0.48784,10.90444 -4.8399,8.30342 -4.47308,4.50282 -10.84945,5.6481 -16.91031,5.61529 -7.39367,0.78611 -14.8173,1.5898 -22.0477,3.33434 -9.00696,0.87493 -18.06219,0.3473 -27.0918,0.37588 -0.23599,7.29849 0.81109,14.89214 -1.86696,21.88015 -5.45639,2.58851 -9.9652,10.37599 -5.38052,15.66975 3.00779,1.80736 4.32319,8.16316 -0.43781,4.59678 -7.46862,0.137 -9.36413,9.04708 -14.51074,12.92108 -5.76051,3.34827 -12.79748,2.27258 -19.04851,4.16568 -5.82488,1.19217 -11.62048,2.59878 -17.23194,4.58131 -4.72291,6.205 -5.83895,14.17571 -8.99934,21.13892 -5.28712,18.625 -11.96632,37.44223 -11.2269,57.06999 3.12091,7.35496 -5.3976,10.54242 -7.33971,16.47826 0.10178,4.61647 -5.33043,6.34777 -8.35547,8.95429 -5.20735,3.14821 -6.77544,9.30324 -9.324,14.41166 -3.86134,9.86077 -7.86795,19.65524 -12.1151,29.35566 -5.32705,12.4965 -9.15907,25.5389 -13.58132,38.3584 -10.01259,27.2452 -21.91025,53.829 -29.93067,81.7779 -6.68525,22.601 -10.71971,45.8919 -17.63117,68.4358 -11.47269,40.4996 -24.34994,80.6897 -32.68664,121.9972 -3.09482,15.5904 -4.75677,31.5226 -9.9428,46.6307 -2.24245,7.3532 -3.47328,14.9965 -6.10528,22.2566 -4.29099,12.756 -6.02787,26.1607 -9.74853,39.0781 -4.37638,17.3179 -10.72148,34.0772 -14.45343,51.5663 -2.68891,12.0565 -5.82769,24.0087 -8.71701,36.0116 -2.48138,11.6642 -2.2385,23.6927 -4.15849,35.4124 -2.66065,11.3293 -7.16945,22.1868 -8.80682,33.7624 -6.64073,32.9883 -13.74624,65.8819 -20.8251,98.7765 -2.61324,14.0051 -2.75874,28.3052 -5.08423,42.3514 -2.40997,17.5055 -3.94487,35.1098 -6.19294,52.6349 -1.49752,12.4939 -1.97012,25.0869 -4.08139,37.5052 -6.16218,46.2039 -10.42035,92.6323 -15.43496,138.9677 -1.90813,18.6802 -2.85975,37.4422 -4.01786,56.1719 -2.50511,21.5605 -8.04686,42.7754 -8.27673,64.5805 -0.9481,19.4588 -2.39554,38.8897 -4.14412,58.2889 -2.13376,35.6672 -3.05563,71.3978 -5.29038,107.0585 -0.46773,13.6899 0.0642,27.4186 -0.33434,41.0907 -1.53299,6.7532 -4.99006,13.3275 -3.86074,20.4412 0.0663,9.938 -0.4551,20.1499 -4.22706,29.4711 -4.52055,1.9058 -2.57063,13.4311 -7.29572,11.7529 0.0732,-6.8276 6.47953,-12.4403 4.63965,-19.4628 -5.81542,-5.2833 -7.69257,5.7095 -7.73041,9.8451 1.00818,5.1866 -5.15653,14.0354 -8.55604,6.1576 -0.0656,-6.0028 3.14914,-13.7834 -4.66448,-16.5059 -1.17406,-3.0815 3.9405,-11.0559 -3.24871,-9.9726 -5.14979,4.2045 -10.38484,8.5019 -16.07652,12.0449 -1.692,2.9375 2.02625,10.2811 0.21772,10.6938 -1.1056,-4.435 -8.81467,-3.9177 -4.79446,1.2536 2.37623,7.7692 -6.09296,14.0818 -13.15801,11.0193 -7.51241,-1.3507 -10.01866,-9.5803 -17.01736,-11.4 -2.49072,-2.0185 -9.67964,-8.2739 -8.0677,-0.9857 1.56335,2.4461 2.74934,7.4858 -1.93584,5.2148 -6.14918,2.5154 -3.3421,-5.0601 -3.79194,-7.7645 -5.05954,-4.3238 -11.41426,2.1414 -16.79367,3.2596 -5.75084,2.086 -0.38777,7.6617 -2.46308,11.8226 -1.24501,5.6061 -2.51262,11.2575 -2.05129,17.0406 -0.1616,8.7556 -0.30005,17.5815 -2.01074,26.1997 -0.4623,1.3517 -5.7175,3.6129 -4.09929,0.3378 z M 1926.1257,1690.4471 c 8.7016,-4.0531 18.4665,-5.2535 27.9832,-4.8931 5.3687,-2.2562 11.2823,3.5914 16.2826,-0.074 4.0528,-5.7196 1.9714,-13.5778 5.5063,-19.6011 5.0308,-6.6523 0.3258,-14.9403 1.4687,-22.3344 3.6702,-5.9891 12.0252,-1.2063 17.6189,-3.5512 11.0505,-1.8797 22.207,-3.2112 33.4345,-2.9194 5.764,-0.048 11.5287,-0.01 17.2924,-0.099 6.5641,-4.673 4.8238,-13.5525 6.9797,-20.321 4.2343,-6.9413 5.0708,-15.1947 5.6794,-23.11 1.489,-5.7405 8.4273,-4.3378 12.9121,-4.4307 11.2704,-1.2371 23.0681,-0.3249 33.8992,-4.0349 5.923,-4.2965 3.7636,-12.3736 5.5368,-18.4409 2.297,-5.7685 7.4108,-11.1694 5.9185,-17.8236 -0.361,-6.9031 6.4556,-13.308 13.2542,-10.4632 6.9792,0.4838 13.793,-1.5025 20.7165,-1.9532 7.3432,-4.1622 5.5022,-15.2736 13.1134,-19.1736 5.2341,-4.3289 -1.2156,-12.7772 4.6417,-16.7219 6.9715,-3.2508 14.8814,-0.7011 22.2422,-1.933 5.1523,-0.9287 12.646,-0.3099 14.792,-6.2287 2.7114,-5.9614 2.9768,-12.7975 6.3871,-18.4849 2.8615,-6.2521 6.4123,-12.6697 5.7391,-19.7676 1.6285,-5.8732 9.0237,-6.6748 14.1398,-5.91 7.6883,-0.1128 16.0582,0.9023 23.0214,-3.009 6.3876,-5.3328 6.9831,-14.6103 12.9341,-20.3362 3.9583,-6.2944 -0.1416,-15.64 6.5088,-20.5893 4.7879,-3.46 11.0885,-1.9513 16.6178,-2.3492 6.0478,-0.032 12.7183,0.1823 17.9819,-3.1863 5.1766,-5.3075 5.2887,-13.3069 8.9593,-19.4839 1.3231,-6.5983 7.2827,-12.8701 6.3878,-19.3777 -4.3501,-4.6828 -11.7942,-0.7007 -17.0566,-3.8456 -5.7533,-2.6227 -13.0951,-3.6017 -17.2642,2.2046 -9.8745,7.6783 -22.5371,11.471 -35.0068,10.8799 -11.3999,-0.3159 -23.1884,-1.2046 -34.0625,3.0172 -14.9612,5.6245 -31.7962,5.6209 -46.9272,0.6154 -7.8754,-0.3308 -15.0403,4.1625 -22.9384,3.8042 -5.6808,0.5415 -12.8392,-0.7093 -16.8759,4.3058 -2.3223,4.0695 -1.7632,9.1789 -4.0757,13.3383 -3.4243,9.1282 -13.3052,13.1038 -22.2469,14.4737 -8.1628,1.6541 -16.5943,1.8812 -24.6299,4.1167 -6.0718,4.163 -6.2586,12.8778 -12.3863,17.0503 -9.0965,8.6174 -22.3362,9.181 -34.103,10.6554 -11.997,1.1757 -24.1406,0.6002 -36.0958,1.9614 -6.8147,2.3666 -12.5522,7.8518 -20.1047,7.9096 -24.3925,3.9961 -49.2203,2.1566 -73.7721,4.2641 -14.9211,0.6922 -30.3548,1.1075 -44.6118,-4.0657 -5.0801,-0.3178 -11.625,-11.2311 -15.1932,-4.1111 0.724,6.3474 4.6285,11.7447 6.084,17.9204 9.5575,28.0587 14.3653,57.5073 24.4553,85.4015 7.7487,28.5709 10.0917,58.2705 17.6132,86.8979 3.8502,16.4455 7.6352,32.9516 9.6604,49.7402 1.5641,7.5667 10.9876,8.4591 16.918,5.7371 1.577,-0.499 3.1247,-1.0839 4.6707,-1.67 z m -234.1951,-275.7225 c -2.4182,1.4361 1.9405,2.3711 0,0 z m 240.454,-97.0993 c 11.6943,-5.3468 25.304,-0.3987 36.9753,-5.8335 6.4526,-0.4466 13.6841,3.8539 19.4702,-0.6674 7.4006,-2.9366 6.9493,-12.8812 13.0849,-16.6538 5.2316,-2.5088 4.7473,-7.971 3.0988,-12.2813 0.5302,-6.2889 5.3131,-11.682 11.1011,-13.8609 4.7721,0.961 1.2735,12.7745 8.2089,7.8056 4.8377,-4.333 -3.1043,-14.8979 5.9126,-16.2444 5.7721,-0.8262 13.0405,-5.0904 9.3203,-11.5006 1.9696,-5.8457 10.3112,-4.8917 12.7393,-10.5409 4.752,-5.6554 12.1262,-8.2799 19.2944,-8.9363 6.3634,-1.8323 9.1497,-10.2382 16.3657,-10.0046 3.7971,-4.8788 9.2663,-9.0714 11.4945,-14.8347 -1.2076,-2.6136 -2.9999,-6.2477 1.6945,-6.1536 6.7041,-1.2754 11.3857,-6.7215 17.3963,-9.2124 7.6645,-2.1657 15.6595,1.8842 23.2278,-0.8763 13.8668,-3.0969 28.2348,-2.4665 42.3238,-1.6286 9.0253,0.9073 18.228,1.0773 27.0332,3.3828 9.6412,3.0065 14.0643,12.7055 19.8911,20.039 6.3153,4.911 14.4106,1.2265 21.3469,0.1167 9.9753,-2.1633 19.627,-5.7815 28.6008,-10.6403 7.0678,-0.3785 9.312,-13.41 1.945,-14.6919 -6.5356,-2.8326 1.7345,-7.1126 3.5805,-10.4824 3.1452,-3.7391 6.8466,-7.439 11.717,-8.7197 3.961,-2.8551 9.0371,-5.5148 10.3507,-10.5905 -0.083,-6.0355 -7.6773,-5.7012 -12.0331,-6.0738 -5.1157,-0.052 -10.534,-0.6753 -14.6156,-4.0754 -6.3977,-1.6088 -10.9731,-6.614 -16.8494,-8.6922 -6.1859,0.6475 -11.7838,-2.2438 -12.6928,-8.6528 -2.0348,-5.9516 -8.3595,-8.6047 -14.2451,-7.5181 -14.0896,0.2781 -29.0974,0.4647 -41.7153,-6.7586 -8.3473,-4.2646 -17.8267,-6.4195 -27.1844,-6.3723 -4.171,-4.7983 -9.231,-11.1149 -16.3798,-8.9927 -10.6092,-0.6158 -21.4205,0.3574 -31.8259,-2.2764 -6.7639,-6.4274 -16.7374,-1.9686 -24.7045,-4.9992 -7.043,-2.2782 -14.0152,-5.4506 -21.5726,-5.2966 -7.1165,-0.9706 -10.0173,-9.7043 -17.0972,-10.5683 -3.6024,-0.06 -6.2141,8.806 -6.7691,1.8941 -0.882,-6.8531 -8.3409,-9.0007 -14.2734,-8.1302 -8.1888,0.6958 -16.3381,-0.7752 -24.4845,-1.4967 -11.8081,-1.3087 -23.5276,-4.8538 -33.2207,-11.9091 -8.1801,-5.332 -15.9274,-11.882 -20.7588,-20.4789 -4.4651,-4.8393 -12.0327,-1.2377 -15.0683,3.4395 -7.0742,5.8247 -8.5476,15.8652 -6.979,24.4286 -0.1133,7.3778 -5.7456,13.698 -4.5632,21.2463 0.2797,22.9142 0.9513,45.9141 4.1222,68.6329 1.3513,6.0089 1.6228,12.1655 0.928,18.2772 -0.058,5.0994 -0.1261,10.0226 -2.9663,14.4261 -1.3914,4.2179 -6.124,10.9364 -10.788,6.6946 -4.582,-4.3631 -3.8987,-11.5897 -8.0762,-16.2184 0.4417,-3.9871 0.5633,-13.0592 -5.8701,-9.1211 -5.5827,-1.6566 -1.7699,9.7505 -6.8145,3.9757 -3.8834,-5.5318 1.6837,-11.9162 -0.2068,-17.9456 -1.7315,-6.5687 -4.0923,-12.678 -0.7309,-19.2396 0.8237,-5.2203 -8.0065,-6.4302 -4.2565,-12.3353 3.4767,-6.5696 -4.2257,-11.8493 -1.7831,-18.8651 0.5239,-7.3802 -0.7064,-14.732 -1.041,-22.1079 -0.1333,-5.8023 -1.8495,-11.8314 -1.2807,-17.4581 0.8542,-4.7766 -2.6272,-9.7388 -4.5921,-13.6297 -5.0926,-1.2325 -6.4043,-5.6519 -5.9253,-10.332 -0.8024,-5.6309 -2.7695,-11.6553 -7.1263,-15.4954 -5.7854,-3.9529 -12.645,-6.141 -19.419,-7.6018 -10.0406,-0.1031 -19.4278,-4.2015 -27.8384,-9.3853 -4.9309,-3.1945 -10.5175,-5.3297 -15.2033,-8.86504 -5.2707,-4.66278 -7.2909,-11.79734 -12.7489,-16.33364 -4.1916,-4.72487 -7.6045,-10.60131 -14.6336,-10.9557 -4.5285,-1.89202 -8.8783,-4.2646 -13.7617,-5.29949 -5.8187,-1.34846 -11.2726,-3.74126 -16.7146,-6.1147 -5.8951,-2.18192 -12.2456,-1.76048 -18.3863,-1.87897 -6.2195,-2.39837 -11.484,-6.88564 -18.3675,-7.41251 -7.2103,-2.97236 -11.9321,-10.81095 -20.1416,-11.53142 -6.9908,-2.7696 -6.6717,6.69778 -6.513,11.13882 -0.3609,11.7169 -1.7006,23.72883 1.0712,35.24731 3.9679,14.01295 9.7872,27.45714 16.8176,40.18124 3.6736,10.2809 3.5027,21.5452 7.8415,31.6457 5.4287,14.828 14.5085,27.9662 20.2183,42.6777 6.0324,13.2744 10.8588,27.2027 12.7343,41.7168 3.8092,22.9182 9.0769,46.1441 21.0172,66.3441 2.5078,4.9512 6.5583,8.5293 10.3038,12.4301 3.4359,3.948 3.3055,9.5408 1.3704,14.0214 0.4238,9.0314 8.643,16.7958 17.6296,17.1657 6.9891,0.781 15.2015,0.013 20.5176,5.5606 -1.8535,2.6203 -6.892,6.3246 -1.2677,8.177 7.3755,6.7385 12.9595,15.5909 14.6068,25.5432 1.1603,5.2955 1.801,10.6908 3.015,15.9756 6.1747,4.2223 13.8928,2.0134 20.8048,1.9873 7.4626,-3.4691 15.7013,-4.9778 23.9035,-4.5351 6.2137,-0.1339 12.4386,-0.115 18.6389,0.3578 3.1299,3.634 8.0781,9.27 11.9508,6.5671 -0.54,5.8428 4.9785,7.5087 9.3605,8.9303 3.3117,1.4615 7.6686,2.2007 10.4605,-0.7196 z m -12.7847,-159.8885 c 3.7218,-6.3113 -0.7365,-13.3546 -0.03,-20.0238 -1.9288,-21.3465 -3.1521,-42.7509 -4.0264,-64.1646 -2.0389,-6.6889 -10.5544,-0.2077 -6.619,4.5607 0.5371,22.7449 2.8879,45.3893 4.3533,68.0815 -1.3897,4.1609 -4.0112,13.5796 2.878,13.6269 1.4532,-0.07 2.5613,-1.0089 3.444,-2.0807 z M 1456.3531,874.38664 c -2.2443,-4.33628 -3.9927,3.40799 0,0 z m -3.7388,-8.41203 c -2.3359,-4.19596 0.2896,6.50058 0.115,0.64321 -0.038,-0.2144 -0.077,-0.42881 -0.115,-0.64321 z M 429.68645,820.30794 c -3.09457,-5.53952 -2.27167,4.59028 0,0 z M 1245.6864,2041.5696 c -15.6586,-3.9362 -32.3831,-1.0147 -47.7043,-6.7118 -7.3984,-2.2827 -14.8577,-4.8106 -22.6589,-5.1576 -6.2895,-3.1149 -12.8274,-5.8665 -18.5392,-10.0074 -2.45,-5.9014 -0.089,-12.6218 -2.7777,-18.4932 -2.9246,-6.2653 3.8663,-7.6931 6.6131,-11.4483 3.0661,-5.9351 1.1501,-12.8477 2.4261,-19.1818 0.6993,-7.3207 -1.948,-14.3708 -2.7203,-21.5242 0.035,-6.6884 -3.5647,-14.3145 -10.7009,-15.6854 -5.9769,-3.9236 -1.0379,-11.9705 3.9128,-14.3199 3.0762,-3.2389 4.4567,-8.2705 9.6931,-5.8961 5.5567,-0.05 10.677,-3.1662 14.285,-7.2296 6.5548,-0.4362 13.0663,-2.3447 19.3893,0.3497 6.5145,0.414 15.7121,-3.9309 19.4428,3.8098 2.104,4.8864 6.4254,3.2388 9.6367,1.0165 5.9456,0.8534 11.9773,4.2547 17.5512,-0.081 6.0049,-2.8656 12.1529,-0.5173 17.8953,1.5243 5.2329,1.5706 10.7041,3.429 16.2328,2.4245 6.1134,3.9945 13.7,3.2609 20.6435,3.8265 5.2143,2.5097 3.6507,9.0779 3.4112,13.7147 0.3035,5.3674 0.9873,10.7218 0.8214,16.1489 0.25,16.4107 -0.79,32.8127 -2.1403,49.1521 0.4656,8.2402 4.6239,16.2143 2.606,24.5689 -1.1832,8.0707 -4.7878,17.6209 -13.3458,20.1989 -7.0592,1.9156 -14.475,1.0995 -21.6971,1.5834 -7.4873,-0.013 -15.023,-0.6416 -22.2758,-2.5821 z m -833.33329,-51.8495 c -7.70435,-2.2746 -16.88715,-1.2937 -22.98793,-7.465 -7.28813,-6.2199 -9.19049,-16.0432 -10.9826,-24.9601 -3.34229,-12.2732 -12.72094,-22.7371 -12.75865,-35.8856 1.44346,-6.3292 9.10362,-7.0229 13.36534,-10.7992 6.5058,-5.2108 15.88267,-1.6872 22.41623,-6.6907 4.56331,-6.5882 13.76602,0.5637 18.84496,-5.1489 6.68687,-3.4213 14.48015,-2.8318 21.56798,-4.9189 6.99561,-1.6839 13.88503,-4.0582 21.13973,-4.2901 5.74636,-0.1135 10.72911,-5.0475 16.32895,-3.3628 5.72734,0.5442 12.92489,-2.0193 17.24468,3.0936 4.98028,4.2199 12.86967,5.1269 16.20888,11.3909 6.13845,4.8715 4.98178,13.393 6.98399,20.1219 2.90145,5.3736 8.59618,9.0325 9.82999,15.3604 1.8833,7.1245 1.43182,14.6241 1.303,21.913 0.0733,6.6646 -3.85934,13.5421 -11.07971,14.138 -6.34638,0.5951 -11.52358,4.2668 -17.36406,6.3334 -10.91336,3.4403 -22.50182,3.4821 -33.66829,5.7237 -17.94693,2.7929 -35.96082,6.0098 -54.17181,6.0882 -0.76712,-0.094 -1.52974,-0.2876 -2.22068,-0.6418 z m 1192.83749,-21.019 c -15.6346,-4.725 -32.3377,-4.4711 -47.8253,-9.818 -7.4458,-1.745 -15.0666,-2.826 -22.3174,-5.3025 -9.2146,-2.1278 -17.8853,-6.113 -27.2044,-7.8475 -10.1165,-2.6241 -20.19,-6.4347 -28.361,-13.1177 -6.7487,0.9407 -13.2837,-6.0852 -9.4325,-12.1155 -1.8031,-4.253 2.1582,-7.6535 4.8276,-8.8063 0.2004,-5.7392 0.7085,-11.4292 2.3358,-16.9503 2.4363,-8.8863 7.4854,-17.1114 7.6119,-26.561 -0.4152,-6.7271 3.5118,-12.1453 6.1825,-17.9177 2.9638,-7.2218 -1.4731,-15.645 3.1105,-22.484 3.871,-6.083 11.9388,-4.7948 17.816,-3.0985 12.482,2.6307 24.6516,6.7504 37.3222,8.465 10.8413,0.2574 21.1121,4.4558 31.9162,5.0913 8.2975,1.5531 15.9991,5.4649 24.431,6.4233 6.0694,3.0354 11.5583,7.5871 18.8436,6.9545 5.8312,0.7713 13.4851,1.2576 16.2608,7.3252 2.7773,6.5737 -0.72,13.4155 -2.1945,19.8235 -2.284,6.2893 -8.6027,9.3894 -13.504,13.2894 -5.0117,5.7053 3.9602,9.5463 5.2083,14.3756 0.78,6.1973 -4.4571,10.8908 -5.2064,16.8031 -4.3622,12.3083 -5.7626,25.4658 -9.9832,37.7828 -2.006,3.8128 -5.8323,6.3543 -9.8377,7.6853 z m -923.9333,-35.5883 c -5.8304,-4.2638 -13.87366,-2.0219 -19.83148,-5.9913 -5.37862,-2.3802 -12.76769,-4.2142 -14.14273,-10.8754 0.15523,-7.6183 -6.65952,-14.2178 -4.16801,-21.9467 1.63102,-9.5227 2.23445,-19.5252 -0.6606,-28.8738 -1.00755,-6.5297 7.95634,-6.5908 9.83917,-1.675 6.71561,2.4515 8.75903,-7.3279 14.98226,-7.4822 7.24658,-2.2052 14.51269,1.7043 21.73818,0.024 9.53771,-1.9715 18.37484,-6.9561 28.30149,-7.0686 20.47746,-1.9944 41.15868,-3.3754 61.7012,-1.6638 6.47944,0.8156 14.67397,3.1826 16.5344,10.3192 1.6557,7.5046 0.90526,15.2723 1.213,22.8951 -0.1609,13.3752 -1.08209,26.8054 -3.91528,39.9041 -3.79274,6.3728 -12.0843,5.4415 -18.30767,7.2109 -7.2396,2.4426 -15.0786,2.7668 -22.06255,6.0218 -6.39448,1.1646 -12.68849,-2.4897 -19.11667,-0.7099 -8.92066,1.4612 -18.1352,1.6388 -26.88494,-0.9152 -7.90362,-2.831 -15.09443,4.8002 -22.94797,2.2763 -0.78461,-0.3953 -1.81831,-0.6121 -2.2718,-1.4499 z m 762.4292,-150.153 c -10.4858,-1.9585 -21.3839,-1.0818 -31.6924,-4.0531 -12.4818,-1.0151 -24.416,-5.0909 -36.6351,-7.5562 -11.1961,-2.9184 -22.5178,-5.2891 -33.8195,-7.7286 -3.6905,-1.0659 -8.0563,-1.387 -4.7369,-5.5074 0.5916,-6.0959 -5.4372,-11.1193 -3.5617,-17.3301 1.6684,-6.83 3.9107,-13.5967 3.8412,-20.705 0.7925,-9.1531 -0.7663,-18.2617 -1.6362,-27.323 -0.01,-6.3579 2.7319,-12.6292 7.5145,-16.8034 4.3079,-6.1953 12.5591,-4.699 18.8263,-3.3285 7.1999,0.7694 14.2319,2.6199 21.1734,4.5452 19.325,2.2626 38.7154,-3.1223 58.0201,-0.1289 6.8402,0.4666 13.5593,1.9287 20.0756,3.9605 8.999,1.4589 19.5184,-0.5392 26.8581,6.1353 5.6749,5.8929 3.7431,14.7266 3.7486,22.1068 -0.9024,16.8197 -5.6583,33.3665 -4.283,50.3089 0.059,6.8143 -0.1133,14.3616 -4.2409,20.077 -5.4666,4.633 -13.0548,2.4555 -19.5229,3.7606 -6.6384,0.3445 -13.3293,0.5154 -19.9292,-0.4301 z M 189.94638,1754.308 c 0.47322,-4.4191 0.79898,4.764 0,0 z m 0.75827,-10 c -3.25421,-1.9655 1.24643,-9.9821 1.5073,-3.2996 0.13304,1.0674 -0.41031,7.7471 -1.5073,3.2996 z m 275.28248,-13.1719 c -6.04211,-0.4159 -11.29803,-9.8646 -17.30107,-4.7538 -6.3741,3.8914 -7.90341,-4.013 -7.71019,-8.6948 -1.15186,-9.5006 -0.68903,-19.1091 -1.7686,-28.6 -2.04491,-5.4737 6.99081,-12.9822 -0.76212,-15.2635 -2.04527,-5.7217 0.13375,-12.7647 -0.42689,-18.9915 0.2244,-6.5655 -1.21584,-13.0286 -3.44048,-19.1361 -1.19501,-7.6583 1.22618,-16.3489 7.36751,-21.3295 3.89742,-2.962 9.2127,-0.7753 10.98182,2.9339 3.96354,1.0965 4.29416,-5.1866 4.09224,-5.7144 6.62734,0.1515 12.42593,-4.5212 19.11321,-3.779 11.00299,-1.7998 22.16521,-2.5097 33.24393,-3.3548 9.43679,-2.4563 19.00269,-4.2783 28.62477,-5.8332 6.68578,-3.0725 12.80988,3.5309 19.52172,1.2905 5.7383,-5.05 13.77414,-0.1981 20.34318,-2.8895 6.75756,0.7458 2.31007,11.2032 3.87905,16.1129 0.28585,12.9802 2.40078,25.8584 2.53879,38.8404 1.97366,4.7786 1.297,10.7163 4.52972,14.7121 6.05216,4.06 3.1062,11.962 5.46018,18.0161 1.45699,9.1117 2.32681,18.3444 2.07927,27.5788 -5.64328,4.1128 -12.77059,7.0787 -16.00224,13.6853 -4.99549,4.91 -12.19043,1.4465 -18.20275,1.6231 -19.03326,1.7651 -38.06055,3.9736 -57.20108,4.1314 -10.81482,0.3577 -21.64503,1.2828 -32.45825,1.0721 -2.21762,-0.3216 -4.39741,-0.8886 -6.50172,-1.6565 z M 1329.6864,1576.134 c -7.5974,-1.9644 -15.829,1.1997 -23.1614,-2.1869 -8.5643,2.6521 -17.4499,-0.092 -26.141,-0.4073 -16.1916,-2.3047 -32.5336,-3.6003 -48.569,-6.9264 -11.5848,-2.6034 -23.769,-1.2407 -35.2066,-4.78 -12.0815,-2.057 -24.483,-1.4003 -36.5623,-2.9882 -6.0756,-2.7476 -11.6921,-6.8579 -18.4235,-7.8177 -6.0436,-3.052 -4.0494,-12.7437 -10.9962,-14.7862 -9.094,-1.1543 -18.3674,-0.5499 -27.3731,-2.4542 -3.99,2.0437 -10.5294,3.5683 -9.964,-3.1194 -4.1709,-6.6456 -1.2104,-13.9973 1.9699,-20.2091 1.9331,-6.1244 1.7043,-13.2384 -0.8635,-18.9478 -3.8759,-4.9435 -10.5405,-3.952 -15.9888,-5.3924 -12.03,-2.0968 -24.5419,-2.6669 -35.9525,-7.3377 -6.3314,-4.3722 -0.9385,-12.9647 -4.4576,-18.8305 -1.5068,-6.9889 2.3751,-14.4844 -1.2559,-21.1385 -1.0249,-3.4658 -0.6699,-14.8034 -6.4352,-10.4338 -4.0052,5.1092 -5.5196,11.649 -8.6084,17.3025 -2.7937,6.6905 -7.7425,13.3361 -15.3619,14.5852 -5.9162,1.5249 -13.86909,1.857 -16.52166,8.4327 -3.04939,6.3803 -3.87376,13.5752 -7.12286,19.889 -3.08952,7.4456 -5.82324,15.2328 -10.43089,21.8807 -6.92033,6.5691 -17.154,3.8548 -25.60016,6.066 -10.04427,2.1443 -20.27707,6.0111 -27.38922,13.6689 -6.1593,4.5897 -14.30945,3.1094 -21.14709,5.8738 -6.11215,1.9244 -12.47379,2.7855 -18.84098,3.1366 -6.02787,0.9014 -11.95719,2.3535 -17.82942,3.9671 -10.22086,-2.2632 -20.54853,1.0464 -30.82097,-0.1178 -16.16115,-0.8953 -32.33995,-1.4122 -48.45239,-3.0442 -11.77306,-1.1783 -23.6131,-1.5315 -35.39232,-2.5095 -7.90584,-1.1237 -16.18411,-1.8212 -23.44742,-5.3253 -5.06022,-3.9294 -11.73046,-8.4762 -12.59875,-15.2251 -0.40951,-4.6954 0.48796,-11.3701 -5.01417,-13.401 -6.665,-0.8516 -13.14541,-2.7367 -19.6034,-4.5873 -7.40342,-1.5315 -14.93812,-5.8793 -18.29799,-12.8478 -2.20934,-6.9716 1.75066,-14.7273 -1.94361,-21.3858 -6.53425,-4.2932 -14.82986,-3.2353 -22.03907,-5.6798 -8.2141,-2.0996 -16.56352,-8.0388 -17.43892,-17.1 -0.78259,-6.4372 3.08095,-13.7998 -1.53043,-19.4569 -4.31966,-5.251 -12.85539,-5.5931 -18.00868,-1.3935 -4.38254,-3.4737 -10.27785,-6.6349 -15.27368,-4.4611 -4.20994,-5.4196 7.6713,-6.883 4.54367,-12.7499 -1.25915,-6.4914 -4.26829,-15.3247 2.41036,-19.928 6.10341,-2.489 9.48572,-9.1785 4.48308,-14.5723 -3.78279,-5.0175 -2.44709,-10.72 1.74076,-14.5594 1.18626,-6.4342 -4.45906,-11.3743 -5.4487,-17.5105 -6.15584,-18.0863 -9.27623,-36.9786 -12.59983,-55.7287 -3.32703,-16.0505 -4.25967,-32.4731 -4.04059,-48.8312 -0.0902,-9.9077 -0.92092,-19.82 -1.22147,-29.6982 1.29377,-7.8759 2.0337,-15.8647 1.38514,-23.8364 0.2217,-15.689 3.40911,-31.2007 2.97388,-46.9227 0.36549,-23.8548 -2.01798,-47.6467 -2.20699,-71.4836 0.28849,-13.5156 3.40879,-26.7155 5.99473,-39.9121 1.97219,-12.0204 3.54292,-24.40847 9.09944,-35.41982 5.65616,-4.45414 2.17736,-13.988 8.79431,-17.70826 7.87271,-2.37569 13.28787,-10.49176 22.0371,-10.36689 7.97219,-0.43744 15.97694,-0.15919 23.91049,-1.24782 16.5499,-1.4744 33.11375,0.45968 49.63421,1.41706 11.44422,1.24469 23.37639,1.12516 34.15145,5.65739 6.0764,2.46448 10.74023,8.06435 11.16027,14.75161 0.88195,7.05886 3.59943,14.34358 -0.25534,21.09552 -2.90578,7.94451 -3.89823,16.43651 -5.92273,24.63601 -4.35877,20.082 -6.98295,40.7186 -5.06387,61.2717 1.06693,14.006 3.60025,27.9767 2.46878,42.0661 -1.16408,23.1469 -5.03986,46.1343 -4.6192,69.3618 -0.36316,27.0343 -1.23212,54.3036 3.04108,81.0995 5.18889,29.9978 16.39201,58.8508 31.78319,85.0613 15.09958,24.6147 36.01398,45.338 59.45132,62.0303 5.25586,2.9373 10.55313,-1.8676 13.35784,-6.0145 2.86183,-4.2837 6.59686,-8.005 8.50668,-12.9106 1.51033,-4.5276 5.20426,-8.2262 5.73488,-12.9815 -2.12966,-6.7019 3.41262,-10.0644 7.98426,-13.4669 5.54304,-4.4258 10.3743,-10.303 11.37556,-17.5437 1.1744,-6.4321 4.86002,-11.7927 8.49606,-17.0376 8.93013,-14.8575 14.62221,-31.3271 21.3491,-47.2262 9.98128,-26.7895 18.43902,-54.2901 23.14951,-82.5286 1.2501,-9.1144 2.16143,-18.2664 3.61185,-27.3454 0.70641,-8.7632 0.85908,-17.6062 2.54183,-26.2494 0.7638,-13.3899 -0.55191,-26.9127 1.72169,-40.1996 -0.95117,-6.3865 -3.64507,-12.4636 -3.14776,-19.0264 -1.96764,-17.5601 -1.66654,-35.3312 0.61374,-52.8417 0.63033,-8.5673 0.81514,-17.2847 -1.01273,-25.7018 0.32447,-7.4147 1.31002,-14.8356 0.56063,-22.274 -0.36523,-6.6024 -2.55823,-12.98046 -2.0002,-19.64749 1.07888,-7.13726 -7.68803,-12.86965 -2.52868,-19.7872 4.69557,-3.78295 1.0963,-11.41032 6.63283,-13.875 5.78429,-0.43199 10.92712,-5.90917 17.28897,-3.66788 3.9249,0.10945 7.6126,-2.74184 11.52543,-3.59726 5.47105,-1.82792 11.35603,-1.41889 16.82444,-3.32847 7.11617,-1.89981 15.25426,-0.0734 21.54881,-4.75911 6.6851,-3.78704 14.5474,0.80605 21.6322,-1.26974 14.8831,-1.91908 30.3339,-2.09469 44.8389,2.14573 5.589,1.62577 9.0703,6.93504 9.3037,12.59031 0.9191,8.43095 0.1708,16.94063 0.9277,25.38861 1.2952,34.857 2.7205,69.7185 4.523,104.5485 2.7623,20.167 9.2976,39.5354 14.2968,59.2005 6.377,20.9372 13.2008,41.9897 14.8845,63.945 3.7554,24.617 8.8392,49.0252 14.5339,73.2593 5.771,22.518 15.796,43.7303 28.2417,63.2994 5.4972,9.2816 11.7316,18.0948 18.2254,26.6906 7.5755,12.0065 18.6784,21.0806 28.1478,31.4924 3.9206,4.0452 7.4425,9.3335 13.4867,10.1822 5.4998,1.0266 11.1625,1.3005 16.4425,3.2726 16.6745,3.606 33.7614,0.8137 50.4169,-1.3447 9.0023,-0.1981 18.1539,0.341 26.9769,-1.6268 7.0304,0.2902 14.2823,-1.8371 20.0127,-5.8697 5.4437,-4.8217 10.0426,-12.4111 7.5497,-19.8601 -0.8337,-6.9158 0.8069,-13.8827 -0.2652,-20.8084 -1.0179,-12.5799 -3.5,-25.1603 -8.5691,-36.7693 2.6211,-6.231 -3.4945,-10.5253 -5.2146,-15.5649 -3.3376,-4.9198 -6.7217,-11.2357 -0.9334,-15.9798 4.7024,-5.0303 5.0262,-12.3384 1.1577,-17.9281 -3.434,-5.1919 2.1764,-7.1443 6.1204,-8.1597 6.8776,-4.6755 -1.4875,-10.7853 -0.1134,-16.5733 0.8888,-3.9566 -0.049,-9.1135 -4.3564,-8.054 1.9653,-5.3025 -1.6467,-9.9527 -0.9905,-15.3009 0.1158,-7.1232 6.3008,-11.6421 8.5779,-17.9137 0.1025,-4.8651 2.2086,-9.3039 5.796,-12.6267 3.1971,-3.1118 5.342,-7.3303 4.8084,-11.8808 0.4557,-9.1749 -1.1797,-18.615 -5.7825,-26.6311 -2.0073,-5.2626 2.7232,-13.1497 7.8669,-7.8014 7.4711,-0.7871 1.2889,-9.7013 0.2243,-13.6427 -0.3336,-5.702 3.7839,-11.7927 0.2026,-17.1279 -1.2551,-6.6455 -9.5106,-13.9688 -4.894,-20.1623 2.9469,-4.6422 3.4922,-11.1836 -0.6127,-15.3144 -2.3778,-5.7154 -4.4414,-12.575 -10.8012,-15.0555 -6.5749,-2.5826 -11.5177,-10.7052 -8.4781,-17.5186 1.9116,-2.8792 9.123,2.848 7.7722,-3.8885 -4.3715,-7.629 -9.4332,-15.5119 -9.7375,-24.6205 -0.04,-6.3638 -2.6901,-12.0751 -4.6597,-17.9397 -3.1304,-5.14823 -2.7506,-11.07483 2.6368,-14.19375 3.3038,-5.09086 -4.1467,-10.87767 1.625,-15.68545 3.8002,-6.32329 -3.4525,-11.61431 -6.7253,-16.28495 -4.3998,-6.9164 -2.9114,-18.43672 5.1787,-21.99766 8.5783,-3.09814 17.861,-2.93155 26.8211,-3.95139 12.5776,-0.90468 25.262,-0.26691 37.7902,-1.68568 12.0262,-2.24374 24.3437,-1.63463 36.4983,-1.16732 12.4494,0.89041 26.333,4.32313 33.719,15.3047 10.2112,18.35072 14.1703,39.24922 19.6546,59.3175 3.7372,14.9917 5.0194,30.4657 9.0945,45.3838 5.396,23.6532 11.8773,47.0371 18.992,70.2259 7.0857,24.9276 11.3777,50.7106 12.0794,76.6352 1.1018,17.2051 2.8926,34.5103 0.7093,51.7135 -1.5511,14.8278 -3.5915,29.6424 -6.4349,44.2678 -3.7336,5.6855 -1.347,11.9922 -2.6921,18.0717 -2.9701,8.5639 -4.0424,17.664 -3.3333,26.6942 0.9991,14.1669 3.999,28.1423 4.1701,42.3802 0.629,13.0123 0.9993,26.0815 3.0769,38.9662 -0.8667,6.1053 3.4034,14.5497 -3.075,18.6682 -6.4046,4.4201 -14.377,8.3997 -16.6502,16.4999 -3.1242,8.0222 -5.2674,16.4655 -9.4253,24.0555 -4.1757,4.0607 -13.766,3.5918 -12.9694,11.5338 -0.9573,8.7318 -6.5066,16.0288 -12.9203,21.6554 -3.2979,2.4309 -6.2469,7.8999 -8.8024,9.2875 -7.4318,-5.0406 -11.4351,6.1763 -13.21,11.577 -5.8068,12.6519 -10.4243,27.5745 -23.2539,34.947 -8.1919,4.8785 -17.9916,7.8553 -27.5357,6.9427 -5.8265,-1.4154 -12.9005,-2.2696 -17.718,2.1224 -8.9929,3.5091 -18.8745,4.1819 -28.4287,4.0117 -1.3908,-0.1354 -2.7757,-0.3264 -4.1547,-0.551 z" + id="path313" /> + </g> +</svg> diff --git a/static/icons/bird.orig.svg b/static/icons/bird.orig.svg new file mode 100644 index 0000000..aedebdd --- /dev/null +++ b/static/icons/bird.orig.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + version="1.1" + id="svg297" + width="2458.6667" + height="1858.6667" + viewBox="0 0 2458.6667 1858.6667" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs301" /> + <g + id="g303" + transform="translate(-104.58786,-530.83635)"> + <path + style="fill:#fefefe;stroke-width:1.33333" + d="m 149.41978,2386.708 c 4.32147,-5.798 -1.54235,-11.9102 -2.97816,-17.5153 1.91638,-6.3002 -2.83813,-10.8126 -3.21845,-16.7998 0.2703,-7.8943 -8.39185,-8.7772 -14.31807,-8.7893 -6.54124,0.3013 -12.28912,-3.2729 -16.03383,-8.4431 -5.41034,-4.4244 -9.49306,-11.1812 -8.15094,-18.4195 1.75472,-9.9329 3.81358,-19.9619 8.29614,-29.0869 0.68223,-5.1652 4.47678,-10.7001 1.52769,-15.7442 -6.78311,-2.1368 -3.20411,-8.6547 -1.67463,-13.4481 -0.26993,-6.9784 0.98253,-13.9202 3.04481,-20.559 2.01513,-7.937 4.53482,-15.7895 5.19738,-23.9973 0.31491,-6.5318 6.17669,-11.7842 4.70221,-18.4223 -3.27656,-6.2954 1.89935,-11.6703 1.445,-17.9099 -0.96291,-6.9243 -0.60653,-13.6742 -1.4581,-20.569 0.59329,-6.5071 4.05295,-12.5833 2.72451,-19.3191 -1.81246,-6.5281 2.8168,-13.3082 -0.43895,-19.6363 -3.93024,-3.3145 9.11291,-4.6487 3.37437,-8.5549 -7.56085,-3.8716 -0.23477,-12.4337 5.51111,-12.3565 4.11142,-5.7874 -5.33948,-8.7392 -6.4695,-13.7899 -2.20766,-6.0134 -0.43837,-12.6419 2.66541,-17.9707 2.58655,-7.3554 2.64262,-15.256 2.98247,-22.9113 2.32914,-5.4601 8.00653,3.6724 10.65931,-2.3644 2.77482,-5.2163 1.04927,-11.3675 2.03641,-16.9864 1.69946,-26.2948 5.93589,-52.39 6.64156,-78.7549 -0.37441,-5.4657 -13.03052,-3.0978 -9.50163,-9.0019 6.77188,-2.5453 6.60985,-10.8627 7.97449,-16.7837 2.32746,-12.2533 1.60242,-24.7983 1.24615,-37.1801 -1.03929,-7.2976 -0.62634,-15.2442 3.00313,-21.8273 3.61879,-4.1842 6.74182,-9.0379 7.07525,-14.7608 0.4624,-8.1191 0.0995,-16.8284 4.75384,-23.9458 0.6493,-6.378 11.30082,-2.2434 10.72826,-9.7303 1.89766,-8.3754 2.59505,-16.9696 4.01216,-25.4319 0.91831,-6.7125 1.94721,-13.4318 3.73714,-19.9759 6.73936,3.352 7.0955,-6.2432 6.56329,-10.6303 0.22365,-6.7483 0.55384,-13.5588 1.18895,-20.2918 2.21463,-12.3645 2.37872,-24.9798 2.12971,-37.5018 0.17794,-5.2251 -3.52993,-10.053 -0.60726,-15.2479 2.71424,-7.0429 2.28473,-14.7492 3.70299,-22.0892 0.21985,-5.8646 2.9878,-13.0925 1.38176,-18.1209 -6.34767,0.2964 0.35785,-3.273 -0.8228,-6.8134 -0.074,-6.574 3.79265,-12.1117 3.33908,-18.8036 0.0652,-6.1799 6.16136,-8.8491 8.72896,-13.7569 5.03799,-9.1665 7.87807,-19.31 11.70772,-28.9934 2.55586,-6.6454 9.44985,-11.5072 8.80147,-19.2766 0.95624,-8.9611 -11.95575,-4.2913 -13.20104,-11.079 1.59294,-7.1466 2.30076,-14.621 5.34414,-21.4019 3.92298,-1.9715 7.1079,-5.9181 5.04712,-9.9096 3.83966,-3.8581 7.85736,-7.7832 6.80379,-13.526 2.26696,-5.7925 7.98911,-11.095 5.90678,-17.8457 -0.17848,-5.1669 9.36323,-1.0906 6.47562,-7.5458 -2.10491,-5.4924 -12.06272,-11.4094 -3.58857,-16.5001 5.12977,-2.5188 7.59752,-7.527 10.85617,-11.8665 3.19071,-4.1116 7.19811,-9.1815 5.63675,-14.6935 -2.89048,-2.9383 -5.17814,-6.9578 -0.32854,-9.4482 3.99288,-4.0561 7.92521,-8.9479 7.56308,-15.0036 0.77662,-5.1893 -1.88353,-8.8516 -5.67202,-11.6562 6.63263,-0.1064 8.44486,-7.545 13.08554,-11.0182 6.27923,-4.7478 -0.152,-12.8737 0.93042,-18.955 2.12752,-6.5762 6.40864,-12.1716 9.13458,-18.4764 3.64965,-5.9346 5.98391,-12.7646 5.99336,-19.7381 2.19659,-7.0361 -3.93451,-12.777 -4.70846,-19.3391 -1.80881,-2.8476 -4.46695,-6.6725 -0.15443,-8.2701 -0.0873,-3.8281 -10.99708,-7.267 -4.05381,-10.1345 7.97421,-1.3006 5.47562,-10.4851 0.57798,-13.7451 -1.59375,-6.1956 9.14892,-1.8673 5.82106,-7.8927 -6.21356,-5.0871 -6.23397,-12.8394 -2.11036,-19.3238 2.40135,-5.3358 2.1362,-11.2795 4.83249,-16.541 1.89857,-5.3028 3.63596,-10.7637 3.88895,-16.4323 -3.98738,-2.4899 -6.46012,-8.7475 -0.0983,-9.8641 3.51833,-2.5354 1.80304,-8.035 -0.93023,-8.0811 3.03618,-6.4728 5.03996,-13.6105 4.60002,-20.8132 4.09095,-5.1419 3.65614,-11.7448 3.18019,-17.451 3.09731,-5.6627 8.52481,-10.9316 7.90664,-17.7129 -2.58568,-4.7324 -2.10789,-9.9131 3.03301,-12.2528 4.22153,-4.7314 4.40137,-11.4475 4.38899,-17.4473 7.6926,-2.7247 1.41528,-12.1502 5.23644,-17.0311 3.60736,-2.9503 14.18936,-3.1506 10.97333,-9.9906 -3.99192,-1.5106 -3.28116,-5.0971 0.73578,-5.6582 6.05606,-0.7307 12.67733,-10.3676 4.16462,-12.6286 -6.09733,-0.7591 -4.97763,-6.6867 -1.18448,-9.6375 3.71825,-5.5985 1.9499,-12.8653 6.33358,-17.8525 1.38412,-4.2766 -5.92061,-7.0467 0.0345,-9.7519 4.13842,-2.2924 3.38308,-6.3126 0.55827,-8.7767 0.18892,-7.1179 9.35514,-9.0348 12.01069,-14.8038 0.40657,-4.11026 -3.06197,-10.23121 3.02284,-11.231 1.03771,-4.4608 -3.33396,-9.83818 1.66893,-13.40133 2.77032,-5.58179 1.51515,-15.0443 9.47536,-16.3217 5.70743,-2.02704 2.82861,-9.23426 8.23816,-11.40915 3.94069,-3.581 -4.0218,-9.89285 3.28332,-11.74867 5.01207,-2.25559 5.18417,-8.45746 6.41748,-13.11685 1.81543,-13.87627 6.51022,-27.13537 10.16174,-40.59317 0.81923,-7.21954 11.2938,-9.32464 10.51561,-17.35031 -0.71023,-3.92777 1.19413,-7.82216 1.76191,-11.71746 1.03211,-5.51268 3.02082,-10.73163 4.54838,-16.09586 1.84562,-9.38288 3.69702,-20.18914 12.3407,-25.85218 6.38634,-4.05565 13.24899,-7.56324 19.43913,-12.03683 5.68825,-5.41806 13.71121,-7.04061 20.8969,-9.59812 6.99392,-3.579 2.20672,-13.13817 7.18699,-17.48224 5.45328,-4.31 0.83126,-10.11913 2.80172,-15.06809 2.39646,-7.55594 4.59991,-16.02943 11.37744,-20.91719 5.79228,-4.54307 12.28565,-8.25008 17.44177,-13.55312 -0.15138,-4.49644 8.99866,-5.63471 13.348,-7.10572 9.07528,-0.89683 18.52212,0.20277 27.14754,-3.41804 6.26708,-1.97867 10.26281,-8.05245 10.52959,-14.46392 0.7731,-6.61518 1.73723,-13.24183 4.18314,-19.47436 1.68674,-5.67359 3.19233,-11.5115 3.07752,-17.47602 7.33779,-1.83821 10.43576,-10.42766 11.18872,-17.05511 3.24761,-4.13098 9.82715,-6.93022 7.66718,-13.39628 -0.51361,-6.3276 3.84662,-11.84654 9.76984,-13.58051 9.85796,-5.10373 20.23017,-9.66568 31.3666,-10.89405 14.5289,-3.3099 29.8673,-3.30393 43.84216,-8.82596 5.37161,-2.61253 10.12942,-6.74535 16.15903,-7.78343 9.64174,-7.61548 22.06199,-9.53322 33.8068,-11.59967 14.73684,-2.59765 30.33642,0.59042 44.52659,-5.14803 9.06913,-6.71102 14.56507,-17.01213 23.39686,-24.00388 5.86405,-4.21584 10.36714,-12.06682 18.30849,-11.67317 9.91666,-1.00105 19.81126,-2.53765 29.4448,-5.06205 13.61738,-0.87262 27.5049,1.14635 40.87788,-2.34666 20.2653,-2.71926 41.13412,-4.13216 61.2441,0.45601 7.38357,3.25731 13.93475,8.67354 22.00003,10.19448 4.21765,-0.0783 0.811,-7.98842 5.43993,-4.03976 5.77392,2.85574 11.45337,-0.74078 17.17545,-1.48986 16.87338,-2.80796 34.17168,-2.85586 51.14258,-0.99103 8.023,1.30246 15.3105,5.19122 21.967,9.6552 5.3449,0.92267 9.81,-8.31714 14.7102,-1.9687 2.5121,2.06307 4.8483,-0.41903 2.3373,-2.685 5.9796,0.94896 12.1615,2.00481 17.9901,-0.31473 9.4901,-2.33862 19.5046,-4.76916 29.2339,-2.34614 9.2351,-1.43035 18.8582,0.89571 26.4091,6.39937 10.8981,6.87008 19.0973,17.1204 26.2226,27.6782 5.3703,4.39123 11.6429,-0.75402 16.6543,-3.12552 12.77,-5.47464 26.9719,-2.1155 40.3003,-4.56159 7.3183,-1.15799 14.1069,-4.84804 21.6612,-4.73276 14.7038,-1.10064 29.4586,-0.4329 44.1675,0.19182 6.3125,4.19231 14.1282,-0.26186 20.7146,2.33038 4.3283,3.17906 8.9639,8.89426 14.0267,7.62481 2.3277,6.83965 10.8866,9.15118 12.7624,16.26019 4.7666,4.62369 12.5319,7.19068 18.9011,6.41618 4.8747,-1.74274 7.5608,3.99696 12.1654,1.70224 4.7862,-0.79486 11.294,0.47122 12.4458,5.99867 2.923,6.25076 -3.471,12.36399 -1.0473,18.5799 4.2725,5.38856 12.4935,4.66723 18.4602,7.25042 6.9223,0.85698 -2.0533,9.93327 4.9821,12.01261 4.4248,4.53378 5.4443,11.68287 10.9391,15.28892 3.7678,5.89614 11.1684,7.16702 16.582,10.96987 2.8109,5.61166 -2.7729,15.9512 6.7645,17.08197 11.2421,3.25873 23.7677,1.04549 34.2645,7.03715 6.5953,2.80788 12.9312,6.23248 18.864,10.25744 5.2116,1.689 12.3743,2.60209 14.1187,8.75837 0.2016,9.51258 5.589,17.82736 8.6984,26.58654 2.7209,6.0164 6.1138,15.80726 14.6304,13.44034 6.1179,-2.50497 12.5778,-2.59429 18.9151,-3.84674 7.7945,-2.23061 15.97,-6.27302 24.1777,-3.49398 6.1921,0.52178 12.5552,-1.67843 18.54,0.91422 6.3177,1.55497 14.4676,2.3049 17.7057,8.84479 2.7612,6.17905 0.3326,13.96673 5.0363,19.39441 6.6272,3.20212 14.2213,1.20675 21.0797,0.0745 5.8585,-2.45279 12.6484,-5.13751 18.8913,-2.38393 5.5032,0.0891 10.998,-2.32895 16.1606,0.66718 7.969,1.45346 16.7014,1.46177 23.6482,6.09787 5.0944,4.96226 3.1354,12.6417 4.3353,18.96746 0.8566,8.20071 1.2082,16.68679 4.2463,24.43285 2.9601,4.92876 9.2766,2.26413 13.5483,0.98493 6.5725,-2.01956 13.5817,-0.95479 20.3552,-1.33498 10.2128,-0.0932 20.5165,-0.0489 30.6466,-1.0758 2.9646,-1.4447 7.0899,-2.5941 6.5447,2.15496 5.1683,3.81182 12.2811,-3.50999 17.4823,1.3757 6.3125,5.40725 7.4161,14.43516 7.4335,22.28599 0.4531,6.93161 3.4651,13.3379 5.0503,20.02757 3.4978,7.3991 12.3805,3.46211 18.3138,2.28827 18.4287,-3.0787 37.0827,-0.0641 55.3491,2.56385 7.7357,0.44782 17.0694,1.28405 21.8447,8.24281 4.1934,6.66675 5.8324,14.44741 7.7813,21.94905 2.3892,7.30565 8.6034,12.37285 11.9203,19.21184 2.3309,3.61035 3.5462,7.85864 6.0463,11.33049 4.3102,4.71203 11.2393,3.54927 16.5611,1.61029 10.7303,-2.04388 21.6987,-2.47538 32.5717,-3.29 23.8792,-1.0902 48.307,-1.31429 71.5212,5.14647 8.2307,2.42637 16.9078,6.86562 20.0992,15.39118 2.5087,4.77186 1.0064,10.15752 1.7832,15.1605 1.3796,7.555 9.3267,9.59322 15.7905,7.75614 20.2441,-1.38803 40.6576,0.45179 60.5359,4.3497 6.6581,1.68711 14.1801,2.87384 19.1863,7.97207 4.487,4.63503 6.1418,11.09338 9.0007,16.63065 5.1993,5.10787 12.5784,1.13877 18.8224,1.88267 23.8495,-0.2673 48.23,1.1337 70.8898,9.1308 7.2115,3.5678 14.0348,9.8134 15.1357,18.1738 0.1918,7.4704 5.9434,13.512 13.7077,10.9415 12.8675,-1.7553 25.9923,-0.6075 38.7772,1.3812 9.8882,1.7876 19.7861,4.1853 29.0221,8.1794 4.6959,2.1709 8.2404,8.0778 5.1955,12.9297 -2.4037,7.9912 8.1695,9.0316 13.6462,9.2738 17.2414,3.1907 35.445,0.9168 51.9739,7.7682 8.6498,3.7254 17.7994,6.0733 26.2949,10.1315 4.2673,1.5709 4.7144,5.4595 0.2838,7.1029 -6.2262,4.5222 -2.0641,11.0518 3.3197,13.6448 4.4022,4.0754 9.0354,8.6795 15.3535,9.2289 6.8554,1.2256 13.6507,3.0926 19.7214,6.5739 8.0472,3.396 17.8149,4.6601 23.5945,11.8387 1.4978,5.6445 1.9216,12.8051 9.4219,13.1831 6.075,3.3518 11.4746,9.9955 18.9906,6.763 8.2606,-0.6983 12.6019,7.6802 11.0353,14.9199 -0.3474,22.4802 -0.041,44.9838 -0.2084,67.474 -0.076,22.0356 -0.2693,44.072 -0.7947,66.102 -2.0017,8.5545 -8.896,14.5217 -14.0064,21.2542 -5.268,4.2009 -14.4898,1.8182 -17.8128,8.7153 -4.0041,8.6914 -7.2826,17.7027 -11.6673,26.222 -4.062,8.5601 -7.454,17.8552 -14.0555,24.8311 -4.3232,5.0505 -11.8217,2.8626 -16.4041,6.6023 -6.7022,5.9538 -9.8409,14.6308 -12.0986,23.0542 -3.2795,10.5183 -8.5983,20.2776 -14.311,29.6487 -1.0143,6.8991 -9.1389,4.6168 -13.9107,3.838 -5.1291,-0.8029 -8.212,4.6728 -10.0329,8.6592 -3.3926,7.5705 -8.0541,14.4855 -12.1204,21.7047 -3.8743,6.0727 -8.0206,12.3167 -13.7782,16.7225 -6.3493,2.7829 -13.475,-2.3343 -19.6797,1.1471 -8.0139,1.5345 -12.158,9.3715 -15.4119,16.051 -4.4675,7.7706 -7.638,16.235 -11.828,24.1098 -3.9846,5.7327 -9.6718,12.3359 -17.441,11.2986 -6.7778,-1.3792 -13.9241,1.1921 -16.6318,7.9138 -5.0815,8.9995 -7.6427,19.1214 -11.5887,28.6244 -2.0189,5.3155 -4.4373,10.5748 -8.0651,15.0016 -0.4101,7.111 -10.0934,10.6234 -15.2737,5.9999 -8.6981,-3.049 -19.6499,2.0319 -21.7673,11.2837 -3.1672,6.5545 -6.2469,13.2253 -10.6107,19.0936 -1.9793,7.1108 -9.6817,13.392 -17.2579,10.9962 -7.0899,-1.7636 -14.2321,3.3359 -15.0121,10.4611 -3.757,7.6028 -8.9108,14.458 -12.2205,22.2881 -6.0174,10.2013 -18.2715,15.7177 -29.9196,14.3989 -6.3462,-0.6669 -14.1796,0.9395 -16.2553,7.8622 -3.0222,6.9167 -4.5603,14.9634 -10.6895,20.0075 -5.6173,5.0588 -8.3067,12.5512 -14.5338,17.003 -10.0284,8.3091 -23.5794,9.9215 -36.1424,9.0827 -5.948,-0.8413 -12.8358,0.4715 -15.3884,6.6494 -2.9505,6.1337 -5.3077,12.8047 -10.701,17.337 -7.2236,7.129 -17.0261,10.3797 -26.5323,13.135 -5.9271,2.0188 -12.3484,2.7486 -18.5042,1.3992 -6.8953,-0.8704 -13.5635,3.5062 -15.6739,10.0786 -4.5432,10.324 -10.9566,19.9885 -19.6992,27.2235 -5.1787,4.57 -11.9409,6.3607 -18.5641,7.3601 -7.4656,2.3533 -8.3671,10.5225 -10.795,16.7147 -3.912,9.567 -8.3358,19.7803 -16.8226,26.1455 -4.7853,2.4102 -11.189,0.7543 -15.1287,4.8848 -2.9094,6.3341 1.6441,13.3992 1.7,20.0196 4.2483,31.0493 14.0375,61.0361 18.6524,92.0287 5.3554,23.7048 13.3078,46.8439 16.5146,71.0102 7.2081,40.1135 11.052,80.8563 20.6794,120.5144 3.577,12.9277 6.9989,25.9022 9.893,38.9976 2.5685,8.5803 4.5009,17.317 6.1471,26.1112 2.163,7.5837 3.0564,15.4178 3.1069,23.2889 0.4663,16.2311 -1.3631,32.4002 -1.9782,48.6013 1.8185,6.9334 -3.2268,13.4639 -9.9309,14.7792 -5.949,3.1581 -12.2009,6.4642 -19.1197,6.3979 -8.9661,1.5296 -18.0271,2.4857 -27.1284,2.3732 -9.2846,0.7568 -18.5958,2.5447 -27.9186,1.1107 -4.033,-0.3869 -8.0697,-0.8277 -12.1258,-0.8483 -5.6381,4.0597 -12.5552,0.482 -18.3407,1.7646 -7.2336,1.8089 -13.7354,-5.239 -20.6624,-0.9987 -8.2453,2.0832 -15.8609,-5.423 -16.3708,-13.3467 -1.5321,-17.6128 1.7129,-35.2702 0.043,-52.8789 2.6021,-6.8036 3.7251,-14.6158 0.5577,-21.4333 -3.1157,-11.1541 -8.5221,-22.1068 -7.6931,-33.9734 -2.8093,-8.4937 -6.8322,-16.6704 -7.8193,-25.6719 -1.7243,-10.4024 -3.7508,-20.8153 -7.6052,-30.6636 -2.0213,-5.6411 -1.0893,-11.7749 -3.0907,-17.3481 -1.6132,-7.9274 -0.4478,-16.2887 -3.4515,-23.9618 -2.1512,-6.2831 -3.3757,-12.9773 -2.02,-19.562 1.0016,-6.2724 -2.635,-11.7819 -3.1813,-17.8582 -1.1405,-9.4419 -0.3139,-19.478 -4.8547,-28.1695 -1.804,-6.2215 -0.9044,-13.7934 -6.0256,-18.6066 -0.7056,-7.9867 -1.5391,-16.1052 -4.7111,-23.5532 -2.7495,-6.5623 -1.5818,-14.144 -4.7359,-20.4026 -3.6714,-9.2358 -3.6177,-19.3625 -5.6883,-28.9879 -2.0457,-12.4487 -3.2616,-25.0514 -5.2899,-37.4794 -2.9467,-7.8206 -6.415,-15.5684 -7.2443,-23.9812 -2.1263,-13.0481 -2.3335,-26.4127 -5.7701,-39.2344 -0.9246,-7.6009 -0.4676,-15.5433 -3.5759,-22.7123 -1.6084,-7.5065 -1.9935,-15.2255 -3.5651,-22.7333 0.147,-6.3458 -1.1953,-12.4454 -3.5724,-18.2805 -1.9475,-7.8122 -3.1073,-15.8374 -6.0419,-23.3739 -2.1653,-5.9655 1.9067,-12.4162 -1.8076,-17.989 -3.5064,-5.1205 -4.1376,-11.1856 -5.3583,-17.0789 -1.1416,-5.3014 -1.2528,-10.8055 -1.8469,-16.1235 -5.3526,-14.0022 -7.0114,-29.0168 -10.4564,-43.5287 -2.5978,-13.5681 -4.8491,-27.2251 -8.4756,-40.5667 -1.0924,-6.1314 -1.7562,-12.3769 -3.8129,-18.2845 -2.5234,-12.2304 -1.8059,-25.1114 -6.4478,-36.884 -4.8514,-18.8086 -8.5768,-37.9004 -13.9651,-56.5715 0.6456,-8.0455 -6.9576,-13.9317 -6.5394,-21.9793 -1.2472,-6.6878 -5.5188,-12.4718 -6.1015,-19.3304 -6.4322,-21.4867 -8.0459,-44.1182 -15.0289,-65.4525 -2.2236,-6.9708 -0.9553,-14.4778 -3.3953,-21.4177 -4.4222,-15.8929 -8.1931,-32.4105 -17.453,-46.3529 -5.6351,-10.8411 -8.7677,-22.7477 -12.7188,-34.2493 -2.061,-6.0653 -4.4965,-11.9639 -6.3471,-18.0973 -2.8252,-6.899 -4.3016,-14.1868 -6.1456,-21.3725 -0.9181,-5.8942 -3.4156,-11.2844 -5.8541,-16.6584 -3.0965,-7.6292 -5.7005,-15.4515 -8.9467,-23.0209 -0.7369,-9.4038 -7.6767,-16.679 -9.8883,-25.6592 -2.1877,-6.512 -6.4074,-12.247 -7.2729,-19.1793 -2.4144,-10.2909 -6.1764,-20.2495 -7.4552,-30.8009 -3.155,-21.6266 -10.6656,-42.7537 -22.6383,-61.0898 -1.6637,-6.7502 -5.8512,-12.1908 -11.5481,-15.3827 -2.9249,-6.4244 2.6679,-12.8536 0.8886,-19.4157 -1.608,-9.305 -4.9855,-18.2065 -8.0919,-27.0916 -5.3167,-13.9466 -11.1463,-27.714 -15.6905,-41.9395 -2.7244,-7.26428 -8.913,-12.07606 -14.2288,-17.34284 -5.106,-5.32755 -9.9728,-11.42544 -17.0308,-14.17356 -6.0599,-3.41299 -8.6832,-10.13914 -11.0503,-16.2686 -4.6468,-10.75448 -8.295,-21.92524 -13.3436,-32.50859 -4.9662,-4.04545 -12.1521,-6.7344 -13.8064,-13.60173 -3.304,-5.94325 -6.5469,-12.15084 -11.7283,-16.70757 1.7661,4.57903 -4.1328,2.32645 -2.7495,-1.26104 -1.0986,-6.32837 -5.5439,-12.40419 -11.0829,-15.24782 -4.2487,1.43522 -9.4169,0.53169 -8.4245,-5.16102 -0.3851,-6.18499 -6e-4,-12.84859 -3.6345,-18.21126 -2.8465,-5.54055 -4.1227,-11.68342 -5.0796,-17.77148 -1.621,-7.43258 -9.6657,-7.25055 -15.2632,-7.32596 -6.4229,-3.34656 -10.6066,-9.6097 -15.1221,-15.07194 -7.8384,-10.23343 -13.706,-21.84054 -18.0312,-33.94938 -1.6038,-6.4364 -6.683,-12.92261 -14.0976,-11.18919 -5.665,0.83682 -11.1919,2.89259 -16.8012,0.86672 -5.8524,-0.72936 -12.6589,0.20296 -17.2765,-4.25011 -5.0317,-3.24483 -11.7148,-4.93461 -14.3545,-10.87985 -4.8539,-5.89251 -10.5282,-11.59942 -12.345,-19.28492 -1.7095,-4.9946 -4.7577,-11.70723 -11.0694,-11.18418 -5.7938,1.05919 -11.6232,2.20355 -17.536,1.79952 -6.1408,0.42419 -13.128,0.19817 -17.7336,-4.48924 -5.986,-4.37883 -13.6783,-4.01552 -20.6252,-5.21869 -6.1109,-1.57411 -11.2221,-6.245 -13.3559,-12.16148 -5.4526,-5.99076 -12.5238,1.98534 -18.4606,3.10331 -6.3307,2.31601 -12.8995,0.62805 -19.319,-0.004 -27.9661,-2.0587 -55.9473,1.69694 -83.9313,0.51069 -7.2254,-0.38979 -15.1189,1.98538 -21.6393,-2.19096 -5.7613,-4.22805 -12.6549,-1.84149 -19.1256,-1.81924 -17.2933,0.7484 -35.3132,-0.97004 -51.7904,5.39646 -7.3655,3.56819 -15.2202,6.29216 -23.46,6.64535 -12.26268,1.30296 -24.61146,0.77277 -36.9149,1.17483 -5.29086,-3.36019 -11.46648,-2.79941 -17.08647,-1.18173 -7.68143,0.33584 -15.31634,-0.95707 -22.80274,-2.54629 -7.40772,-4.41949 -15.27407,1.24941 -22.74602,2.34109 -9.97092,1.84764 -20.16798,0.98031 -30.21614,2.0047 -7.1009,4.09386 2.48846,13.96932 -4.51399,18.14048 -5.67684,3.24645 -11.85332,5.54738 -17.66309,8.55732 -8.66944,3.38477 -17.23136,7.34737 -26.55776,8.57357 -10.30033,1.63234 -20.76628,2.03097 -31.16937,2.26356 -6.87555,-0.22598 -14.14452,-2.38672 -20.6903,0.68251 -19.42749,7.10002 -40.41776,6.14718 -60.7524,5.99011 -6.17179,-2.2262 -16.33448,4.52318 -11.94813,11.16637 2.60138,3.57949 0.48784,10.90444 -4.8399,8.30342 -4.47308,4.50282 -10.84945,5.6481 -16.91031,5.61529 -7.39367,0.78611 -14.8173,1.5898 -22.0477,3.33434 -9.00696,0.87493 -18.06219,0.3473 -27.0918,0.37588 -0.23599,7.29849 0.81109,14.89214 -1.86696,21.88015 -5.45639,2.58851 -9.9652,10.37599 -5.38052,15.66975 3.00779,1.80736 4.32319,8.16316 -0.43781,4.59678 -7.46862,0.137 -9.36413,9.04708 -14.51074,12.92108 -5.76051,3.34827 -12.79748,2.27258 -19.04851,4.16568 -5.82488,1.19217 -11.62048,2.59878 -17.23194,4.58131 -4.72291,6.205 -5.83895,14.17571 -8.99934,21.13892 -5.28712,18.625 -11.96632,37.44223 -11.2269,57.06999 3.12091,7.35496 -5.3976,10.54242 -7.33971,16.47826 0.10178,4.61647 -5.33043,6.34777 -8.35547,8.95429 -5.20735,3.14821 -6.77544,9.30324 -9.324,14.41166 -3.86134,9.86077 -7.86795,19.65524 -12.1151,29.35566 -5.32705,12.4965 -9.15907,25.5389 -13.58132,38.3584 -10.01259,27.2452 -21.91025,53.829 -29.93067,81.7779 -6.68525,22.601 -10.71971,45.8919 -17.63117,68.4358 -11.47269,40.4996 -24.34994,80.6897 -32.68664,121.9972 -3.09482,15.5904 -4.75677,31.5226 -9.9428,46.6307 -2.24245,7.3532 -3.47328,14.9965 -6.10528,22.2566 -4.29099,12.756 -6.02787,26.1607 -9.74853,39.0781 -4.37638,17.3179 -10.72148,34.0772 -14.45343,51.5663 -2.68891,12.0565 -5.82769,24.0087 -8.71701,36.0116 -2.48138,11.6642 -2.2385,23.6927 -4.15849,35.4124 -2.66065,11.3293 -7.16945,22.1868 -8.80682,33.7624 -6.64073,32.9883 -13.74624,65.8819 -20.8251,98.7765 -2.61324,14.0051 -2.75874,28.3052 -5.08423,42.3514 -2.40997,17.5055 -3.94487,35.1098 -6.19294,52.6349 -1.49752,12.4939 -1.97012,25.0869 -4.08139,37.5052 -6.16218,46.2039 -10.42035,92.6323 -15.43496,138.9677 -1.90813,18.6802 -2.85975,37.4422 -4.01786,56.1719 -2.50511,21.5605 -8.04686,42.7754 -8.27673,64.5805 -0.9481,19.4588 -2.39554,38.8897 -4.14412,58.2889 -2.13376,35.6672 -3.05563,71.3978 -5.29038,107.0585 -0.46773,13.6899 0.0642,27.4186 -0.33434,41.0907 -1.53299,6.7532 -4.99006,13.3275 -3.86074,20.4412 0.0663,9.938 -0.4551,20.1499 -4.22706,29.4711 -4.52055,1.9058 -2.57063,13.4311 -7.29572,11.7529 0.0732,-6.8276 6.47953,-12.4403 4.63965,-19.4628 -5.81542,-5.2833 -7.69257,5.7095 -7.73041,9.8451 1.00818,5.1866 -5.15653,14.0354 -8.55604,6.1576 -0.0656,-6.0028 3.14914,-13.7834 -4.66448,-16.5059 -1.17406,-3.0815 3.9405,-11.0559 -3.24871,-9.9726 -5.14979,4.2045 -10.38484,8.5019 -16.07652,12.0449 -1.692,2.9375 2.02625,10.2811 0.21772,10.6938 -1.1056,-4.435 -8.81467,-3.9177 -4.79446,1.2536 2.37623,7.7692 -6.09296,14.0818 -13.15801,11.0193 -7.51241,-1.3507 -10.01866,-9.5803 -17.01736,-11.4 -2.49072,-2.0185 -9.67964,-8.2739 -8.0677,-0.9857 1.56335,2.4461 2.74934,7.4858 -1.93584,5.2148 -6.14918,2.5154 -3.3421,-5.0601 -3.79194,-7.7645 -5.05954,-4.3238 -11.41426,2.1414 -16.79367,3.2596 -5.75084,2.086 -0.38777,7.6617 -2.46308,11.8226 -1.24501,5.6061 -2.51262,11.2575 -2.05129,17.0406 -0.1616,8.7556 -0.30005,17.5815 -2.01074,26.1997 -0.4623,1.3517 -5.7175,3.6129 -4.09929,0.3378 z M 1926.1257,1690.4471 c 8.7016,-4.0531 18.4665,-5.2535 27.9832,-4.8931 5.3687,-2.2562 11.2823,3.5914 16.2826,-0.074 4.0528,-5.7196 1.9714,-13.5778 5.5063,-19.6011 5.0308,-6.6523 0.3258,-14.9403 1.4687,-22.3344 3.6702,-5.9891 12.0252,-1.2063 17.6189,-3.5512 11.0505,-1.8797 22.207,-3.2112 33.4345,-2.9194 5.764,-0.048 11.5287,-0.01 17.2924,-0.099 6.5641,-4.673 4.8238,-13.5525 6.9797,-20.321 4.2343,-6.9413 5.0708,-15.1947 5.6794,-23.11 1.489,-5.7405 8.4273,-4.3378 12.9121,-4.4307 11.2704,-1.2371 23.0681,-0.3249 33.8992,-4.0349 5.923,-4.2965 3.7636,-12.3736 5.5368,-18.4409 2.297,-5.7685 7.4108,-11.1694 5.9185,-17.8236 -0.361,-6.9031 6.4556,-13.308 13.2542,-10.4632 6.9792,0.4838 13.793,-1.5025 20.7165,-1.9532 7.3432,-4.1622 5.5022,-15.2736 13.1134,-19.1736 5.2341,-4.3289 -1.2156,-12.7772 4.6417,-16.7219 6.9715,-3.2508 14.8814,-0.7011 22.2422,-1.933 5.1523,-0.9287 12.646,-0.3099 14.792,-6.2287 2.7114,-5.9614 2.9768,-12.7975 6.3871,-18.4849 2.8615,-6.2521 6.4123,-12.6697 5.7391,-19.7676 1.6285,-5.8732 9.0237,-6.6748 14.1398,-5.91 7.6883,-0.1128 16.0582,0.9023 23.0214,-3.009 6.3876,-5.3328 6.9831,-14.6103 12.9341,-20.3362 3.9583,-6.2944 -0.1416,-15.64 6.5088,-20.5893 4.7879,-3.46 11.0885,-1.9513 16.6178,-2.3492 6.0478,-0.032 12.7183,0.1823 17.9819,-3.1863 5.1766,-5.3075 5.2887,-13.3069 8.9593,-19.4839 1.3231,-6.5983 7.2827,-12.8701 6.3878,-19.3777 -4.3501,-4.6828 -11.7942,-0.7007 -17.0566,-3.8456 -5.7533,-2.6227 -13.0951,-3.6017 -17.2642,2.2046 -9.8745,7.6783 -22.5371,11.471 -35.0068,10.8799 -11.3999,-0.3159 -23.1884,-1.2046 -34.0625,3.0172 -14.9612,5.6245 -31.7962,5.6209 -46.9272,0.6154 -7.8754,-0.3308 -15.0403,4.1625 -22.9384,3.8042 -5.6808,0.5415 -12.8392,-0.7093 -16.8759,4.3058 -2.3223,4.0695 -1.7632,9.1789 -4.0757,13.3383 -3.4243,9.1282 -13.3052,13.1038 -22.2469,14.4737 -8.1628,1.6541 -16.5943,1.8812 -24.6299,4.1167 -6.0718,4.163 -6.2586,12.8778 -12.3863,17.0503 -9.0965,8.6174 -22.3362,9.181 -34.103,10.6554 -11.997,1.1757 -24.1406,0.6002 -36.0958,1.9614 -6.8147,2.3666 -12.5522,7.8518 -20.1047,7.9096 -24.3925,3.9961 -49.2203,2.1566 -73.7721,4.2641 -14.9211,0.6922 -30.3548,1.1075 -44.6118,-4.0657 -5.0801,-0.3178 -11.625,-11.2311 -15.1932,-4.1111 0.724,6.3474 4.6285,11.7447 6.084,17.9204 9.5575,28.0587 14.3653,57.5073 24.4553,85.4015 7.7487,28.5709 10.0917,58.2705 17.6132,86.8979 3.8502,16.4455 7.6352,32.9516 9.6604,49.7402 1.5641,7.5667 10.9876,8.4591 16.918,5.7371 1.577,-0.499 3.1247,-1.0839 4.6707,-1.67 z m -234.1951,-275.7225 c -2.4182,1.4361 1.9405,2.3711 0,0 z m 240.454,-97.0993 c 11.6943,-5.3468 25.304,-0.3987 36.9753,-5.8335 6.4526,-0.4466 13.6841,3.8539 19.4702,-0.6674 7.4006,-2.9366 6.9493,-12.8812 13.0849,-16.6538 5.2316,-2.5088 4.7473,-7.971 3.0988,-12.2813 0.5302,-6.2889 5.3131,-11.682 11.1011,-13.8609 4.7721,0.961 1.2735,12.7745 8.2089,7.8056 4.8377,-4.333 -3.1043,-14.8979 5.9126,-16.2444 5.7721,-0.8262 13.0405,-5.0904 9.3203,-11.5006 1.9696,-5.8457 10.3112,-4.8917 12.7393,-10.5409 4.752,-5.6554 12.1262,-8.2799 19.2944,-8.9363 6.3634,-1.8323 9.1497,-10.2382 16.3657,-10.0046 3.7971,-4.8788 9.2663,-9.0714 11.4945,-14.8347 -1.2076,-2.6136 -2.9999,-6.2477 1.6945,-6.1536 6.7041,-1.2754 11.3857,-6.7215 17.3963,-9.2124 7.6645,-2.1657 15.6595,1.8842 23.2278,-0.8763 13.8668,-3.0969 28.2348,-2.4665 42.3238,-1.6286 9.0253,0.9073 18.228,1.0773 27.0332,3.3828 9.6412,3.0065 14.0643,12.7055 19.8911,20.039 6.3153,4.911 14.4106,1.2265 21.3469,0.1167 9.9753,-2.1633 19.627,-5.7815 28.6008,-10.6403 7.0678,-0.3785 9.312,-13.41 1.945,-14.6919 -6.5356,-2.8326 1.7345,-7.1126 3.5805,-10.4824 3.1452,-3.7391 6.8466,-7.439 11.717,-8.7197 3.961,-2.8551 9.0371,-5.5148 10.3507,-10.5905 -0.083,-6.0355 -7.6773,-5.7012 -12.0331,-6.0738 -5.1157,-0.052 -10.534,-0.6753 -14.6156,-4.0754 -6.3977,-1.6088 -10.9731,-6.614 -16.8494,-8.6922 -6.1859,0.6475 -11.7838,-2.2438 -12.6928,-8.6528 -2.0348,-5.9516 -8.3595,-8.6047 -14.2451,-7.5181 -14.0896,0.2781 -29.0974,0.4647 -41.7153,-6.7586 -8.3473,-4.2646 -17.8267,-6.4195 -27.1844,-6.3723 -4.171,-4.7983 -9.231,-11.1149 -16.3798,-8.9927 -10.6092,-0.6158 -21.4205,0.3574 -31.8259,-2.2764 -6.7639,-6.4274 -16.7374,-1.9686 -24.7045,-4.9992 -7.043,-2.2782 -14.0152,-5.4506 -21.5726,-5.2966 -7.1165,-0.9706 -10.0173,-9.7043 -17.0972,-10.5683 -3.6024,-0.06 -6.2141,8.806 -6.7691,1.8941 -0.882,-6.8531 -8.3409,-9.0007 -14.2734,-8.1302 -8.1888,0.6958 -16.3381,-0.7752 -24.4845,-1.4967 -11.8081,-1.3087 -23.5276,-4.8538 -33.2207,-11.9091 -8.1801,-5.332 -15.9274,-11.882 -20.7588,-20.4789 -4.4651,-4.8393 -12.0327,-1.2377 -15.0683,3.4395 -7.0742,5.8247 -8.5476,15.8652 -6.979,24.4286 -0.1133,7.3778 -5.7456,13.698 -4.5632,21.2463 0.2797,22.9142 0.9513,45.9141 4.1222,68.6329 1.3513,6.0089 1.6228,12.1655 0.928,18.2772 -0.058,5.0994 -0.1261,10.0226 -2.9663,14.4261 -1.3914,4.2179 -6.124,10.9364 -10.788,6.6946 -4.582,-4.3631 -3.8987,-11.5897 -8.0762,-16.2184 0.4417,-3.9871 0.5633,-13.0592 -5.8701,-9.1211 -5.5827,-1.6566 -1.7699,9.7505 -6.8145,3.9757 -3.8834,-5.5318 1.6837,-11.9162 -0.2068,-17.9456 -1.7315,-6.5687 -4.0923,-12.678 -0.7309,-19.2396 0.8237,-5.2203 -8.0065,-6.4302 -4.2565,-12.3353 3.4767,-6.5696 -4.2257,-11.8493 -1.7831,-18.8651 0.5239,-7.3802 -0.7064,-14.732 -1.041,-22.1079 -0.1333,-5.8023 -1.8495,-11.8314 -1.2807,-17.4581 0.8542,-4.7766 -2.6272,-9.7388 -4.5921,-13.6297 -5.0926,-1.2325 -6.4043,-5.6519 -5.9253,-10.332 -0.8024,-5.6309 -2.7695,-11.6553 -7.1263,-15.4954 -5.7854,-3.9529 -12.645,-6.141 -19.419,-7.6018 -10.0406,-0.1031 -19.4278,-4.2015 -27.8384,-9.3853 -4.9309,-3.1945 -10.5175,-5.3297 -15.2033,-8.86504 -5.2707,-4.66278 -7.2909,-11.79734 -12.7489,-16.33364 -4.1916,-4.72487 -7.6045,-10.60131 -14.6336,-10.9557 -4.5285,-1.89202 -8.8783,-4.2646 -13.7617,-5.29949 -5.8187,-1.34846 -11.2726,-3.74126 -16.7146,-6.1147 -5.8951,-2.18192 -12.2456,-1.76048 -18.3863,-1.87897 -6.2195,-2.39837 -11.484,-6.88564 -18.3675,-7.41251 -7.2103,-2.97236 -11.9321,-10.81095 -20.1416,-11.53142 -6.9908,-2.7696 -6.6717,6.69778 -6.513,11.13882 -0.3609,11.7169 -1.7006,23.72883 1.0712,35.24731 3.9679,14.01295 9.7872,27.45714 16.8176,40.18124 3.6736,10.2809 3.5027,21.5452 7.8415,31.6457 5.4287,14.828 14.5085,27.9662 20.2183,42.6777 6.0324,13.2744 10.8588,27.2027 12.7343,41.7168 3.8092,22.9182 9.0769,46.1441 21.0172,66.3441 2.5078,4.9512 6.5583,8.5293 10.3038,12.4301 3.4359,3.948 3.3055,9.5408 1.3704,14.0214 0.4238,9.0314 8.643,16.7958 17.6296,17.1657 6.9891,0.781 15.2015,0.013 20.5176,5.5606 -1.8535,2.6203 -6.892,6.3246 -1.2677,8.177 7.3755,6.7385 12.9595,15.5909 14.6068,25.5432 1.1603,5.2955 1.801,10.6908 3.015,15.9756 6.1747,4.2223 13.8928,2.0134 20.8048,1.9873 7.4626,-3.4691 15.7013,-4.9778 23.9035,-4.5351 6.2137,-0.1339 12.4386,-0.115 18.6389,0.3578 3.1299,3.634 8.0781,9.27 11.9508,6.5671 -0.54,5.8428 4.9785,7.5087 9.3605,8.9303 3.3117,1.4615 7.6686,2.2007 10.4605,-0.7196 z m -12.7847,-159.8885 c 3.7218,-6.3113 -0.7365,-13.3546 -0.03,-20.0238 -1.9288,-21.3465 -3.1521,-42.7509 -4.0264,-64.1646 -2.0389,-6.6889 -10.5544,-0.2077 -6.619,4.5607 0.5371,22.7449 2.8879,45.3893 4.3533,68.0815 -1.3897,4.1609 -4.0112,13.5796 2.878,13.6269 1.4532,-0.07 2.5613,-1.0089 3.444,-2.0807 z M 1456.3531,874.38664 c -2.2443,-4.33628 -3.9927,3.40799 0,0 z m -3.7388,-8.41203 c -2.3359,-4.19596 0.2896,6.50058 0.115,0.64321 -0.038,-0.2144 -0.077,-0.42881 -0.115,-0.64321 z M 429.68645,820.30794 c -3.09457,-5.53952 -2.27167,4.59028 0,0 z M 1245.6864,2041.5696 c -15.6586,-3.9362 -32.3831,-1.0147 -47.7043,-6.7118 -7.3984,-2.2827 -14.8577,-4.8106 -22.6589,-5.1576 -6.2895,-3.1149 -12.8274,-5.8665 -18.5392,-10.0074 -2.45,-5.9014 -0.089,-12.6218 -2.7777,-18.4932 -2.9246,-6.2653 3.8663,-7.6931 6.6131,-11.4483 3.0661,-5.9351 1.1501,-12.8477 2.4261,-19.1818 0.6993,-7.3207 -1.948,-14.3708 -2.7203,-21.5242 0.035,-6.6884 -3.5647,-14.3145 -10.7009,-15.6854 -5.9769,-3.9236 -1.0379,-11.9705 3.9128,-14.3199 3.0762,-3.2389 4.4567,-8.2705 9.6931,-5.8961 5.5567,-0.05 10.677,-3.1662 14.285,-7.2296 6.5548,-0.4362 13.0663,-2.3447 19.3893,0.3497 6.5145,0.414 15.7121,-3.9309 19.4428,3.8098 2.104,4.8864 6.4254,3.2388 9.6367,1.0165 5.9456,0.8534 11.9773,4.2547 17.5512,-0.081 6.0049,-2.8656 12.1529,-0.5173 17.8953,1.5243 5.2329,1.5706 10.7041,3.429 16.2328,2.4245 6.1134,3.9945 13.7,3.2609 20.6435,3.8265 5.2143,2.5097 3.6507,9.0779 3.4112,13.7147 0.3035,5.3674 0.9873,10.7218 0.8214,16.1489 0.25,16.4107 -0.79,32.8127 -2.1403,49.1521 0.4656,8.2402 4.6239,16.2143 2.606,24.5689 -1.1832,8.0707 -4.7878,17.6209 -13.3458,20.1989 -7.0592,1.9156 -14.475,1.0995 -21.6971,1.5834 -7.4873,-0.013 -15.023,-0.6416 -22.2758,-2.5821 z m -833.33329,-51.8495 c -7.70435,-2.2746 -16.88715,-1.2937 -22.98793,-7.465 -7.28813,-6.2199 -9.19049,-16.0432 -10.9826,-24.9601 -3.34229,-12.2732 -12.72094,-22.7371 -12.75865,-35.8856 1.44346,-6.3292 9.10362,-7.0229 13.36534,-10.7992 6.5058,-5.2108 15.88267,-1.6872 22.41623,-6.6907 4.56331,-6.5882 13.76602,0.5637 18.84496,-5.1489 6.68687,-3.4213 14.48015,-2.8318 21.56798,-4.9189 6.99561,-1.6839 13.88503,-4.0582 21.13973,-4.2901 5.74636,-0.1135 10.72911,-5.0475 16.32895,-3.3628 5.72734,0.5442 12.92489,-2.0193 17.24468,3.0936 4.98028,4.2199 12.86967,5.1269 16.20888,11.3909 6.13845,4.8715 4.98178,13.393 6.98399,20.1219 2.90145,5.3736 8.59618,9.0325 9.82999,15.3604 1.8833,7.1245 1.43182,14.6241 1.303,21.913 0.0733,6.6646 -3.85934,13.5421 -11.07971,14.138 -6.34638,0.5951 -11.52358,4.2668 -17.36406,6.3334 -10.91336,3.4403 -22.50182,3.4821 -33.66829,5.7237 -17.94693,2.7929 -35.96082,6.0098 -54.17181,6.0882 -0.76712,-0.094 -1.52974,-0.2876 -2.22068,-0.6418 z m 1192.83749,-21.019 c -15.6346,-4.725 -32.3377,-4.4711 -47.8253,-9.818 -7.4458,-1.745 -15.0666,-2.826 -22.3174,-5.3025 -9.2146,-2.1278 -17.8853,-6.113 -27.2044,-7.8475 -10.1165,-2.6241 -20.19,-6.4347 -28.361,-13.1177 -6.7487,0.9407 -13.2837,-6.0852 -9.4325,-12.1155 -1.8031,-4.253 2.1582,-7.6535 4.8276,-8.8063 0.2004,-5.7392 0.7085,-11.4292 2.3358,-16.9503 2.4363,-8.8863 7.4854,-17.1114 7.6119,-26.561 -0.4152,-6.7271 3.5118,-12.1453 6.1825,-17.9177 2.9638,-7.2218 -1.4731,-15.645 3.1105,-22.484 3.871,-6.083 11.9388,-4.7948 17.816,-3.0985 12.482,2.6307 24.6516,6.7504 37.3222,8.465 10.8413,0.2574 21.1121,4.4558 31.9162,5.0913 8.2975,1.5531 15.9991,5.4649 24.431,6.4233 6.0694,3.0354 11.5583,7.5871 18.8436,6.9545 5.8312,0.7713 13.4851,1.2576 16.2608,7.3252 2.7773,6.5737 -0.72,13.4155 -2.1945,19.8235 -2.284,6.2893 -8.6027,9.3894 -13.504,13.2894 -5.0117,5.7053 3.9602,9.5463 5.2083,14.3756 0.78,6.1973 -4.4571,10.8908 -5.2064,16.8031 -4.3622,12.3083 -5.7626,25.4658 -9.9832,37.7828 -2.006,3.8128 -5.8323,6.3543 -9.8377,7.6853 z m -923.9333,-35.5883 c -5.8304,-4.2638 -13.87366,-2.0219 -19.83148,-5.9913 -5.37862,-2.3802 -12.76769,-4.2142 -14.14273,-10.8754 0.15523,-7.6183 -6.65952,-14.2178 -4.16801,-21.9467 1.63102,-9.5227 2.23445,-19.5252 -0.6606,-28.8738 -1.00755,-6.5297 7.95634,-6.5908 9.83917,-1.675 6.71561,2.4515 8.75903,-7.3279 14.98226,-7.4822 7.24658,-2.2052 14.51269,1.7043 21.73818,0.024 9.53771,-1.9715 18.37484,-6.9561 28.30149,-7.0686 20.47746,-1.9944 41.15868,-3.3754 61.7012,-1.6638 6.47944,0.8156 14.67397,3.1826 16.5344,10.3192 1.6557,7.5046 0.90526,15.2723 1.213,22.8951 -0.1609,13.3752 -1.08209,26.8054 -3.91528,39.9041 -3.79274,6.3728 -12.0843,5.4415 -18.30767,7.2109 -7.2396,2.4426 -15.0786,2.7668 -22.06255,6.0218 -6.39448,1.1646 -12.68849,-2.4897 -19.11667,-0.7099 -8.92066,1.4612 -18.1352,1.6388 -26.88494,-0.9152 -7.90362,-2.831 -15.09443,4.8002 -22.94797,2.2763 -0.78461,-0.3953 -1.81831,-0.6121 -2.2718,-1.4499 z m 762.4292,-150.153 c -10.4858,-1.9585 -21.3839,-1.0818 -31.6924,-4.0531 -12.4818,-1.0151 -24.416,-5.0909 -36.6351,-7.5562 -11.1961,-2.9184 -22.5178,-5.2891 -33.8195,-7.7286 -3.6905,-1.0659 -8.0563,-1.387 -4.7369,-5.5074 0.5916,-6.0959 -5.4372,-11.1193 -3.5617,-17.3301 1.6684,-6.83 3.9107,-13.5967 3.8412,-20.705 0.7925,-9.1531 -0.7663,-18.2617 -1.6362,-27.323 -0.01,-6.3579 2.7319,-12.6292 7.5145,-16.8034 4.3079,-6.1953 12.5591,-4.699 18.8263,-3.3285 7.1999,0.7694 14.2319,2.6199 21.1734,4.5452 19.325,2.2626 38.7154,-3.1223 58.0201,-0.1289 6.8402,0.4666 13.5593,1.9287 20.0756,3.9605 8.999,1.4589 19.5184,-0.5392 26.8581,6.1353 5.6749,5.8929 3.7431,14.7266 3.7486,22.1068 -0.9024,16.8197 -5.6583,33.3665 -4.283,50.3089 0.059,6.8143 -0.1133,14.3616 -4.2409,20.077 -5.4666,4.633 -13.0548,2.4555 -19.5229,3.7606 -6.6384,0.3445 -13.3293,0.5154 -19.9292,-0.4301 z M 189.94638,1754.308 c 0.47322,-4.4191 0.79898,4.764 0,0 z m 0.75827,-10 c -3.25421,-1.9655 1.24643,-9.9821 1.5073,-3.2996 0.13304,1.0674 -0.41031,7.7471 -1.5073,3.2996 z m 275.28248,-13.1719 c -6.04211,-0.4159 -11.29803,-9.8646 -17.30107,-4.7538 -6.3741,3.8914 -7.90341,-4.013 -7.71019,-8.6948 -1.15186,-9.5006 -0.68903,-19.1091 -1.7686,-28.6 -2.04491,-5.4737 6.99081,-12.9822 -0.76212,-15.2635 -2.04527,-5.7217 0.13375,-12.7647 -0.42689,-18.9915 0.2244,-6.5655 -1.21584,-13.0286 -3.44048,-19.1361 -1.19501,-7.6583 1.22618,-16.3489 7.36751,-21.3295 3.89742,-2.962 9.2127,-0.7753 10.98182,2.9339 3.96354,1.0965 4.29416,-5.1866 4.09224,-5.7144 6.62734,0.1515 12.42593,-4.5212 19.11321,-3.779 11.00299,-1.7998 22.16521,-2.5097 33.24393,-3.3548 9.43679,-2.4563 19.00269,-4.2783 28.62477,-5.8332 6.68578,-3.0725 12.80988,3.5309 19.52172,1.2905 5.7383,-5.05 13.77414,-0.1981 20.34318,-2.8895 6.75756,0.7458 2.31007,11.2032 3.87905,16.1129 0.28585,12.9802 2.40078,25.8584 2.53879,38.8404 1.97366,4.7786 1.297,10.7163 4.52972,14.7121 6.05216,4.06 3.1062,11.962 5.46018,18.0161 1.45699,9.1117 2.32681,18.3444 2.07927,27.5788 -5.64328,4.1128 -12.77059,7.0787 -16.00224,13.6853 -4.99549,4.91 -12.19043,1.4465 -18.20275,1.6231 -19.03326,1.7651 -38.06055,3.9736 -57.20108,4.1314 -10.81482,0.3577 -21.64503,1.2828 -32.45825,1.0721 -2.21762,-0.3216 -4.39741,-0.8886 -6.50172,-1.6565 z M 1329.6864,1576.134 c -7.5974,-1.9644 -15.829,1.1997 -23.1614,-2.1869 -8.5643,2.6521 -17.4499,-0.092 -26.141,-0.4073 -16.1916,-2.3047 -32.5336,-3.6003 -48.569,-6.9264 -11.5848,-2.6034 -23.769,-1.2407 -35.2066,-4.78 -12.0815,-2.057 -24.483,-1.4003 -36.5623,-2.9882 -6.0756,-2.7476 -11.6921,-6.8579 -18.4235,-7.8177 -6.0436,-3.052 -4.0494,-12.7437 -10.9962,-14.7862 -9.094,-1.1543 -18.3674,-0.5499 -27.3731,-2.4542 -3.99,2.0437 -10.5294,3.5683 -9.964,-3.1194 -4.1709,-6.6456 -1.2104,-13.9973 1.9699,-20.2091 1.9331,-6.1244 1.7043,-13.2384 -0.8635,-18.9478 -3.8759,-4.9435 -10.5405,-3.952 -15.9888,-5.3924 -12.03,-2.0968 -24.5419,-2.6669 -35.9525,-7.3377 -6.3314,-4.3722 -0.9385,-12.9647 -4.4576,-18.8305 -1.5068,-6.9889 2.3751,-14.4844 -1.2559,-21.1385 -1.0249,-3.4658 -0.6699,-14.8034 -6.4352,-10.4338 -4.0052,5.1092 -5.5196,11.649 -8.6084,17.3025 -2.7937,6.6905 -7.7425,13.3361 -15.3619,14.5852 -5.9162,1.5249 -13.86909,1.857 -16.52166,8.4327 -3.04939,6.3803 -3.87376,13.5752 -7.12286,19.889 -3.08952,7.4456 -5.82324,15.2328 -10.43089,21.8807 -6.92033,6.5691 -17.154,3.8548 -25.60016,6.066 -10.04427,2.1443 -20.27707,6.0111 -27.38922,13.6689 -6.1593,4.5897 -14.30945,3.1094 -21.14709,5.8738 -6.11215,1.9244 -12.47379,2.7855 -18.84098,3.1366 -6.02787,0.9014 -11.95719,2.3535 -17.82942,3.9671 -10.22086,-2.2632 -20.54853,1.0464 -30.82097,-0.1178 -16.16115,-0.8953 -32.33995,-1.4122 -48.45239,-3.0442 -11.77306,-1.1783 -23.6131,-1.5315 -35.39232,-2.5095 -7.90584,-1.1237 -16.18411,-1.8212 -23.44742,-5.3253 -5.06022,-3.9294 -11.73046,-8.4762 -12.59875,-15.2251 -0.40951,-4.6954 0.48796,-11.3701 -5.01417,-13.401 -6.665,-0.8516 -13.14541,-2.7367 -19.6034,-4.5873 -7.40342,-1.5315 -14.93812,-5.8793 -18.29799,-12.8478 -2.20934,-6.9716 1.75066,-14.7273 -1.94361,-21.3858 -6.53425,-4.2932 -14.82986,-3.2353 -22.03907,-5.6798 -8.2141,-2.0996 -16.56352,-8.0388 -17.43892,-17.1 -0.78259,-6.4372 3.08095,-13.7998 -1.53043,-19.4569 -4.31966,-5.251 -12.85539,-5.5931 -18.00868,-1.3935 -4.38254,-3.4737 -10.27785,-6.6349 -15.27368,-4.4611 -4.20994,-5.4196 7.6713,-6.883 4.54367,-12.7499 -1.25915,-6.4914 -4.26829,-15.3247 2.41036,-19.928 6.10341,-2.489 9.48572,-9.1785 4.48308,-14.5723 -3.78279,-5.0175 -2.44709,-10.72 1.74076,-14.5594 1.18626,-6.4342 -4.45906,-11.3743 -5.4487,-17.5105 -6.15584,-18.0863 -9.27623,-36.9786 -12.59983,-55.7287 -3.32703,-16.0505 -4.25967,-32.4731 -4.04059,-48.8312 -0.0902,-9.9077 -0.92092,-19.82 -1.22147,-29.6982 1.29377,-7.8759 2.0337,-15.8647 1.38514,-23.8364 0.2217,-15.689 3.40911,-31.2007 2.97388,-46.9227 0.36549,-23.8548 -2.01798,-47.6467 -2.20699,-71.4836 0.28849,-13.5156 3.40879,-26.7155 5.99473,-39.9121 1.97219,-12.0204 3.54292,-24.40847 9.09944,-35.41982 5.65616,-4.45414 2.17736,-13.988 8.79431,-17.70826 7.87271,-2.37569 13.28787,-10.49176 22.0371,-10.36689 7.97219,-0.43744 15.97694,-0.15919 23.91049,-1.24782 16.5499,-1.4744 33.11375,0.45968 49.63421,1.41706 11.44422,1.24469 23.37639,1.12516 34.15145,5.65739 6.0764,2.46448 10.74023,8.06435 11.16027,14.75161 0.88195,7.05886 3.59943,14.34358 -0.25534,21.09552 -2.90578,7.94451 -3.89823,16.43651 -5.92273,24.63601 -4.35877,20.082 -6.98295,40.7186 -5.06387,61.2717 1.06693,14.006 3.60025,27.9767 2.46878,42.0661 -1.16408,23.1469 -5.03986,46.1343 -4.6192,69.3618 -0.36316,27.0343 -1.23212,54.3036 3.04108,81.0995 5.18889,29.9978 16.39201,58.8508 31.78319,85.0613 15.09958,24.6147 36.01398,45.338 59.45132,62.0303 5.25586,2.9373 10.55313,-1.8676 13.35784,-6.0145 2.86183,-4.2837 6.59686,-8.005 8.50668,-12.9106 1.51033,-4.5276 5.20426,-8.2262 5.73488,-12.9815 -2.12966,-6.7019 3.41262,-10.0644 7.98426,-13.4669 5.54304,-4.4258 10.3743,-10.303 11.37556,-17.5437 1.1744,-6.4321 4.86002,-11.7927 8.49606,-17.0376 8.93013,-14.8575 14.62221,-31.3271 21.3491,-47.2262 9.98128,-26.7895 18.43902,-54.2901 23.14951,-82.5286 1.2501,-9.1144 2.16143,-18.2664 3.61185,-27.3454 0.70641,-8.7632 0.85908,-17.6062 2.54183,-26.2494 0.7638,-13.3899 -0.55191,-26.9127 1.72169,-40.1996 -0.95117,-6.3865 -3.64507,-12.4636 -3.14776,-19.0264 -1.96764,-17.5601 -1.66654,-35.3312 0.61374,-52.8417 0.63033,-8.5673 0.81514,-17.2847 -1.01273,-25.7018 0.32447,-7.4147 1.31002,-14.8356 0.56063,-22.274 -0.36523,-6.6024 -2.55823,-12.98046 -2.0002,-19.64749 1.07888,-7.13726 -7.68803,-12.86965 -2.52868,-19.7872 4.69557,-3.78295 1.0963,-11.41032 6.63283,-13.875 5.78429,-0.43199 10.92712,-5.90917 17.28897,-3.66788 3.9249,0.10945 7.6126,-2.74184 11.52543,-3.59726 5.47105,-1.82792 11.35603,-1.41889 16.82444,-3.32847 7.11617,-1.89981 15.25426,-0.0734 21.54881,-4.75911 6.6851,-3.78704 14.5474,0.80605 21.6322,-1.26974 14.8831,-1.91908 30.3339,-2.09469 44.8389,2.14573 5.589,1.62577 9.0703,6.93504 9.3037,12.59031 0.9191,8.43095 0.1708,16.94063 0.9277,25.38861 1.2952,34.857 2.7205,69.7185 4.523,104.5485 2.7623,20.167 9.2976,39.5354 14.2968,59.2005 6.377,20.9372 13.2008,41.9897 14.8845,63.945 3.7554,24.617 8.8392,49.0252 14.5339,73.2593 5.771,22.518 15.796,43.7303 28.2417,63.2994 5.4972,9.2816 11.7316,18.0948 18.2254,26.6906 7.5755,12.0065 18.6784,21.0806 28.1478,31.4924 3.9206,4.0452 7.4425,9.3335 13.4867,10.1822 5.4998,1.0266 11.1625,1.3005 16.4425,3.2726 16.6745,3.606 33.7614,0.8137 50.4169,-1.3447 9.0023,-0.1981 18.1539,0.341 26.9769,-1.6268 7.0304,0.2902 14.2823,-1.8371 20.0127,-5.8697 5.4437,-4.8217 10.0426,-12.4111 7.5497,-19.8601 -0.8337,-6.9158 0.8069,-13.8827 -0.2652,-20.8084 -1.0179,-12.5799 -3.5,-25.1603 -8.5691,-36.7693 2.6211,-6.231 -3.4945,-10.5253 -5.2146,-15.5649 -3.3376,-4.9198 -6.7217,-11.2357 -0.9334,-15.9798 4.7024,-5.0303 5.0262,-12.3384 1.1577,-17.9281 -3.434,-5.1919 2.1764,-7.1443 6.1204,-8.1597 6.8776,-4.6755 -1.4875,-10.7853 -0.1134,-16.5733 0.8888,-3.9566 -0.049,-9.1135 -4.3564,-8.054 1.9653,-5.3025 -1.6467,-9.9527 -0.9905,-15.3009 0.1158,-7.1232 6.3008,-11.6421 8.5779,-17.9137 0.1025,-4.8651 2.2086,-9.3039 5.796,-12.6267 3.1971,-3.1118 5.342,-7.3303 4.8084,-11.8808 0.4557,-9.1749 -1.1797,-18.615 -5.7825,-26.6311 -2.0073,-5.2626 2.7232,-13.1497 7.8669,-7.8014 7.4711,-0.7871 1.2889,-9.7013 0.2243,-13.6427 -0.3336,-5.702 3.7839,-11.7927 0.2026,-17.1279 -1.2551,-6.6455 -9.5106,-13.9688 -4.894,-20.1623 2.9469,-4.6422 3.4922,-11.1836 -0.6127,-15.3144 -2.3778,-5.7154 -4.4414,-12.575 -10.8012,-15.0555 -6.5749,-2.5826 -11.5177,-10.7052 -8.4781,-17.5186 1.9116,-2.8792 9.123,2.848 7.7722,-3.8885 -4.3715,-7.629 -9.4332,-15.5119 -9.7375,-24.6205 -0.04,-6.3638 -2.6901,-12.0751 -4.6597,-17.9397 -3.1304,-5.14823 -2.7506,-11.07483 2.6368,-14.19375 3.3038,-5.09086 -4.1467,-10.87767 1.625,-15.68545 3.8002,-6.32329 -3.4525,-11.61431 -6.7253,-16.28495 -4.3998,-6.9164 -2.9114,-18.43672 5.1787,-21.99766 8.5783,-3.09814 17.861,-2.93155 26.8211,-3.95139 12.5776,-0.90468 25.262,-0.26691 37.7902,-1.68568 12.0262,-2.24374 24.3437,-1.63463 36.4983,-1.16732 12.4494,0.89041 26.333,4.32313 33.719,15.3047 10.2112,18.35072 14.1703,39.24922 19.6546,59.3175 3.7372,14.9917 5.0194,30.4657 9.0945,45.3838 5.396,23.6532 11.8773,47.0371 18.992,70.2259 7.0857,24.9276 11.3777,50.7106 12.0794,76.6352 1.1018,17.2051 2.8926,34.5103 0.7093,51.7135 -1.5511,14.8278 -3.5915,29.6424 -6.4349,44.2678 -3.7336,5.6855 -1.347,11.9922 -2.6921,18.0717 -2.9701,8.5639 -4.0424,17.664 -3.3333,26.6942 0.9991,14.1669 3.999,28.1423 4.1701,42.3802 0.629,13.0123 0.9993,26.0815 3.0769,38.9662 -0.8667,6.1053 3.4034,14.5497 -3.075,18.6682 -6.4046,4.4201 -14.377,8.3997 -16.6502,16.4999 -3.1242,8.0222 -5.2674,16.4655 -9.4253,24.0555 -4.1757,4.0607 -13.766,3.5918 -12.9694,11.5338 -0.9573,8.7318 -6.5066,16.0288 -12.9203,21.6554 -3.2979,2.4309 -6.2469,7.8999 -8.8024,9.2875 -7.4318,-5.0406 -11.4351,6.1763 -13.21,11.577 -5.8068,12.6519 -10.4243,27.5745 -23.2539,34.947 -8.1919,4.8785 -17.9916,7.8553 -27.5357,6.9427 -5.8265,-1.4154 -12.9005,-2.2696 -17.718,2.1224 -8.9929,3.5091 -18.8745,4.1819 -28.4287,4.0117 -1.3908,-0.1354 -2.7757,-0.3264 -4.1547,-0.551 z" + id="path313" /> + </g> +</svg> diff --git a/static/icons/bird.svg b/static/icons/bird.svg new file mode 100644 index 0000000..80257ba --- /dev/null +++ b/static/icons/bird.svg @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + version="1.1" + width="2458.6667" + height="1858.6667" + viewBox="0 0 2458.6667 1858.6667" + xmlns="http://www.w3.org/2000/svg"> + + <style> + .shape { + fill: #111; + stroke-width: 1.33333; + } + + @media (prefers-color-scheme: dark) { + .shape { + fill: #fefefe; + } + } + </style> + + <g transform="translate(-104.58786,-530.83635)"> + <path + class="shape" + d="m 149.41978,2386.708 c 4.32147,-5.798 -1.54235,-11.9102 -2.97816,-17.5153 1.91638,-6.3002 -2.83813,-10.8126 -3.21845,-16.7998 0.2703,-7.8943 -8.39185,-8.7772 -14.31807,-8.7893 -6.54124,0.3013 -12.28912,-3.2729 -16.03383,-8.4431 -5.41034,-4.4244 -9.49306,-11.1812 -8.15094,-18.4195 1.75472,-9.9329 3.81358,-19.9619 8.29614,-29.0869 0.68223,-5.1652 4.47678,-10.7001 1.52769,-15.7442 -6.78311,-2.1368 -3.20411,-8.6547 -1.67463,-13.4481 -0.26993,-6.9784 0.98253,-13.9202 3.04481,-20.559 2.01513,-7.937 4.53482,-15.7895 5.19738,-23.9973 0.31491,-6.5318 6.17669,-11.7842 4.70221,-18.4223 -3.27656,-6.2954 1.89935,-11.6703 1.445,-17.9099 -0.96291,-6.9243 -0.60653,-13.6742 -1.4581,-20.569 0.59329,-6.5071 4.05295,-12.5833 2.72451,-19.3191 -1.81246,-6.5281 2.8168,-13.3082 -0.43895,-19.6363 -3.93024,-3.3145 9.11291,-4.6487 3.37437,-8.5549 -7.56085,-3.8716 -0.23477,-12.4337 5.51111,-12.3565 4.11142,-5.7874 -5.33948,-8.7392 -6.4695,-13.7899 -2.20766,-6.0134 -0.43837,-12.6419 2.66541,-17.9707 2.58655,-7.3554 2.64262,-15.256 2.98247,-22.9113 2.32914,-5.4601 8.00653,3.6724 10.65931,-2.3644 2.77482,-5.2163 1.04927,-11.3675 2.03641,-16.9864 1.69946,-26.2948 5.93589,-52.39 6.64156,-78.7549 -0.37441,-5.4657 -13.03052,-3.0978 -9.50163,-9.0019 6.77188,-2.5453 6.60985,-10.8627 7.97449,-16.7837 2.32746,-12.2533 1.60242,-24.7983 1.24615,-37.1801 -1.03929,-7.2976 -0.62634,-15.2442 3.00313,-21.8273 3.61879,-4.1842 6.74182,-9.0379 7.07525,-14.7608 0.4624,-8.1191 0.0995,-16.8284 4.75384,-23.9458 0.6493,-6.378 11.30082,-2.2434 10.72826,-9.7303 1.89766,-8.3754 2.59505,-16.9696 4.01216,-25.4319 0.91831,-6.7125 1.94721,-13.4318 3.73714,-19.9759 6.73936,3.352 7.0955,-6.2432 6.56329,-10.6303 0.22365,-6.7483 0.55384,-13.5588 1.18895,-20.2918 2.21463,-12.3645 2.37872,-24.9798 2.12971,-37.5018 0.17794,-5.2251 -3.52993,-10.053 -0.60726,-15.2479 2.71424,-7.0429 2.28473,-14.7492 3.70299,-22.0892 0.21985,-5.8646 2.9878,-13.0925 1.38176,-18.1209 -6.34767,0.2964 0.35785,-3.273 -0.8228,-6.8134 -0.074,-6.574 3.79265,-12.1117 3.33908,-18.8036 0.0652,-6.1799 6.16136,-8.8491 8.72896,-13.7569 5.03799,-9.1665 7.87807,-19.31 11.70772,-28.9934 2.55586,-6.6454 9.44985,-11.5072 8.80147,-19.2766 0.95624,-8.9611 -11.95575,-4.2913 -13.20104,-11.079 1.59294,-7.1466 2.30076,-14.621 5.34414,-21.4019 3.92298,-1.9715 7.1079,-5.9181 5.04712,-9.9096 3.83966,-3.8581 7.85736,-7.7832 6.80379,-13.526 2.26696,-5.7925 7.98911,-11.095 5.90678,-17.8457 -0.17848,-5.1669 9.36323,-1.0906 6.47562,-7.5458 -2.10491,-5.4924 -12.06272,-11.4094 -3.58857,-16.5001 5.12977,-2.5188 7.59752,-7.527 10.85617,-11.8665 3.19071,-4.1116 7.19811,-9.1815 5.63675,-14.6935 -2.89048,-2.9383 -5.17814,-6.9578 -0.32854,-9.4482 3.99288,-4.0561 7.92521,-8.9479 7.56308,-15.0036 0.77662,-5.1893 -1.88353,-8.8516 -5.67202,-11.6562 6.63263,-0.1064 8.44486,-7.545 13.08554,-11.0182 6.27923,-4.7478 -0.152,-12.8737 0.93042,-18.955 2.12752,-6.5762 6.40864,-12.1716 9.13458,-18.4764 3.64965,-5.9346 5.98391,-12.7646 5.99336,-19.7381 2.19659,-7.0361 -3.93451,-12.777 -4.70846,-19.3391 -1.80881,-2.8476 -4.46695,-6.6725 -0.15443,-8.2701 -0.0873,-3.8281 -10.99708,-7.267 -4.05381,-10.1345 7.97421,-1.3006 5.47562,-10.4851 0.57798,-13.7451 -1.59375,-6.1956 9.14892,-1.8673 5.82106,-7.8927 -6.21356,-5.0871 -6.23397,-12.8394 -2.11036,-19.3238 2.40135,-5.3358 2.1362,-11.2795 4.83249,-16.541 1.89857,-5.3028 3.63596,-10.7637 3.88895,-16.4323 -3.98738,-2.4899 -6.46012,-8.7475 -0.0983,-9.8641 3.51833,-2.5354 1.80304,-8.035 -0.93023,-8.0811 3.03618,-6.4728 5.03996,-13.6105 4.60002,-20.8132 4.09095,-5.1419 3.65614,-11.7448 3.18019,-17.451 3.09731,-5.6627 8.52481,-10.9316 7.90664,-17.7129 -2.58568,-4.7324 -2.10789,-9.9131 3.03301,-12.2528 4.22153,-4.7314 4.40137,-11.4475 4.38899,-17.4473 7.6926,-2.7247 1.41528,-12.1502 5.23644,-17.0311 3.60736,-2.9503 14.18936,-3.1506 10.97333,-9.9906 -3.99192,-1.5106 -3.28116,-5.0971 0.73578,-5.6582 6.05606,-0.7307 12.67733,-10.3676 4.16462,-12.6286 -6.09733,-0.7591 -4.97763,-6.6867 -1.18448,-9.6375 3.71825,-5.5985 1.9499,-12.8653 6.33358,-17.8525 1.38412,-4.2766 -5.92061,-7.0467 0.0345,-9.7519 4.13842,-2.2924 3.38308,-6.3126 0.55827,-8.7767 0.18892,-7.1179 9.35514,-9.0348 12.01069,-14.8038 0.40657,-4.11026 -3.06197,-10.23121 3.02284,-11.231 1.03771,-4.4608 -3.33396,-9.83818 1.66893,-13.40133 2.77032,-5.58179 1.51515,-15.0443 9.47536,-16.3217 5.70743,-2.02704 2.82861,-9.23426 8.23816,-11.40915 3.94069,-3.581 -4.0218,-9.89285 3.28332,-11.74867 5.01207,-2.25559 5.18417,-8.45746 6.41748,-13.11685 1.81543,-13.87627 6.51022,-27.13537 10.16174,-40.59317 0.81923,-7.21954 11.2938,-9.32464 10.51561,-17.35031 -0.71023,-3.92777 1.19413,-7.82216 1.76191,-11.71746 1.03211,-5.51268 3.02082,-10.73163 4.54838,-16.09586 1.84562,-9.38288 3.69702,-20.18914 12.3407,-25.85218 6.38634,-4.05565 13.24899,-7.56324 19.43913,-12.03683 5.68825,-5.41806 13.71121,-7.04061 20.8969,-9.59812 6.99392,-3.579 2.20672,-13.13817 7.18699,-17.48224 5.45328,-4.31 0.83126,-10.11913 2.80172,-15.06809 2.39646,-7.55594 4.59991,-16.02943 11.37744,-20.91719 5.79228,-4.54307 12.28565,-8.25008 17.44177,-13.55312 -0.15138,-4.49644 8.99866,-5.63471 13.348,-7.10572 9.07528,-0.89683 18.52212,0.20277 27.14754,-3.41804 6.26708,-1.97867 10.26281,-8.05245 10.52959,-14.46392 0.7731,-6.61518 1.73723,-13.24183 4.18314,-19.47436 1.68674,-5.67359 3.19233,-11.5115 3.07752,-17.47602 7.33779,-1.83821 10.43576,-10.42766 11.18872,-17.05511 3.24761,-4.13098 9.82715,-6.93022 7.66718,-13.39628 -0.51361,-6.3276 3.84662,-11.84654 9.76984,-13.58051 9.85796,-5.10373 20.23017,-9.66568 31.3666,-10.89405 14.5289,-3.3099 29.8673,-3.30393 43.84216,-8.82596 5.37161,-2.61253 10.12942,-6.74535 16.15903,-7.78343 9.64174,-7.61548 22.06199,-9.53322 33.8068,-11.59967 14.73684,-2.59765 30.33642,0.59042 44.52659,-5.14803 9.06913,-6.71102 14.56507,-17.01213 23.39686,-24.00388 5.86405,-4.21584 10.36714,-12.06682 18.30849,-11.67317 9.91666,-1.00105 19.81126,-2.53765 29.4448,-5.06205 13.61738,-0.87262 27.5049,1.14635 40.87788,-2.34666 20.2653,-2.71926 41.13412,-4.13216 61.2441,0.45601 7.38357,3.25731 13.93475,8.67354 22.00003,10.19448 4.21765,-0.0783 0.811,-7.98842 5.43993,-4.03976 5.77392,2.85574 11.45337,-0.74078 17.17545,-1.48986 16.87338,-2.80796 34.17168,-2.85586 51.14258,-0.99103 8.023,1.30246 15.3105,5.19122 21.967,9.6552 5.3449,0.92267 9.81,-8.31714 14.7102,-1.9687 2.5121,2.06307 4.8483,-0.41903 2.3373,-2.685 5.9796,0.94896 12.1615,2.00481 17.9901,-0.31473 9.4901,-2.33862 19.5046,-4.76916 29.2339,-2.34614 9.2351,-1.43035 18.8582,0.89571 26.4091,6.39937 10.8981,6.87008 19.0973,17.1204 26.2226,27.6782 5.3703,4.39123 11.6429,-0.75402 16.6543,-3.12552 12.77,-5.47464 26.9719,-2.1155 40.3003,-4.56159 7.3183,-1.15799 14.1069,-4.84804 21.6612,-4.73276 14.7038,-1.10064 29.4586,-0.4329 44.1675,0.19182 6.3125,4.19231 14.1282,-0.26186 20.7146,2.33038 4.3283,3.17906 8.9639,8.89426 14.0267,7.62481 2.3277,6.83965 10.8866,9.15118 12.7624,16.26019 4.7666,4.62369 12.5319,7.19068 18.9011,6.41618 4.8747,-1.74274 7.5608,3.99696 12.1654,1.70224 4.7862,-0.79486 11.294,0.47122 12.4458,5.99867 2.923,6.25076 -3.471,12.36399 -1.0473,18.5799 4.2725,5.38856 12.4935,4.66723 18.4602,7.25042 6.9223,0.85698 -2.0533,9.93327 4.9821,12.01261 4.4248,4.53378 5.4443,11.68287 10.9391,15.28892 3.7678,5.89614 11.1684,7.16702 16.582,10.96987 2.8109,5.61166 -2.7729,15.9512 6.7645,17.08197 11.2421,3.25873 23.7677,1.04549 34.2645,7.03715 6.5953,2.80788 12.9312,6.23248 18.864,10.25744 5.2116,1.689 12.3743,2.60209 14.1187,8.75837 0.2016,9.51258 5.589,17.82736 8.6984,26.58654 2.7209,6.0164 6.1138,15.80726 14.6304,13.44034 6.1179,-2.50497 12.5778,-2.59429 18.9151,-3.84674 7.7945,-2.23061 15.97,-6.27302 24.1777,-3.49398 6.1921,0.52178 12.5552,-1.67843 18.54,0.91422 6.3177,1.55497 14.4676,2.3049 17.7057,8.84479 2.7612,6.17905 0.3326,13.96673 5.0363,19.39441 6.6272,3.20212 14.2213,1.20675 21.0797,0.0745 5.8585,-2.45279 12.6484,-5.13751 18.8913,-2.38393 5.5032,0.0891 10.998,-2.32895 16.1606,0.66718 7.969,1.45346 16.7014,1.46177 23.6482,6.09787 5.0944,4.96226 3.1354,12.6417 4.3353,18.96746 0.8566,8.20071 1.2082,16.68679 4.2463,24.43285 2.9601,4.92876 9.2766,2.26413 13.5483,0.98493 6.5725,-2.01956 13.5817,-0.95479 20.3552,-1.33498 10.2128,-0.0932 20.5165,-0.0489 30.6466,-1.0758 2.9646,-1.4447 7.0899,-2.5941 6.5447,2.15496 5.1683,3.81182 12.2811,-3.50999 17.4823,1.3757 6.3125,5.40725 7.4161,14.43516 7.4335,22.28599 0.4531,6.93161 3.4651,13.3379 5.0503,20.02757 3.4978,7.3991 12.3805,3.46211 18.3138,2.28827 18.4287,-3.0787 37.0827,-0.0641 55.3491,2.56385 7.7357,0.44782 17.0694,1.28405 21.8447,8.24281 4.1934,6.66675 5.8324,14.44741 7.7813,21.94905 2.3892,7.30565 8.6034,12.37285 11.9203,19.21184 2.3309,3.61035 3.5462,7.85864 6.0463,11.33049 4.3102,4.71203 11.2393,3.54927 16.5611,1.61029 10.7303,-2.04388 21.6987,-2.47538 32.5717,-3.29 23.8792,-1.0902 48.307,-1.31429 71.5212,5.14647 8.2307,2.42637 16.9078,6.86562 20.0992,15.39118 2.5087,4.77186 1.0064,10.15752 1.7832,15.1605 1.3796,7.555 9.3267,9.59322 15.7905,7.75614 20.2441,-1.38803 40.6576,0.45179 60.5359,4.3497 6.6581,1.68711 14.1801,2.87384 19.1863,7.97207 4.487,4.63503 6.1418,11.09338 9.0007,16.63065 5.1993,5.10787 12.5784,1.13877 18.8224,1.88267 23.8495,-0.2673 48.23,1.1337 70.8898,9.1308 7.2115,3.5678 14.0348,9.8134 15.1357,18.1738 0.1918,7.4704 5.9434,13.512 13.7077,10.9415 12.8675,-1.7553 25.9923,-0.6075 38.7772,1.3812 9.8882,1.7876 19.7861,4.1853 29.0221,8.1794 4.6959,2.1709 8.2404,8.0778 5.1955,12.9297 -2.4037,7.9912 8.1695,9.0316 13.6462,9.2738 17.2414,3.1907 35.445,0.9168 51.9739,7.7682 8.6498,3.7254 17.7994,6.0733 26.2949,10.1315 4.2673,1.5709 4.7144,5.4595 0.2838,7.1029 -6.2262,4.5222 -2.0641,11.0518 3.3197,13.6448 4.4022,4.0754 9.0354,8.6795 15.3535,9.2289 6.8554,1.2256 13.6507,3.0926 19.7214,6.5739 8.0472,3.396 17.8149,4.6601 23.5945,11.8387 1.4978,5.6445 1.9216,12.8051 9.4219,13.1831 6.075,3.3518 11.4746,9.9955 18.9906,6.763 8.2606,-0.6983 12.6019,7.6802 11.0353,14.9199 -0.3474,22.4802 -0.041,44.9838 -0.2084,67.474 -0.076,22.0356 -0.2693,44.072 -0.7947,66.102 -2.0017,8.5545 -8.896,14.5217 -14.0064,21.2542 -5.268,4.2009 -14.4898,1.8182 -17.8128,8.7153 -4.0041,8.6914 -7.2826,17.7027 -11.6673,26.222 -4.062,8.5601 -7.454,17.8552 -14.0555,24.8311 -4.3232,5.0505 -11.8217,2.8626 -16.4041,6.6023 -6.7022,5.9538 -9.8409,14.6308 -12.0986,23.0542 -3.2795,10.5183 -8.5983,20.2776 -14.311,29.6487 -1.0143,6.8991 -9.1389,4.6168 -13.9107,3.838 -5.1291,-0.8029 -8.212,4.6728 -10.0329,8.6592 -3.3926,7.5705 -8.0541,14.4855 -12.1204,21.7047 -3.8743,6.0727 -8.0206,12.3167 -13.7782,16.7225 -6.3493,2.7829 -13.475,-2.3343 -19.6797,1.1471 -8.0139,1.5345 -12.158,9.3715 -15.4119,16.051 -4.4675,7.7706 -7.638,16.235 -11.828,24.1098 -3.9846,5.7327 -9.6718,12.3359 -17.441,11.2986 -6.7778,-1.3792 -13.9241,1.1921 -16.6318,7.9138 -5.0815,8.9995 -7.6427,19.1214 -11.5887,28.6244 -2.0189,5.3155 -4.4373,10.5748 -8.0651,15.0016 -0.4101,7.111 -10.0934,10.6234 -15.2737,5.9999 -8.6981,-3.049 -19.6499,2.0319 -21.7673,11.2837 -3.1672,6.5545 -6.2469,13.2253 -10.6107,19.0936 -1.9793,7.1108 -9.6817,13.392 -17.2579,10.9962 -7.0899,-1.7636 -14.2321,3.3359 -15.0121,10.4611 -3.757,7.6028 -8.9108,14.458 -12.2205,22.2881 -6.0174,10.2013 -18.2715,15.7177 -29.9196,14.3989 -6.3462,-0.6669 -14.1796,0.9395 -16.2553,7.8622 -3.0222,6.9167 -4.5603,14.9634 -10.6895,20.0075 -5.6173,5.0588 -8.3067,12.5512 -14.5338,17.003 -10.0284,8.3091 -23.5794,9.9215 -36.1424,9.0827 -5.948,-0.8413 -12.8358,0.4715 -15.3884,6.6494 -2.9505,6.1337 -5.3077,12.8047 -10.701,17.337 -7.2236,7.129 -17.0261,10.3797 -26.5323,13.135 -5.9271,2.0188 -12.3484,2.7486 -18.5042,1.3992 -6.8953,-0.8704 -13.5635,3.5062 -15.6739,10.0786 -4.5432,10.324 -10.9566,19.9885 -19.6992,27.2235 -5.1787,4.57 -11.9409,6.3607 -18.5641,7.3601 -7.4656,2.3533 -8.3671,10.5225 -10.795,16.7147 -3.912,9.567 -8.3358,19.7803 -16.8226,26.1455 -4.7853,2.4102 -11.189,0.7543 -15.1287,4.8848 -2.9094,6.3341 1.6441,13.3992 1.7,20.0196 4.2483,31.0493 14.0375,61.0361 18.6524,92.0287 5.3554,23.7048 13.3078,46.8439 16.5146,71.0102 7.2081,40.1135 11.052,80.8563 20.6794,120.5144 3.577,12.9277 6.9989,25.9022 9.893,38.9976 2.5685,8.5803 4.5009,17.317 6.1471,26.1112 2.163,7.5837 3.0564,15.4178 3.1069,23.2889 0.4663,16.2311 -1.3631,32.4002 -1.9782,48.6013 1.8185,6.9334 -3.2268,13.4639 -9.9309,14.7792 -5.949,3.1581 -12.2009,6.4642 -19.1197,6.3979 -8.9661,1.5296 -18.0271,2.4857 -27.1284,2.3732 -9.2846,0.7568 -18.5958,2.5447 -27.9186,1.1107 -4.033,-0.3869 -8.0697,-0.8277 -12.1258,-0.8483 -5.6381,4.0597 -12.5552,0.482 -18.3407,1.7646 -7.2336,1.8089 -13.7354,-5.239 -20.6624,-0.9987 -8.2453,2.0832 -15.8609,-5.423 -16.3708,-13.3467 -1.5321,-17.6128 1.7129,-35.2702 0.043,-52.8789 2.6021,-6.8036 3.7251,-14.6158 0.5577,-21.4333 -3.1157,-11.1541 -8.5221,-22.1068 -7.6931,-33.9734 -2.8093,-8.4937 -6.8322,-16.6704 -7.8193,-25.6719 -1.7243,-10.4024 -3.7508,-20.8153 -7.6052,-30.6636 -2.0213,-5.6411 -1.0893,-11.7749 -3.0907,-17.3481 -1.6132,-7.9274 -0.4478,-16.2887 -3.4515,-23.9618 -2.1512,-6.2831 -3.3757,-12.9773 -2.02,-19.562 1.0016,-6.2724 -2.635,-11.7819 -3.1813,-17.8582 -1.1405,-9.4419 -0.3139,-19.478 -4.8547,-28.1695 -1.804,-6.2215 -0.9044,-13.7934 -6.0256,-18.6066 -0.7056,-7.9867 -1.5391,-16.1052 -4.7111,-23.5532 -2.7495,-6.5623 -1.5818,-14.144 -4.7359,-20.4026 -3.6714,-9.2358 -3.6177,-19.3625 -5.6883,-28.9879 -2.0457,-12.4487 -3.2616,-25.0514 -5.2899,-37.4794 -2.9467,-7.8206 -6.415,-15.5684 -7.2443,-23.9812 -2.1263,-13.0481 -2.3335,-26.4127 -5.7701,-39.2344 -0.9246,-7.6009 -0.4676,-15.5433 -3.5759,-22.7123 -1.6084,-7.5065 -1.9935,-15.2255 -3.5651,-22.7333 0.147,-6.3458 -1.1953,-12.4454 -3.5724,-18.2805 -1.9475,-7.8122 -3.1073,-15.8374 -6.0419,-23.3739 -2.1653,-5.9655 1.9067,-12.4162 -1.8076,-17.989 -3.5064,-5.1205 -4.1376,-11.1856 -5.3583,-17.0789 -1.1416,-5.3014 -1.2528,-10.8055 -1.8469,-16.1235 -5.3526,-14.0022 -7.0114,-29.0168 -10.4564,-43.5287 -2.5978,-13.5681 -4.8491,-27.2251 -8.4756,-40.5667 -1.0924,-6.1314 -1.7562,-12.3769 -3.8129,-18.2845 -2.5234,-12.2304 -1.8059,-25.1114 -6.4478,-36.884 -4.8514,-18.8086 -8.5768,-37.9004 -13.9651,-56.5715 0.6456,-8.0455 -6.9576,-13.9317 -6.5394,-21.9793 -1.2472,-6.6878 -5.5188,-12.4718 -6.1015,-19.3304 -6.4322,-21.4867 -8.0459,-44.1182 -15.0289,-65.4525 -2.2236,-6.9708 -0.9553,-14.4778 -3.3953,-21.4177 -4.4222,-15.8929 -8.1931,-32.4105 -17.453,-46.3529 -5.6351,-10.8411 -8.7677,-22.7477 -12.7188,-34.2493 -2.061,-6.0653 -4.4965,-11.9639 -6.3471,-18.0973 -2.8252,-6.899 -4.3016,-14.1868 -6.1456,-21.3725 -0.9181,-5.8942 -3.4156,-11.2844 -5.8541,-16.6584 -3.0965,-7.6292 -5.7005,-15.4515 -8.9467,-23.0209 -0.7369,-9.4038 -7.6767,-16.679 -9.8883,-25.6592 -2.1877,-6.512 -6.4074,-12.247 -7.2729,-19.1793 -2.4144,-10.2909 -6.1764,-20.2495 -7.4552,-30.8009 -3.155,-21.6266 -10.6656,-42.7537 -22.6383,-61.0898 -1.6637,-6.7502 -5.8512,-12.1908 -11.5481,-15.3827 -2.9249,-6.4244 2.6679,-12.8536 0.8886,-19.4157 -1.608,-9.305 -4.9855,-18.2065 -8.0919,-27.0916 -5.3167,-13.9466 -11.1463,-27.714 -15.6905,-41.9395 -2.7244,-7.26428 -8.913,-12.07606 -14.2288,-17.34284 -5.106,-5.32755 -9.9728,-11.42544 -17.0308,-14.17356 -6.0599,-3.41299 -8.6832,-10.13914 -11.0503,-16.2686 -4.6468,-10.75448 -8.295,-21.92524 -13.3436,-32.50859 -4.9662,-4.04545 -12.1521,-6.7344 -13.8064,-13.60173 -3.304,-5.94325 -6.5469,-12.15084 -11.7283,-16.70757 1.7661,4.57903 -4.1328,2.32645 -2.7495,-1.26104 -1.0986,-6.32837 -5.5439,-12.40419 -11.0829,-15.24782 -4.2487,1.43522 -9.4169,0.53169 -8.4245,-5.16102 -0.3851,-6.18499 -6e-4,-12.84859 -3.6345,-18.21126 -2.8465,-5.54055 -4.1227,-11.68342 -5.0796,-17.77148 -1.621,-7.43258 -9.6657,-7.25055 -15.2632,-7.32596 -6.4229,-3.34656 -10.6066,-9.6097 -15.1221,-15.07194 -7.8384,-10.23343 -13.706,-21.84054 -18.0312,-33.94938 -1.6038,-6.4364 -6.683,-12.92261 -14.0976,-11.18919 -5.665,0.83682 -11.1919,2.89259 -16.8012,0.86672 -5.8524,-0.72936 -12.6589,0.20296 -17.2765,-4.25011 -5.0317,-3.24483 -11.7148,-4.93461 -14.3545,-10.87985 -4.8539,-5.89251 -10.5282,-11.59942 -12.345,-19.28492 -1.7095,-4.9946 -4.7577,-11.70723 -11.0694,-11.18418 -5.7938,1.05919 -11.6232,2.20355 -17.536,1.79952 -6.1408,0.42419 -13.128,0.19817 -17.7336,-4.48924 -5.986,-4.37883 -13.6783,-4.01552 -20.6252,-5.21869 -6.1109,-1.57411 -11.2221,-6.245 -13.3559,-12.16148 -5.4526,-5.99076 -12.5238,1.98534 -18.4606,3.10331 -6.3307,2.31601 -12.8995,0.62805 -19.319,-0.004 -27.9661,-2.0587 -55.9473,1.69694 -83.9313,0.51069 -7.2254,-0.38979 -15.1189,1.98538 -21.6393,-2.19096 -5.7613,-4.22805 -12.6549,-1.84149 -19.1256,-1.81924 -17.2933,0.7484 -35.3132,-0.97004 -51.7904,5.39646 -7.3655,3.56819 -15.2202,6.29216 -23.46,6.64535 -12.26268,1.30296 -24.61146,0.77277 -36.9149,1.17483 -5.29086,-3.36019 -11.46648,-2.79941 -17.08647,-1.18173 -7.68143,0.33584 -15.31634,-0.95707 -22.80274,-2.54629 -7.40772,-4.41949 -15.27407,1.24941 -22.74602,2.34109 -9.97092,1.84764 -20.16798,0.98031 -30.21614,2.0047 -7.1009,4.09386 2.48846,13.96932 -4.51399,18.14048 -5.67684,3.24645 -11.85332,5.54738 -17.66309,8.55732 -8.66944,3.38477 -17.23136,7.34737 -26.55776,8.57357 -10.30033,1.63234 -20.76628,2.03097 -31.16937,2.26356 -6.87555,-0.22598 -14.14452,-2.38672 -20.6903,0.68251 -19.42749,7.10002 -40.41776,6.14718 -60.7524,5.99011 -6.17179,-2.2262 -16.33448,4.52318 -11.94813,11.16637 2.60138,3.57949 0.48784,10.90444 -4.8399,8.30342 -4.47308,4.50282 -10.84945,5.6481 -16.91031,5.61529 -7.39367,0.78611 -14.8173,1.5898 -22.0477,3.33434 -9.00696,0.87493 -18.06219,0.3473 -27.0918,0.37588 -0.23599,7.29849 0.81109,14.89214 -1.86696,21.88015 -5.45639,2.58851 -9.9652,10.37599 -5.38052,15.66975 3.00779,1.80736 4.32319,8.16316 -0.43781,4.59678 -7.46862,0.137 -9.36413,9.04708 -14.51074,12.92108 -5.76051,3.34827 -12.79748,2.27258 -19.04851,4.16568 -5.82488,1.19217 -11.62048,2.59878 -17.23194,4.58131 -4.72291,6.205 -5.83895,14.17571 -8.99934,21.13892 -5.28712,18.625 -11.96632,37.44223 -11.2269,57.06999 3.12091,7.35496 -5.3976,10.54242 -7.33971,16.47826 0.10178,4.61647 -5.33043,6.34777 -8.35547,8.95429 -5.20735,3.14821 -6.77544,9.30324 -9.324,14.41166 -3.86134,9.86077 -7.86795,19.65524 -12.1151,29.35566 -5.32705,12.4965 -9.15907,25.5389 -13.58132,38.3584 -10.01259,27.2452 -21.91025,53.829 -29.93067,81.7779 -6.68525,22.601 -10.71971,45.8919 -17.63117,68.4358 -11.47269,40.4996 -24.34994,80.6897 -32.68664,121.9972 -3.09482,15.5904 -4.75677,31.5226 -9.9428,46.6307 -2.24245,7.3532 -3.47328,14.9965 -6.10528,22.2566 -4.29099,12.756 -6.02787,26.1607 -9.74853,39.0781 -4.37638,17.3179 -10.72148,34.0772 -14.45343,51.5663 -2.68891,12.0565 -5.82769,24.0087 -8.71701,36.0116 -2.48138,11.6642 -2.2385,23.6927 -4.15849,35.4124 -2.66065,11.3293 -7.16945,22.1868 -8.80682,33.7624 -6.64073,32.9883 -13.74624,65.8819 -20.8251,98.7765 -2.61324,14.0051 -2.75874,28.3052 -5.08423,42.3514 -2.40997,17.5055 -3.94487,35.1098 -6.19294,52.6349 -1.49752,12.4939 -1.97012,25.0869 -4.08139,37.5052 -6.16218,46.2039 -10.42035,92.6323 -15.43496,138.9677 -1.90813,18.6802 -2.85975,37.4422 -4.01786,56.1719 -2.50511,21.5605 -8.04686,42.7754 -8.27673,64.5805 -0.9481,19.4588 -2.39554,38.8897 -4.14412,58.2889 -2.13376,35.6672 -3.05563,71.3978 -5.29038,107.0585 -0.46773,13.6899 0.0642,27.4186 -0.33434,41.0907 -1.53299,6.7532 -4.99006,13.3275 -3.86074,20.4412 0.0663,9.938 -0.4551,20.1499 -4.22706,29.4711 -4.52055,1.9058 -2.57063,13.4311 -7.29572,11.7529 0.0732,-6.8276 6.47953,-12.4403 4.63965,-19.4628 -5.81542,-5.2833 -7.69257,5.7095 -7.73041,9.8451 1.00818,5.1866 -5.15653,14.0354 -8.55604,6.1576 -0.0656,-6.0028 3.14914,-13.7834 -4.66448,-16.5059 -1.17406,-3.0815 3.9405,-11.0559 -3.24871,-9.9726 -5.14979,4.2045 -10.38484,8.5019 -16.07652,12.0449 -1.692,2.9375 2.02625,10.2811 0.21772,10.6938 -1.1056,-4.435 -8.81467,-3.9177 -4.79446,1.2536 2.37623,7.7692 -6.09296,14.0818 -13.15801,11.0193 -7.51241,-1.3507 -10.01866,-9.5803 -17.01736,-11.4 -2.49072,-2.0185 -9.67964,-8.2739 -8.0677,-0.9857 1.56335,2.4461 2.74934,7.4858 -1.93584,5.2148 -6.14918,2.5154 -3.3421,-5.0601 -3.79194,-7.7645 -5.05954,-4.3238 -11.41426,2.1414 -16.79367,3.2596 -5.75084,2.086 -0.38777,7.6617 -2.46308,11.8226 -1.24501,5.6061 -2.51262,11.2575 -2.05129,17.0406 -0.1616,8.7556 -0.30005,17.5815 -2.01074,26.1997 -0.4623,1.3517 -5.7175,3.6129 -4.09929,0.3378 z M 1926.1257,1690.4471 c 8.7016,-4.0531 18.4665,-5.2535 27.9832,-4.8931 5.3687,-2.2562 11.2823,3.5914 16.2826,-0.074 4.0528,-5.7196 1.9714,-13.5778 5.5063,-19.6011 5.0308,-6.6523 0.3258,-14.9403 1.4687,-22.3344 3.6702,-5.9891 12.0252,-1.2063 17.6189,-3.5512 11.0505,-1.8797 22.207,-3.2112 33.4345,-2.9194 5.764,-0.048 11.5287,-0.01 17.2924,-0.099 6.5641,-4.673 4.8238,-13.5525 6.9797,-20.321 4.2343,-6.9413 5.0708,-15.1947 5.6794,-23.11 1.489,-5.7405 8.4273,-4.3378 12.9121,-4.4307 11.2704,-1.2371 23.0681,-0.3249 33.8992,-4.0349 5.923,-4.2965 3.7636,-12.3736 5.5368,-18.4409 2.297,-5.7685 7.4108,-11.1694 5.9185,-17.8236 -0.361,-6.9031 6.4556,-13.308 13.2542,-10.4632 6.9792,0.4838 13.793,-1.5025 20.7165,-1.9532 7.3432,-4.1622 5.5022,-15.2736 13.1134,-19.1736 5.2341,-4.3289 -1.2156,-12.7772 4.6417,-16.7219 6.9715,-3.2508 14.8814,-0.7011 22.2422,-1.933 5.1523,-0.9287 12.646,-0.3099 14.792,-6.2287 2.7114,-5.9614 2.9768,-12.7975 6.3871,-18.4849 2.8615,-6.2521 6.4123,-12.6697 5.7391,-19.7676 1.6285,-5.8732 9.0237,-6.6748 14.1398,-5.91 7.6883,-0.1128 16.0582,0.9023 23.0214,-3.009 6.3876,-5.3328 6.9831,-14.6103 12.9341,-20.3362 3.9583,-6.2944 -0.1416,-15.64 6.5088,-20.5893 4.7879,-3.46 11.0885,-1.9513 16.6178,-2.3492 6.0478,-0.032 12.7183,0.1823 17.9819,-3.1863 5.1766,-5.3075 5.2887,-13.3069 8.9593,-19.4839 1.3231,-6.5983 7.2827,-12.8701 6.3878,-19.3777 -4.3501,-4.6828 -11.7942,-0.7007 -17.0566,-3.8456 -5.7533,-2.6227 -13.0951,-3.6017 -17.2642,2.2046 -9.8745,7.6783 -22.5371,11.471 -35.0068,10.8799 -11.3999,-0.3159 -23.1884,-1.2046 -34.0625,3.0172 -14.9612,5.6245 -31.7962,5.6209 -46.9272,0.6154 -7.8754,-0.3308 -15.0403,4.1625 -22.9384,3.8042 -5.6808,0.5415 -12.8392,-0.7093 -16.8759,4.3058 -2.3223,4.0695 -1.7632,9.1789 -4.0757,13.3383 -3.4243,9.1282 -13.3052,13.1038 -22.2469,14.4737 -8.1628,1.6541 -16.5943,1.8812 -24.6299,4.1167 -6.0718,4.163 -6.2586,12.8778 -12.3863,17.0503 -9.0965,8.6174 -22.3362,9.181 -34.103,10.6554 -11.997,1.1757 -24.1406,0.6002 -36.0958,1.9614 -6.8147,2.3666 -12.5522,7.8518 -20.1047,7.9096 -24.3925,3.9961 -49.2203,2.1566 -73.7721,4.2641 -14.9211,0.6922 -30.3548,1.1075 -44.6118,-4.0657 -5.0801,-0.3178 -11.625,-11.2311 -15.1932,-4.1111 0.724,6.3474 4.6285,11.7447 6.084,17.9204 9.5575,28.0587 14.3653,57.5073 24.4553,85.4015 7.7487,28.5709 10.0917,58.2705 17.6132,86.8979 3.8502,16.4455 7.6352,32.9516 9.6604,49.7402 1.5641,7.5667 10.9876,8.4591 16.918,5.7371 1.577,-0.499 3.1247,-1.0839 4.6707,-1.67 z m -234.1951,-275.7225 c -2.4182,1.4361 1.9405,2.3711 0,0 z m 240.454,-97.0993 c 11.6943,-5.3468 25.304,-0.3987 36.9753,-5.8335 6.4526,-0.4466 13.6841,3.8539 19.4702,-0.6674 7.4006,-2.9366 6.9493,-12.8812 13.0849,-16.6538 5.2316,-2.5088 4.7473,-7.971 3.0988,-12.2813 0.5302,-6.2889 5.3131,-11.682 11.1011,-13.8609 4.7721,0.961 1.2735,12.7745 8.2089,7.8056 4.8377,-4.333 -3.1043,-14.8979 5.9126,-16.2444 5.7721,-0.8262 13.0405,-5.0904 9.3203,-11.5006 1.9696,-5.8457 10.3112,-4.8917 12.7393,-10.5409 4.752,-5.6554 12.1262,-8.2799 19.2944,-8.9363 6.3634,-1.8323 9.1497,-10.2382 16.3657,-10.0046 3.7971,-4.8788 9.2663,-9.0714 11.4945,-14.8347 -1.2076,-2.6136 -2.9999,-6.2477 1.6945,-6.1536 6.7041,-1.2754 11.3857,-6.7215 17.3963,-9.2124 7.6645,-2.1657 15.6595,1.8842 23.2278,-0.8763 13.8668,-3.0969 28.2348,-2.4665 42.3238,-1.6286 9.0253,0.9073 18.228,1.0773 27.0332,3.3828 9.6412,3.0065 14.0643,12.7055 19.8911,20.039 6.3153,4.911 14.4106,1.2265 21.3469,0.1167 9.9753,-2.1633 19.627,-5.7815 28.6008,-10.6403 7.0678,-0.3785 9.312,-13.41 1.945,-14.6919 -6.5356,-2.8326 1.7345,-7.1126 3.5805,-10.4824 3.1452,-3.7391 6.8466,-7.439 11.717,-8.7197 3.961,-2.8551 9.0371,-5.5148 10.3507,-10.5905 -0.083,-6.0355 -7.6773,-5.7012 -12.0331,-6.0738 -5.1157,-0.052 -10.534,-0.6753 -14.6156,-4.0754 -6.3977,-1.6088 -10.9731,-6.614 -16.8494,-8.6922 -6.1859,0.6475 -11.7838,-2.2438 -12.6928,-8.6528 -2.0348,-5.9516 -8.3595,-8.6047 -14.2451,-7.5181 -14.0896,0.2781 -29.0974,0.4647 -41.7153,-6.7586 -8.3473,-4.2646 -17.8267,-6.4195 -27.1844,-6.3723 -4.171,-4.7983 -9.231,-11.1149 -16.3798,-8.9927 -10.6092,-0.6158 -21.4205,0.3574 -31.8259,-2.2764 -6.7639,-6.4274 -16.7374,-1.9686 -24.7045,-4.9992 -7.043,-2.2782 -14.0152,-5.4506 -21.5726,-5.2966 -7.1165,-0.9706 -10.0173,-9.7043 -17.0972,-10.5683 -3.6024,-0.06 -6.2141,8.806 -6.7691,1.8941 -0.882,-6.8531 -8.3409,-9.0007 -14.2734,-8.1302 -8.1888,0.6958 -16.3381,-0.7752 -24.4845,-1.4967 -11.8081,-1.3087 -23.5276,-4.8538 -33.2207,-11.9091 -8.1801,-5.332 -15.9274,-11.882 -20.7588,-20.4789 -4.4651,-4.8393 -12.0327,-1.2377 -15.0683,3.4395 -7.0742,5.8247 -8.5476,15.8652 -6.979,24.4286 -0.1133,7.3778 -5.7456,13.698 -4.5632,21.2463 0.2797,22.9142 0.9513,45.9141 4.1222,68.6329 1.3513,6.0089 1.6228,12.1655 0.928,18.2772 -0.058,5.0994 -0.1261,10.0226 -2.9663,14.4261 -1.3914,4.2179 -6.124,10.9364 -10.788,6.6946 -4.582,-4.3631 -3.8987,-11.5897 -8.0762,-16.2184 0.4417,-3.9871 0.5633,-13.0592 -5.8701,-9.1211 -5.5827,-1.6566 -1.7699,9.7505 -6.8145,3.9757 -3.8834,-5.5318 1.6837,-11.9162 -0.2068,-17.9456 -1.7315,-6.5687 -4.0923,-12.678 -0.7309,-19.2396 0.8237,-5.2203 -8.0065,-6.4302 -4.2565,-12.3353 3.4767,-6.5696 -4.2257,-11.8493 -1.7831,-18.8651 0.5239,-7.3802 -0.7064,-14.732 -1.041,-22.1079 -0.1333,-5.8023 -1.8495,-11.8314 -1.2807,-17.4581 0.8542,-4.7766 -2.6272,-9.7388 -4.5921,-13.6297 -5.0926,-1.2325 -6.4043,-5.6519 -5.9253,-10.332 -0.8024,-5.6309 -2.7695,-11.6553 -7.1263,-15.4954 -5.7854,-3.9529 -12.645,-6.141 -19.419,-7.6018 -10.0406,-0.1031 -19.4278,-4.2015 -27.8384,-9.3853 -4.9309,-3.1945 -10.5175,-5.3297 -15.2033,-8.86504 -5.2707,-4.66278 -7.2909,-11.79734 -12.7489,-16.33364 -4.1916,-4.72487 -7.6045,-10.60131 -14.6336,-10.9557 -4.5285,-1.89202 -8.8783,-4.2646 -13.7617,-5.29949 -5.8187,-1.34846 -11.2726,-3.74126 -16.7146,-6.1147 -5.8951,-2.18192 -12.2456,-1.76048 -18.3863,-1.87897 -6.2195,-2.39837 -11.484,-6.88564 -18.3675,-7.41251 -7.2103,-2.97236 -11.9321,-10.81095 -20.1416,-11.53142 -6.9908,-2.7696 -6.6717,6.69778 -6.513,11.13882 -0.3609,11.7169 -1.7006,23.72883 1.0712,35.24731 3.9679,14.01295 9.7872,27.45714 16.8176,40.18124 3.6736,10.2809 3.5027,21.5452 7.8415,31.6457 5.4287,14.828 14.5085,27.9662 20.2183,42.6777 6.0324,13.2744 10.8588,27.2027 12.7343,41.7168 3.8092,22.9182 9.0769,46.1441 21.0172,66.3441 2.5078,4.9512 6.5583,8.5293 10.3038,12.4301 3.4359,3.948 3.3055,9.5408 1.3704,14.0214 0.4238,9.0314 8.643,16.7958 17.6296,17.1657 6.9891,0.781 15.2015,0.013 20.5176,5.5606 -1.8535,2.6203 -6.892,6.3246 -1.2677,8.177 7.3755,6.7385 12.9595,15.5909 14.6068,25.5432 1.1603,5.2955 1.801,10.6908 3.015,15.9756 6.1747,4.2223 13.8928,2.0134 20.8048,1.9873 7.4626,-3.4691 15.7013,-4.9778 23.9035,-4.5351 6.2137,-0.1339 12.4386,-0.115 18.6389,0.3578 3.1299,3.634 8.0781,9.27 11.9508,6.5671 -0.54,5.8428 4.9785,7.5087 9.3605,8.9303 3.3117,1.4615 7.6686,2.2007 10.4605,-0.7196 z m -12.7847,-159.8885 c 3.7218,-6.3113 -0.7365,-13.3546 -0.03,-20.0238 -1.9288,-21.3465 -3.1521,-42.7509 -4.0264,-64.1646 -2.0389,-6.6889 -10.5544,-0.2077 -6.619,4.5607 0.5371,22.7449 2.8879,45.3893 4.3533,68.0815 -1.3897,4.1609 -4.0112,13.5796 2.878,13.6269 1.4532,-0.07 2.5613,-1.0089 3.444,-2.0807 z M 1456.3531,874.38664 c -2.2443,-4.33628 -3.9927,3.40799 0,0 z m -3.7388,-8.41203 c -2.3359,-4.19596 0.2896,6.50058 0.115,0.64321 -0.038,-0.2144 -0.077,-0.42881 -0.115,-0.64321 z M 429.68645,820.30794 c -3.09457,-5.53952 -2.27167,4.59028 0,0 z M 1245.6864,2041.5696 c -15.6586,-3.9362 -32.3831,-1.0147 -47.7043,-6.7118 -7.3984,-2.2827 -14.8577,-4.8106 -22.6589,-5.1576 -6.2895,-3.1149 -12.8274,-5.8665 -18.5392,-10.0074 -2.45,-5.9014 -0.089,-12.6218 -2.7777,-18.4932 -2.9246,-6.2653 3.8663,-7.6931 6.6131,-11.4483 3.0661,-5.9351 1.1501,-12.8477 2.4261,-19.1818 0.6993,-7.3207 -1.948,-14.3708 -2.7203,-21.5242 0.035,-6.6884 -3.5647,-14.3145 -10.7009,-15.6854 -5.9769,-3.9236 -1.0379,-11.9705 3.9128,-14.3199 3.0762,-3.2389 4.4567,-8.2705 9.6931,-5.8961 5.5567,-0.05 10.677,-3.1662 14.285,-7.2296 6.5548,-0.4362 13.0663,-2.3447 19.3893,0.3497 6.5145,0.414 15.7121,-3.9309 19.4428,3.8098 2.104,4.8864 6.4254,3.2388 9.6367,1.0165 5.9456,0.8534 11.9773,4.2547 17.5512,-0.081 6.0049,-2.8656 12.1529,-0.5173 17.8953,1.5243 5.2329,1.5706 10.7041,3.429 16.2328,2.4245 6.1134,3.9945 13.7,3.2609 20.6435,3.8265 5.2143,2.5097 3.6507,9.0779 3.4112,13.7147 0.3035,5.3674 0.9873,10.7218 0.8214,16.1489 0.25,16.4107 -0.79,32.8127 -2.1403,49.1521 0.4656,8.2402 4.6239,16.2143 2.606,24.5689 -1.1832,8.0707 -4.7878,17.6209 -13.3458,20.1989 -7.0592,1.9156 -14.475,1.0995 -21.6971,1.5834 -7.4873,-0.013 -15.023,-0.6416 -22.2758,-2.5821 z m -833.33329,-51.8495 c -7.70435,-2.2746 -16.88715,-1.2937 -22.98793,-7.465 -7.28813,-6.2199 -9.19049,-16.0432 -10.9826,-24.9601 -3.34229,-12.2732 -12.72094,-22.7371 -12.75865,-35.8856 1.44346,-6.3292 9.10362,-7.0229 13.36534,-10.7992 6.5058,-5.2108 15.88267,-1.6872 22.41623,-6.6907 4.56331,-6.5882 13.76602,0.5637 18.84496,-5.1489 6.68687,-3.4213 14.48015,-2.8318 21.56798,-4.9189 6.99561,-1.6839 13.88503,-4.0582 21.13973,-4.2901 5.74636,-0.1135 10.72911,-5.0475 16.32895,-3.3628 5.72734,0.5442 12.92489,-2.0193 17.24468,3.0936 4.98028,4.2199 12.86967,5.1269 16.20888,11.3909 6.13845,4.8715 4.98178,13.393 6.98399,20.1219 2.90145,5.3736 8.59618,9.0325 9.82999,15.3604 1.8833,7.1245 1.43182,14.6241 1.303,21.913 0.0733,6.6646 -3.85934,13.5421 -11.07971,14.138 -6.34638,0.5951 -11.52358,4.2668 -17.36406,6.3334 -10.91336,3.4403 -22.50182,3.4821 -33.66829,5.7237 -17.94693,2.7929 -35.96082,6.0098 -54.17181,6.0882 -0.76712,-0.094 -1.52974,-0.2876 -2.22068,-0.6418 z m 1192.83749,-21.019 c -15.6346,-4.725 -32.3377,-4.4711 -47.8253,-9.818 -7.4458,-1.745 -15.0666,-2.826 -22.3174,-5.3025 -9.2146,-2.1278 -17.8853,-6.113 -27.2044,-7.8475 -10.1165,-2.6241 -20.19,-6.4347 -28.361,-13.1177 -6.7487,0.9407 -13.2837,-6.0852 -9.4325,-12.1155 -1.8031,-4.253 2.1582,-7.6535 4.8276,-8.8063 0.2004,-5.7392 0.7085,-11.4292 2.3358,-16.9503 2.4363,-8.8863 7.4854,-17.1114 7.6119,-26.561 -0.4152,-6.7271 3.5118,-12.1453 6.1825,-17.9177 2.9638,-7.2218 -1.4731,-15.645 3.1105,-22.484 3.871,-6.083 11.9388,-4.7948 17.816,-3.0985 12.482,2.6307 24.6516,6.7504 37.3222,8.465 10.8413,0.2574 21.1121,4.4558 31.9162,5.0913 8.2975,1.5531 15.9991,5.4649 24.431,6.4233 6.0694,3.0354 11.5583,7.5871 18.8436,6.9545 5.8312,0.7713 13.4851,1.2576 16.2608,7.3252 2.7773,6.5737 -0.72,13.4155 -2.1945,19.8235 -2.284,6.2893 -8.6027,9.3894 -13.504,13.2894 -5.0117,5.7053 3.9602,9.5463 5.2083,14.3756 0.78,6.1973 -4.4571,10.8908 -5.2064,16.8031 -4.3622,12.3083 -5.7626,25.4658 -9.9832,37.7828 -2.006,3.8128 -5.8323,6.3543 -9.8377,7.6853 z m -923.9333,-35.5883 c -5.8304,-4.2638 -13.87366,-2.0219 -19.83148,-5.9913 -5.37862,-2.3802 -12.76769,-4.2142 -14.14273,-10.8754 0.15523,-7.6183 -6.65952,-14.2178 -4.16801,-21.9467 1.63102,-9.5227 2.23445,-19.5252 -0.6606,-28.8738 -1.00755,-6.5297 7.95634,-6.5908 9.83917,-1.675 6.71561,2.4515 8.75903,-7.3279 14.98226,-7.4822 7.24658,-2.2052 14.51269,1.7043 21.73818,0.024 9.53771,-1.9715 18.37484,-6.9561 28.30149,-7.0686 20.47746,-1.9944 41.15868,-3.3754 61.7012,-1.6638 6.47944,0.8156 14.67397,3.1826 16.5344,10.3192 1.6557,7.5046 0.90526,15.2723 1.213,22.8951 -0.1609,13.3752 -1.08209,26.8054 -3.91528,39.9041 -3.79274,6.3728 -12.0843,5.4415 -18.30767,7.2109 -7.2396,2.4426 -15.0786,2.7668 -22.06255,6.0218 -6.39448,1.1646 -12.68849,-2.4897 -19.11667,-0.7099 -8.92066,1.4612 -18.1352,1.6388 -26.88494,-0.9152 -7.90362,-2.831 -15.09443,4.8002 -22.94797,2.2763 -0.78461,-0.3953 -1.81831,-0.6121 -2.2718,-1.4499 z m 762.4292,-150.153 c -10.4858,-1.9585 -21.3839,-1.0818 -31.6924,-4.0531 -12.4818,-1.0151 -24.416,-5.0909 -36.6351,-7.5562 -11.1961,-2.9184 -22.5178,-5.2891 -33.8195,-7.7286 -3.6905,-1.0659 -8.0563,-1.387 -4.7369,-5.5074 0.5916,-6.0959 -5.4372,-11.1193 -3.5617,-17.3301 1.6684,-6.83 3.9107,-13.5967 3.8412,-20.705 0.7925,-9.1531 -0.7663,-18.2617 -1.6362,-27.323 -0.01,-6.3579 2.7319,-12.6292 7.5145,-16.8034 4.3079,-6.1953 12.5591,-4.699 18.8263,-3.3285 7.1999,0.7694 14.2319,2.6199 21.1734,4.5452 19.325,2.2626 38.7154,-3.1223 58.0201,-0.1289 6.8402,0.4666 13.5593,1.9287 20.0756,3.9605 8.999,1.4589 19.5184,-0.5392 26.8581,6.1353 5.6749,5.8929 3.7431,14.7266 3.7486,22.1068 -0.9024,16.8197 -5.6583,33.3665 -4.283,50.3089 0.059,6.8143 -0.1133,14.3616 -4.2409,20.077 -5.4666,4.633 -13.0548,2.4555 -19.5229,3.7606 -6.6384,0.3445 -13.3293,0.5154 -19.9292,-0.4301 z M 189.94638,1754.308 c 0.47322,-4.4191 0.79898,4.764 0,0 z m 0.75827,-10 c -3.25421,-1.9655 1.24643,-9.9821 1.5073,-3.2996 0.13304,1.0674 -0.41031,7.7471 -1.5073,3.2996 z m 275.28248,-13.1719 c -6.04211,-0.4159 -11.29803,-9.8646 -17.30107,-4.7538 -6.3741,3.8914 -7.90341,-4.013 -7.71019,-8.6948 -1.15186,-9.5006 -0.68903,-19.1091 -1.7686,-28.6 -2.04491,-5.4737 6.99081,-12.9822 -0.76212,-15.2635 -2.04527,-5.7217 0.13375,-12.7647 -0.42689,-18.9915 0.2244,-6.5655 -1.21584,-13.0286 -3.44048,-19.1361 -1.19501,-7.6583 1.22618,-16.3489 7.36751,-21.3295 3.89742,-2.962 9.2127,-0.7753 10.98182,2.9339 3.96354,1.0965 4.29416,-5.1866 4.09224,-5.7144 6.62734,0.1515 12.42593,-4.5212 19.11321,-3.779 11.00299,-1.7998 22.16521,-2.5097 33.24393,-3.3548 9.43679,-2.4563 19.00269,-4.2783 28.62477,-5.8332 6.68578,-3.0725 12.80988,3.5309 19.52172,1.2905 5.7383,-5.05 13.77414,-0.1981 20.34318,-2.8895 6.75756,0.7458 2.31007,11.2032 3.87905,16.1129 0.28585,12.9802 2.40078,25.8584 2.53879,38.8404 1.97366,4.7786 1.297,10.7163 4.52972,14.7121 6.05216,4.06 3.1062,11.962 5.46018,18.0161 1.45699,9.1117 2.32681,18.3444 2.07927,27.5788 -5.64328,4.1128 -12.77059,7.0787 -16.00224,13.6853 -4.99549,4.91 -12.19043,1.4465 -18.20275,1.6231 -19.03326,1.7651 -38.06055,3.9736 -57.20108,4.1314 -10.81482,0.3577 -21.64503,1.2828 -32.45825,1.0721 -2.21762,-0.3216 -4.39741,-0.8886 -6.50172,-1.6565 z M 1329.6864,1576.134 c -7.5974,-1.9644 -15.829,1.1997 -23.1614,-2.1869 -8.5643,2.6521 -17.4499,-0.092 -26.141,-0.4073 -16.1916,-2.3047 -32.5336,-3.6003 -48.569,-6.9264 -11.5848,-2.6034 -23.769,-1.2407 -35.2066,-4.78 -12.0815,-2.057 -24.483,-1.4003 -36.5623,-2.9882 -6.0756,-2.7476 -11.6921,-6.8579 -18.4235,-7.8177 -6.0436,-3.052 -4.0494,-12.7437 -10.9962,-14.7862 -9.094,-1.1543 -18.3674,-0.5499 -27.3731,-2.4542 -3.99,2.0437 -10.5294,3.5683 -9.964,-3.1194 -4.1709,-6.6456 -1.2104,-13.9973 1.9699,-20.2091 1.9331,-6.1244 1.7043,-13.2384 -0.8635,-18.9478 -3.8759,-4.9435 -10.5405,-3.952 -15.9888,-5.3924 -12.03,-2.0968 -24.5419,-2.6669 -35.9525,-7.3377 -6.3314,-4.3722 -0.9385,-12.9647 -4.4576,-18.8305 -1.5068,-6.9889 2.3751,-14.4844 -1.2559,-21.1385 -1.0249,-3.4658 -0.6699,-14.8034 -6.4352,-10.4338 -4.0052,5.1092 -5.5196,11.649 -8.6084,17.3025 -2.7937,6.6905 -7.7425,13.3361 -15.3619,14.5852 -5.9162,1.5249 -13.86909,1.857 -16.52166,8.4327 -3.04939,6.3803 -3.87376,13.5752 -7.12286,19.889 -3.08952,7.4456 -5.82324,15.2328 -10.43089,21.8807 -6.92033,6.5691 -17.154,3.8548 -25.60016,6.066 -10.04427,2.1443 -20.27707,6.0111 -27.38922,13.6689 -6.1593,4.5897 -14.30945,3.1094 -21.14709,5.8738 -6.11215,1.9244 -12.47379,2.7855 -18.84098,3.1366 -6.02787,0.9014 -11.95719,2.3535 -17.82942,3.9671 -10.22086,-2.2632 -20.54853,1.0464 -30.82097,-0.1178 -16.16115,-0.8953 -32.33995,-1.4122 -48.45239,-3.0442 -11.77306,-1.1783 -23.6131,-1.5315 -35.39232,-2.5095 -7.90584,-1.1237 -16.18411,-1.8212 -23.44742,-5.3253 -5.06022,-3.9294 -11.73046,-8.4762 -12.59875,-15.2251 -0.40951,-4.6954 0.48796,-11.3701 -5.01417,-13.401 -6.665,-0.8516 -13.14541,-2.7367 -19.6034,-4.5873 -7.40342,-1.5315 -14.93812,-5.8793 -18.29799,-12.8478 -2.20934,-6.9716 1.75066,-14.7273 -1.94361,-21.3858 -6.53425,-4.2932 -14.82986,-3.2353 -22.03907,-5.6798 -8.2141,-2.0996 -16.56352,-8.0388 -17.43892,-17.1 -0.78259,-6.4372 3.08095,-13.7998 -1.53043,-19.4569 -4.31966,-5.251 -12.85539,-5.5931 -18.00868,-1.3935 -4.38254,-3.4737 -10.27785,-6.6349 -15.27368,-4.4611 -4.20994,-5.4196 7.6713,-6.883 4.54367,-12.7499 -1.25915,-6.4914 -4.26829,-15.3247 2.41036,-19.928 6.10341,-2.489 9.48572,-9.1785 4.48308,-14.5723 -3.78279,-5.0175 -2.44709,-10.72 1.74076,-14.5594 1.18626,-6.4342 -4.45906,-11.3743 -5.4487,-17.5105 -6.15584,-18.0863 -9.27623,-36.9786 -12.59983,-55.7287 -3.32703,-16.0505 -4.25967,-32.4731 -4.04059,-48.8312 -0.0902,-9.9077 -0.92092,-19.82 -1.22147,-29.6982 1.29377,-7.8759 2.0337,-15.8647 1.38514,-23.8364 0.2217,-15.689 3.40911,-31.2007 2.97388,-46.9227 0.36549,-23.8548 -2.01798,-47.6467 -2.20699,-71.4836 0.28849,-13.5156 3.40879,-26.7155 5.99473,-39.9121 1.97219,-12.0204 3.54292,-24.40847 9.09944,-35.41982 5.65616,-4.45414 2.17736,-13.988 8.79431,-17.70826 7.87271,-2.37569 13.28787,-10.49176 22.0371,-10.36689 7.97219,-0.43744 15.97694,-0.15919 23.91049,-1.24782 16.5499,-1.4744 33.11375,0.45968 49.63421,1.41706 11.44422,1.24469 23.37639,1.12516 34.15145,5.65739 6.0764,2.46448 10.74023,8.06435 11.16027,14.75161 0.88195,7.05886 3.59943,14.34358 -0.25534,21.09552 -2.90578,7.94451 -3.89823,16.43651 -5.92273,24.63601 -4.35877,20.082 -6.98295,40.7186 -5.06387,61.2717 1.06693,14.006 3.60025,27.9767 2.46878,42.0661 -1.16408,23.1469 -5.03986,46.1343 -4.6192,69.3618 -0.36316,27.0343 -1.23212,54.3036 3.04108,81.0995 5.18889,29.9978 16.39201,58.8508 31.78319,85.0613 15.09958,24.6147 36.01398,45.338 59.45132,62.0303 5.25586,2.9373 10.55313,-1.8676 13.35784,-6.0145 2.86183,-4.2837 6.59686,-8.005 8.50668,-12.9106 1.51033,-4.5276 5.20426,-8.2262 5.73488,-12.9815 -2.12966,-6.7019 3.41262,-10.0644 7.98426,-13.4669 5.54304,-4.4258 10.3743,-10.303 11.37556,-17.5437 1.1744,-6.4321 4.86002,-11.7927 8.49606,-17.0376 8.93013,-14.8575 14.62221,-31.3271 21.3491,-47.2262 9.98128,-26.7895 18.43902,-54.2901 23.14951,-82.5286 1.2501,-9.1144 2.16143,-18.2664 3.61185,-27.3454 0.70641,-8.7632 0.85908,-17.6062 2.54183,-26.2494 0.7638,-13.3899 -0.55191,-26.9127 1.72169,-40.1996 -0.95117,-6.3865 -3.64507,-12.4636 -3.14776,-19.0264 -1.96764,-17.5601 -1.66654,-35.3312 0.61374,-52.8417 0.63033,-8.5673 0.81514,-17.2847 -1.01273,-25.7018 0.32447,-7.4147 1.31002,-14.8356 0.56063,-22.274 -0.36523,-6.6024 -2.55823,-12.98046 -2.0002,-19.64749 1.07888,-7.13726 -7.68803,-12.86965 -2.52868,-19.7872 4.69557,-3.78295 1.0963,-11.41032 6.63283,-13.875 5.78429,-0.43199 10.92712,-5.90917 17.28897,-3.66788 3.9249,0.10945 7.6126,-2.74184 11.52543,-3.59726 5.47105,-1.82792 11.35603,-1.41889 16.82444,-3.32847 7.11617,-1.89981 15.25426,-0.0734 21.54881,-4.75911 6.6851,-3.78704 14.5474,0.80605 21.6322,-1.26974 14.8831,-1.91908 30.3339,-2.09469 44.8389,2.14573 5.589,1.62577 9.0703,6.93504 9.3037,12.59031 0.9191,8.43095 0.1708,16.94063 0.9277,25.38861 1.2952,34.857 2.7205,69.7185 4.523,104.5485 2.7623,20.167 9.2976,39.5354 14.2968,59.2005 6.377,20.9372 13.2008,41.9897 14.8845,63.945 3.7554,24.617 8.8392,49.0252 14.5339,73.2593 5.771,22.518 15.796,43.7303 28.2417,63.2994 5.4972,9.2816 11.7316,18.0948 18.2254,26.6906 7.5755,12.0065 18.6784,21.0806 28.1478,31.4924 3.9206,4.0452 7.4425,9.3335 13.4867,10.1822 5.4998,1.0266 11.1625,1.3005 16.4425,3.2726 16.6745,3.606 33.7614,0.8137 50.4169,-1.3447 9.0023,-0.1981 18.1539,0.341 26.9769,-1.6268 7.0304,0.2902 14.2823,-1.8371 20.0127,-5.8697 5.4437,-4.8217 10.0426,-12.4111 7.5497,-19.8601 -0.8337,-6.9158 0.8069,-13.8827 -0.2652,-20.8084 -1.0179,-12.5799 -3.5,-25.1603 -8.5691,-36.7693 2.6211,-6.231 -3.4945,-10.5253 -5.2146,-15.5649 -3.3376,-4.9198 -6.7217,-11.2357 -0.9334,-15.9798 4.7024,-5.0303 5.0262,-12.3384 1.1577,-17.9281 -3.434,-5.1919 2.1764,-7.1443 6.1204,-8.1597 6.8776,-4.6755 -1.4875,-10.7853 -0.1134,-16.5733 0.8888,-3.9566 -0.049,-9.1135 -4.3564,-8.054 1.9653,-5.3025 -1.6467,-9.9527 -0.9905,-15.3009 0.1158,-7.1232 6.3008,-11.6421 8.5779,-17.9137 0.1025,-4.8651 2.2086,-9.3039 5.796,-12.6267 3.1971,-3.1118 5.342,-7.3303 4.8084,-11.8808 0.4557,-9.1749 -1.1797,-18.615 -5.7825,-26.6311 -2.0073,-5.2626 2.7232,-13.1497 7.8669,-7.8014 7.4711,-0.7871 1.2889,-9.7013 0.2243,-13.6427 -0.3336,-5.702 3.7839,-11.7927 0.2026,-17.1279 -1.2551,-6.6455 -9.5106,-13.9688 -4.894,-20.1623 2.9469,-4.6422 3.4922,-11.1836 -0.6127,-15.3144 -2.3778,-5.7154 -4.4414,-12.575 -10.8012,-15.0555 -6.5749,-2.5826 -11.5177,-10.7052 -8.4781,-17.5186 1.9116,-2.8792 9.123,2.848 7.7722,-3.8885 -4.3715,-7.629 -9.4332,-15.5119 -9.7375,-24.6205 -0.04,-6.3638 -2.6901,-12.0751 -4.6597,-17.9397 -3.1304,-5.14823 -2.7506,-11.07483 2.6368,-14.19375 3.3038,-5.09086 -4.1467,-10.87767 1.625,-15.68545 3.8002,-6.32329 -3.4525,-11.61431 -6.7253,-16.28495 -4.3998,-6.9164 -2.9114,-18.43672 5.1787,-21.99766 8.5783,-3.09814 17.861,-2.93155 26.8211,-3.95139 12.5776,-0.90468 25.262,-0.26691 37.7902,-1.68568 12.0262,-2.24374 24.3437,-1.63463 36.4983,-1.16732 12.4494,0.89041 26.333,4.32313 33.719,15.3047 10.2112,18.35072 14.1703,39.24922 19.6546,59.3175 3.7372,14.9917 5.0194,30.4657 9.0945,45.3838 5.396,23.6532 11.8773,47.0371 18.992,70.2259 7.0857,24.9276 11.3777,50.7106 12.0794,76.6352 1.1018,17.2051 2.8926,34.5103 0.7093,51.7135 -1.5511,14.8278 -3.5915,29.6424 -6.4349,44.2678 -3.7336,5.6855 -1.347,11.9922 -2.6921,18.0717 -2.9701,8.5639 -4.0424,17.664 -3.3333,26.6942 0.9991,14.1669 3.999,28.1423 4.1701,42.3802 0.629,13.0123 0.9993,26.0815 3.0769,38.9662 -0.8667,6.1053 3.4034,14.5497 -3.075,18.6682 -6.4046,4.4201 -14.377,8.3997 -16.6502,16.4999 -3.1242,8.0222 -5.2674,16.4655 -9.4253,24.0555 -4.1757,4.0607 -13.766,3.5918 -12.9694,11.5338 -0.9573,8.7318 -6.5066,16.0288 -12.9203,21.6554 -3.2979,2.4309 -6.2469,7.8999 -8.8024,9.2875 -7.4318,-5.0406 -11.4351,6.1763 -13.21,11.577 -5.8068,12.6519 -10.4243,27.5745 -23.2539,34.947 -8.1919,4.8785 -17.9916,7.8553 -27.5357,6.9427 -5.8265,-1.4154 -12.9005,-2.2696 -17.718,2.1224 -8.9929,3.5091 -18.8745,4.1819 -28.4287,4.0117 -1.3908,-0.1354 -2.7757,-0.3264 -4.1547,-0.551 z" + id="path313" /> + </g> +</svg> diff --git a/static/icons/code.svg b/static/icons/code.svg new file mode 100644 index 0000000..db8d944 --- /dev/null +++ b/static/icons/code.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="35" width="35" viewBox="0 0 640 640"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path fill="#dbdbdb" d="M392.8 65.2C375.8 60.3 358.1 70.2 353.2 87.2L225.2 535.2C220.3 552.2 230.2 569.9 247.2 574.8C264.2 579.7 281.9 569.8 286.8 552.8L414.8 104.8C419.7 87.8 409.8 70.1 392.8 65.2zM457.4 201.3C444.9 213.8 444.9 234.1 457.4 246.6L530.8 320L457.4 393.4C444.9 405.9 444.9 426.2 457.4 438.7C469.9 451.2 490.2 451.2 502.7 438.7L598.7 342.7C611.2 330.2 611.2 309.9 598.7 297.4L502.7 201.4C490.2 188.9 469.9 188.9 457.4 201.4zM182.7 201.3C170.2 188.8 149.9 188.8 137.4 201.3L41.4 297.3C28.9 309.8 28.9 330.1 41.4 342.6L137.4 438.6C149.9 451.1 170.2 451.1 182.7 438.6C195.2 426.1 195.2 405.8 182.7 393.3L109.3 320L182.6 246.6C195.1 234.1 195.1 213.8 182.6 201.3z"/></svg> diff --git a/static/icons/search.svg b/static/icons/search.svg new file mode 100644 index 0000000..5dc2e98 --- /dev/null +++ b/static/icons/search.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 640 640"><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path fill="#dddddd" d="M480 272C480 317.9 465.1 360.3 440 394.7L566.6 521.4C579.1 533.9 579.1 554.2 566.6 566.7C554.1 579.2 533.8 579.2 521.3 566.7L394.7 440C360.3 465.1 317.9 480 272 480C157.1 480 64 386.9 64 272C64 157.1 157.1 64 272 64C386.9 64 480 157.1 480 272zM272 416C351.5 416 416 351.5 416 272C416 192.5 351.5 128 272 128C192.5 128 128 192.5 128 272C128 351.5 192.5 416 272 416z"/></svg> diff --git a/static/icons/sort.svg b/static/icons/sort.svg new file mode 100644 index 0000000..3e44e12 --- /dev/null +++ b/static/icons/sort.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 640 640"><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path fill="#dddddd" d="M130.4 268.2C135.4 280.2 147 288 160 288L480 288C492.9 288 504.6 280.2 509.6 268.2C514.6 256.2 511.8 242.5 502.7 233.3L342.7 73.3C330.2 60.8 309.9 60.8 297.4 73.3L137.4 233.3C128.2 242.5 125.5 256.2 130.5 268.2zM130.4 371.7C125.4 383.7 128.2 397.4 137.3 406.6L297.3 566.6C309.8 579.1 330.1 579.1 342.6 566.6L502.6 406.6C511.8 397.4 514.5 383.7 509.5 371.7C504.5 359.7 492.9 352 480 352L160 352C147.1 352 135.4 359.8 130.4 371.8z"/></svg> diff --git a/static/images/AUTENTiSK MECHANDiSE.webp b/static/images/AUTENTiSK MECHANDiSE.webp Binary files differnew file mode 100644 index 0000000..7877b3d --- /dev/null +++ b/static/images/AUTENTiSK MECHANDiSE.webp diff --git a/static/images/BEVISMAtERIALE🫱.webp b/static/images/BEVISMAtERIALE🫱.webp Binary files differnew file mode 100644 index 0000000..f5d767c --- /dev/null +++ b/static/images/BEVISMAtERIALE🫱.webp diff --git a/static/images/CHR BORG ER EN KiBBUTZ.webp b/static/images/CHR BORG ER EN KiBBUTZ.webp Binary files differnew file mode 100644 index 0000000..bcba2db --- /dev/null +++ b/static/images/CHR BORG ER EN KiBBUTZ.webp diff --git a/static/images/DEFY UNJUST .LAWS..webp.webp b/static/images/DEFY UNJUST .LAWS..webp.webp Binary files differnew file mode 100644 index 0000000..e2d6e31 --- /dev/null +++ b/static/images/DEFY UNJUST .LAWS..webp.webp diff --git a/static/images/DEMOKRATi KRÆVR RESPEKT FOR (ViSSE) GRUNDLÆGGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE LØBENDE SØGER DiALOG MED VÆLGERNE.webp b/static/images/DEMOKRATi KRÆVR RESPEKT FOR (ViSSE) GRUNDLÆGGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE LØBENDE SØGER DiALOG MED VÆLGERNE.webp Binary files differnew file mode 100644 index 0000000..11ac72f --- /dev/null +++ b/static/images/DEMOKRATi KRÆVR RESPEKT FOR (ViSSE) GRUNDLÆGGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE LØBENDE SØGER DiALOG MED VÆLGERNE.webp diff --git a/static/images/DEN DANSKE STAT & MÆRSK PROFITERE PÅ ETNiSK UDRENSNiNG I PALAETiNA.webp b/static/images/DEN DANSKE STAT & MÆRSK PROFITERE PÅ ETNiSK UDRENSNiNG I PALAETiNA.webp Binary files differnew file mode 100644 index 0000000..20bc906 --- /dev/null +++ b/static/images/DEN DANSKE STAT & MÆRSK PROFITERE PÅ ETNiSK UDRENSNiNG I PALAETiNA.webp diff --git a/static/images/GRAFFiTY IS A -_ DiSCUSTiNG HABiT!.webp b/static/images/GRAFFiTY IS A -_ DiSCUSTiNG HABiT!.webp Binary files differnew file mode 100644 index 0000000..fb3e4c7 --- /dev/null +++ b/static/images/GRAFFiTY IS A -_ DiSCUSTiNG HABiT!.webp diff --git a/static/images/GlÆDLiG ANGST OG GO.webp b/static/images/GlÆDLiG ANGST OG GO.webp Binary files differdeleted file mode 100644 index 40859a2..0000000 --- a/static/images/GlÆDLiG ANGST OG GO.webp +++ /dev/null diff --git a/static/images/HVORFOR GØR DU, SOM DU GØR_.webp b/static/images/HVORFOR GØR DU, SOM DU GØR_.webp Binary files differnew file mode 100644 index 0000000..f18ef0a --- /dev/null +++ b/static/images/HVORFOR GØR DU, SOM DU GØR_.webp diff --git a/static/images/KRÆNKER!.webp b/static/images/KRÆNKER!.webp Binary files differnew file mode 100644 index 0000000..42d1211 --- /dev/null +++ b/static/images/KRÆNKER!.webp diff --git a/static/images/PALESTiNE WiLL NEVER DiE.webp b/static/images/PALESTiNE WiLL NEVER DiE.webp Binary files differnew file mode 100644 index 0000000..9ca43a2 --- /dev/null +++ b/static/images/PALESTiNE WiLL NEVER DiE.webp diff --git a/static/images/PSEUDO LiFESTYLE.webp b/static/images/PSEUDO LiFESTYLE.webp Binary files differnew file mode 100644 index 0000000..8b848d5 --- /dev/null +++ b/static/images/PSEUDO LiFESTYLE.webp diff --git a/static/images/SLUK FOR DE RIGES PRiViLEGiER.webp b/static/images/SLUK FOR DE RIGES PRiViLEGiER.webp Binary files differnew file mode 100644 index 0000000..884072e --- /dev/null +++ b/static/images/SLUK FOR DE RIGES PRiViLEGiER.webp diff --git a/static/images/SMÅBORGERLiGHEDEN_.webp b/static/images/SMÅBORGERLiGHEDEN_.webp Binary files differnew file mode 100644 index 0000000..f3afbd9 --- /dev/null +++ b/static/images/SMÅBORGERLiGHEDEN_.webp diff --git a/static/images/SPYOSCAPE.svg b/static/images/SPYOSCAPE.svg new file mode 100644 index 0000000..a643230 --- /dev/null +++ b/static/images/SPYOSCAPE.svg @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + version="1.1" + id="svg112" + width="10616.003" + height="1881.1646" + viewBox="0 0 10616.003 1881.1645" + sodipodi:docname="SPYOSCAPE.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview115" + pagecolor="#7b7b7b" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="0.35515188" + inkscape:cx="9372.0468" + inkscape:cy="522.31176" + inkscape:window-width="1898" + inkscape:window-height="1130" + inkscape:window-x="11" + inkscape:window-y="59" + inkscape:window-maximized="1" + inkscape:current-layer="svg112" /> + <defs + id="defs116" /> + <g + id="g118" + transform="translate(2.6143808,-10.031403)"> + <path + id="path236" + style="fill:#fefefe;stroke-width:1.33333" + d="m 8949.4212,7.052136 c -31.0422,3.848901 -62.4481,4.571357 -93.5156,8.419922 -25.0528,-0.402981 -34.9781,27.058945 -54.1836,37.984375 -23.8579,6.470313 -50.2278,1.660662 -72.6797,13.560547 -26.0776,20.840685 -62.5092,13.685443 -90.9492,28.660156 -17.7294,14.025714 -24.1614,37.274594 -33.4258,56.962894 -4.3796,16.07447 -5.5529,39.94182 -26.0664,43.33007 -26.9794,-2.98382 -53.6345,16.79355 -59.3906,43.19727 0.6125,25.48391 -23.6642,39.83604 -44.4922,48.07813 -22.6619,14.67878 -19.492,44.66069 -29.3789,66.71875 -14.7993,21.08516 -12.9903,48.50849 -25.4941,70.53906 -12.5264,14.69601 -17.5171,33.51727 -23.5996,51.42383 -8.0851,15.95295 -12.1694,33.19906 -16.9141,50.44531 2.3652,18.28933 -2.5125,33.90701 -16.127,47.32226 -10.9627,31.63145 -21.3269,63.99395 -26.2714,97.2793 -1.1554,25.83088 -11.0105,50.32907 -11.1426,76.35547 -5.4023,19.99028 2.3289,38.73522 5.1367,57.56836 -6.8895,22.42915 -14.9562,44.16675 -23.1406,65.14453 -1.8311,17.8269 -5.0661,35.19531 -13.377,51.10156 -15.746,12.92622 -4.1255,29.74221 -13.6933,45.41797 -6.0772,18.36997 -26.28,35.5003 -17.9903,55.7227 15.0109,14.7822 -1.4837,33.2617 -8.4863,48.2421 -13.6196,19.4792 -15.2058,43.738 -16.0586,66.6993 -4.7062,29.8839 -1.2973,60.3122 -5.4238,90.2343 -12.7307,20.5588 -5.6298,48.038 -21.168,67.3399 -9.6136,18.1977 -15.8627,38.721 -18.6367,59.2422 2.1701,21.238 -3.3297,41.6243 -5.4277,62.6386 10.8184,20.8516 -0.8971,43.1748 -0.1172,64.9864 5.3161,19.8754 -9.6759,36.0503 -16.7852,53.1015 -8.4102,16.0293 7.8903,32.4055 -2.7988,48.3848 -3.3081,22.7154 -3.5765,46.0922 -4.4844,69.1211 3.0194,32.2071 -16.0918,61.5161 -13.7598,93.5723 5.2575,22.5643 -18.8436,48.7029 1.2364,68.0332 23.5959,2.1078 40.0377,27.1064 35.8222,49.7343 3.8281,-3.4244 5.7641,-8.4676 6.2774,-13.4785 -1.1791,-13.6608 -3.9565,-53.1002 18.541,-43.4082 8.6542,15.7084 8.1904,-7.5772 17.4141,3.4668 14.0965,14.0653 33.4494,8.7442 34.582,-11.7969 6.8193,-18.6963 26.2743,-8.3338 23.3281,8.5371 9.161,17.5602 10.159,-22.1787 15.6406,-3.498 -4.2877,16.4265 3.9684,-0.5402 4.4942,-6.5684 4.2973,-22.7473 5.8196,-45.9852 6.959,-69.1386 3.3031,-80.7554 5.1566,-161.8601 16.9179,-241.9453 6.7692,-90.2935 18.1651,-180.1732 28.4375,-270.125 4.9446,-65.0361 22.4285,-128.0403 35.3145,-191.7305 9.6362,-65.46592 30.0921,-128.53725 46.4707,-192.47071 9.8253,-58.71431 28.0798,-115.50508 43.418,-172.91407 14.0407,-65.62791 40.5499,-127.47733 63.6347,-190.21679 4.9894,-23.53529 28.7631,-37.16056 33.545,-60.59571 -0.4666,-14.24125 3.1391,-28.15766 5.6738,-42.21679 3.1675,-12.66995 8.3639,-30.4958 22.1543,-33.82032 14.819,-3.75919 42.4918,-9.97896 42.5488,-26.64843 1.7514,-16.63514 7.5486,-40.51923 29.4004,-37.30078 15.0411,-1.72585 36.801,4.28482 45.6855,-9.96875 1.8357,-25.83561 28.5436,-14.30337 45.4766,-17.83594 24.8139,-4.61966 49.7821,-6.87533 75.0117,-7.5293 18.1427,-5.33635 46.3428,-5.50518 52.9141,-27.02539 11.3156,-15.05839 32.0805,-13.44271 48.8359,-12.93945 28.2444,-0.56092 56.4984,5.30695 84.6621,1.78515 24.1668,-7.61412 49.369,-14.10634 75.0157,-12.15234 27.0273,5.21606 54.6898,5.02456 82.1054,3.57031 24.0092,0.86517 47.691,0.77869 71.6836,-1.83203 21.7111,8.36552 43.0574,22.27109 68.8028,20.14063 20.6911,1.31361 25.6426,25.12524 38.7343,37.08007 16.0677,15.1571 43.3309,-3.88373 56.5762,18.9336 9.355,20.76452 17.7501,42.30313 41.0137,51.80664 18.8102,11.82831 6.2571,43.83757 29.8105,52.18945 12.0675,20.3905 33.467,34.61454 41.0352,57.75195 3.5499,28.38525 35.357,38.3707 47.3847,61.86915 8.0291,27.97187 27.6856,54.53728 22.3145,84.9414 14.7331,19.10321 26.0658,40.99469 32.0391,64.42188 4.4795,38.22319 21.2,73.22888 34.9218,108.73437 11.3859,32.75146 19.2129,66.76778 34.0254,98.30469 11.5932,21.5319 16.4652,45.47908 21.0957,69.27734 9.9018,59.67345 33.2692,116.05517 43.3399,175.70707 14.1861,83.4234 36.718,165.2189 49.9433,248.7988 4.2359,36.3857 13.8357,71.7419 19.4297,107.8848 4.8143,38.8994 18.2625,75.8933 25.7969,114.207 4.0103,36.9226 8.9032,73.8331 17.7734,109.9648 5.9466,31.9967 20.609,62.5749 18.9297,95.6641 -0.3955,20.2148 -11.4208,50.0614 11.9649,61.5352 31.9061,1.0138 63.8957,1.0596 95.7307,-1.5782 26.456,5.0671 51.43,-20.0227 44.177,-46.4765 3.352,-34.3723 -7.684,-67.3827 -15.71,-100.2774 -12.758,-46.1207 -16.09,-93.9696 -25.596,-140.7187 -10.597,-49.8455 -22.5062,-99.3896 -32.8205,-149.2989 -13.1221,-27.2873 24.4165,-34.893 30.2985,-56.5097 6.917,-22.2433 38.881,-25.7963 47.356,-48.2305 9.996,-20.0433 35.631,-13.0703 52.683,-21.6035 13.759,-16.5729 29.648,-37.1897 55.627,-34.0039 19.676,-0.067 27.336,-21.846 36.575,-35.7774 11.343,-21.4703 43.389,-10.572 53.849,-35.164 4.303,-25.498 33.831,-25.1802 45.988,-43.6289 -1.188,-22.932 22.882,-23.8155 39.229,-28.3887 16.871,-15.4387 13.77,-50.9815 41.781,-56.4707 22.72,-3.4002 20.204,-32.25611 34.983,-44.76172 19.592,-4.98322 40.786,-12.31355 48.455,-34.62109 10.162,-18.8292 40.871,-22.85669 42.236,-49.39454 2.251,-27.21183 39.675,-30.46161 43.779,-56.72265 0.262,-26.94427 33.935,-32.15391 42.774,-54.55078 0.989,-38.39379 1.322,-76.8037 1.027,-115.20899 8.28,-25.39614 -15.709,-38.85456 -36.305,-45.46484 -5.353,-16.04191 -23.004,-21.26307 -37.611,-25.30469 -16.479,-2.96373 -29.46,-12.07723 -28.449,-29.77539 -11.708,-16.84256 -38.047,-14.45085 -56.609,-18.60547 -21.57,3.52884 -33.392,-10.65277 -45.094,-25.90625 -19.046,-13.53245 -43.697,-3.12581 -64.758,-8.75195 -15.513,-10.14307 -22.278,-35.53691 -45.82,-33.61524 -19.215,-7.33902 -39.97,1.13686 -59.539,-3.77929 -17.913,-7.37035 -27.755,-30.77602 -50.936,-29.26563 -20.241,-7.27793 -48.087,9.12326 -62.971,-10.67578 -3.166,-14.37749 -11.866,-28.49358 -27.773,-30.76953 -29.893,-5.9767 -60.699,-5.42489 -90.7794,-1 -20.3633,7.12307 -37.28,-9.72083 -41.1191,-29.04687 -3.4807,-23.11472 -24.2441,-35.24723 -46.3965,-35.39063 -20.0211,-5.16669 -46.3824,11.07626 -61.4727,-7.92578 -2.8434,-16.65168 -2.5679,-39.91424 -26.5801,-39.83594 -23.5444,-5.2186 -48.4984,9.99059 -70.7031,-0.73047 -4.0522,-16.71083 -5.0779,-49.12179 -31.5195,-49.15429 -18.5754,-5.14431 -38.2087,9.95631 -55.7988,0.86523 -6.8285,-25.03843 -35.4368,-35.18034 -58.7051,-24.85352 -18.4791,9.67469 -50.7844,2.74517 -47.7324,-23.17382 -6.7703,-25.30725 -36.2421,-30.47669 -58.2911,-34.94141 -20.197,-5.44277 -28.512,-26.99551 -43.3105,-40.37305 -3.9428,-16.55179 -21.6635,-15.54495 -25.5957,-31.066403 1.3572,-21.441851 -27.1573,-17.631737 -40.9922,-26.179687 -15.1017,-7.959033 -22.5755,-26.176906 -42.1816,-25.732422 -19.6357,-1.891398 -39.8827,-2.343115 -59.2364,1.40039 -22.4175,0.398588 -44.5041,6.509793 -66.0175,8.605469 -20.2379,-5.600782 -26.6673,-31.918801 -48.959,-33.839844 -28.6078,-1.517791 -57.5076,10.865251 -86.0176,3.21875 -22.13,-9.8569024 -46.7854,-6.137184 -69.7852,-2.068359 -21.8499,6.308533 -41.5713,-10.9217072 -63.6543,-9.455078 z M 2433.8158,42.862683 c -20.9017,8.893253 -50.695,-5.067716 -65.7481,15.02539 3.2497,30.337586 0.815,60.757957 0.8145,91.160157 -1.1246,26.3125 3.6276,53.12678 -2,79.04492 -13.3533,20.99871 7.7103,43.23679 -3.1133,62.76563 -18.8241,16.74899 3.128,37.91672 2,57.18945 -15.9137,22.71927 -4.5065,50.50305 -7.6914,75.83203 5.1202,25.7888 10.9103,52.39882 6.0078,78.69531 0.1757,18.08467 0.5668,36.49257 1.7402,54.65821 7.9588,42.75989 5.6286,86.5171 5.9004,129.82226 -0.9598,37.89153 4.5164,75.53776 5.0371,113.34571 1.6021,20.01223 -14.3988,37.18025 -10.1464,57.16796 19.0727,19.22221 3.7694,43.80133 -2.9141,65.00391 -0.058,24.71233 -0.9985,49.58792 -1.0195,74.36914 10.3248,25.74904 -16.2662,35.16504 -28.6875,51.85544 6.4628,20.0349 -14.1294,44.8137 -34.9766,31.3516 -28.7021,1.6809 -57.593,-0.5472 -86.1758,3.2031 -20.593,6.1679 -44.7282,9.817 -63.5527,-3.3633 -22.0241,-16.1634 -49.3886,0.2051 -73.711,-4.6464 -20.6095,-12.8287 -45.4585,-15.5231 -68.3671,-23.0098 -13.7907,-20.3251 -2.7145,-48.5885 -18.7246,-68.08986 -10.1974,-47.80852 -4.0037,-96.84033 -4.4278,-145.22461 -4.7509,-94.95226 11.3947,-189.56744 6.252,-284.50195 -4.9661,-38.46093 -9.3676,-77.25888 -7.3008,-116.13672 4.9342,-50.04019 -0.6787,-100.82265 -13.8672,-149.26953 -4.1372,-24.96529 -19.2966,-45.88199 -36.6113,-63.57813 -12.015,-17.7125 -29.3474,-30.71373 -47.625,-41.48632 -21.6746,-5.16355 -12.9529,-30.19357 -31.5664,-39.3086 -21.8557,-9.61362 -46.7823,-4.43718 -69.7364,-2.1289 -17.4127,5.16709 -36.9827,-0.82397 -52.8886,6.29297 -4.5111,8.55049 -22.4894,13.22978 -21.416,17.80859 5.3411,19.74086 -23.0391,-0.007 -28.3848,-6.29492 -11.5075,3.32586 16.124,16.51213 10.8047,23.41601 -11.7221,7.81239 -18.6881,42.40805 3.5527,27.83594 31.1217,8.16015 58.1787,31.68224 72.0645,60.69336 6.8339,26.26587 12.6261,53.05 17.6015,79.81445 9.9247,44.74286 0.8629,90.31385 1.8614,135.46875 8.281,60.26594 6.3702,121.27936 3.7871,181.88672 1.1,59.01501 -11.8662,118.00164 -3.7168,176.88867 -6.3524,41.33251 -4.5057,83.36603 -1.043,124.87305 1.3109,25.83533 6.6137,51.49333 5.6074,77.33403 -6.5818,18.8649 11.4905,28.6158 13.6094,43.4589 2.322,24.0365 34.676,25.0113 37.5449,47.8243 0.6164,18.7021 -5.8985,37.172 -12.3183,54.3164 0.3191,28.0446 37.2411,20.7218 55.4765,23.5547 22.9576,10.9793 14.6084,44.6954 37.2676,55.7949 21.2178,11.3768 52.8253,1.2673 65.748,27.3613 9.2353,22.7243 -3.5054,47.5449 -3.7656,71.1895 -6.6828,25.5438 -9.9796,52.2295 -5.6992,78.498 1.5261,21.1708 16.0532,3.496 14.5586,-7.9219 3.3011,-24.5539 -7.4364,-49.338 -1.5195,-73.6758 14.0063,9.544 31.3562,-19.2192 22.3437,-39.1406 -6.2723,-20.8941 9.2132,-38.6977 5.7383,-59.623 13.7378,-15.7574 10.9561,24.4343 29.4277,17.8515 20.0242,-6.1164 41.6047,-5.9301 61.6817,0 25.1852,9.8929 52.6273,8.583 79.1894,8.4668 47.0281,2.2481 93.95,-4.2887 140.9278,-2.5332 19.4701,2.0911 41.8551,-11.3887 58.6757,2.793 14.1658,21.1073 -10.2501,45.23 -6.5019,68.6523 2.7563,30.06 -2.4797,59.8811 -6.9453,89.5098 1.4062,20.4429 -7.3865,41.842 -30.7774,43.4121 -28.921,4.0738 -18.3053,40.2026 -26.5195,59.8145 -10.5544,17.0157 -33.6085,12.8306 -48.9258,22.3515 -12.0414,13.6016 -18.2158,36.4506 -42.3223,32.3164 -24.4575,0.4775 -46.6291,11.3503 -67.8886,22.3614 -17.2142,6.7492 -36.6175,1.846 -54.4024,7.3359 -17.8885,1.0613 -32.5845,17.3897 -48.5488,15.8203 -8.7513,22.0518 -33.7462,15.4892 -53.0469,14.2754 -23.4831,-0.3232 -52.0616,-4.6713 -58.5039,-31.9707 -0.8175,-22.8314 -4.8791,-49.2548 -30.1738,-58.5664 -4.6134,-48.8685 -7.362,-98.1121 -3.7344,-147.1445 -1.2899,-20.5276 12.1773,-47.947 -8.3281,-62.461 -35.7036,-8.7083 -73.4327,-13.7293 -109.8438,-6.5996 -17.6337,0.33 -34.7947,3.8158 -41.08,22.4219 -19.0185,0.5146 -32.5924,19.1281 -25.3535,38.3047 -6.5544,25.4279 -1.8834,51.739 -1.2325,77.5351 4.4563,22.7828 3.2252,46.5649 -6.7656,68.0957 -8.2509,21.8986 26.5715,35.0421 14.6816,58.8653 2.2468,17.5619 21.0987,36.5435 5.8536,52.9629 -14.7107,19.2062 7.1029,46.7359 29.1875,42.2988 26.6822,5.9321 16.1532,38.6576 25.664,56.9258 13.8786,14.6326 35.3268,14.8358 53.8008,18.4922 19.2053,1.9224 37.4345,9.3031 44.2598,29.2402 15.1554,20.8083 46.1699,15.2532 68.1015,24.5527 44.6635,0.5464 89.1188,5.3543 133.4942,10.0508 24.9813,-0.6553 52.571,4.4571 75.0527,-9.4785 20.2304,-17.3906 48.1252,-6.6448 71.9824,-8.8945 23.4201,2.5779 45.6328,-7.6737 61.3164,-25.336 17.7902,-19.219 46.2047,-8.1769 68.0645,-17.205 20.0893,-6.0448 31.3559,-25.1735 37.6367,-43.9122 2.8213,-24.1761 27.0664,-30.639 48.1563,-29.7734 26.6214,-3.0802 29.3918,-35.1463 34.7011,-55.9336 4.0909,-18.9717 -0.5369,-49.7754 25.6446,-53.3281 21.6745,-6.5721 25.8163,-31.8752 28.4961,-51.2051 7.7792,-36.647 13.1184,-73.7422 18.039,-110.8828 -0.098,-22.4903 19.6005,-38.4087 21.9414,-60.1816 -2.7343,-36.5056 -2.1666,-73.4534 -3.4844,-110.1504 -3.0951,-26.1347 3.9044,-51.7673 4.8008,-77.752 -1.69,-16.2864 -1.9654,-32.6062 -1.7226,-48.9961 2.8269,-24.0707 -26.4242,-34.0168 -23.5254,-57.9453 1.5994,-24.9006 -0.8308,-49.8664 1.8828,-74.7422 3.2189,-17.7691 -0.8127,-37.68709 10.6348,-52.99608 15.8232,-16.2549 10.1923,-38.21105 8.3125,-58.11328 -1.2208,-46.45294 -5.9087,-92.82936 -4.0332,-139.33203 2.2795,-42.63652 5.2877,-85.37253 1.3457,-128.0293 -0.8608,-38.87991 3.4907,-77.79251 2.5332,-116.73242 -3.1273,-74.59506 -4.9067,-149.27013 -3.4297,-223.9375 1.7615,-29.71456 0.4995,-59.52902 -5,-88.83398 -8.6885,-32.87325 5.1805,-65.09212 14.5195,-96.08008 -0.8456,-27.400859 34.1577,-33.756697 40.2012,-58.013672 -20.2758,-12.293472 -44.4972,-14.274272 -67.5664,-16.314453 -42.192,-4.761264 -84.4865,-13.325463 -127.1543,-8.732422 z m 1047.3476,4.009765 c -13.9524,-0.252347 -27.8818,-0.113639 -41.707,1.992188 -16.6585,-0.182823 -27.3903,11.741033 -40.8125,17.765625 -11.0869,-9.86132 -18.7858,-3.724171 -18.9727,9.619141 -15.4536,10.499652 -39.3395,-8.096821 -58.6464,-5.585938 -22.5804,-5.853324 -46.0984,-6.188381 -69.3262,-5.382812 -19.166,2.220121 -39.6674,-2.639409 -57.7949,5.326171 -5.2931,16.005174 -22.5602,27.663634 -40.6895,20.882813 -24.1811,-10.514213 -52.4381,-8.379905 -74.9043,5.458984 -34.2254,-12.037417 -70.7851,-4.541033 -106.1133,-5.576172 -24.437,0.07001 -53.413,-8.801146 -73.9629,8.710942 -30.7489,3.60703 -62.3365,-0.784999 -92.3906,8.22461 -17.6129,5.21028 -35.3354,10.33504 -52.5215,16.37304 -21.2344,10.73409 -15.736,36.57637 -15.2422,55.89844 -4.8288,21.00847 -9.6,41.51103 -5.7617,63.87109 4.5555,21.16558 7.726,42.62438 10.7696,64.10547 3.3707,14.03537 3.513,27.23871 -1.7813,40.65821 -3.3822,30.13597 5.5135,60.20532 2.3379,90.44921 -2.8466,40.16197 -5.0354,80.66533 1.4453,120.61133 6.2628,39.0351 -3.9579,78.07369 -1.4277,117.16406 0.2567,28.70416 1.4012,57.54017 5.164,86.09961 5.4729,41.38606 4.8894,83.12219 6.127,124.7461 0.1543,31.26146 11.2127,63.6704 -0.1465,94.09961 1.5225,30.26403 0.7286,60.57243 0.6426,90.85743 -2.517,22.6743 3.7781,44.5699 6.1445,66.8926 -4.1102,20.0835 -2.7444,40.7454 -1.2715,61.1191 -0.8723,31.596 -1.8166,63.31 1.6172,94.8359 -5.8829,19.3261 1.3701,39.0969 1.5996,58.6211 -3.2067,20.3561 -8.1904,41.1937 4.1895,60.2735 10.8931,21.154 10.0082,47.0984 -6.5723,65.25 -21.5213,19.8318 0.6027,45.6375 9.3653,65.6269 -5.8847,16.0421 -1.1217,34.4619 0.062,51.8418 -11.9917,18.6226 -6.8372,41.765 -12.0704,62.2696 -12.1706,29.3563 -2.9125,61.9196 9.4766,89.5703 5.4362,23.598 26.3019,36.1157 48.0781,42.6816 25.3342,17.337 55.7213,1.1502 83.3008,6.3047 22.5703,8.6915 47.0459,4.7913 70.5332,7.4805 22.876,6.1369 46.671,5.0369 70.127,5.0879 29.2817,-1.5175 58.4386,2.1152 87.6211,4.0898 32.9025,-4.6248 65.2301,5.7015 97.9511,7.209 14.7726,-3.0072 29.8786,-1.1187 44.7832,-0.5801 35.3409,2.5124 70.6837,-0.928 105.6582,-6.0098 32.0104,-5.141 64.4085,-5.078 96.7051,-3.6406 20.1933,3.7011 40.704,-3.9951 47.9766,-24.25 7.9859,-25.249 34.4893,-10.3332 50.6269,-22.3301 16.8357,-10.2965 20.3524,-31.7752 13.3516,-49.0507 0.3848,-38.2701 12.7936,-75.237 15.2402,-113.3672 -0.5833,-96.98 1.7466,-193.9667 3.668,-290.9317 2.1131,-72.516 0.091,-145.0235 -2.002,-217.5117 -2.7229,-94.3928 -3.5588,-188.82661 -3.0214,-283.24999 0.7771,-42.27934 -6.8949,-84.38736 -3.7481,-126.63281 6.3996,-38.18326 2.1433,-77.01065 -0.8965,-115.33203 -5.3562,-46.01833 -3.1334,-92.3345 -4.6093,-138.52735 -0.1576,-45.9311 -7.6369,-91.77515 -2.6915,-137.66211 5.6098,-50.89433 11.3582,-102.63239 1.6426,-153.44921 -5.6956,-20.25608 -5.407,-41.73742 -11.9668,-61.761723 -6.4984,-22.702377 -32.061,-30.79933 -53.3125,-30.88086 -13.9144,0.540641 -27.8894,-0.103122 -41.8418,-0.355469 z m 3991.043,8.111329 c -21.6305,0.125654 -36.268,18.124183 -55.8652,23.773437 -26.0707,1.10202 -53.5138,1.088558 -77.9141,11.871094 -21.9311,9.320556 -24.3785,37.061382 -20.3398,57.576172 6.3294,25.41259 9.1395,51.50058 8.7949,77.69141 2.0524,19.94968 5.0026,40.06661 3.0547,60.25586 -5.3981,54.30985 -5.6387,109.03255 -1.0742,163.41796 6.5683,61.95564 7.4796,124.35181 4.625,186.56055 -5.0739,72.21826 0.9107,144.48124 1.8281,216.7168 -2.5224,129.95632 -4.122,259.93964 -5.0996,389.92184 0.7895,79.2998 -3.7344,158.5722 -1.8614,237.8653 6.9086,79.2901 -0.6799,158.8183 1.334,238.2187 2.6731,21.699 0.6096,43.8603 4.8438,65.3828 1.6887,22.3522 27.3523,26.8107 45.5312,24.1348 18.445,0.5303 48.3682,-10.3706 56.7344,12.709 2.2719,17.7912 8.5952,-1.3872 11.5059,-7.5742 8.7459,17.5968 29.5214,-20.3466 39.1211,1.9043 4.3037,25.3684 8.113,-18.6194 23.7089,-10.3399 18.1414,-7.4087 41.1534,-2.9989 50.1524,11.0645 10.7389,-14.4152 13.4523,14.4537 19.5859,5.5859 11.7912,-14.7061 41.4016,15.5901 37.5528,33.3574 0.3919,8.1688 2.255,0.3601 2.8359,-2.0547 1.0834,-15.0201 14.9136,-11.2511 13.7226,2.336 5.7504,-14.1426 19.7861,-26.2056 37.6973,-22.877 23.3361,6.0359 28.9167,-35.382 52.2129,-19.2988 6.4845,17.1478 13.4288,-9.2511 27.2695,-7.084 14.4291,-8.5025 16.8828,22.0896 23.8985,9.0254 6.7251,-16.0661 28.8161,-7.6497 42.9258,-10.8398 30.2443,-2.3014 64.1728,5.9618 90.6796,-12.9043 18.1171,-11.3263 14.2408,-34.3753 13.0332,-52.4922 -0.958,-22.8515 -7.7418,-44.5328 -16.9648,-65.2832 0.4792,-14.979 -7.104,-30.0938 -5.0977,-44.8047 9.7376,-2.2594 20.8625,-28.5756 4.8653,-24.6328 -18.9325,10.7456 -1.9066,-13.5559 -3.5899,-21.3028 9.3718,3.5641 13.9401,-18.1501 -0.1738,-12.7382 -15.4884,10.0072 -7.3685,-6.3986 -11.459,-15.2911 -5.309,-19.105 -27.1986,-21.8075 -43.8887,-23.4414 -35.2876,-0.896 -70.3842,-7.5295 -105.7363,-5.6015 -28.6063,2e-4 -57.3373,1.0277 -85.7617,4.9941 -22.6395,4.782 -45.1569,-2.906 -67.918,-3.1758 -19.1133,-3.3446 -38.4313,2.6635 -57.1406,1.918 -20.5733,-7.3449 -9.873,-32.2629 -10.418,-48.3066 -5.1837,-26.3798 -3.8665,-53.5897 -9.0586,-79.9747 -7.1881,-19.421 0.2087,-39.4544 4.4961,-58.5507 9.9878,-15.0083 -13.7557,-32.509 -2.4609,-42.6035 -2.7878,-9.1398 -9.4877,-34.1123 -1.1309,-49.5 5.6219,-22.8305 6.1261,-47.4373 7.2403,-70.2989 -25.6713,-7.6271 -14.5261,-33.5871 -15.916,-53.4043 -0.1227,-17.7471 -28.673,-44.2348 0.8496,-52.7773 23.5672,-0.162 52.0236,-5.3043 72.2343,9.8652 9.1706,27.5062 17.4125,-14.5654 34.0586,-11.9765 11.3686,17.9724 26.9101,-12.8825 39.7657,1.8535 13.2954,22.6065 0.4615,49.0687 5.625,73.2031 6.3235,-6.7432 4.7549,-34.774 6.2089,-49.8652 -2.6747,-28.4121 36.5581,-43.901 55.8047,-24.7832 3.8234,19.3654 9.1581,-9.3542 18.6621,-9.1153 22.1356,2.9292 49.6738,-7.6766 54.5684,-31.6758 -0.4021,-38.10454 2.4257,-76.23838 5.7383,-114.21871 0.05,-15.40271 4.9259,-31.49876 0.8789,-46.39062 -10.1542,-14.98326 -39.141,-20.33734 -32.0215,-43.66602 1.0584,-17.43251 9.0015,-41.11392 -8.6934,-52.85351 -33.8275,-17.80299 -72.2971,-7.11688 -108.4062,-7.22266 -26.2466,-2.8737 -52.6645,-5.75714 -79.1836,-4.28516 -18.4775,-1.57651 -38.3778,10.21656 -55.3262,-0.60156 -14.7118,-15.07554 -5.4994,-39.60146 -7.1933,-58.88867 9.7529,-14.63262 -7.2109,-20.38226 -3.625,-35.28516 9.8903,-20.89604 9.5368,-43.78986 7.4258,-66.35547 4.1896,-23.8722 -1.267,-49.52175 4.9687,-72.48828 -13.6595,-1.78807 -11.4696,-26.65522 -6.4941,-39.6289 10.7234,-21.11454 -1.2062,-41.84927 -2.377,-63.29493 -3.078,-27.30015 22.9468,-25.6719 41.543,-23.4375 19.2014,-7.31654 37.6438,4.68528 57.2656,0.23633 19.6569,-4.70524 53.9654,-11.05265 62.1719,13.89844 2.0772,20.21223 6.211,-4.20783 12.5996,-8.45508 15.2866,2.7279 32.1624,6.26942 48.4609,3.20117 31.9607,-1.38999 64.0183,-1.78241 95.9883,-3.88867 22.8629,3.6529 41.0438,-8.25042 53.9941,-26.4082 18.9288,-6.69691 41.493,-16.00562 40.0372,-40.89844 1.8215,-50.34434 -5.7327,-100.775 -1.0762,-151.11914 3.708,-19.82145 6.4422,-46.10493 -12.416,-59.37695 -21.3371,-0.67983 -16.9597,-21.08048 -21.4551,-34.869143 -13.7254,0.740051 -3.6578,-13.254881 -15.9824,-15.417969 -18.2885,8.051011 -28.9302,-8.011423 -47.7696,-6.451171 -19.1139,5.935536 -34.1367,-1.879855 -53.3418,-0.527344 -18.781,-10.042911 -41.2612,-5.460223 -61.7793,-4.806641 -21.5015,-0.161867 -43.0486,-2.521497 -64.5957,-0.328125 -28.9939,3.841552 -56.9861,-6.084635 -85.3925,-9.958984 -27.2538,-2.019547 -54.772,-5.377989 -82.1016,-2.847656 z M 269.79429,59.220105 c -16.20975,0.105984 -32.47886,1.291692 -48.53125,2.089843 -25.66235,0.914838 -50.7015,6.19446 -76.16211,8.119141 -29.06039,-3.761804 -33.62238,24.16673 -36.25,45.998051 -14.094349,44.78371 -7.60737,92.11603 -7.60937,138.1875 1.91323,36.10209 -1.956923,72.26571 0.56445,108.33398 3.1574,17.31756 6.03273,34.4574 1.4336,51.86914 -4.288311,30.44177 -15.556713,60.54026 -10.173833,91.62695 4.036665,21.857 3.988475,43.93606 4.988281,66.06055 1.010638,30.34183 7.123582,61.4614 0.429688,91.38086 -2.914099,29.47301 12.021674,57.87717 32.734374,77.96289 11.55284,22.15962 37.71802,37.42536 39.7168,63.73242 -7.43025,24.01936 42.47048,8.03717 38.46875,34.97852 -11.37578,4.4417 -13.21675,20.18557 -0.41992,27.58203 15.58231,12.75636 46.55917,1.36974 53.52539,24.81445 -12.0438,-11.77801 -2.43077,6.48525 1.93554,15.1836 7.86472,21.0249 24.48049,35.91107 48.29297,31.17382 25.59389,7.2798 17.82234,41.86972 28.70313,61.00782 2.78576,14.09613 8.663,5.51733 18.15429,7.49803 26.12661,7.6803 33.39347,33.3447 44.53711,54.6992 23.69706,6.5827 46.07246,25.2343 50.94141,51.3067 6.65831,33.6328 13.5758,67.337 15.30273,101.6777 6.56058,113.3356 0.0877,227.166 11.23047,340.2969 13.85527,22.4672 -10.59315,41.5897 -32.36133,35.0976 -47.94798,4.2704 -95.85736,-1.7049 -143.79101,-2.1152 -21.16929,1.2757 -38.37182,-11.5836 -56.69727,-18.8203 -15.65511,-3.0353 -40.40702,4.9425 -46.46679,-15.2363 -3.40289,-78.6094 -2.16885,-157.4494 -0.20118,-236.1211 -1.45372,-29.3609 5.78367,-58.3541 4.07813,-87.6719 -0.16237,-25.8277 -31.21943,-28.7088 -50.83203,-28.1484 -24.58623,-4.0571 -49.28519,1.1876 -73.685548,3.2949 -24.428406,-0.468 -45.196386,17.1936 -69.308594,15.6777 -3.3067551,13.4164 1.337313,31.0838 -8.6367189,44.7637 -11.0227783,47.5045 -4.37413667,96.7416 -3.90234378,144.9902 -1.09542252,24.1515 16.86752568,50.049 0.91015625,72.4317 -2.44068597,33.5228 0.27275638,67.1296 -0.7265625,100.6855 -3.46022847,29.2018 -1.52590347,58.5994 0.140625,87.8633 3.13906173,32.4755 -4.72135977,65.0119 -0.13085937,97.3574 -1.371505,22.3633 19.4101613,36.6184 40.3417973,32.7305 18.958093,8.6762 40.214029,2.9835 60.099608,6.4765 20.19511,7.6552 40.10352,18.408 62.68945,18.418 26.07599,5.817 52.66556,-0.5671 78.96094,1.6777 20.25739,-10.0229 54.32479,10.5089 36.22266,33.7286 l -0.70117,2.2558 c 11.41632,0.7521 6.52895,-37.2737 25.64648,-40.2539 17.78194,-12.6139 40.60855,-10.1428 61.10742,-8.793 22.38243,0.032 44.77264,1.3532 67.12696,-0.9121 18.56121,-3.708 37.33867,-1.7607 56.04882,-2.4668 8.45937,-15.6823 27.22516,-2.1846 41.15039,-5.0351 16.69399,-25.2476 43.47554,8.7867 31.75782,29.5332 -7.10926,20.9541 17.716,11.1682 15.28515,-3.6192 -13.25521,-19.8606 0.68459,-50.1044 27.25391,-42.8027 25.49997,9.3261 57.81254,-1.6644 69.7793,-26.668 10.2757,-31.444 13.07356,-64.9497 14.87695,-97.8593 3.40179,-95.1458 -9.68622,-189.8332 -10.03906,-284.9297 -0.0587,-90.4541 -4.14883,-180.9893 -15.00586,-270.8321 -1.95761,-27.4997 -8.87832,-54.4896 -22.05664,-78.8125 -11.85032,-20.3333 -17.42791,-43.78959 -31.57813,-62.80269 -12.03687,-18.91453 -31.88488,-31.20922 -43.37109,-50.33398 -7.26799,-18.48664 -22.80689,-29.41 -39.8086,-37.59766 -16.3313,-15.18288 -19.06527,-39.82945 -18.10351,-60.86718 1.77464,-29.50627 -33.74752,-40.1605 -56.97656,-32.17969 -29.48976,2.2201 -31.73725,-28.29486 -33.22657,-49.3457 -5.11568,-30.3909 -41.75128,-8.57724 -50.87695,-33.36719 -4.88231,-21.783 -22.2586,-30.03359 -42.70312,-30.71875 -27.43117,-2.65611 -14.08378,-29.73908 -19.94532,-46.87891 -3.67154,-64.30038 -4.95995,-128.7636 -4.51562,-193.1875 1.71215,-19.10947 -3.13732,-38.23017 -0.87891,-57.12305 11.15891,-26.08098 19.71691,8.31255 20.90235,20.99024 3.72621,5.67227 1.55095,32.26065 6.39453,27.5625 3.55319,-22.37319 7.61301,-50.72648 31.5332,-60.66992 14.50379,-7.32151 11.55002,7.38016 11.8125,15.89648 40.81642,-3.0688 81.91615,-1.54247 122.50586,3.57031 4.65046,34.1839 5.02243,68.80832 3.42187,103.22461 -4.15095,41.25492 -3.53893,82.79638 -5.0625,124.15039 -1.94615,15.25634 -7.83183,40.85077 13.49024,44.50977 28.48476,0.34336 56.79828,3.93155 85.1582,6.41602 33.09491,1.64973 71.69285,4.57538 98.08203,-19.47657 8.48054,-14.12604 2.97373,-34.40896 6.51172,-50.98828 6.63013,-63.93898 3.60204,-128.21417 2.3086,-192.31836 -2.36917,-46.45564 8.35876,-93.92196 -4.41016,-139.48633 -15.83936,-21.1043 8.94103,-51.9831 -10.63086,-69.72656 0.85296,-15.38493 -20.84608,-14.49285 -28.49219,-29.78906 -9.64493,-21.08861 11.05658,-53.62222 -16.02734,-67.154298 -29.8851,-10.503314 -62.14321,-2.593108 -92.85156,-7.830078 -29.18177,4.961953 -59.27898,10.800803 -88.54102,2.927734 C 429.37075,82.154814 403.52852,84.326176 378.05406,87.272839 354.26829,90.831242 339.1878,69.196907 317.96812,63.606823 302.15381,60.088295 286.00404,59.11412 269.79429,59.220105 Z M 5642.5384,72.474011 c -12.1329,-1.083884 -24.6758,-0.394502 -36.7734,0.376953 -22.3694,4.833306 -45.4681,4.906875 -67.8711,9.539063 -19.2822,2.998944 -31.5069,18.817383 -44.875,31.343753 -18.9213,14.39293 -25.9645,38.30154 -19.6211,61.01172 1.834,37.25528 13.9286,72.93998 17.4375,109.95117 -0.5191,20.65839 0.3287,41.37015 1.1484,62.05273 -1.4497,31.64851 -5.78,63.67428 0.6895,95.12305 -6.0538,23.44004 -7.7512,47.678 -9.8555,71.70898 -7.1116,46.53265 -8.4455,93.80182 -5.2636,140.75196 -2.1339,16.17777 3.3407,31.69537 8.7812,46.69726 9.3921,21.32629 -9.7808,41.44778 -0.709,63.17774 5.2931,15.03677 -1.6022,30.32707 0.6309,45.2207 9.3937,15.96139 30.8171,10.48345 46.1543,14.7207 13.5117,16.71791 41.2762,-3.82903 50.7558,16.39844 -0.1793,17.46357 -0.6571,34.92077 -0.9316,52.38281 1.4385,12.69967 -3.7285,35.89815 2.4297,41.69141 -0.3084,-21.17 -1.3007,-42.31031 0.4473,-63.41992 -4.9048,-11.7213 13.6304,-40.46686 20.9902,-20.15039 5.3177,28.55257 0.4752,58.07668 4.6328,86.84375 3.2993,17.42203 3.4799,-2.45637 2.5508,-9.25586 2.4277,-21.17971 -6.761,-42.9467 0.3008,-63.48243 21.5658,4.66658 8.0693,-22.91228 16.0156,-35.99218 22.8643,-6.90941 38.4815,-32.12504 34.3359,-55.67383 0.6137,-25.57617 -7.8264,-51.36908 -2.1933,-76.84375 -1.3607,-46.541 -2.1583,-93.09605 -3.3789,-139.64063 1.8247,-20.62571 1.8851,-43.09415 -13.1563,-59.54882 -4.916,-17.95221 28.4843,-39.09432 7.4336,-57.84961 -11.8405,-20.853 7.4868,-42.02082 5.7227,-63.63477 4.793,-16.75524 -3.9351,-35.59203 5.3652,-51.26172 19.1986,-18.42757 44.425,8.36498 42.2441,29.69531 0.848,23.51115 0.235,-7.20371 1.4278,-15.31054 -4.3368,-23.91578 29.0963,-30.68908 32.6465,-6.02149 1.0248,12.44968 -2.598,7.42956 0.6386,-1.39257 2.678,-26.23577 30.4947,-17.41388 48.5,-20.99219 31.4305,-2.66777 62.6582,-11.06559 94.3477,-8.65039 35.6464,8.62252 72.832,12.18154 109.3144,6.87695 21.3333,-12.70893 43.6733,8.77873 33.8282,31.28125 -0.5148,83.68247 -16.2317,166.47502 -16.1309,250.18359 3.1519,31.26387 -4.0486,62.27778 -3.0098,93.51758 6.1092,24.58502 -1.6034,49.57273 -0.1933,74.38672 8.349,15.04035 -0.1877,26.49863 -15.6875,30.96875 -2.6714,16.36 -12.4441,35.73862 -34.4199,32.63867 -31.7915,-11.66818 -28.0459,28.73068 -42.6973,44.13477 -24.1024,12.7039 -52.7248,2.60014 -78.1797,10.1875 -26.7981,3.84583 -30.6514,33.84385 -36.0176,55.20312 -10.4341,10.01738 -25.878,11.40608 -39.5742,9.77149 -19.0986,-5.36738 -35.4951,-3.70262 -47.9629,13.45703 -19.121,11.75549 -4.9061,39.878 -25.3008,50.01176 -25.6925,14.6129 -57.1338,-4.82419 -82.0879,12.1777 -28.9577,15.6654 -19.2838,55.6135 -42.5722,75.4844 -17.8387,15.2843 -43.2665,15.5625 -61.4356,29.9218 -13.7181,21.0656 -16.6953,48.5205 -29.9609,70.5801 -8.3929,24.8525 -36.2071,43.6405 -30.7559,72.4102 -5.5843,19.3531 -8.3013,39.3615 -11.0468,59.2695 -2.8373,30.1137 -14.1641,59.4229 -9.7403,90.002 -2.4358,26.7285 -4.1995,54.0921 -11.6855,80.0879 -4.1773,36.1194 0.528,72.9736 -4.1504,109.1972 -0.7142,49.4722 -0.5907,99.1842 3.918,148.5332 5.4171,23.6399 15.3437,51.0924 39.6718,60.9942 33.4251,5.7934 67.7937,2.6441 101.4668,0.1269 28.2817,-4.1262 56.905,-5.4793 85.4629,-3.625 23.6364,-4.3994 47.9069,-3.8648 71.9199,-3.6426 23.948,2.1799 47.5363,-10.9921 71.0703,-3.8359 21.3814,14.5488 49.9791,7.1837 74.1934,14.9687 27.9322,11.8583 58.5511,7.0636 87.9004,6.1465 25.5291,-10.086 52.0095,2.839 75.3809,12.7539 27.6931,1.6728 55.0396,6.5623 82.5156,10.1543 25.8035,0.8898 51.7246,1.1847 77.4297,-1.625 19.1713,0.5735 33.7659,-12.9625 47.166,-24.8691 17.2527,-7.2482 44.1354,-31.0154 19.6914,-46.752 -25.3799,3.4788 -35.4359,-23.3783 -32.0156,-44.6836 -6.4906,-101.0604 -8.8097,-202.3664 -9.6348,-303.6308 -2.2546,-28.0514 2.3416,-56.379 -2.1875,-84.2617 -7.5166,-18.7574 -5.2133,-39.3827 -1.2051,-58.6797 4.4264,-18.0506 5.5263,-36.7572 -0.5918,-54.6074 -2.9325,-24.9873 1.1523,-50.5191 -3.4433,-75.5567 -6.5358,-23.7054 -1.2442,-47.8692 0.1621,-71.8633 -3.7368,-24.39 -14.6615,-47.4669 -16.9688,-72.2812 -4.1049,-19.80078 4.7056,-38.34218 8.8067,-57.21876 0.5515,-55.75847 3.7552,-112.00885 -3.5801,-167.56445 0.9849,-24.15243 -6.2875,-48.1752 -2.9277,-72.31836 -1.3174,-21.00333 -1.2782,-42.32113 0.582,-63.4043 4.1008,-48.25748 5.7812,-96.66507 8.4433,-145.01563 -0.4107,-16.27497 7.3162,-31.45197 4.4864,-47.84765 -5.2775,-26.61959 7.9622,-52.02265 6.8105,-78.5 -9.016,-38.0468 -16.3343,-77.98322 -8.0371,-116.96094 -3.1439,-17.90654 -3.6818,-36.12453 -4.2344,-54.25586 1.6737,-18.48044 -7.8782,-34.90249 -4.6621,-53.46484 4.3285,-33.22858 -37.1479,-26.08493 -58.1289,-27.1543 -25.3264,0.68768 -41.7962,-25.409762 -67.5312,-23.79883 -18.0384,3.86578 -36.8913,1.78658 -53.5293,-6.341794 -17.1877,-10.467511 -36.5815,-11.630679 -56.2227,-12.650391 -28.7593,-5.032597 -56.637,6.128617 -85.373,4.738282 -20.2458,-6.854063 -42.9022,-4.949217 -63.2383,-12.41211 -22.1495,1.352173 -43.4116,9.027974 -65.6231,9.832031 -17.9831,-6.287245 -36.7,0.652231 -55.164,-0.476562 -10.4561,-6.324871 -22.1777,-9.181741 -34.3106,-10.265625 z m -879.3808,3.447266 c -19.2348,1.028435 -38.525,3.454052 -57.6309,4.134765 -19.4087,-8.138935 -15.9134,16.424923 -26.7051,23.281248 -23.0847,-0.0284 -46.9753,-0.56574 -69.1113,7.43555 -24.8009,5.53927 -25.8237,35.44971 -22.1875,55.72266 -0.833,33.67315 16.8066,64.92414 14.4668,98.66406 -6.4606,21.71735 -0.1182,44.04495 0.5449,66.04687 -3.8181,23.12586 -4.12,46.56884 -1.6953,70.00391 -2.1573,17.88095 -0.4277,35.91977 2.6973,53.61914 5.8174,25.03825 -1.9976,49.95296 -4.3067,74.875 -2.9191,40.81523 -2.233,81.90196 -0.8789,122.7832 3.6987,24.03792 -0.7421,48.08758 1.7598,72.19141 5.9554,30.43809 7.3554,61.44315 6.3691,92.4043 0.6247,25.82718 1.6669,51.72239 -3.416,77.24804 -1.5068,34.22986 -7.165,68.09157 -10.7324,102.14453 -4.8424,18.07024 -2.4136,36.86834 0.6543,55.04294 4.6931,20.8374 0.5221,41.6231 -0.8984,62.4239 0.8579,-1.188 2.0834,-1.5378 3.8164,2.2714 -1.9519,2.4785 -3.2394,3.0111 -4,2.5977 -0.1812,5.5879 -1.5054,11.1702 -0.6328,16.7637 8.6761,20.249 8.1104,42.1599 3.496,63.4765 1.1642,29.7116 -6.7775,60.0679 1.2442,89.4082 -6.4908,31.1215 -2.8913,63.0324 -3.709,94.5332 -4.9495,25.7297 2.3323,51.3983 3.4004,77.1055 -7.9945,21.1008 -3.5413,43.8782 -3.5273,65.7754 -2.8452,21.9149 4.3266,43.3147 4.0761,65.1406 -5.0294,21.2516 -0.7624,42.8739 2.127,64.2871 0.9623,26.4804 17.5178,53.6275 5.0469,79.5235 2.9856,22.2518 4.1423,44.77 3.0722,67.2031 -5.5105,27.327 28.9317,24.9823 46.5879,27.0137 20.3476,-1.6873 52.4831,-9.4194 58.5078,17.9082 14.7908,15.7703 38.6262,4.7098 56.711,12.5976 5.2853,1.9725 11.0099,2.4507 16.6054,2.0918 15.8235,-2.5395 31.5257,-4.7498 47.5957,-3.9004 33.0099,0.017 62.9161,-15.8256 95.2637,-19.7714 29.391,-2.1821 58.7448,-7.6294 88.3105,-5.7989 36.5927,6.0988 73.7561,7.3555 110.8008,6.0977 26.5961,-2.2906 58.5305,5.9332 79.8321,-14.5996 12.5143,-15.4502 1.6508,-36.5622 8.3867,-54.3086 9.3225,-28.1739 2.9204,-58.0671 7.3301,-86.877 5.276,-16.0483 18.5266,-46.3396 -8.1973,-50.2051 -27.9205,4.334 -26.4718,-31.0756 -41.8555,-44.6328 -26.6261,-8.6876 -55.0269,-6.0859 -82.4863,-4.4043 -24.2394,5.6884 -45.1913,-11.2935 -68.3887,-14.2402 -31.8867,1.3744 -63.5283,8.5719 -95.623,6.8945 -26.3845,-3.3768 -52.8553,-3.7879 -78.8946,2.1856 -22.0287,-3.2267 -47.496,17.6305 -66.1308,2.1719 -8.3384,-17.9171 -14.9191,-38.227 -13.6699,-58.5704 3.736,-19.9868 6.6194,-40.0827 7.2441,-60.4765 8.0771,-35.5904 3.5729,-72.1812 4.3477,-108.2774 5.3577,-55.4964 4.1808,-111.3045 4.0039,-166.9843 -1.758,-24.9222 2.9607,-50.5183 -3.7071,-74.9297 -14.5706,-19.4469 -1.988,-40.4518 4.2891,-60.211 -2.393,-23.6634 2.7279,-47.5642 -0.074,-71.25192 -7.3637,-24.93042 0.8119,-50.72272 2.6054,-75.92187 0.2248,-23.56704 2.1373,-47.02174 6.627,-70.22266 1.9703,-29.88335 0.6608,-60.10739 -2.0176,-89.96094 -7.4709,-28.10957 -3.0995,-57.27262 -3.3926,-85.91211 -4.3212,-30.6531 -3.3383,-61.7451 -0.207,-92.49609 -2.6467,-23.73396 3.9571,-47.00397 7.7051,-70.26367 3.7625,-16.43341 -5.2892,-34.48131 6.0215,-49.37695 10.234,-18.0886 31.6477,-12.19407 48.4258,-14.03711 20.7636,-1.13068 40.0957,-9.49874 60.1015,-13.78711 45.4272,-4.60985 90.5236,4.59209 135.6992,7.98828 24.5495,0.1865 49.443,-1.56803 73.6036,-6.39063 16.9542,-7.60267 42.0444,-0.75982 52.9746,-18.53515 6.6391,-15.58081 23.6478,-31.34912 10.5918,-48.75 -6.0765,-19.40686 -30.7921,-49.85459 -3.9961,-63.20508 -5.2026,-16.81414 1.2564,-36.12808 1.0722,-54.12695 5.0211,-29.12677 -1.3104,-59.41786 7.5293,-87.95118 4.8337,-16.61012 8.6414,-40.32355 -9.7187,-50.24023 -28.7702,-10.245477 -59.8709,-12.344929 -90.1778,-14.652344 -33.0771,-4.033852 -66.4224,-6.215799 -99.7851,-5.048828 -26.8986,-2.766754 -53.2921,3.844156 -79.7402,7.628906 -28.9038,1.407556 -57.7138,-6.219057 -86.7559,-4.117187 -18.8816,-4.90854 -38.0601,-5.278436 -57.2949,-4.25 z M 4591.9037,1118.8119 c 0.053,-1.623 0.073,-3.2464 0.1836,-4.8691 -1.0239,1.4177 -1.4209,4.1966 -0.1836,4.8691 z M 4023.5345,79.442761 c -5.5841,-0.347255 -11.2383,0.22874 -16.9961,2.296875 -20.8079,-2.968139 -41.8745,-1.722743 -62.8066,-1.503906 -29.22,-2.732538 -55.8756,18.4669 -85.3496,11.634765 -23.9665,-0.560943 -50.2736,1.824025 -70.3731,16.384765 -5.547,23.18212 -13.2168,45.95652 -16.0019,69.7207 3.9189,31.12688 -10.5119,60.29672 -13.6465,90.7793 1.6487,34.46912 2.8155,69.13464 1.4258,103.71289 1.2609,23.00225 -3.2005,45.75406 -2.5801,68.66602 9.4949,24.22193 -6.7252,50.03956 3.2441,73.89843 -0.9728,20.38643 -2.1327,40.76518 -3.1679,61.14844 -3.5968,52.83119 -2.3127,105.75961 -1.9551,158.65821 0.7908,42.66462 -2.9445,85.21166 -3.2266,127.83593 1.5241,22.95783 -4.5443,45.54836 -2.9277,68.42774 2.5928,23.0602 3.8689,46.40282 9.3574,68.91408 1.3842,23.3509 6.2525,48.1541 26.8594,62.1289 28.8058,31.1776 34.9824,75.4215 33.8223,116.2539 1.3161,32.4527 -2.0025,65.0968 1.8964,97.4141 4.4836,-38.2902 3.8648,-76.922 3.9707,-115.4043 -0.2213,-19.5181 4.4352,-45.0789 25.5176,-52.045 22.8739,-1.0313 16.0629,30.2675 16.3321,45.2227 -2.0775,14.633 4.8963,11.8938 5.0078,-0.4043 4.2683,-14.303 -9.8738,-42.9356 7.8125,-47.8789 4.76,-12.0724 27.2103,-9.5787 27.3183,9.4766 1.5107,20.0938 4.4246,-11.1676 4.4766,-17.2481 12.7707,-14.7965 32.9329,14.5809 47.0605,20.7188 23.072,-1.4385 20.0906,24.2508 18.7481,40.1113 11.2231,-6.9599 -0.4514,-43.7961 14.0058,-58.6797 17.1125,-12.8968 55.7405,-13.8909 54.502,15.0586 2.8969,-13.6465 12.8415,-33.8608 29.1445,-21.0527 7.8309,-15.2606 17.7631,-3.0062 23.1328,1.6035 4.3112,-29.342 35.8392,-6.2283 29.2715,14.1445 2.1833,-22.5981 29.4974,-34.0899 48.6582,-23.6738 16.9808,1.9207 39.7632,-6.1153 50.6211,11.5996 -0.097,23.0424 0.1131,46.104 1.6426,69.1035 2.9191,102.3004 0.315,204.7145 2.9805,307.0391 -2.2871,19.2718 5.7117,38.0173 2.4297,56.3808 -11.8967,24.0863 -40.2561,6.4637 -60.5723,11.5664 -24.7461,-1.7298 -47.9928,10.8525 -72.8106,6.3145 -25.8059,-5.2082 -52.3142,-4.8316 -78.5625,-4.4668 -18.7213,-0.3792 -36.5676,4.8705 -54.3125,10.1074 -18.8093,-4.411 -33.992,12.1638 -52.3945,9.3731 -14.9464,3.9431 -30.3998,5.4088 -45.7832,6.3925 -27.7125,-0.087 -54.767,6.6527 -80.3633,16.9414 -25.4355,4.9262 -17.5906,39.1454 -8.0273,55.5782 -7.9706,42.5444 -11.1244,85.8666 -10.334,129.125 -6.285,22.7877 11.9023,44.9406 35.8008,41.9336 24.0914,13.7225 52.8084,6.1198 78.7168,12.2578 22.7025,-0.9195 45.2598,-5.6705 68.0937,-5.2051 41.3322,3.6633 82.9914,-2.1241 124.1797,3.5449 36.2887,6.491 72.9372,0.065 108.3457,-8.1914 22.3053,-6.6767 45.5037,-0.8606 68.3281,-2.8105 32.1796,-2.6304 68.7161,-2.768 92.9532,-27.459 18.6435,-19.9181 50.0955,-2.6281 70.084,-19.8184 17.8244,-16.4026 6.8625,-41.8145 10.2793,-62.5488 -3.4317,-45.3227 -4.2568,-90.7913 -4.6309,-136.2266 -1.9352,-85.9766 -2.8021,-171.9824 -4.6484,-257.9648 -3.6345,-93.268 -5.2569,-186.599 -8.8223,-279.8731 0.647,-47.59776 -6.4511,-94.99473 -4.541,-142.59567 0.3734,-21.13792 11.0449,-47.93271 -8.3164,-63.9375 -25.4864,-10.63933 -53.7841,-7.49874 -80.4532,-4.36719 -23.6491,7.78472 -47.8299,-2.35485 -68.8574,-12.96094 -35.4064,-1.06889 -71.0217,5.68537 -106.2422,-0.32421 -19.8064,-6.45555 -40.8973,-7.95767 -61.5976,-5.98243 -27.676,4.18332 -55.6273,2.29518 -83.375,-0.0508 -19.005,0.72645 -51.0128,2.85394 -54.1133,-22.21679 5.2633,-58.39833 -8.1363,-116.57322 -3.4805,-174.94532 5.6822,-21.15758 -7.0359,-40.75551 -7.1914,-61.59375 3.7166,-18.42595 21.4578,-33.09116 10.9434,-53.67382 -7.0926,-19.72018 2.0708,-46.83224 26.2168,-46.66407 26.2032,-0.7147 48.7083,-18.27543 75.2324,-17.17578 21.0483,4.15878 42.0133,6.80717 63.7852,6.06836 65.3843,1.0742 130.8189,1.49802 196.1894,-0.0273 17.5251,-2.88234 39.2507,2.09648 52.6152,-12.5 19.302,-18.87457 -4.5504,-34.63435 -18.5429,-44.64258 -7.5281,-20.26011 -1.9947,-43.0338 -3.6289,-64.37305 1.5679,-38.39476 4.0311,-76.74153 4.3554,-115.19531 -0.646,-28.14853 1.604,-57.19735 -6.6386,-84.52148 -18.1358,-11.730206 -44.3728,-12.493767 -66.4883,-14.128911 -39.2854,-2.569847 -78.7123,11.124241 -117.707,2.855469 -23.8718,-10.400687 -49.6912,-2.946725 -74.5508,-3.357422 -16.4598,-2.309783 -32.5876,-11.66136 -49.3399,-12.703125 z m 2633.877,16.074219 c -23.02,1.064349 -46.084,2.197335 -69.2266,0.703125 -23.409,3.067738 -47.0414,2.5797 -70.6113,3.08789 -27.1014,3.064765 -54.1157,8.099915 -80.6758,14.410155 -26.8411,-0.32669 -33.1256,25.97793 -25.9297,47.875 -5.0458,17.5594 -7.2731,37.53356 5.7383,53.55469 13.0665,15.53267 8.3823,35.65946 5.4785,53.89258 -3.877,59.34227 -1.4628,118.94707 -0.7363,178.38281 -1.4472,57.35507 1.1619,114.68556 2.7266,172.01367 -2.4709,36.24789 4.5545,72.17083 4.7832,108.35938 -3.8949,23.82993 3.946,46.91879 3.3222,70.86328 -1.6348,20.17489 4.0875,44.83962 -11.9629,60.59179 -3.3278,36.07368 0.9935,72.19965 2.8301,108.22461 8.3798,-12.47301 -1.8538,-33.96966 7.3594,-43.95898 7.001,16.89755 0.6657,35.59183 1.4551,53.2832 -0.5096,43.26422 -1.7453,86.60032 1.8535,129.78512 6.1266,56.16 6.0862,112.6647 7.4648,169.0684 -0.4458,46.8799 10.0297,93.8764 2.2246,140.5625 3.768,23.6045 3.3568,47.9885 -2.2207,71.2773 5.8365,59.5279 -3.7968,119.0503 -3.2578,178.6172 6.4483,22.3363 -13.8073,37.5311 -20.6738,55.8946 -10.1706,20.093 -27.6727,38.7909 -23.9766,63.0976 -0.6196,30.3971 35.7238,24.7864 56.0156,29.3711 25.8061,2.2857 51.6824,5.0871 77.5079,5.5723 22.8431,-15.8496 28.7865,17.4913 33,34.3437 7.3699,19.1706 5.6282,-10.8329 3.291,-17.7343 8.8441,-1.4433 8.1408,31.801 11.7051,44.5507 20.2194,7.1453 8.6283,-21.7318 14.7246,-30.8632 19.1357,0.2264 7.0543,-22.6308 16.2929,-32.4122 22.5244,-10.165 47.9895,-9.5841 72.0782,-11.4746 27.5781,-0.1718 37.2725,-32.4999 32.8027,-55.1289 -6.4046,-22.921 -27.1234,-39.7433 -27.8809,-64.7636 -1.245,-25.0114 -24.378,-39.1034 -29.7519,-62.6719 -17.7775,-14.9435 -14.2914,-36.2994 -13.6504,-58.1641 0.4172,-38.3848 3.8326,-76.6225 5.332,-114.9375 2.9756,-17.9521 -11.7304,-50.3285 13.6211,-55.873 48.9355,-1.5094 98.4027,0.6643 146.6836,-8.9903 22.8727,-6.9006 46.2939,-10.9462 70.291,-11.373 18.0331,0.2393 32.5061,-10.9438 47.6758,-18.9043 21.8732,-7.3583 47.5841,-0.5186 67.502,-16.1367 20.4684,-10.5984 9.8525,-47.1282 38.1425,-48.7891 18.9558,1.9025 39.0685,-1.7086 54.5743,-13.334 21.0728,-13.9986 20.6356,-41.3805 27.6543,-63.0586 2.8271,-28.7518 31.1252,-35.1036 50.9433,-48.498 13.6051,-18.1557 10.6093,-43.4783 15.9961,-64.877 -2.0966,-22.3778 9.3219,-45.2828 31.1406,-53.2617 0.8713,-22.748 -7.2503,-44.3871 -11.7578,-66.36717 -9.5721,-26.20894 8.4606,-51.11905 7.584,-77.25391 -5.5267,-22.04002 -9.6099,-44.63998 -10.2148,-67.46289 -4.8811,-23.89973 0.6158,-47.55587 3.5097,-71.38086 3.1555,-24.11973 -2.2837,-49.60689 -17.5371,-68.93164 -6.3277,-21.91214 -5.4415,-46.1372 -6.8203,-69.08203 -4.6382,-21.06881 0.4202,-46.06909 -9.5391,-64.64649 -20.7412,-3.83557 -25.4118,-22.37316 -38.8398,-34.75976 11.9853,-18.65614 5.2205,-43.70333 5.0918,-65.18164 -0.4853,-19.94095 5.3101,-45.66861 -13.3496,-59.3125 -19.7758,-3.66876 -44.0196,-7.5076 -47.502,-32.52539 0.3778,-22.45013 -11.2167,-42.32616 -19.7109,-62.98242 -12.3892,-18.25838 4.9667,-44.65214 -12.6621,-60.34961 -15.2992,-6.81118 -32.56,-8.35436 -49.1211,-10.05664 -16.2727,-2.99623 -34.4025,3.79607 -49.1055,-5.28321 -21.5035,-14.95878 -5.7792,-41.06249 -12.4629,-61.31445 -1.0191,-16.14132 -16.8488,-10.52803 -24.082,-16.69727 -18.171,-12.50369 -40.5641,-2.3892 -60.3281,-3.83984 -18.3957,-7.7969 -14.9242,-32.4528 -28.2305,-45.02734 -30.1414,-8.467734 -61.6571,-3.71328 -92.457,-4.98438 -21.5263,2.30194 -42.7572,-3.006473 -64.1211,-4.73828 z m -5585.6055,7.15625 c -23.9375,-1.66066 -47.8306,-1.28568 -71.6387,1.50977 -30.969,-1.67977 -61.53008,3.39751 -91.84566,9.05664 -15.64723,4.34514 -33.27748,4.37345 -47.11914,13.00781 -15.3923,16.57686 0.18629,39.94301 -8.23633,58.20508 -8.47001,24.9964 20.24831,39.88298 19.13867,62.82031 -4.38281,18.12543 -6.55951,36.46844 -5.84375,55.14648 -1.87204,61.24272 0.53566,122.47261 0.40625,183.71485 -1.05301,52.3901 2.91595,104.67171 2.87695,157.04101 -1.21684,31.7932 5.88836,63.09724 4.35938,94.8711 -2.03979,26.87719 5.32658,53.23782 3.61914,80.1289 1.0629,19.77024 -3.3018,36.88882 -13.36328,52.97852 0.88432,22.47502 0.52278,45.27805 2.14453,67.8789 1.80385,7.47309 -0.60685,37.98622 4.66601,29.15821 3.19365,-9.05091 -3.4718,-41.98831 6.35157,-36.19727 4.37568,17.3093 -0.61699,35.1938 -0.11328,52.80078 -0.41312,45.28868 -1.56615,90.67328 2.57226,135.85938 5.85161,52.833 5.30031,106.0182 6.80274,159.082 -0.15572,40.4992 6.89777,80.7645 4.66796,121.2578 -2.77072,14.8542 -1.5439,29.4084 -0.0762,44.3204 2.06805,20.9289 -5.51776,41.2262 -3.63281,62.0253 4.05419,57.4039 -6.1777,114.7252 -3.60156,172.0508 1.04979,23.8878 -21.80194,37.7043 -28.03321,59.0567 -12.88651,17.9663 -21.71248,41.1687 -16.10351,62.959 14.85014,22.8626 46.35575,13.962 69.24805,20.3339 21.81177,-0.807 43.34426,5.7629 64.9746,3.3809 21.34071,-16.9247 26.64342,19.1392 31.20122,34.4492 7.2793,19.4616 5.6957,-10.6056 3.3008,-17.582 8.8342,-1.4442 8.1376,31.8013 11.6992,44.5508 8.0052,4.7424 13.5429,-2.0186 12.7285,-9.7657 -1.9741,-13.5276 0.8641,-23.4719 13.3359,-27.3261 -4.8813,-22.2474 15.6905,-36.6526 36.6758,-34.6524 21.5757,-2.4035 46.8492,1.4761 64.3301,-14.1269 13.7628,-17.2416 10.76,-42.6366 2.041,-61.5586 -11.3739,-16.9528 -21.6993,-34.4613 -22.7344,-55.6114 -7.7967,-24.041 -26.5154,-42.9701 -36.0254,-66.6484 -12.4547,-18.1144 -3.0492,-42.6082 -5.3281,-63.623 -0.2377,-37.5938 6.5474,-74.8413 4.3867,-112.4551 1.3987,-14.1098 -7.4568,-37.8595 13.2774,-40.6719 34.1769,-0.3834 68.5329,0.025 102.6699,-2.9648 28.1675,-0.6433 55.1023,-8.9932 82.502,-14.4356 23.0112,-1.4315 46.7814,-3.1718 67.6718,-14.0918 18.6341,-13.7835 42.7406,-9.6756 63.9317,-15.8125 23.4598,-4.7777 33.3303,-27.6999 37.4043,-48.7969 19.3454,-13.669 45.6727,-3.2956 65.4961,-15.914 25.6442,-14.8272 27.2455,-46.7383 35.0371,-72.1074 1.7077,-26.9703 31.1812,-30.7056 48.6582,-44.0157 13.3832,-19.5135 13.8369,-44.0063 16.1836,-66.6972 -1.6984,-22.5107 11.4483,-43.1916 31.7226,-52.7188 1.148,-22.2739 -6.6346,-43.5449 -11.3203,-64.99802 -9.2956,-23.40881 4.0549,-45.86205 7.6211,-68.71485 -2.9541,-26.93547 -11.5419,-53.59148 -10.2969,-81.07812 -6.8583,-21.26538 2.0256,-42.91628 2.8653,-64.33789 3.7111,-25.02874 -0.3039,-53.02572 -18.75,-71.75586 -2.482,-18.57972 -3.6411,-37.3003 -4.7188,-56.00391 -1.7781,-21.6059 -2.9064,-43.23867 -5.2578,-64.76562 0.1844,-22.00532 -23.583,-13.69026 -30.2324,-30.30274 -14.2356,-12.47256 -9.2037,-26.09841 -5.9649,-42.68359 -2.3925,-27.66097 -0.9127,-55.61364 -3.8398,-83.26563 -3.705,-21.62208 -30.0233,-15.82877 -44.5625,-24.5 -19.3609,-14.03137 -13.6287,-41.26194 -22.5254,-60.80273 -14.3998,-20.6261 -16.6508,-46.28168 -18.0391,-70.63672 -0.5694,-25.9232 -35.0315,-22.6235 -53.4628,-25.03906 -20.6617,-2.79417 -50.2853,4.68782 -61.5137,-18.47656 -5.6565,-19.76728 6.8354,-44.47315 -9.4043,-60.84961 -20.6419,-7.51861 -42.6989,-14.51434 -65.7852,-9.83008 -28.4951,8.63078 -24.6961,-27.22905 -37.5664,-41.27735 -17.9954,-8.76863 -39.1541,-7.65039 -58.7832,-7.79101 -26.2154,-0.32518 -52.5681,2.61237 -78.5351,-2.1211 -17.3277,-3.675349 -34.9689,-2.61903 -52.3145,-0.64062 z m 2317.8438,247.32422 c 9.3703,1.00689 15.8638,5.8982 11.2421,18.85351 1.6716,41.21651 0.9467,82.47473 0.8204,123.71094 -0.8987,37.45087 1.4768,74.81696 2.5703,112.22461 -3.1978,23.77348 2.5585,46.84107 6.7011,70.08594 -1.6991,23.91425 -6.2367,47.69274 -1.0878,71.98437 -3.7033,22.45403 -5.4108,45.39582 -4.1954,68.24219 1.9695,29.30171 -0.2241,58.54807 -1.0839,87.82422 3.4324,34.34908 0.7692,68.93111 1.3183,103.42387 0.9364,32.5199 2.625,65.0067 2.1387,97.5644 4.0493,30.2876 4.9456,60.9201 5.3867,91.4785 -0.1781,75.2995 -2.0471,150.6235 -4.2187,225.9004 0.314,31.4514 0.4476,62.9849 -1.459,94.4395 8.6738,31.0566 5.4138,63.6236 4.4707,95.3789 1.3991,20.0173 -19.0073,28.8228 -30.4668,11.2519 -19.4013,-14.2049 -46.5944,-9.3582 -69.9375,-9.5 -29.2078,4.9414 -59.2397,4.5703 -88.0176,11.8282 -19.3724,14.0403 -44.2599,8.4694 -66.4824,9.7441 -24.5822,5.8461 -49.5465,-6.6793 -74.4141,-2.8418 -27.6831,8.5592 -55.4681,-3.0567 -82.6055,-7.9512 -18.0204,-4.9324 -46.6285,6.8517 -54.9121,-16.0879 -0.2344,-41.6359 -0.08,-83.3012 2.2422,-124.8847 8.7341,-95.9275 -1.1568,-192.2359 2.1621,-288.3242 1.8518,-82.7623 -8.1994,-165.2812 -5.3359,-248.0313 4.623,-77.39691 -4.7528,-154.53563 -10.8086,-231.56445 -3.8846,-38.65216 -2.6268,-77.40414 -1.5195,-116.14453 -0.857,-20.47651 8.4315,-38.86984 15.2246,-57.57813 7.3391,-39.7734 5.9811,-80.64049 4.9355,-120.93164 4.9032,-15.65661 -16.025,-45.67931 7.2051,-50.00195 34.5877,9.21546 70.6382,5.11783 105.9102,4.16797 30.4922,2.77335 61.4332,4.15932 91.8554,-0.58594 31.3334,-9.21229 64.1678,2.67795 95.541,-4.80273 35.024,-11.33305 71.9682,-11.83371 108.3165,-14.42383 6.8851,-2.57867 19.1335,-5.45612 28.5039,-4.44922 z m 3379.5097,32.89258 c 17.4448,-3.17889 31.7104,8.70528 45.3887,17.4707 13.2208,10.54025 29.5344,4.7636 44.6328,5.0293 14.5291,-2.93419 42.7794,16.96687 30.3281,25.84179 7.3576,13.21345 -3.6181,20.34833 4.6895,32.62891 6.8953,22.52953 18.8299,46.38101 42.7148,54.81641 22.5589,2.52338 17.7329,29.0317 12.416,44.22461 -6.3145,18.93986 10.2003,34.78894 6.3946,54.08007 -6.7561,25.67844 26.7679,22.37178 26.7969,44.14258 -3.5299,9.09893 14.3833,38.78068 -2.4082,30.22656 2.4913,12.19805 8.5839,30.24989 7.8945,45.73438 11.8331,19.64404 1.0941,44.38198 12.0644,64.32617 5.1439,21.09508 6.7732,43.46221 8.9082,65.22656 -0.985,24.55814 -5.8833,48.97263 -1.6035,73.56641 2.9608,24.64684 -6.8374,48.26025 -5.5742,72.77542 9.1499,29.833 -24.9127,32.5388 -40.4473,48.416 -7.7105,17.3924 -2.8998,47.0745 -30.039,48.7148 -22.4635,0.059 -51.3161,5.8212 -62.543,27.9942 -15.0249,17.9499 -40.1531,5.3548 -59.5176,11.5234 -24.3224,11.1921 -53.0237,-5.7604 -76.3144,9.1016 -24.7835,-0.762 -49.6722,-3.1342 -74.4141,-0.3379 -8.1402,-0.8879 -10.4475,-10.3207 -11.9199,-16.9317 -4.5481,-54.3885 -15.8592,-108.2361 -16.3301,-162.97652 -1.766,-72.50585 2.9022,-144.94216 3.2695,-217.4336 -3.876,-68.77726 -7.176,-137.67101 -7.6777,-206.57617 0.8301,-22.18268 -9.0493,-43.13753 -3.0566,-65.38476 1.1361,-26.18867 7.5037,-52.26198 3.3203,-78.53711 -7.5724,-30.32457 30.336,-18.98972 47.1562,-19.31641 32.0877,-0.0859 63.7181,-8.3367 95.8711,-8.3457 z m -5557.2109,5.72656 c 27.0927,-5.72744 44.4753,23.21428 70.3613,24.08398 21.5239,-6.26436 54.0664,-2.23212 57.7305,24.99414 -3.4919,-1.28919 -8.3384,-1.30027 -2.5059,8.72657 -4.6934,11.49522 2.3998,25.77983 9.1485,38.92187 2.5528,20.75815 21.2823,33.10862 39.7949,38.83594 20.5931,7.48633 10.5138,31.21873 7.8808,46.79101 2.3371,23.88259 5.9889,48.57642 11.9219,72.10157 14.6878,3.3367 25.9007,19.95839 23.2071,37.74023 8.6817,22.86896 -2.2348,48.00124 6.1992,70.91797 8.0179,22.54443 2.6012,47.81744 13.3008,69.72852 0.9202,22.05147 7.3822,43.78497 4.7832,65.91796 -4.9588,21.8994 -1.3892,44.20179 -0.9766,66.36524 2.0865,22.16252 -7.4364,43.21219 -5.707,65.29691 7.6419,25.2556 -17.6503,32.5842 -35.0079,42.3261 -18.0115,13.1392 -2.5273,45.4583 -28.6699,52.4922 -22.556,2.3947 -49.3986,4.0682 -65.375,23.125 -11.3215,26.0155 -42.4923,11.832 -63.5371,18.0176 -24.2954,11.1359 -52.9621,-5.7978 -76.2226,9.0625 -24.7835,-0.762 -49.6742,-3.132 -74.4161,-0.3359 -8.1392,-0.8904 -10.4456,-10.3203 -11.9179,-16.9317 -5.2174,-60.1629 -17.9702,-119.7974 -16.3203,-180.46677 -1.8066,-65.51523 3.4266,-130.91804 3.3496,-196.41016 -3.6463,-66.98894 -6.5859,-134.05116 -7.8789,-201.14648 4.7115,-25.11536 -12.5828,-50.5188 -1.7383,-74.9336 -1.5195,-22.04347 4.1857,-43.80656 3.3808,-65.83984 -13.2514,-20.12945 8.3401,-43.08989 29.8926,-32.75977 36.7457,4.08493 72.7228,-6.25386 109.3223,-6.62109 z m 8251.6269,15.02148 c -27.7701,-1.63824 -55.679,1.85635 -83.4668,2.96094 -25.1384,-7.8658 -39.3985,21.35119 -25.0839,40.68555 -4.3596,24.83824 -2.5732,52.31733 12.3066,73.5332 -21.9105,12.62722 14.2321,27.60267 11.6582,43.71094 -0.2468,22.13195 12.4204,45.56615 -0.6211,63.73437 3.1108,20.9074 3.4159,42.65635 -11.6992,59.70899 -12.5765,20.57126 10.442,42.64781 -3.3184,64.02148 -13.4925,24.02231 8.6564,45.74558 9.6895,70.21875 4.4716,20.49795 7.8636,53.73316 -19.0918,59.45117 -35.0745,-1.4709 -72.2952,12.28386 -105.6758,-3.86718 -26.3808,-22.99378 -48.4716,-50.96296 -64.3652,-82.16016 -29.1953,-54.15577 -27.7414,-117.33444 -44.6992,-175.2168 -17.668,-43.55889 -19.4996,-91.08892 -20.709,-137.47851 -4.5247,-21.41666 4.8061,-44.58886 -5.7676,-64.7793 -14.1264,-18.19204 -42.6523,-9.87548 -62.7617,-8.92773 -24.6791,5.40294 -51.1355,6.22586 -74.2422,16.82031 -15.6021,12.04982 -6.3659,32.86675 -4.3125,48.80859 1.6455,31.69279 -1.7766,63.62607 -0.9297,95.44141 8.795,77.6236 -5.2878,157.39299 -37.3457,228.48437 -10.2553,25.58514 -24.7745,48.9797 -39.9922,71.85743 0,22.11609 -29.5381,40.34936 -44.4746,17.99609 -28.0361,-25.32774 -50.4668,-57.42504 -62.6797,-93.46289 -23.413,-63.21077 -12.5678,-131.25301 -9.416,-196.7168 -2.37,-33.59667 -4.9978,-67.98563 3.2441,-101.13086 9.7969,-20.5359 12.9924,-53.11106 -14.7343,-60.97851 -31.0621,-2.20746 -62.6325,-6.04472 -93.7442,-1.79688 -27.2608,-0.11758 -39.2725,28.62684 -42.4121,51.64453 -10.7104,37.03166 -7.4023,75.75011 -5.9766,113.70899 -2.3056,55.34068 -7.5884,111.2785 1.795,166.3125 2.5815,29.21847 22.7893,56.73164 14.2187,86.60156 -6.5647,15.17298 -18.6399,49.3995 11.4043,42.52148 21.9572,4.24205 6.7898,40.91259 33.8496,40.95899 28.9613,-1.08123 13.3656,39.56841 40.9434,39.66601 26.9371,-0.28399 22.2312,39.8012 51.123,37.4629 47.8275,3.0509 96.3954,11.6807 144.045,2.4316 19.2577,1.0563 35.1482,-11.4949 52.1367,-18.43551 17.1601,-5.1989 39.2286,-3.59169 45.2226,-25.57227 2.3863,-27.35991 30.6711,-33.74567 44.6035,-52.76367 3.1732,-25.14274 19.4252,-0.32217 12.125,11.74414 -5.2501,21.53614 19.1383,32.81405 37.1055,32.22656 32.5681,-5.79942 13.3463,30.83798 22.1016,46.16015 21.548,-0.4512 43.1469,10.0845 59.3867,25.5469 58.1427,4.5017 115.4077,18.054 173.8887,18.2695 6.1228,1.4396 12.5093,0.8639 18.5918,-0.4687 20.4084,-10.3913 45.8797,1.7284 63.123,-15.4825 16.1246,-17.7098 22.2992,-42.31845 43.9922,-55.54292 16.568,-19.66554 25.7376,-44.41234 41.7031,-64.54688 14.4154,-12.76745 11.3555,-33.69239 8.209,-50.625 -2.2393,-26.40583 -6.0827,-53.17542 -2.9668,-79.67383 15.8571,-62.72083 14.9023,-129.31748 -1.6172,-191.80664 -16.484,-45.57577 -21.994,-94.02621 -34.834,-140.59179 -4.2995,-21.7836 -14.6973,-46.78347 -39.5293,-50.66407 z m 280.6914,14.43946 c 23.6302,19.4796 57.0385,15.41128 82.8575,30.0625 17.7223,16.15765 31.5567,39.76569 58.2656,41.72461 25.669,0.79894 37.6515,23.81305 43.2324,45.5332 3.6361,25.05802 4.8366,50.40452 7.6504,75.60156 4.0363,9.50755 -3.8789,43.07401 12.2734,32.41797 -0.4371,11.08869 17.4173,35.47548 25.3672,13.63477 0.2433,-33.34886 -6.8234,-66.40477 -4.8808,-99.78711 -0.067,-16.63746 5.535,-54.31179 29.5918,-41.94336 14.1776,17.11128 35.1526,31.25953 58.2556,29.00586 21.654,-3.2135 38.859,13.13641 59.479,17.07422 24.21,10.07183 50.508,9.97724 75.967,13.96679 22.517,8.71313 45.257,18.43547 69.632,20.82617 25.676,-1.70014 41.614,23.00363 65.168,28.20899 25.408,-1.9969 9.071,23.17173 -4.361,28.1875 0.835,8.2916 0.176,25.06664 -13.527,28.90625 -16.914,8.70819 -37.3,8.99597 -51.178,-5.78125 -16.283,-17.32092 -40.56,-12.84047 -61.912,-12.63086 -21.134,2.03805 -48.602,-1.17427 -62.379,18.68555 -4.394,15.29765 -19.936,21.68228 -33.522,26.61523 -18.72,6.63093 -27.858,24.9909 -39.064,39.74219 -13.223,-5.24267 -21.278,16.87778 -26.533,31.18359 -16.822,18.53438 -44.2129,6.70629 -65.0471,15.21875 -2.303,1.4621 -5.0533,2.37 -7.8301,1.92969 -17.5814,-15.73681 -40.0591,-22.95195 -63.209,-13.44531 -31.6305,7.36328 -28.3952,-34.28791 -43.1797,-50.55078 -18.8784,-1.64673 -38.9473,-16.19786 -39.1797,-38.14454 -14.7607,-18.04246 -21.8811,-40.89676 -26.1308,-63.47265 -3.1096,-33.28965 -18.7241,-63.18322 -33.0762,-92.75586 -5.6246,-25.96572 -17.9668,-49.87776 -26.1875,-75.08008 -2.1272,-14.46911 -12.8056,-51.55471 13.457,-44.93359 z m -4609.7539,9.44726 c -0.3703,1.5272 -1.2766,3.17271 -1.6093,0.35547 1.814,-3.29156 1.9797,-1.88267 1.6093,-0.35547 z m 1765.2637,27.64453 c 0.6388,0.52167 0.9721,1.95579 0.461,4.86328 -7.0524,0.22553 -2.3773,-6.42827 -0.461,-4.86328 z m 3053.6875,100.85743 c -1.5725,26.29685 5.4394,52.31899 3.3535,78.61718 -15.4807,-6.08052 -4.6803,-32.38689 -7.7422,-45.87304 -0.7123,-8.2037 -10.1885,-40.2941 4.3887,-32.74414 z m 387.7888,274.71875 c 13.756,0.19087 24.346,14.18764 13.916,29.70703 -8.938,27.05499 -50.458,9.17579 -51.992,41.49414 -1.1,24.28858 -25.12,18.48913 -40.193,25.57422 -20.785,11.01264 -8.404,50.26935 -38.399,47.71289 -28.465,-4.43322 -20.04,35.52852 -45.482,38.69142 -28.122,-2.9556 -26.44,27.3923 -36.481,45.0449 -12.519,15.3616 -38.787,-4.2852 -48.275,16.5586 1.056,21.8828 -13.141,45.2487 -38.375,40.1016 -19.407,-8.0524 -50.883,3.8724 -42.596,29.041 -0.649,26.4841 -34.3617,13.8015 -50.0329,22.6816 -7.9133,6.9685 -19.0405,2.9544 -21.6855,-6.8555 -8.859,-39.8919 -15.3507,-80.4822 -24.4219,-120.416 -8.5185,-34.0079 -17.6358,-67.83812 -28.1895,-101.27536 -11.5604,-25.25291 21.3941,-7.57751 33.1036,-5.85937 34.9725,-4.81877 71.4268,1.13352 105.8532,-8.98242 19.322,-9.25106 41.204,-3.76238 61.416,-8.61719 19.745,-8.55202 33.718,-29.2697 57.241,-31.82617 21.273,-6.75363 32.392,-38.93497 59.326,-33.91407 19.447,6.15399 40.278,3.61968 59.361,-2.60351 20.99,-2.03601 43.251,1.45074 61.758,-11.39063 4.628,-3.4593 9.563,-4.93081 14.148,-4.86718 z m -4350.9333,193.9531 c 9.2216,-0.8714 17.9567,0.6398 24.4043,8.8731 6.2359,18.1193 2.5539,38.2143 1.4433,57.0547 -2.1899,19.6765 -3.6117,39.5955 5.4942,58.0214 6.5046,21.8859 -9.2204,43.391 -2.0625,65.8321 12.3605,61.7938 0.038,124.6085 3.1152,186.875 3.3793,21.6797 8.2099,43.5387 6.461,65.7109 -7.7677,56.2398 1.5709,112.8574 -1.5743,169.2598 -13.7838,3.9605 -28.1829,0.5477 -41.7461,-2.627 -41.737,-6.8749 -80.7167,-24.9436 -122.6093,-30.957 -38.5128,-1.2599 -77.1603,-2.7028 -115.7442,-3.0332 -33.3583,-3.0949 -64.4425,14.6816 -97.6836,11.9902 -20.7672,-9.4578 -49.0796,4.8529 -65.0293,-14.5781 -8.3809,-24.3949 -6.0389,-51.1205 0.877,-75.5625 2.0986,-24.3327 -0.6436,-49.182 2.5762,-73.584 -3.3105,-20.8968 -9.2928,-46.8456 9.664,-64.0234 4.705,-25.0023 -0.4498,-50.4133 -0.045,-75.5313 1.6762,-20.6043 24.3342,-28.2374 31.6172,-45.5019 7.3885,-17.7756 -2.9665,-45.9122 21.1738,-53.3809 27.6689,-3.6441 44.2436,-26.6802 58.3672,-48.3379 13.6364,-23.1448 41.3215,-28.0961 65.9707,-27.9629 25.9021,0.6453 40.5766,-23.728 52.6719,-42.9218 19.8253,-14.3339 45.5076,-6.8539 67.7734,-12.6856 15.4591,-0.3283 25.4673,-13.3464 32.3711,-25.6621 6.7069,-13.6915 19.5919,-23.2345 35.1914,-21.8457 8.3929,-1.2962 18.1007,-4.5505 27.3223,-5.4219 z m 2618.8125,49.8047 c -28.1511,-0.5815 -55.8774,6.3266 -83.9102,8.8379 -17.7379,4.7526 -47.7281,0.508 -53.25,23.0918 2.5445,23.2467 5.9529,46.6604 5.5664,70.1992 -8.0853,19.5412 9.395,28.0378 25.666,31.4102 29.9482,3.5272 60.5026,-1.2385 90.5547,-2.7637 21.7462,5.1438 44.4891,-14.4828 40.3457,-37.1074 -4.9921,-16.0987 -12,-31.8955 -13.2324,-49.0254 -5.078,-14.3686 6.5622,-38.6686 -11.7402,-44.6426 z m 791.3945,74.9375 c -12.0296,-0.606 -22.7143,2.3892 -27.7344,16.3887 2.5666,24.1513 -2.5631,48.3339 -0.5546,72.5019 35.8148,8.9519 71.6923,18.8683 108.666,21.5352 11.7431,-0.7389 25.2876,4.2403 35.7754,-3.1094 16.4254,-15.8996 3.0931,-40.8456 11.414,-59.7441 9.8373,-18.9162 -8.1837,-39.9712 -27.3359,-41.8418 -21.3641,-1.8181 -42.871,-2.6192 -64.4238,-0.5059 -10.4021,-0.4108 -23.7771,-4.6185 -35.8067,-5.2246 z M 0.2376522,1255.476 c -1.9010417,-832.34247 -0.95052083,-416.17124 0,0 z M 9539.6322,1302.6303 c -12.9349,7.1425 -14.0682,32.6097 -18.5684,46.58 -2.1321,20.925 -25.1405,46.8803 -3.1543,64.2559 40.2295,14.4508 82.271,24.7574 124.4981,32.1406 l 2.4648,-1.6797 2.2266,-1.9394 c 11.9247,-15.0591 13.9212,-35.9361 17.373,-54.3418 -7.6006,-19.9187 27.7716,-39.8856 5.8203,-56.5195 -17.6381,-6.9596 -36.4095,-11.5185 -54.8886,-16.045 -19.3914,-5.1323 -39.8756,-3.7013 -58.3399,-12.3808 -7.4961,-2.7959 -13.12,-2.4512 -17.4316,-0.07 z m -730.668,20.5937 c -30.9183,-0.2093 -61.6631,4.9011 -92.1621,9.6973 -16.2375,0.04 -40.7393,3.0763 -37.209,25.5547 -3.9847,24.0497 10.9033,52.253 38.8809,51.5429 1.3904,0.7673 2.6759,1.7338 4.3359,1.7578 28.3781,-5.169 57.9988,3.2473 86.0469,-4.9882 19.8542,-3.2262 27.8549,-24.4815 26.1309,-42.4336 -0.5153,-17.7636 -2.5426,-41.7325 -26.0235,-41.1309 z m -292.9726,39.4102 c -26.9023,4 -53.0017,12.7514 -79.7891,17.7929 -21.4001,-2.0243 -39.8299,22.9841 -28.4199,42.2715 9.9595,16.9989 16.1585,46.4393 41.7871,43.9278 30.2379,1.4249 59.6138,-6.9782 89.3496,-10.8438 26.5446,0.2458 37.3624,-30.5507 24.4101,-50.9512 -9.0984,-19.6771 -21.1485,-45.4629 -47.3378,-42.1972 z m 711.6425,19.8496 c -7.283,0.025 -14.5405,1.0314 -21.7656,3.7304 -23.9859,3.2466 -17.8098,28.05 -7.7676,42.6036 11.5456,23.7185 -18.7388,50.4569 0.8731,71.4394 25.5516,13.5554 55.725,14.2457 83.9297,18.2188 5.4539,1.4253 11.0696,2.1688 16.6933,2.457 23.1815,9.6728 51.2625,-15.9475 39.1934,-39.5879 -1.5345,-20.3413 1.262,-40.7899 1.5527,-61.1777 4.9208,-27.3795 -26.5394,-31.337 -46.6855,-30.5918 -22.0991,1.5918 -44.1745,-7.1669 -66.0235,-7.0918 z m -5822.8828,43.8711 c -0.072,1.5405 -0.7599,3.1459 -1.8476,0.1933 1.3763,-3.2094 1.9198,-1.7338 1.8476,-0.1933 z m 1998.1524,36.1133 c 3.4982,-3.2902 0.7097,5.1336 0,0 z" + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscsscsccccsccccccccccccccccccccssccccccccccccccccccccccccsscccccccccscccccccsccscccccccccsscccccccccccccccsccccccccsscscc" /> + </g> +</svg> diff --git a/static/images/SPYO_SULT THE ORPHANS.webp b/static/images/SPYO_SULT THE ORPHANS.webp Binary files differnew file mode 100644 index 0000000..9efe57c --- /dev/null +++ b/static/images/SPYO_SULT THE ORPHANS.webp diff --git a/static/images/STiNKER AF GENTRiFiCERiNG!.webp b/static/images/STiNKER AF GENTRiFiCERiNG!.webp Binary files differdeleted file mode 100644 index 70a8d27..0000000 --- a/static/images/STiNKER AF GENTRiFiCERiNG!.webp +++ /dev/null diff --git a/static/images/YOUR MiSERY StARtS WiTH CAPitALiSM.webp b/static/images/YOUR MiSERY StARtS WiTH CAPitALiSM!.webp Binary files differindex e5ab455..e5ab455 100644 --- a/static/images/YOUR MiSERY StARtS WiTH CAPitALiSM.webp +++ b/static/images/YOUR MiSERY StARtS WiTH CAPitALiSM!.webp diff --git a/static/images/aegte-drivert-uden-nemid.jpg b/static/images/aegte-drivert-uden-nemid.jpg Binary files differnew file mode 100644 index 0000000..3ae1a37 --- /dev/null +++ b/static/images/aegte-drivert-uden-nemid.jpg diff --git a/static/images/aktiv-fiaskohw.jpg b/static/images/aktiv-fiaskohw.jpg Binary files differnew file mode 100644 index 0000000..4c7f648 --- /dev/null +++ b/static/images/aktiv-fiaskohw.jpg diff --git a/static/images/aldrig-mer-kompetent.jpg b/static/images/aldrig-mer-kompetent.jpg Binary files differnew file mode 100644 index 0000000..83991e6 --- /dev/null +++ b/static/images/aldrig-mer-kompetent.jpg diff --git a/static/images/art-belongs-in-gallerys.jpg b/static/images/art-belongs-in-gallerys.jpg Binary files differnew file mode 100644 index 0000000..58b7fab --- /dev/null +++ b/static/images/art-belongs-in-gallerys.jpg diff --git a/static/images/art-is-for-the-rich-and-wealthy.jpg b/static/images/art-is-for-the-rich-and-wealthy.jpg Binary files differnew file mode 100644 index 0000000..57f5785 --- /dev/null +++ b/static/images/art-is-for-the-rich-and-wealthy.jpg diff --git a/static/images/autoritets-naiv.jpg b/static/images/autoritets-naiv.jpg Binary files differnew file mode 100644 index 0000000..ba82874 --- /dev/null +++ b/static/images/autoritets-naiv.jpg diff --git a/static/images/bernie-spyo-svigermors-droem.jpg b/static/images/bernie-spyo-svigermors-droem.jpg Binary files differnew file mode 100644 index 0000000..a347565 --- /dev/null +++ b/static/images/bernie-spyo-svigermors-droem.jpg diff --git a/static/images/bevismateriale.jpg b/static/images/bevismateriale.jpg Binary files differdeleted file mode 100644 index f0a512b..0000000 --- a/static/images/bevismateriale.jpg +++ /dev/null diff --git a/static/images/boern-af-asfalten.jpg b/static/images/boern-af-asfalten.jpg Binary files differnew file mode 100644 index 0000000..3ac4a05 --- /dev/null +++ b/static/images/boern-af-asfalten.jpg diff --git a/static/images/bolle-mae-ost.jpg b/static/images/bolle-mae-ost.jpg Binary files differnew file mode 100644 index 0000000..6cba43c --- /dev/null +++ b/static/images/bolle-mae-ost.jpg diff --git a/static/images/capitalism-spawns-misery.jpeg b/static/images/capitalism-spawns-misery.jpeg Binary files differnew file mode 100644 index 0000000..06ab913 --- /dev/null +++ b/static/images/capitalism-spawns-misery.jpeg diff --git a/static/images/carlo-giuliani.jpg b/static/images/carlo-giuliani.jpg Binary files differnew file mode 100644 index 0000000..0843787 --- /dev/null +++ b/static/images/carlo-giuliani.jpg diff --git a/static/images/consume-more-data.jpg b/static/images/consume-more-data.jpg Binary files differnew file mode 100644 index 0000000..a7aeb9e --- /dev/null +++ b/static/images/consume-more-data.jpg diff --git a/static/images/danske-vaerdier-inshallah.jpg b/static/images/danske-vaerdier-inshallah.jpg Binary files differnew file mode 100644 index 0000000..16e5875 --- /dev/null +++ b/static/images/danske-vaerdier-inshallah.jpg diff --git a/static/images/destroy-israel.jpg b/static/images/destroy-israel.jpg Binary files differnew file mode 100644 index 0000000..d2c2542 --- /dev/null +++ b/static/images/destroy-israel.jpg diff --git a/static/images/dit-liv-blir-maalt-i-kroner-og-oere.jpeg b/static/images/dit-liv-blir-maalt-i-kroner-og-oere.jpeg Binary files differnew file mode 100644 index 0000000..53dd4d7 --- /dev/null +++ b/static/images/dit-liv-blir-maalt-i-kroner-og-oere.jpeg diff --git a/static/images/etableret-kunst.jpg b/static/images/etableret-kunst.jpg Binary files differnew file mode 100644 index 0000000..c18e627 --- /dev/null +++ b/static/images/etableret-kunst.jpg diff --git a/static/images/fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg b/static/images/fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg Binary files differnew file mode 100644 index 0000000..976a6db --- /dev/null +++ b/static/images/fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg diff --git a/static/images/free-gaza.jpeg b/static/images/free-gaza.jpeg Binary files differnew file mode 100644 index 0000000..e0ef65b --- /dev/null +++ b/static/images/free-gaza.jpeg diff --git a/static/images/free-palestine-now.jpg b/static/images/free-palestine-now.jpg Binary files differnew file mode 100644 index 0000000..321676a --- /dev/null +++ b/static/images/free-palestine-now.jpg diff --git a/static/images/gaslightin-govrment.jpg b/static/images/gaslightin-govrment.jpg Binary files differnew file mode 100644 index 0000000..79f9dd1 --- /dev/null +++ b/static/images/gaslightin-govrment.jpg diff --git a/static/images/glaedelig-angst-og-godt-samnbrud.jpg b/static/images/glaedelig-angst-og-godt-samnbrud.jpg Binary files differnew file mode 100644 index 0000000..70c66d5 --- /dev/null +++ b/static/images/glaedelig-angst-og-godt-samnbrud.jpg diff --git a/static/images/godkendt-af-trustpilot.jpg b/static/images/godkendt-af-trustpilot.jpg Binary files differnew file mode 100644 index 0000000..1733719 --- /dev/null +++ b/static/images/godkendt-af-trustpilot.jpg diff --git a/static/images/hanne-reumert.jpg b/static/images/hanne-reumert.jpg Binary files differnew file mode 100644 index 0000000..23d28f2 --- /dev/null +++ b/static/images/hanne-reumert.jpg diff --git a/static/images/how-is-war-an-excuse-for-peace.jpg b/static/images/how-is-war-an-excuse-for-peace.jpg Binary files differnew file mode 100644 index 0000000..19e9cff --- /dev/null +++ b/static/images/how-is-war-an-excuse-for-peace.jpg diff --git a/static/images/hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg b/static/images/hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg Binary files differnew file mode 100644 index 0000000..19d9b8c --- /dev/null +++ b/static/images/hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg diff --git a/static/images/hverdagens-helte.jpg b/static/images/hverdagens-helte.jpg Binary files differnew file mode 100644 index 0000000..f5d2b80 --- /dev/null +++ b/static/images/hverdagens-helte.jpg diff --git a/static/images/iTS FREE PALESTiNE OR WE NOt FRiENDS.webp b/static/images/iTS FREE PALESTiNE OR WE NOt FRiENDS.webp Binary files differnew file mode 100644 index 0000000..0629106 --- /dev/null +++ b/static/images/iTS FREE PALESTiNE OR WE NOt FRiENDS.webp diff --git a/static/images/ill-never-comply.jpg b/static/images/ill-never-comply.jpg Binary files differnew file mode 100644 index 0000000..39ff7a4 --- /dev/null +++ b/static/images/ill-never-comply.jpg diff --git a/static/images/in-the-end-its-all-4-sale.jpg b/static/images/in-the-end-its-all-4-sale.jpg Binary files differnew file mode 100644 index 0000000..801e399 --- /dev/null +++ b/static/images/in-the-end-its-all-4-sale.jpg diff --git a/static/images/ingen-substans-kun-ydre-glans.jpg b/static/images/ingen-substans-kun-ydre-glans.jpg Binary files differnew file mode 100644 index 0000000..10cb3ca --- /dev/null +++ b/static/images/ingen-substans-kun-ydre-glans.jpg diff --git a/static/images/jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg b/static/images/jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg Binary files differnew file mode 100644 index 0000000..c227a36 --- /dev/null +++ b/static/images/jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg diff --git a/static/images/joesses-per.jpg b/static/images/joesses-per.jpg Binary files differnew file mode 100644 index 0000000..6fc0564 --- /dev/null +++ b/static/images/joesses-per.jpg diff --git a/static/images/jonel-mitrovan.jpg b/static/images/jonel-mitrovan.jpg Binary files differnew file mode 100644 index 0000000..67687a6 --- /dev/null +++ b/static/images/jonel-mitrovan.jpg diff --git a/static/images/ka-mette-mon-mentalisere.jpg b/static/images/ka-mette-mon-mentalisere.jpg Binary files differnew file mode 100644 index 0000000..a6149f9 --- /dev/null +++ b/static/images/ka-mette-mon-mentalisere.jpg diff --git a/static/images/kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg b/static/images/kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg Binary files differnew file mode 100644 index 0000000..7f7081d --- /dev/null +++ b/static/images/kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg diff --git a/static/images/kids-at-heart.jpg b/static/images/kids-at-heart.jpg Binary files differnew file mode 100644 index 0000000..b3e69f4 --- /dev/null +++ b/static/images/kids-at-heart.jpg diff --git a/static/images/lige-her-giver-jeg-hamsterhjulet-fingeren.png b/static/images/lige-her-giver-jeg-hamsterhjulet-fingeren.png Binary files differnew file mode 100644 index 0000000..7b1b8cf --- /dev/null +++ b/static/images/lige-her-giver-jeg-hamsterhjulet-fingeren.png diff --git a/static/images/like-mindless-drones-you-blindly-follow.jpg b/static/images/like-mindless-drones-you-blindly-follow.jpg Binary files differnew file mode 100644 index 0000000..3a41033 --- /dev/null +++ b/static/images/like-mindless-drones-you-blindly-follow.jpg diff --git a/static/images/livet-er-en-dans-paa-roser.jpg b/static/images/livet-er-en-dans-paa-roser.jpg Binary files differnew file mode 100644 index 0000000..540aec4 --- /dev/null +++ b/static/images/livet-er-en-dans-paa-roser.jpg diff --git a/static/images/magtsyge-mette-styrer-showet.jpg b/static/images/magtsyge-mette-styrer-showet.jpg Binary files differnew file mode 100644 index 0000000..0bb1c05 --- /dev/null +++ b/static/images/magtsyge-mette-styrer-showet.jpg diff --git a/static/images/naar-inkompetence-er-spidskompetance.jpg b/static/images/naar-inkompetence-er-spidskompetance.jpg Binary files differnew file mode 100644 index 0000000..a758f4b --- /dev/null +++ b/static/images/naar-inkompetence-er-spidskompetance.jpg diff --git a/static/images/no-borders.jpg b/static/images/no-borders.jpg Binary files differnew file mode 100644 index 0000000..a6f9149 --- /dev/null +++ b/static/images/no-borders.jpg diff --git a/static/images/non-compatible-players.jpeg b/static/images/non-compatible-players.jpeg Binary files differnew file mode 100644 index 0000000..19dfa3b --- /dev/null +++ b/static/images/non-compatible-players.jpeg diff --git a/static/images/non-compatible-players.jpg b/static/images/non-compatible-players.jpg Binary files differnew file mode 100644 index 0000000..c673083 --- /dev/null +++ b/static/images/non-compatible-players.jpg diff --git a/static/images/normalisering.jpg b/static/images/normalisering.jpg Binary files differnew file mode 100644 index 0000000..12498bb --- /dev/null +++ b/static/images/normalisering.jpg diff --git a/static/images/normrytteriet-lever.jpg b/static/images/normrytteriet-lever.jpg Binary files differnew file mode 100644 index 0000000..d93dc3e --- /dev/null +++ b/static/images/normrytteriet-lever.jpg diff --git a/static/images/on-a-raft-23.jpg b/static/images/on-a-raft-23.jpg Binary files differnew file mode 100644 index 0000000..52dcab3 --- /dev/null +++ b/static/images/on-a-raft-23.jpg diff --git a/static/images/overkill-of-consumption.jpeg b/static/images/overkill-of-consumption.jpeg Binary files differnew file mode 100644 index 0000000..81ca48b --- /dev/null +++ b/static/images/overkill-of-consumption.jpeg diff --git a/static/images/penge-laveste-faellesnaevner.jpeg b/static/images/penge-laveste-faellesnaevner.jpeg Binary files differnew file mode 100644 index 0000000..321c730 --- /dev/null +++ b/static/images/penge-laveste-faellesnaevner.jpeg diff --git a/static/images/plastifikation.jpeg b/static/images/plastifikation.jpeg Binary files differnew file mode 100644 index 0000000..72c5c37 --- /dev/null +++ b/static/images/plastifikation.jpeg diff --git a/static/images/politkivskaja.jpg b/static/images/politkivskaja.jpg Binary files differnew file mode 100644 index 0000000..f0d9efc --- /dev/null +++ b/static/images/politkivskaja.jpg diff --git a/static/images/punish-political-misconduct.jpeg b/static/images/punish-political-misconduct.jpeg Binary files differnew file mode 100644 index 0000000..67217f2 --- /dev/null +++ b/static/images/punish-political-misconduct.jpeg diff --git a/static/images/return-of-investment.jpg b/static/images/return-of-investment.jpg Binary files differnew file mode 100644 index 0000000..100a768 --- /dev/null +++ b/static/images/return-of-investment.jpg diff --git a/static/images/saa-der-betalt.jpeg b/static/images/saa-der-betalt.jpeg Binary files differnew file mode 100644 index 0000000..9bf57aa --- /dev/null +++ b/static/images/saa-der-betalt.jpeg diff --git a/static/images/samarbejde-med-kahler.jpg b/static/images/samarbejde-med-kahler.jpg Binary files differnew file mode 100644 index 0000000..bda5079 --- /dev/null +++ b/static/images/samarbejde-med-kahler.jpg diff --git a/static/images/se-venedi-og-doed-over-fisketorvet.jpg b/static/images/se-venedi-og-doed-over-fisketorvet.jpg Binary files differnew file mode 100644 index 0000000..54b2037 --- /dev/null +++ b/static/images/se-venedi-og-doed-over-fisketorvet.jpg diff --git a/static/images/self-sufficient-with-no-image.jpeg b/static/images/self-sufficient-with-no-image.jpeg Binary files differindex 31fe2db..8b09665 100644 --- a/static/images/self-sufficient-with-no-image.jpeg +++ b/static/images/self-sufficient-with-no-image.jpeg diff --git a/static/images/self-sufficient-with-no-image.png b/static/images/self-sufficient-with-no-image.png Binary files differnew file mode 100644 index 0000000..304d756 --- /dev/null +++ b/static/images/self-sufficient-with-no-image.png diff --git a/static/images/selfhate.jpg b/static/images/selfhate.jpg Binary files differnew file mode 100644 index 0000000..5f82d2f --- /dev/null +++ b/static/images/selfhate.jpg diff --git a/static/images/selvfed-isme.jpg b/static/images/selvfed-isme.jpg Binary files differindex 9a1d57f..d9c6252 100644 --- a/static/images/selvfed-isme.jpg +++ b/static/images/selvfed-isme.jpg diff --git a/static/images/spyo-graffitins-amin-jensen.jpg b/static/images/spyo-graffitins-amin-jensen.jpg Binary files differnew file mode 100644 index 0000000..ca9bd45 --- /dev/null +++ b/static/images/spyo-graffitins-amin-jensen.jpg diff --git a/static/images/spyo-is-a-9i.jpg b/static/images/spyo-is-a-9i.jpg Binary files differnew file mode 100644 index 0000000..c4bbe26 --- /dev/null +++ b/static/images/spyo-is-a-9i.jpg diff --git a/static/images/spyoscape.png b/static/images/spyoscape.png Binary files differindex d08511d..9fa89f4 100644 --- a/static/images/spyoscape.png +++ b/static/images/spyoscape.png diff --git a/static/images/stakkels-hvide-patriark.jpg b/static/images/stakkels-hvide-patriark.jpg Binary files differnew file mode 100644 index 0000000..5cd9d8f --- /dev/null +++ b/static/images/stakkels-hvide-patriark.jpg diff --git a/static/images/stilstand-i-vores-tilstand.jpg b/static/images/stilstand-i-vores-tilstand.jpg Binary files differnew file mode 100644 index 0000000..0d223eb --- /dev/null +++ b/static/images/stilstand-i-vores-tilstand.jpg diff --git a/static/images/stinker-af-gentrificering-og-ussel-profitmageri.jpg b/static/images/stinker-af-gentrificering-og-ussel-profitmageri.jpg Binary files differnew file mode 100644 index 0000000..daa1c01 --- /dev/null +++ b/static/images/stinker-af-gentrificering-og-ussel-profitmageri.jpg diff --git a/static/images/stop-believing-politicians.jpg b/static/images/stop-believing-politicians.jpg Binary files differnew file mode 100644 index 0000000..ffb8aa2 --- /dev/null +++ b/static/images/stop-believing-politicians.jpg diff --git a/static/images/stop-idolizing-the-rich-and-powerfull.jpg b/static/images/stop-idolizing-the-rich-and-powerfull.jpg Binary files differnew file mode 100644 index 0000000..5a9b633 --- /dev/null +++ b/static/images/stop-idolizing-the-rich-and-powerfull.jpg diff --git a/static/images/the-janitors-from-caucasus.jpg b/static/images/the-janitors-from-caucasus.jpg Binary files differnew file mode 100644 index 0000000..756c970 --- /dev/null +++ b/static/images/the-janitors-from-caucasus.jpg diff --git a/static/images/tilgivelse-tilblivelse.jpg b/static/images/tilgivelse-tilblivelse.jpg Binary files differnew file mode 100644 index 0000000..e53b9db --- /dev/null +++ b/static/images/tilgivelse-tilblivelse.jpg diff --git a/static/images/uden-manus-tak.jpg b/static/images/uden-manus-tak.jpg Binary files differnew file mode 100644 index 0000000..2852b09 --- /dev/null +++ b/static/images/uden-manus-tak.jpg diff --git a/static/images/unfluencers.jpg b/static/images/unfluencers.jpg Binary files differnew file mode 100644 index 0000000..919977a --- /dev/null +++ b/static/images/unfluencers.jpg diff --git a/static/images/vaekst-er-fremgang.jpeg b/static/images/vaekst-er-fremgang.jpeg Binary files differnew file mode 100644 index 0000000..d8dce0b --- /dev/null +++ b/static/images/vaekst-er-fremgang.jpeg diff --git a/static/images/var-det-det-hele-værd.jpg b/static/images/var-det-det-hele-værd.jpg Binary files differnew file mode 100644 index 0000000..5ebbc56 --- /dev/null +++ b/static/images/var-det-det-hele-værd.jpg diff --git a/static/images/vask-din-roev.jpeg b/static/images/vask-din-roev.jpeg Binary files differnew file mode 100644 index 0000000..4206cf1 --- /dev/null +++ b/static/images/vask-din-roev.jpeg diff --git a/static/images/watch-ur-life-vanish-from-capitalism.jpg b/static/images/watch-ur-life-vanish-from-capitalism.jpg Binary files differnew file mode 100644 index 0000000..a0eba77 --- /dev/null +++ b/static/images/watch-ur-life-vanish-from-capitalism.jpg diff --git a/static/images/why-has-debt-become-sovereign.jpg b/static/images/why-has-debt-become-sovereign.jpg Binary files differnew file mode 100644 index 0000000..7e16e58 --- /dev/null +++ b/static/images/why-has-debt-become-sovereign.jpg diff --git a/static/images/yahya-sinwar.jpg b/static/images/yahya-sinwar.jpg Binary files differnew file mode 100644 index 0000000..e7e2104 --- /dev/null +++ b/static/images/yahya-sinwar.jpg diff --git a/static/js/data.json b/static/js/data.json index 806c817..a3076bf 100644 --- a/static/js/data.json +++ b/static/js/data.json @@ -5,7 +5,8 @@ "authors": [ "SPYO" ], - "image": "%2523FiND%20FARHAD.webp" + "image": "%2523FiND%20FARHAD.webp", + "date": "2025-08-01" }, "AARON BUSHNELL": { "lat": 55.708503, @@ -13,7 +14,8 @@ "authors": [ "SPYO" ], - "image": "AARON BUSHNELL.webp" + "image": "AARON BUSHNELL.webp", + "date": "2025-08-18" }, "ABOVe SOCiAL ACCEPTED NORMALiTiES": { "lat": 55.692549, @@ -21,7 +23,8 @@ "authors": [ "SPYO" ], - "image": "ABOVe SOCiAL ACCEPTED NORMALiTiES.webp" + "image": "ABOVe SOCiAL ACCEPTED NORMALiTiES.webp", + "date": "2025-05-20" }, "ABUSiVE PEOPLE SUCK!": { "lat": 55.677347, @@ -30,7 +33,8 @@ "SPYO", "EARL" ], - "image": "abusive-people-suck.jpeg" + "image": "abusive-people-suck.jpeg", + "date": "2025-05-17" }, "AFMONTER iSRAEL NU": { "lat": 55.687653, @@ -38,7 +42,26 @@ "authors": [ "SPYO" ], - "image": "afmonter-israel-nu.jpg" + "image": "afmonter-israel-nu.jpg", + "date": "2025-05-21" + }, + "AKTiV FiaSKOHW": { + "lat": 55.72105, + "lng": 12.602119, + "authors": [ + "SPYO" + ], + "image": "aktiv-fiaskohw.jpg", + "date": "2026-03-07" + }, + "ALDRi MER KOMPEtENt!\ud83d\udc80": { + "lat": 55.712922, + "lng": 12.590819, + "authors": [ + "SPYO" + ], + "image": "aldrig-mer-kompetent.jpg", + "date": "2026-03-07" }, "ALL YOU NEED iS LESS OF EVERYTHiNG": { "lat": 55.660186, @@ -46,7 +69,8 @@ "authors": [ "SPYO" ], - "image": "all-you-need-is-less-of-everything.jpg" + "image": "all-you-need-is-less-of-everything.jpg", + "date": "2025-03-19" }, "ANALOG B\u00d8RN": { "lat": 55.668512, @@ -55,7 +79,8 @@ "SPYO", "BRAVO" ], - "image": "ANALOG B\u00d8RN.webp" + "image": "ANALOG B\u00d8RN.webp", + "date": "2025-08-01" }, "ANALOGBARN UDEN MiT iD": { "lat": 55.6690447, @@ -64,7 +89,18 @@ "SPYO", "HACK" ], - "image": "analog-barn-uden-mit-id.webp" + "image": "analog-barn-uden-mit-id.webp", + "date": "2025-04-08" + }, + "AngST&TVAng": { + "lat": 55.657165, + "lng": 12.552707, + "authors": [ + "SULT", + "SPYO" + ], + "image": "sammen-hver-for-sig.jpg", + "date": "2025-10-06" }, "APARNAGE TIL ALLE!! SLUK FOR DE RiGES PRiViLEGiER!": { "lat": 55.659767, @@ -72,7 +108,17 @@ "authors": [ "SPYO" ], - "image": "aparnage-til-alle....jpg" + "image": "aparnage-til-alle....jpg", + "date": "2025-03-19" + }, + "aRT Belongs in gallery's": { + "lat": 55.720839, + "lng": 12.602969, + "authors": [ + "SPYO" + ], + "image": "art-belongs-in-gallerys.jpg", + "date": "2026-03-07" }, "ART iS ABOUT SACRiFiCES OVER&OVER AGAiN": { "lat": 55.6396895, @@ -80,7 +126,26 @@ "authors": [ "SPYO" ], - "image": "art-is-about-sacrifices-over-and-over-again.jpeg" + "image": "art-is-about-sacrifices-over-and-over-again.jpeg", + "date": "2025-05-21" + }, + "ART iS FOR THE RiCH & WEALTHy": { + "lat": 55.721081, + "lng": 12.602572, + "authors": [ + "SPYO" + ], + "image": "art-is-for-the-rich-and-wealthy.jpg", + "date": "2026-03-07" + }, + "ART iS SUCH A PREDiCTABLE CONSTRUCT": { + "lat": 55.660175, + "lng": 12.555319, + "authors": [ + "SPYO" + ], + "image": "in-the-end-its-all-4-sale.jpg", + "date": "2026-02-13" }, "ART WitHOUT iNTERFERENCE": { "lat": 55.703397, @@ -88,7 +153,8 @@ "authors": [ "SPYO" ], - "image": "ART WitHOUT iNTERFERENCE.webp" + "image": "ART WitHOUT iNTERFERENCE.webp", + "date": "2025-05-20" }, "ARTiSTiC iNTEGRiTY YOU ARE ABOUt tO BECOME PRiVAtiZED AS StAtE GOVERMENt PROPERtY (iM DYSLEXiC)": { "lat": 55.657492, @@ -96,9 +162,28 @@ "authors": [ "SPYO" ], - "image": "artistic-integrity-you-are....jpg" + "image": "artistic-integrity-you-are....jpg", + "date": "2025-03-19" + }, + "AUTENTiSK MECHANDiSE": { + "lat": 55.667619, + "lng": 12.600768, + "authors": [ + "SPYO" + ], + "image": "AUTENTiSK MECHANDiSE.webp", + "date": "2026-02-13" + }, + "AUTORiTETS-NAiV": { + "lat": 55.691997, + "lng": 12.552897, + "authors": [ + "SPYO" + ], + "image": "autoritets-naiv.jpg", + "date": "2026-03-07" }, - "BAADER MAiNHOF": { + "BAADER MEiNHOF": { "lat": 55.671155, "lng": 12.546128, "authors": [ @@ -106,7 +191,8 @@ "BRAVO", "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" ], - "image": "freaks-come-out-at-nite.png" + "image": "freaks-come-out-at-nite.png", + "date": "2025-11-07" }, "BAR ROLiG Vi FRA MYNDIGHEDERNE": { "lat": 55.706921, @@ -115,7 +201,18 @@ "SPYO", "DYSO" ], - "image": "bar-rolig-vi-fra-myndighederne.jpeg" + "image": "bar-rolig-vi-fra-myndighederne.jpeg", + "date": "2025-08-01" + }, + "BERNiE & SPYO SViGERMORS DR\u00d8M": { + "lat": 55.69539, + "lng": 12.54897, + "authors": [ + "SPYO", + "BERNIE" + ], + "image": "bernie-spyo-svigermors-droem.jpg", + "date": "2026-03-04" }, "BET U DiDNT SEE ME!": { "lat": 55.668461, @@ -123,15 +220,17 @@ "authors": [ "SPYO" ], - "image": "BET U DiDNT SEE ME!.webp" + "image": "BET U DiDNT SEE ME!.webp", + "date": "2025-08-01" }, - "BEViSMAtERiALE": { - "lat": 55.689067, - "lng": 12.481683, + "BEVISMAtERIALE\ud83e\udef1": { + "lat": 55.689074, + "lng": 12.481725, "authors": [ "SPYO" ], - "image": "bevismateriale.jpg" + "image": "BEVISMAtERIALE\ud83e\udef1.webp", + "date": "2026-02-13" }, "BiG PHARMA iS UR DADDY NOW!": { "lat": 55.699211, @@ -139,7 +238,8 @@ "authors": [ "SPYO" ], - "image": "big-pharma-is-your-daddy-now.jpg" + "image": "big-pharma-is-your-daddy-now.jpg", + "date": "2025-10-09" }, "BITE THE HAND THAT FEEDS YOU": { "lat": 55.662945, @@ -148,7 +248,8 @@ "SPYO", "SMOAT" ], - "image": "BITE THE HAND THAT FEEDS YOU.webp" + "image": "BITE THE HAND THAT FEEDS YOU.webp", + "date": "2025-05-20" }, "BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT ST\u00c6RKEste GruNDLAG": { "lat": 55.70015, @@ -156,7 +257,8 @@ "authors": [ "SPYO" ], - "image": "BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT ST\u00c6RKEste GruNDLAG.webp" + "image": "BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT ST\u00c6RKEste GruNDLAG.webp", + "date": "2025-05-20" }, "BOLiG PRiSER": { "lat": 55.6673412, @@ -164,7 +266,17 @@ "authors": [ "SPYO" ], - "image": "bolig-priser.jpeg" + "image": "bolig-priser.jpeg", + "date": "2025-07-29" + }, + "BOLLE M\u00c6 OST TiL 89,50": { + "lat": 55.707678, + "lng": 12.524425, + "authors": [ + "SPYO" + ], + "image": "bolle-mae-ost.jpg", + "date": "2026-03-31" }, "BR\u00c6ND LORTET AF!": { "lat": 55.657492, @@ -172,7 +284,17 @@ "authors": [ "SPYO" ], - "image": "braend-lortet-af.jpg" + "image": "braend-lortet-af.jpg", + "date": "2025-03-19" + }, + "BULLIES HAVE SELF ESTEEM": { + "lat": 55.687486, + "lng": 12.5546, + "authors": [ + "SPYO" + ], + "image": "having-self-esteem.jpg", + "date": "2025-10-24" }, "BUREAUKRATiSK SKiLLELiNiE.": { "lat": 55.687144, @@ -180,7 +302,18 @@ "authors": [ "SPYO" ], - "image": "bureaukratisk-skillelinie..jpg" + "image": "bureaukratisk-skillelinie..jpg", + "date": "2025-05-21" + }, + "B\u00d8RN AF ASFALTEN": { + "lat": 55.707344, + "lng": 12.525939, + "authors": [ + "SPYO", + "KEST" + ], + "image": "boern-af-asfalten.jpg", + "date": "2026-03-31" }, "CAPiTALiSM HAS NO DEMOCRACY": { "lat": 55.658949, @@ -188,7 +321,8 @@ "authors": [ "SPYO" ], - "image": "CAPiTALiSM HAS NO DEMOCRACY.webp" + "image": "CAPiTALiSM HAS NO DEMOCRACY.webp", + "date": "2025-08-01" }, "CAPiTALiSM iS SHORT-TERMED": { "lat": 55.654594, @@ -196,7 +330,17 @@ "authors": [ "SPYO" ], - "image": "capitalism-is-short-termed.jpg" + "image": "capitalism-is-short-termed.jpg", + "date": "2025-04-10" + }, + "CAPiTALiSM SPAWNS MiSERy": { + "lat": 55.69789, + "lng": 12.54818, + "authors": [ + "SPYO" + ], + "image": "capitalism-spawns-misery.jpeg", + "date": "2026-03-04" }, "CAPiTALiSTiC DEMOCRACY": { "lat": 55.686744, @@ -204,7 +348,17 @@ "authors": [ "SPYO" ], - "image": "capitalistic-democracy.jpg" + "image": "capitalistic-democracy.jpg", + "date": "2025-04-17" + }, + "CARLO GiULiANi\u2764\ufe0f": { + "lat": 55.707461, + "lng": 12.553919, + "authors": [ + "SPYO" + ], + "image": "carlo-giuliani.jpg", + "date": "2026-02-15" }, "CASH RUiNS EVERYTHiNG AROUND ME": { "lat": 55.669306, @@ -212,7 +366,17 @@ "authors": [ "SPYO" ], - "image": "CASH RUiNS EVERYTHiNG AROUND ME.webp" + "image": "CASH RUiNS EVERYTHiNG AROUND ME.webp", + "date": "2025-08-01" + }, + "CHR BORG ER EN KiBBUTZ": { + "lat": 55.641563, + "lng": 12.555214, + "authors": [ + "SPYO" + ], + "image": "CHR BORG ER EN KiBBUTZ.webp", + "date": "2026-02-13" }, "CHR.BORG=PARADiSE HOTEL": { "lat": 55.683669, @@ -221,7 +385,8 @@ "SPYO", "SAZER" ], - "image": "chr.borg-er-lig-paradise-hotel.jpg" + "image": "chr.borg-er-lig-paradise-hotel.jpg", + "date": "2025-04-17" }, "CiTRONMANE EKSTRA BLADET-ST\u00d8T KULTUREN": { "lat": 55.658301, @@ -229,7 +394,8 @@ "authors": [ "SPYO" ], - "image": "CiTRONMANE EKSTRA BLADET-ST\u00d8T KULTUREN.webp" + "image": "CiTRONMANE EKSTRA BLADET-ST\u00d8T KULTUREN.webp", + "date": "2025-08-01" }, "COMMUNiCATiNG THRU WALLS...": { "lat": 55.690506, @@ -237,7 +403,17 @@ "authors": [ "SPYO" ], - "image": "./communicating-thru-walls....jpg" + "image": "images/communicating-thru-walls....jpg", + "date": "2025-03-27" + }, + "CONSUME MORE DATA": { + "lat": 55.707839, + "lng": 12.555428, + "authors": [ + "SPYO" + ], + "image": "consume-more-data.jpg", + "date": "2026-02-15" }, "CORPORATE GREED BURN iN HELL!": { "lat": 55.711808, @@ -245,7 +421,8 @@ "authors": [ "SPYO" ], - "image": "corporate-greed-burn-in-hell.jpg" + "image": "corporate-greed-burn-in-hell.jpg", + "date": "2025-04-10" }, "CORPORATE GREED STiNKS!": { "lat": 55.686508, @@ -253,7 +430,8 @@ "authors": [ "SPYO" ], - "image": "corporate-greed-stinks.jpg" + "image": "corporate-greed-stinks.jpg", + "date": "2025-04-17" }, "CORPORATiZED DEMOCRACY": { "lat": 55.686564, @@ -261,7 +439,8 @@ "authors": [ "SPYO" ], - "image": "politiciansucks.jpg" + "image": "politiciansucks.jpg", + "date": "2025-04-17" }, "CRiMEFiGHTERS!": { "lat": 55.685839, @@ -270,7 +449,17 @@ "SPYO", "DEPON" ], - "image": "crimefighters.jpg" + "image": "crimefighters.jpg", + "date": "2025-04-17" + }, + "DANSKE V\u00c6RDiER iNSHALLAH": { + "lat": 55.708586, + "lng": 12.522422, + "authors": [ + "SPYO" + ], + "image": "danske-vaerdier-inshallah.jpg", + "date": "2026-03-11" }, "DE MAGtFULDES D\u00c6MONKRAti": { "lat": 55.693908, @@ -278,7 +467,8 @@ "authors": [ "SPYO" ], - "image": "de-magtfuldes-daemonkrati.jpg" + "image": "de-magtfuldes-daemonkrati.jpg", + "date": "2025-05-01" }, "DEFiNE FREEDOM": { "lat": 55.700823, @@ -286,7 +476,17 @@ "authors": [ "SPYO" ], - "image": "define-freedom.jpeg" + "image": "define-freedom.jpeg", + "date": "2025-05-15" + }, + "DEFY UNJUST .LAWS.": { + "lat": 55.658403, + "lng": 12.501836, + "authors": [ + "SPYO" + ], + "image": "DEFY UNJUST .LAWS..webp.webp", + "date": "2026-02-13" }, "DEHUMANiZATiON": { "lat": 55.681533, @@ -294,7 +494,26 @@ "authors": [ "SPYO" ], - "image": "dehumanization.jpg" + "image": "dehumanization.jpg", + "date": "2025-05-21" + }, + "DEMOKRATi KR\u00c6VR RESPEKT FOR <sup>(ViSSE)</sup> GRUNDL\u00c6GGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT <u>POLiTiKERNE</u> L\u00d8BENDE S\u00d8GER DiALOG MED V\u00c6LGERNE": { + "lat": 55.642316, + "lng": 12.553507, + "authors": [ + "SPYO" + ], + "image": "DEMOKRATi KR\u00c6VR RESPEKT FOR (ViSSE) GRUNDL\u00c6GGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE L\u00d8BENDE S\u00d8GER DiALOG MED V\u00c6LGERNE.webp", + "date": "2026-02-13" + }, + "DEN DANSKE STAT & M\u00c6RSK PROFITERE P\u00c5 ETNiSK UDRENSNiNG I PALAETiNA": { + "lat": 55.641619, + "lng": 12.555161, + "authors": [ + "SPYO" + ], + "image": "DEN DANSKE STAT & M\u00c6RSK PROFITERE P\u00c5 ETNiSK UDRENSNiNG I PALAETiNA.webp", + "date": "2026-02-13" }, "DENNE MODEL F\u00c5S OSS i SANDFARVET": { "lat": 55.703644, @@ -302,7 +521,8 @@ "authors": [ "SPYO" ], - "image": "DENNE MODEL F\u00c5S OSS i SANDFARVET.webp" + "image": "DENNE MODEL F\u00c5S OSS i SANDFARVET.webp", + "date": "2025-05-20" }, "DER BURDE V\u00c6RE EN GR\u00c6NSE FOR HVOR MEGET MENNESKER M\u00c5 EjE": { "lat": 55.66876, @@ -311,7 +531,17 @@ "SPYO", "BRAVO" ], - "image": "DER BURDE V\u00c6RE EN GR\u00c6NSE FOR HVOR MEGET MENNESKER M\u00c5 EjE.webp" + "image": "DER BURDE V\u00c6RE EN GR\u00c6NSE FOR HVOR MEGET MENNESKER M\u00c5 EjE.webp", + "date": "2025-08-01" + }, + "DESTROY ISRAEL!": { + "lat": 55.657606, + "lng": 12.502511, + "authors": [ + "SPYO" + ], + "image": "destroy-israel.jpg", + "date": "2026-03-14" }, "DESTROY ZiONiSM": { "lat": 55.694614, @@ -319,7 +549,8 @@ "authors": [ "SPYO" ], - "image": "DESTROY ZiONiSM.webp" + "image": "DESTROY ZiONiSM.webp", + "date": "2025-05-20" }, "DEt HER ER Mit DU KA BEHOLDE RESTEN!": { "lat": 55.7071, @@ -327,7 +558,8 @@ "authors": [ "SPYO" ], - "image": "det-her-er-mit-du-kan-beholde-resten.jpeg" + "image": "det-her-er-mit-du-kan-beholde-resten.jpeg", + "date": "2025-08-12" }, "DEt SKA CHEFEN iK BE OM!": { "lat": 55.668254, @@ -335,7 +567,8 @@ "authors": [ "SPYO" ], - "image": "det-ska-chefen-ik-be-om.jpg" + "image": "det-ska-chefen-ik-be-om.jpg", + "date": "2025-03-22" }, "DIAGNOSE": { "lat": 55.668868, @@ -343,7 +576,8 @@ "authors": [ "SPYO" ], - "image": "diagnose.jpg" + "image": "diagnose.jpg", + "date": "2025-03-22" }, "DiGiTALiSEREt KV\u00c6G": { "lat": 55.655769, @@ -351,7 +585,8 @@ "authors": [ "SPYO" ], - "image": "digitaliseret-kvaeg.jpg" + "image": "digitaliseret-kvaeg.jpg", + "date": "2025-04-10" }, "DinE PEnGE MiG i R\u00d8VEn": { "lat": 55.692503, @@ -359,7 +594,8 @@ "authors": [ "SPYO" ], - "image": "dine-penge-mig-i-roeven.jpg" + "image": "dine-penge-mig-i-roeven.jpg", + "date": "2025-05-01" }, "DiNE PrObLEMEr HAr iNGEN PrObLEMEr": { "lat": 55.668825, @@ -367,15 +603,17 @@ "authors": [ "SPYO" ], - "image": "dine-problemer-har-ingen-problemer.jpg" + "image": "dine-problemer-har-ingen-problemer.jpg", + "date": "2025-03-22" }, - "DiSCUSTiNG HABiT!": { - "lat": 55.707783, - "lng": 12.555975, + "DiT LiV BLiR M\u00c5LT i KRONER & \u00d8RE": { + "lat": 55.667243, + "lng": 12.621263, "authors": [ "SPYO" ], - "image": "discusting-habit.jpeg" + "image": "dit-liv-blir-maalt-i-kroner-og-oere.jpeg", + "date": "2026-03-23" }, "Dit V\u00c6RD St\u00c5R P\u00c5 DiN L\u00d8NSEDDEL": { "lat": 55.613786, @@ -383,7 +621,8 @@ "authors": [ "SPYO" ], - "image": "Dit V\u00c6RD St\u00c5R P\u00c5 DiN L\u00d8NSEDDEL.webp" + "image": "Dit V\u00c6RD St\u00c5R P\u00c5 DiN L\u00d8NSEDDEL.webp", + "date": "2025-05-20" }, "DRiFTeRS AND DREAMERS": { "lat": 55.693148, @@ -392,7 +631,8 @@ "SPYO", "TESM" ], - "image": "drifters-and-dreamers.jpeg" + "image": "drifters-and-dreamers.jpeg", + "date": "2025-05-15" }, "DU ER BANKENS LiLLE SK\u00d8DEHUND": { "lat": 55.655769, @@ -400,7 +640,8 @@ "authors": [ "SPYO" ], - "image": "du-er-bankens-lille-skoedehund.jpg" + "image": "du-er-bankens-lille-skoedehund.jpg", + "date": "2025-03-19" }, "DU LEVER i Et MERitOKRAti": { "lat": 55.690103, @@ -408,7 +649,8 @@ "authors": [ "SPYO" ], - "image": "du-lever-i-et-meritokrati.jpg" + "image": "du-lever-i-et-meritokrati.jpg", + "date": "2025-07-18" }, "EAT THE RiCH!": { "lat": 55.667844, @@ -416,7 +658,8 @@ "authors": [ "SPYO" ], - "image": "eat-the-rich.jpg" + "image": "eat-the-rich.jpg", + "date": "2025-05-01" }, "EDUCATE THIS": { "lat": 55.689279, @@ -424,7 +667,8 @@ "authors": [ "SPYO" ], - "image": "EDUCATE THIS.webp" + "image": "EDUCATE THIS.webp", + "date": "2025-08-01" }, "ER PENGE DYNAMiSKE": { "lat": 55.664269, @@ -432,7 +676,17 @@ "authors": [ "SPYO" ], - "image": "er-penge-dynamiske.jpg" + "image": "er-penge-dynamiske.jpg", + "date": "2025-05-10" + }, + "ETABLERET KUNST\u2191": { + "lat": 55.705111, + "lng": 12.529086, + "authors": [ + "SPYO" + ], + "image": "etableret-kunst.jpg", + "date": "2026-03-31" }, "EUROPE BUiLD ON COLONiALiSM": { "lat": 55.686872, @@ -440,7 +694,8 @@ "authors": [ "SPYO" ], - "image": "europe-build-on-colonialism.jpg" + "image": "europe-build-on-colonialism.jpg", + "date": "2025-04-17" }, "EVErYBODY WANTS TO BE AN ArTiST": { "lat": 55.667844, @@ -448,7 +703,8 @@ "authors": [ "SPYO" ], - "image": "everybody-wants-to-be-an-artist.jpg" + "image": "everybody-wants-to-be-an-artist.jpg", + "date": "2025-03-24" }, "EVOLUTiON iN REVERSE": { "lat": 55.700442, @@ -456,7 +712,8 @@ "authors": [ "SPYO" ], - "image": "evolution-in-reverse.jpg" + "image": "evolution-in-reverse.jpg", + "date": "2025-11-04" }, "FAKE SOCiAL MEDiA PERSONALiTY": { "lat": 55.689805, @@ -465,7 +722,8 @@ "SPYO", "SAZR" ], - "image": "FAKE SOCiAL MEDiA PERSONALiTY.webp" + "image": "FAKE SOCiAL MEDiA PERSONALiTY.webp", + "date": "2025-05-20" }, "FALASTiN": { "lat": 55.689518, @@ -473,7 +731,17 @@ "authors": [ "SPYO" ], - "image": "falastin.jpg" + "image": "falastin.jpg", + "date": "2025-08-12" + }, + "FASCIST & RACIST TENDENCiES REQUIRES LOW INTELLiGENT FREqUENCIES": { + "lat": 55.685136, + "lng": 12.55276, + "authors": [ + "SPYO" + ], + "image": "fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg", + "date": "2026-03-08" }, "FAtNESS WORLD": { "lat": 55.698572, @@ -481,7 +749,8 @@ "authors": [ "SPYO" ], - "image": "fatness-world.jpg" + "image": "fatness-world.jpg", + "date": "2025-03-19" }, "FiLLiNG OUT THE BLANKS iN SOCiETY": { "lat": 55.669108, @@ -489,7 +758,8 @@ "authors": [ "SPYO" ], - "image": "FiLLiNG OUT THE BLANKS iN SOCiETY.webp" + "image": "FiLLiNG OUT THE BLANKS iN SOCiETY.webp", + "date": "2025-08-01" }, "FORBLiV NAiV": { "lat": 55.6695573, @@ -498,7 +768,8 @@ "SPYO", "WHO" ], - "image": "forbliv-naiv.jpeg" + "image": "forbliv-naiv.jpeg", + "date": "2025-07-29" }, "FORBRUGSFESTEN": { "lat": 55.657069, @@ -506,7 +777,8 @@ "authors": [ "SPYO" ], - "image": "forbrugsfesten.jpg" + "image": "forbrugsfesten.jpg", + "date": "2025-03-19" }, "FORG\u00c6LDET": { "lat": 55.656675, @@ -514,7 +786,8 @@ "authors": [ "SPYO" ], - "image": "FORG\u00c6LDET.webp" + "image": "FORG\u00c6LDET.webp", + "date": "2025-08-01" }, "FREAKs COME OUT AT NiTE": { "lat": 55.670914, @@ -524,7 +797,17 @@ "BRAVO", "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" ], - "image": "freaks-come-out-at-nite.png" + "image": "freaks-come-out-at-nite.png", + "date": "2025-11-07" + }, + "FREE GAZA": { + "lat": 55.667279, + "lng": 12.621519, + "authors": [ + "SPYO" + ], + "image": "free-gaza.jpeg", + "date": "2026-03-26" }, "FREE PALESTiNE": { "lat": 55.684922, @@ -532,7 +815,17 @@ "authors": [ "SPYO" ], - "image": "free-palestine.jpg" + "image": "free-palestine.jpg", + "date": "2025-04-17" + }, + "FREE PALESTiNE NOW!": { + "lat": 55.698342, + "lng": 12.536758, + "authors": [ + "SPYO" + ], + "image": "free-palestine-now.jpg", + "date": "2026-04-02" }, "FRyGT BEN\u00c6GTELSE KONTROL": { "lat": 55.652986, @@ -540,7 +833,8 @@ "authors": [ "SPYO" ], - "image": "frygt-benaegtelse-kontrol.jpg" + "image": "frygt-benaegtelse-kontrol.jpg", + "date": "2025-10-06" }, "FUCK FASCISM": { "lat": 55.686819, @@ -549,7 +843,8 @@ "SPYO", "SAZER" ], - "image": "kbhs-kommune-din-kaerlige-krykstok.jpg" + "image": "kbhs-kommune-din-kaerlige-krykstok.jpg", + "date": "2025-04-17" }, "FUK DiN KARRiERE BORGER Fj\u00c6S...": { "lat": 55.707889, @@ -557,7 +852,17 @@ "authors": [ "SPYO" ], - "image": "FUK DiN KARRiERE BORGER Fj\u00c6S....webp" + "image": "FUK DiN KARRiERE BORGER Fj\u00c6S....webp", + "date": "2025-08-18" + }, + "GASLiGHTiN GOVRMENT": { + "lat": 55.659583, + "lng": 12.604414, + "authors": [ + "SPYO" + ], + "image": "gaslightin-govrment.jpg", + "date": "2026-03-23" }, "GAZA": { "lat": 55.685536, @@ -566,7 +871,8 @@ "SPYO", "PUM" ], - "image": "gaza.jpg" + "image": "gaza.jpg", + "date": "2025-04-17" }, "GENOCiDE": { "lat": 55.6681874, @@ -575,15 +881,26 @@ "SPYO", "WHO" ], - "image": "genocide.jpeg" + "image": "genocide.jpeg", + "date": "2025-07-29" }, - "Gl\u00c6DLiG ANGST OG GO": { + "GL\u00c6DELiG ANGST OG GODT SAM'NBRUD": { "lat": 55.706356, "lng": 12.542257, "authors": [ "SPYO" ], - "image": "Gl\u00c6DLiG ANGST OG GO.webp" + "image": "glaedelig-angst-og-godt-samnbrud.jpg", + "date": "2026-01-31" + }, + "GODKENDT AF TRUSTPiLOT": { + "lat": 55.713489, + "lng": 12.591222, + "authors": [ + "SPYO" + ], + "image": "godkendt-af-trustpilot.jpg", + "date": "2026-03-07" }, "GOVERMENT LiES!": { "lat": 55.657069, @@ -591,7 +908,8 @@ "authors": [ "SPYO" ], - "image": "goverment-lies.jpg" + "image": "goverment-lies.jpg", + "date": "2025-03-19" }, "GRAFFiTY IS A -> DiSCUSTiNG HABiT!": { "lat": 55.707676, @@ -599,7 +917,8 @@ "authors": [ "SPYO" ], - "image": "GRAFFiTY IS A -> DiSCUSTiNG HABiT!.webp" + "image": "GRAFFiTY IS A -> DiSCUSTiNG HABiT!.webp", + "date": "2025-05-20" }, "GREENWASHING UR ASS WitH FiNANCiAL MORALiSM": { "lat": 55.655267, @@ -608,7 +927,8 @@ "SPYO", "WHO" ], - "image": "greenwashing-ur-ass....jpg" + "image": "greenwashing-ur-ass....jpg", + "date": "2025-03-19" }, "GrETA THUNBErG": { "lat": 55.654089, @@ -616,7 +936,8 @@ "authors": [ "SPYO" ], - "image": "greta-thunberg.jpg" + "image": "greta-thunberg.jpg", + "date": "2025-04-12" }, "GRUNDSKYLD": { "lat": 55.702442, @@ -624,7 +945,8 @@ "authors": [ "SPYO" ], - "image": "grundskyld.jpg" + "image": "grundskyld.jpg", + "date": "2025-03-19" }, "G\u00c6LD ER EN LiVSSTiL <3": { "lat": 55.699464, @@ -632,7 +954,8 @@ "authors": [ "SPYO" ], - "image": "gaeld-er-en-livsstil.jpg" + "image": "gaeld-er-en-livsstil.jpg", + "date": "2025-05-01" }, "HANNE REUMERT ILDSj\u00c6L": { "lat": 55.695747, @@ -640,15 +963,17 @@ "authors": [ "SPYO" ], - "image": "hanne-reumert-ildsjael.jpg" + "image": "hanne-reumert-ildsjael.jpg", + "date": "2025-03-19" }, - "HAVING SELF ESTEEM": { - "lat": 55.687486, - "lng": 12.5546, + "HANNE REUMERT!": { + "lat": 55.642092, + "lng": 12.5542, "authors": [ "SPYO" ], - "image": "having-self-esteem.jpg" + "image": "hanne-reumert.jpg", + "date": "2026-03-23" }, "HELLERE DRiVERT END BUREAUKRAT": { "lat": 55.706371, @@ -656,7 +981,8 @@ "authors": [ "SPYO" ], - "image": "hellere-drivert-end-bureaukrat.jpeg.jpg" + "image": "hellere-drivert-end-bureaukrat.jpeg.jpg", + "date": "2025-08-01" }, "HiLS i BRUMMEN iNGER-MUS": { "lat": 55.708725, @@ -664,7 +990,8 @@ "authors": [ "SPYO" ], - "image": "hils-i-brummen-inger-mus.jpeg" + "image": "hils-i-brummen-inger-mus.jpeg", + "date": "2025-08-01" }, "HiSTORiEL\u00d8ST SAMFUND": { "lat": 55.652508, @@ -672,7 +999,8 @@ "authors": [ "SPYO" ], - "image": "./historieloest-samfund.jpg" + "image": "images/historieloest-samfund.jpg", + "date": "2025-03-22" }, "HOVEDL\u00d8ST OVERFOrBrUG": { "lat": 55.667302, @@ -680,7 +1008,17 @@ "authors": [ "SPYO" ], - "image": "hovedloest-overforbrug.jpg" + "image": "hovedloest-overforbrug.jpg", + "date": "2025-03-19" + }, + "HOW iS WAR AN EXCUSE FOR PEACE": { + "lat": 55.719022, + "lng": 12.606856, + "authors": [ + "SPYO" + ], + "image": "how-is-war-an-excuse-for-peace.jpg", + "date": "2026-03-07" }, "HUMAN DESRVE EXTiNCTiON !": { "lat": 55.669128, @@ -688,7 +1026,8 @@ "authors": [ "SPYO" ], - "image": "HUMAN DESRVE EXTiNCTiON !.webp" + "image": "HUMAN DESRVE EXTiNCTiON !.webp", + "date": "2025-08-01" }, "HUMANS DEHUMANiZE": { "lat": 55.707492, @@ -696,7 +1035,26 @@ "authors": [ "SPYO" ], - "image": "humans-dehumanize.jpg" + "image": "humans-dehumanize.jpg", + "date": "2025-08-01" + }, + "HVEM S\u00d8RGER FOR DU HAR G\u00c6LD & HVORFOR ?": { + "lat": 55.687439, + "lng": 12.489861, + "authors": [ + "SPYO" + ], + "image": "hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg", + "date": "2026-03-16" + }, + "HVERDAGENS HELTE": { + "lat": 55.704639, + "lng": 12.532497, + "authors": [ + "SPYO" + ], + "image": "hverdagens-helte.jpg", + "date": "2026-03-31" }, "HViD HETRO MAND BLiND": { "lat": 55.688403, @@ -704,7 +1062,8 @@ "authors": [ "SPYO" ], - "image": "hvid-hetro-mand-blind.jpg" + "image": "hvid-hetro-mand-blind.jpg", + "date": "2025-05-21" }, "HViD SKR\u00d8BELiGHED": { "lat": 55.686664, @@ -712,7 +1071,8 @@ "authors": [ "SPYO" ], - "image": "hvid-skroebelighed.jpg" + "image": "hvid-skroebelighed.jpg", + "date": "2025-04-17" }, "HVORFOR ER FRiHED iK EN GLOBAL RETTiGHED.": { "lat": 55.683519, @@ -720,7 +1080,8 @@ "authors": [ "SPYO" ], - "image": "hvorfor-er-frihed-ik-en-global-rettighed.jpg" + "image": "hvorfor-er-frihed-ik-en-global-rettighed.jpg", + "date": "2025-04-17" }, "HVORFOR G\u00d8R DU, SOM DU G\u00d8R?": { "lat": 55.712319, @@ -728,7 +1089,17 @@ "authors": [ "SPYO" ], - "image": "HVORFOR%20G%C3%98R%20DU%2C%20SOM%20DU%20G%C3%98R%3F.webp" + "image": "HVORFOR%20G%C3%98R%20DU%2C%20SOM%20DU%20G%C3%98R%3F.webp", + "date": "2025-08-18" + }, + "iLL NEVER COMPLY": { + "lat": 55.643542, + "lng": 12.539803, + "authors": [ + "SPYO" + ], + "image": "ill-never-comply.jpg", + "date": "2026-03-23" }, "iM GAY": { "lat": 55.66658, @@ -736,7 +1107,8 @@ "authors": [ "SPYO" ], - "image": "im-gay.jpg" + "image": "im-gay.jpg", + "date": "2025-03-22" }, "iM LOST FOR WORDS": { "lat": 55.63007, @@ -744,7 +1116,8 @@ "authors": [ "SPYO" ], - "image": "im-lost-for-words.webp" + "image": "im-lost-for-words.webp", + "date": "2025-04-08" }, "iMPERiALiSTiC MiNDFULNESS": { "lat": 55.66335, @@ -753,7 +1126,35 @@ "SPYO", "DEPON" ], - "image": "imperialistic-mindfulness.jpg" + "image": "imperialistic-mindfulness.jpg", + "date": "2025-05-10" + }, + "iN THE END iTS ALL 4 SALE": { + "lat": 55.660119, + "lng": 12.555381, + "authors": [ + "SPYO" + ], + "image": "in-the-end-its-all-4-sale.jpg", + "date": "2026-02-13" + }, + "iNGEN SUBSTANS KUN yDRE GLANS": { + "lat": 55.707647, + "lng": 12.554283, + "authors": [ + "SPYO" + ], + "image": "ingen-substans-kun-ydre-glans.jpg", + "date": "2026-02-15" + }, + "iTS FREE PALESTiNE OR WE NOt FRiENDS": { + "lat": 55.641613, + "lng": 12.555277, + "authors": [ + "SPYO" + ], + "image": "iTS FREE PALESTiNE OR WE NOt FRiENDS.webp", + "date": "2026-02-13" }, "jEG BETRAGTER DETTE SO...": { "lat": 55.669184, @@ -761,7 +1162,8 @@ "authors": [ "SPYO" ], - "image": "jEG BETRAGTER DETTE SO....webp" + "image": "jEG BETRAGTER DETTE SO....webp", + "date": "2025-08-01" }, "jEG ER S\u00c6RDELES OMSTiLLiNGSPARAT": { "lat": 55.696828, @@ -769,7 +1171,8 @@ "authors": [ "SPYO" ], - "image": "jeg-er-saerdeles-omstillingsparat.jpg" + "image": "jeg-er-saerdeles-omstillingsparat.jpg", + "date": "2025-05-01" }, "jEG FORBLEV i NARNiASKABET": { "lat": 55.683681, @@ -778,7 +1181,17 @@ "SPYO", "SAZER" ], - "image": "jeg-forblev-i-narniaskabet.jpg" + "image": "jeg-forblev-i-narniaskabet.jpg", + "date": "2025-04-17" + }, + "jEG HAR ET SAVN TiL NOGET jEG iKKE HELT KAN BESKRiVE": { + "lat": 55.659883, + "lng": 12.555844, + "authors": [ + "SPYO" + ], + "image": "jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg", + "date": "2026-03-14" }, "jOB NOGET DER SKA PASSES!": { "lat": 55.698394, @@ -786,7 +1199,17 @@ "authors": [ "SPYO" ], - "image": "job-noget-der-ska-passes.jpg" + "image": "job-noget-der-ska-passes.jpg", + "date": "2025-05-01" + }, + "jONEL MitROVAN": { + "lat": 55.708425, + "lng": 12.54775, + "authors": [ + "SPYO" + ], + "image": "jonel-mitrovan.jpg", + "date": "2026-02-15" }, "jYDERESERVAT": { "lat": 55.692183, @@ -794,7 +1217,8 @@ "authors": [ "SPYO" ], - "image": "jydereservat.jpg" + "image": "jydereservat.jpg", + "date": "2025-03-20" }, "jYSKHEL\u00c5RS TURiST S\u00d8GES TiL BLiD OG GENSiDiG TEAM BUiLDiNG": { "lat": 55.699804, @@ -802,7 +1226,26 @@ "authors": [ "SPYO" ], - "image": "jYSKHEL\u00c5RS TURiST S\u00d8GES TiL BLiD OG GENSiDiG TEAM BUiLDiNG.webp" + "image": "jYSKHEL\u00c5RS TURiST S\u00d8GES TiL BLiD OG GENSiDiG TEAM BUiLDiNG.webp", + "date": "2025-08-11" + }, + "J\u00d8SSES PER": { + "lat": 55.663869, + "lng": 12.512869, + "authors": [ + "SPYO" + ], + "image": "joesses-per.jpg", + "date": "2026-04-02" + }, + "KA METTE MIN MENTALiSERE?": { + "lat": 55.706433, + "lng": 12.543139, + "authors": [ + "SPYO" + ], + "image": "ka-mette-mon-mentalisere.jpg", + "date": "2026-01-31" }, "KAPiTALEN ER BEGEJSTRET": { "lat": 55.667409, @@ -812,7 +1255,17 @@ "KeSt", "SMOAT" ], - "image": "kapitalen-er-begejstret.jpg" + "image": "kapitalen-er-begejstret.jpg", + "date": "2025-03-19" + }, + "KAPitALiSMEN HAR F\u00d8S'DAG OG DU iKKE iNVitEREt!": { + "lat": 55.687531, + "lng": 12.488764, + "authors": [ + "SPYO" + ], + "image": "kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg", + "date": "2026-03-16" }, "KBHS-KOMMUNE DiN K\u00c6RLIGE KRYKSTOK": { "lat": 55.686819, @@ -820,7 +1273,18 @@ "authors": [ "SPYO" ], - "image": "kbhs-kommune-din-kaerlige-krykstok.jpg" + "image": "kbhs-kommune-din-kaerlige-krykstok.jpg", + "date": "2025-04-17" + }, + "KiDS AT HEART": { + "lat": 55.667683, + "lng": 12.538633, + "authors": [ + "SPYO", + "FNUG" + ], + "image": "kids-at-heart.jpg", + "date": "2026-01-31" }, "KiL UR EGO": { "lat": 55.650416, @@ -828,7 +1292,8 @@ "authors": [ "SPYO" ], - "image": "KiL UR EGO.webp" + "image": "KiL UR EGO.webp", + "date": "2025-05-20" }, "KL\u00d8jS i VALGFL\u00c6SK": { "lat": 55.687663, @@ -838,7 +1303,8 @@ "DANKO", "SAZER" ], - "image": "afmonter-israel-nu.jpg" + "image": "afmonter-israel-nu.jpg", + "date": "2025-05-21" }, "KOFOD SKOLE HER ER DER PLADS TiL DiG & MiG": { "lat": 55.687663, @@ -846,7 +1312,8 @@ "authors": [ "SPYO" ], - "image": "kofod-skole-her-er-der-plads-til-dig-og-mig.jpeg" + "image": "kofod-skole-her-er-der-plads-til-dig-og-mig.jpeg", + "date": "2025-05-21" }, "KRiG&KAPiTAL": { "lat": 55.669034, @@ -854,7 +1321,17 @@ "authors": [ "SPYO" ], - "image": "KRiG&KAPiTAL.webp" + "image": "KRiG&KAPiTAL.webp", + "date": "2025-08-01" + }, + "KR\u00c6NKER!": { + "lat": 55.66106, + "lng": 12.503467, + "authors": [ + "SPYO" + ], + "image": "KR\u00c6NKER!.webp", + "date": "2026-02-13" }, "KUNSt&KULtUR FUNGERE BEDSt UNDER ORDNEDE FORHOLD, HiLSEN StAt&KOMMUNE": { "lat": 55.65905, @@ -862,7 +1339,8 @@ "authors": [ "SPYO" ], - "image": "kunst-og-kultur-fungere-bedst....jpg" + "image": "kunst-og-kultur-fungere-bedst....jpg", + "date": "2025-03-19" }, "K\u00d8b MER!": { "lat": 55.669817, @@ -870,7 +1348,8 @@ "authors": [ "SPYO" ], - "image": "koeb-mer.jpg" + "image": "koeb-mer.jpg", + "date": "2025-03-22" }, "LANDSFORR\u00c6DER BjARNE CORYDON": { "lat": 55.685906, @@ -878,7 +1357,8 @@ "authors": [ "SPYO" ], - "image": "landsforraeder-bjarne-corydon.jpg" + "image": "landsforraeder-bjarne-corydon.jpg", + "date": "2025-04-17" }, "LARS & METTE TiLGODESER FOLKEMORD!!": { "lat": 55.699976, @@ -886,7 +1366,8 @@ "authors": [ "SPYO" ], - "image": "METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp" + "image": "METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp", + "date": "2025-05-20" }, "LEAVE NOONE BEHIND": { "lat": 55.686175, @@ -894,7 +1375,8 @@ "authors": [ "SPYO" ], - "image": "leave-noone-behind.jpg" + "image": "leave-noone-behind.jpg", + "date": "2025-04-17" }, "LETS ALL jUST BE NORMAL": { "lat": 55.6989, @@ -902,7 +1384,27 @@ "authors": [ "SPYO" ], - "image": "LETS ALL jUST BE NORMAL.webp" + "image": "LETS ALL jUST BE NORMAL.webp", + "date": "2025-08-01" + }, + "LiGE HER GiVER JEG HAMSTERHjULET FiNGEREN!": { + "lat": 55.662274, + "lng": 12.624347, + "authors": [ + "SPYO", + "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" + ], + "image": "lige-her-giver-jeg-hamsterhjulet-fingeren.png", + "date": "2026-03-11" + }, + "LiKE\u00b7MiNDLESS DRONES\u00b7YOU BLiNDLY\u00b7FOLLOW": { + "lat": 55.645064, + "lng": 12.539222, + "authors": [ + "SPYO" + ], + "image": "like-mindless-drones-you-blindly-follow.jpg", + "date": "2026-03-23" }, "LiSTEN TO GRETA THUNBERG": { "lat": 55.6869656, @@ -910,7 +1412,17 @@ "authors": [ "SPYO" ], - "image": "listen-to-greta-thunberg.jpeg" + "image": "listen-to-greta-thunberg.jpeg", + "date": "2025-05-21" + }, + "LiVET ER EN DANS P\u00c5 ROSER": { + "lat": 55.720397, + "lng": 12.602514, + "authors": [ + "SPYO" + ], + "image": "livet-er-en-dans-paa-roser.jpg", + "date": "2026-03-07" }, "Lyt iK TiL DE VOKSNE! OVERHOVED": { "lat": 55.6658, @@ -919,7 +1431,17 @@ "SPYO", "SULT" ], - "image": "lyt-ik-til-de-voksne-overhoved.jpg" + "image": "lyt-ik-til-de-voksne-overhoved.jpg", + "date": "2025-10-24" + }, + "MAGTSyGE METTE STyRER SHOWET": { + "lat": 55.702433, + "lng": 12.538139, + "authors": [ + "SPYO" + ], + "image": "magtsyge-mette-styrer-showet.jpg", + "date": "2026-02-13" }, "MANGFOLDiGHED NU!": { "lat": 55.684878, @@ -927,7 +1449,8 @@ "authors": [ "SPYO" ], - "image": "mangfoldighed-nu.jpg" + "image": "mangfoldighed-nu.jpg", + "date": "2025-04-17" }, "MEDF\u00d8DtE PRiViLEGiER": { "lat": 55.68279, @@ -935,7 +1458,8 @@ "authors": [ "SPYO" ], - "image": "medfoedte-privilegier.jpeg" + "image": "medfoedte-privilegier.jpeg", + "date": "2025-05-15" }, "MEDMENNESKELiGHED": { "lat": 55.662946, @@ -943,7 +1467,8 @@ "authors": [ "SPYO" ], - "image": "medmenneskelighed.jpg" + "image": "medmenneskelighed.jpg", + "date": "2025-05-10" }, "MENNESKER! KA iK G\u00d8RES OP I ... PENGE!": { "lat": 55.657981, @@ -951,7 +1476,8 @@ "authors": [ "SPYO" ], - "image": "MENNESKER! KA iK G\u00d8RES OP I ... PENGE!.webp" + "image": "MENNESKER! KA iK G\u00d8RES OP I ... PENGE!.webp", + "date": "2025-08-01" }, "MENNESKET F\u00d8R PrOFiT": { "lat": 55.654961, @@ -959,7 +1485,8 @@ "authors": [ "SPYO" ], - "image": "mennesket-foer-profit.jpg" + "image": "mennesket-foer-profit.jpg", + "date": "2025-03-22" }, "METTE DU iK MiN STATSMiNiSTER": { "lat": 55.699966, @@ -967,7 +1494,8 @@ "authors": [ "SPYO" ], - "image": "METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp" + "image": "METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp", + "date": "2025-05-20" }, "METTE KA SLETTE": { "lat": 55.706579, @@ -975,7 +1503,8 @@ "authors": [ "SPYO" ], - "image": "METTE KA SLETTE.webp" + "image": "METTE KA SLETTE.webp", + "date": "2025-05-20" }, "MiGRANTES VALiENTES!!": { "lat": 55.687789, @@ -983,7 +1512,8 @@ "authors": [ "SPYO" ], - "image": "migrantes-valientes.jpg" + "image": "migrantes-valientes.jpg", + "date": "2025-10-24" }, "NE TRAVAiLLEZ jAMAiS": { "lat": 55.655633, @@ -991,7 +1521,8 @@ "authors": [ "SPYO" ], - "image": "ne-traveillez-jamaiz.jpg" + "image": "ne-traveillez-jamaiz.jpg", + "date": "2025-03-19" }, "NEj TAK TiL ROTTER\u00c6SET": { "lat": 55.63946, @@ -1001,7 +1532,8 @@ "SULT", "WHO" ], - "image": "nej-tak-til-rotteraeset.webp" + "image": "nej-tak-til-rotteraeset.webp", + "date": "2025-08-18" }, "NEOCOLONiALiSM STiLL GOiNG ON": { "lat": 55.650236, @@ -1010,7 +1542,17 @@ "SPYO", "SULT" ], - "image": "neocolonialism-still-going-on.jpg" + "image": "neocolonialism-still-going-on.jpg", + "date": "2025-04-12" + }, + "NO BORDERS!": { + "lat": 55.643467, + "lng": 12.539778, + "authors": [ + "SPYO" + ], + "image": "no-borders.jpg", + "date": "2026-03-23" }, "NO JOB MORE LiFE": { "lat": 55.654581, @@ -1018,7 +1560,18 @@ "authors": [ "SPYO" ], - "image": "no-job-more-life.jpg" + "image": "no-job-more-life.jpg", + "date": "2025-04-10" + }, + "NON COMPATiBLE PLAYERS": { + "lat": 55.716033, + "lng": 12.600289, + "authors": [ + "SPYO", + "PUM" + ], + "image": "non-compatible-players.jpg", + "date": "2026-03-07" }, "NON SERViAM": { "lat": 55.654025, @@ -1026,7 +1579,8 @@ "authors": [ "SPYO" ], - "image": "birdsfmk-spyo-non-serviam.jpg" + "image": "birdsfmk-spyo-non-serviam.jpg", + "date": "2025-03-20" }, "NONFiGURATiVT": { "lat": 55.683827, @@ -1034,7 +1588,8 @@ "authors": [ "SPYO" ], - "image": "nonfigurativt.jpg" + "image": "nonfigurativt.jpg", + "date": "2025-10-06" }, "NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM": { "lat": 55.694614, @@ -1042,7 +1597,17 @@ "authors": [ "SPYO" ], - "image": "NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM.webp" + "image": "NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM.webp", + "date": "2025-05-20" + }, + "NORMALiSERiNG": { + "lat": 55.717511, + "lng": 12.600506, + "authors": [ + "SPYO" + ], + "image": "normalisering.jpg", + "date": "2026-03-07" }, "NORMEN TRIVES": { "lat": 55.698986, @@ -1050,7 +1615,37 @@ "authors": [ "SPYO" ], - "image": "normen-trives.jpg" + "image": "normen-trives.jpg", + "date": "2025-03-19" + }, + "NORMRyttERiET-LEVER": { + "lat": 55.710311, + "lng": 12.478683, + "authors": [ + "SPYO" + ], + "image": "normrytteriet-lever.jpg", + "date": "2025-11-09" + }, + "N\u00c5R iNKOMPETENCE ER SPiDSKOMPETENCE": { + "lat": 55.766097, + "lng": 12.5089, + "authors": [ + "SPYO" + ], + "image": "naar-inkompetence-er-spidskompetance.jpg", + "date": "2026-01-31" + }, + "ON A RAFT'23": { + "lat": 55.641286, + "lng": 12.551092, + "authors": [ + "SPYO", + "SULT", + "WHO" + ], + "image": "on-a-raft-23.jpg", + "date": "2026-03-23" }, "ORDNUNG MUSS SEiN!": { "lat": 55.692228, @@ -1058,7 +1653,17 @@ "authors": [ "SPYO" ], - "image": "ordnung-muss-sein.jpg" + "image": "ordnung-muss-sein.jpg", + "date": "2025-05-25" + }, + "OVERKiLL OF CONSUMPTiON": { + "lat": 55.668953, + "lng": 12.627213, + "authors": [ + "SPYO" + ], + "image": "overkill-of-consumption.jpeg", + "date": "2026-03-14" }, "OVERRENDT AF KULTUR D\u00d8DE BONDER\u00d8VE": { "lat": 55.678383, @@ -1067,7 +1672,8 @@ "SMOAT", "SPYO" ], - "image": "overrendt-af-kultur-d\u00f8de-bonder\u00f8ve.webp" + "image": "overrendt-af-kultur-d\u00f8de-bonder\u00f8ve.webp", + "date": "2025-04-08" }, "PALESTiNE": { "lat": 55.700212, @@ -1075,7 +1681,8 @@ "authors": [ "SPYO" ], - "image": "palestine.jpg" + "image": "palestine.jpg", + "date": "2025-08-12" }, "PALESTINE WILL BE FREE": { "lat": 55.702919, @@ -1083,7 +1690,17 @@ "authors": [ "SPYO" ], - "image": "palestine-will-be-free.jpg" + "image": "palestine-will-be-free.jpg", + "date": "2025-03-19" + }, + "PALESTiNE WiLL NEVER DiE": { + "lat": 55.658835, + "lng": 12.553774, + "authors": [ + "SPYO" + ], + "image": "PALESTiNE WiLL NEVER DiE.webp", + "date": "2026-02-13" }, "PASiV iNDKOMST": { "lat": 55.685269, @@ -1092,7 +1709,17 @@ "SPYO", "TESM" ], - "image": "pasiv-indkomst.jpg" + "image": "pasiv-indkomst.jpg", + "date": "2025-04-17" + }, + "PENGE LAVESTE F\u00c6LLESN\u00c6VNER": { + "lat": 55.662514, + "lng": 12.600247, + "authors": [ + "SPYO" + ], + "image": "penge-laveste-faellesnaevner.jpeg", + "date": "2026-04-12" }, "PEOPLE iN POWER BNEFiTS FROM YOUR iGNORANCE": { "lat": 55.6681855, @@ -1101,7 +1728,17 @@ "SPYO", "WHO" ], - "image": "people-in-power-benefits-from-your-ignorance.webp" + "image": "people-in-power-benefits-from-your-ignorance.webp", + "date": "2025-04-08" + }, + "PLASTiFiKATiON": { + "lat": 55.670855, + "lng": 12.630893, + "authors": [ + "SPYO" + ], + "image": "plastifikation.jpeg", + "date": "2026-04-12" }, "POLiTiCALLY ORGANiSED DENiAL! :(": { "lat": 55.655992, @@ -1109,7 +1746,8 @@ "authors": [ "SPYO" ], - "image": "politically-organised-denial.jpg" + "image": "politically-organised-denial.jpg", + "date": "2025-03-19" }, "POLItICIAnSUCKS": { "lat": 55.686564, @@ -1117,7 +1755,8 @@ "authors": [ "SPYO" ], - "image": "politiciansucks.jpg" + "image": "politiciansucks.jpg", + "date": "2025-04-17" }, "POLiTiK=P\u00d8Ls": { "lat": 55.670386, @@ -1125,7 +1764,8 @@ "authors": [ "SPYO" ], - "image": "politik-er-lig-poels.jpg" + "image": "politik-er-lig-poels.jpg", + "date": "2025-03-19" }, "POLiTiKERE ER TYRANER": { "lat": 55.707886, @@ -1133,7 +1773,8 @@ "authors": [ "SPYO" ], - "image": "politikere-er-tyraner.jpeg" + "image": "politikere-er-tyraner.jpeg", + "date": "2025-08-12" }, "POLiTiSK HYKLERi": { "lat": 55.699843, @@ -1141,7 +1782,17 @@ "authors": [ "SPYO" ], - "image": "POLiTiSK HYKLERi.webp" + "image": "POLiTiSK HYKLERi.webp", + "date": "2025-05-20" + }, + "POLiTKOVSKaja": { + "lat": 55.707461, + "lng": 12.554436, + "authors": [ + "SPYO" + ], + "image": "politkivskaja.jpg", + "date": "2026-02-15" }, "PRiVAT EjENDOM": { "lat": 55.704784, @@ -1149,7 +1800,8 @@ "authors": [ "SPYO" ], - "image": "privat-ejendom.jpg" + "image": "privat-ejendom.jpg", + "date": "2025-10-06" }, "PROFiT ORiENTERET R\u00d8VSNAK": { "lat": 55.658564, @@ -1157,7 +1809,8 @@ "authors": [ "SPYO" ], - "image": "profit-orienteret-roevsnak.jpg" + "image": "profit-orienteret-roevsnak.jpg", + "date": "2025-10-06" }, "PROFiTMAGERi": { "lat": 55.644478, @@ -1165,7 +1818,8 @@ "authors": [ "SPYO" ], - "image": "profitmageri.jpg" + "image": "profitmageri.jpg", + "date": "2025-05-25" }, "PSEUDO DiT LiV ER R\u00d8V SKOD": { "lat": 55.690506, @@ -1174,7 +1828,26 @@ "SPYO", "SMOAT" ], - "image": "./pseudo-dit-liv-er-roev-skod.jpg" + "image": "images/pseudo-dit-liv-er-roev-skod.jpg", + "date": "2025-03-27" + }, + "PSEUDO LiFESTYLE": { + "lat": 55.652986, + "lng": 12.515002, + "authors": [ + "SPYO" + ], + "image": "PSEUDO LiFESTYLE.webp", + "date": "2026-02-13" + }, + "PUNiSH POLiTiCAL MiSCONDUCT!": { + "lat": 55.66202, + "lng": 12.624136, + "authors": [ + "SPYO" + ], + "image": "punish-political-misconduct.jpeg", + "date": "2026-03-11" }, "P\u00c5 FARTEN": { "lat": 55.704643, @@ -1182,7 +1855,8 @@ "authors": [ "SPYO" ], - "image": "paa-farten.jpg" + "image": "paa-farten.jpg", + "date": "2025-08-01" }, "REFU GEES W EL CO ME": { "lat": 55.6892, @@ -1191,7 +1865,8 @@ "SPYO", "TESM" ], - "image": "REFU GEES W EL CO ME.webp" + "image": "REFU GEES W EL CO ME.webp", + "date": "2025-08-18" }, "REFUGEES WELCOME": { "lat": 55.688131, @@ -1199,7 +1874,8 @@ "authors": [ "SPYO" ], - "image": "refugees-welcome.jpg" + "image": "refugees-welcome.jpg", + "date": "2025-05-25" }, "REMOVE POLiTiCiANS NOW!": { "lat": 55.667106, @@ -1207,7 +1883,8 @@ "authors": [ "SPYO" ], - "image": "remove-politicians-now.jpg" + "image": "remove-politicians-now.jpg", + "date": "2025-10-24" }, "RESSOURCEFAtti ANDENRANDGSBORGER": { "lat": 55.699795, @@ -1215,7 +1892,35 @@ "authors": [ "SPYO" ], - "image": "RESSOURCEFAtti ANDENRANDGSBORGER.webp" + "image": "RESSOURCEFAtti ANDENRANDGSBORGER.webp", + "date": "2025-05-20" + }, + "RETURN OF iNVESTMENT": { + "lat": 55.70755, + "lng": 12.525225, + "authors": [ + "SPYO" + ], + "image": "return-of-investment.jpg", + "date": "2026-03-31" + }, + "RIGAER94 STAYS!": { + "lat": 55.698487, + "lng": 12.543909, + "authors": [ + "SPYO" + ], + "image": "sass-den-op-fra-slap.jpg", + "date": "2026-03-31" + }, + "SAMARBEjDE MED K\u00e4HLER": { + "lat": 55.699789, + "lng": 12.539475, + "authors": [ + "SPYO" + ], + "image": "samarbejde-med-kahler.jpg", + "date": "2026-02-13" }, "SAMFUNDSSViND": { "lat": 55.707461, @@ -1223,7 +1928,8 @@ "authors": [ "SPYO" ], - "image": "samfundssvind.jpeg" + "image": "samfundssvind.jpeg", + "date": "2025-08-01" }, "SAMMEN HVEr FOr SiG": { "lat": 55.657172, @@ -1232,7 +1938,8 @@ "SULT", "SPYO" ], - "image": "sammen-hver-for-sig.jpg" + "image": "sammen-hver-for-sig.jpg", + "date": "2025-10-06" }, "SASS DEN OP FRA SLAP": { "lat": 55.698511, @@ -1240,7 +1947,17 @@ "authors": [ "SPYO" ], - "image": "sass-den-op-fra-slap.jpg" + "image": "sass-den-op-fra-slap.jpg", + "date": "2025-05-01" + }, + "SE VENEDi OG D\u00d8D OVER FiSKETORVET": { + "lat": 55.641544, + "lng": 12.548658, + "authors": [ + "SPYO" + ], + "image": "se-venedi-og-doed-over-fisketorvet.jpg", + "date": "2026-03-23" }, "SELF SUFFiCiENT WiTH NO iMAGE": { "lat": 55.693555, @@ -1248,7 +1965,17 @@ "authors": [ "SPYO" ], - "image": "self-sufficient-with-no-image.jpeg" + "image": "self-sufficient-with-no-image.jpeg", + "date": "2025-05-15" + }, + "SELFHATE": { + "lat": 55.663539, + "lng": 12.537517, + "authors": [ + "SPYO" + ], + "image": "selfhate.jpg", + "date": "2026-01-31" }, "SELVCENTER'D": { "lat": 55.660589, @@ -1256,7 +1983,8 @@ "authors": [ "SPYO" ], - "image": "./selvcenterd.jpg" + "image": "images/selvcenterd.jpg", + "date": "2025-03-30" }, "SELVFED-ISME": { "lat": 55.697795, @@ -1264,7 +1992,8 @@ "authors": [ "SPYO" ], - "image": "selvfed-isme.jpg" + "image": "selvfed-isme.jpg", + "date": "2025-03-19" }, "SKABSFACiSTER": { "lat": 55.70882, @@ -1272,7 +2001,8 @@ "authors": [ "SPYO" ], - "image": "skabsfacister.jpg" + "image": "skabsfacister.jpg", + "date": "2025-08-01" }, "SLUM": { "lat": 55.670569, @@ -1282,7 +2012,8 @@ "BRAVO", "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" ], - "image": "slum.png" + "image": "slum.png", + "date": "2025-11-07" }, "SM\u00c5BORGERLiGHEDEN?": { "lat": 55.642494, @@ -1290,7 +2021,8 @@ "authors": [ "SPYO" ], - "image": "SM\u00c5BORGERLiGHEDEN%3F.webp" + "image": "SM\u00c5BORGERLiGHEDEN%3F.webp", + "date": "2025-08-01" }, "SM\u00c5FACiSTiSK LEDELSE": { "lat": 55.685128, @@ -1298,7 +2030,8 @@ "authors": [ "SPYO" ], - "image": "smaafacistisk-ledelse.jpg" + "image": "smaafacistisk-ledelse.jpg", + "date": "2025-04-17" }, "SM\u00c5FACiSTiSK OG KULTURL\u00d8ST": { "lat": 55.650836, @@ -1306,7 +2039,8 @@ "authors": [ "SPYO" ], - "image": "smaafacistist-og-kulturloest.jpg" + "image": "smaafacistist-og-kulturloest.jpg", + "date": "2025-04-12" }, "SOVEPiLLEN": { "lat": 55.703022, @@ -1314,7 +2048,26 @@ "authors": [ "SPYO" ], - "image": "sovepillen.jpg" + "image": "sovepillen.jpg", + "date": "2025-11-04" + }, + "SPYO GRAFFiTi'NS AMiN JENSEN": { + "lat": 55.706044, + "lng": 12.543631, + "authors": [ + "SPYO" + ], + "image": "spyo-graffitins-amin-jensen.jpg", + "date": "2026-01-31" + }, + "SPYO iS A 9i": { + "lat": 55.712922, + "lng": 12.590786, + "authors": [ + "SPYO" + ], + "image": "spyo-is-a-9i.jpg", + "date": "2026-03-07" }, "SPYO-StREEt ARtENS tESSA": { "lat": 55.7003787, @@ -1322,7 +2075,8 @@ "authors": [ "SPYO" ], - "image": "street-artens-tessa.jpeg" + "image": "street-artens-tessa.jpeg", + "date": "2025-05-21" }, "STADiG UDEN E-BOKS OG NEM iD": { "lat": 55.686511, @@ -1330,7 +2084,17 @@ "authors": [ "SPYO" ], - "image": "stadig-uden-e-boks-og-nem-id.jpg" + "image": "stadig-uden-e-boks-og-nem-id.jpg", + "date": "2025-04-17" + }, + "STAKKELS HViDE PATRiARK": { + "lat": 55.702442, + "lng": 12.538194, + "authors": [ + "SPYO" + ], + "image": "stakkels-hvide-patriark.jpg", + "date": "2026-02-13" }, "STATEN ER ALT\u00c6DENDE": { "lat": 55.722717, @@ -1338,7 +2102,8 @@ "authors": [ "SPYO" ], - "image": "STATEN ER ALT\u00c6DENDE.webp" + "image": "STATEN ER ALT\u00c6DENDE.webp", + "date": "2025-08-01" }, "STATSANERKENDT LORT DER LiGNER KUNST": { "lat": 55.70602, @@ -1346,7 +2111,8 @@ "authors": [ "SPYO" ], - "image": "STATSANERKENDT LORT DER LiGNER KUNST.webp" + "image": "STATSANERKENDT LORT DER LiGNER KUNST.webp", + "date": "2025-08-18" }, "STAVNSBUNDET": { "lat": 55.697753, @@ -1354,7 +2120,8 @@ "authors": [ "SPYO" ], - "image": "stavnsbundet.jpeg" + "image": "stavnsbundet.jpeg", + "date": "2025-05-15" }, "STENBROENS BUTTEDE AFRODiTE": { "lat": 55.697402, @@ -1362,7 +2129,8 @@ "authors": [ "SPYO" ], - "image": "stenbroens-buttede-afrodite.jpeg" + "image": "stenbroens-buttede-afrodite.jpeg", + "date": "2025-05-15" }, "STiGMATiZED": { "lat": 55.660328, @@ -1370,15 +2138,53 @@ "authors": [ "SPYO" ], - "image": "STiGMATiZED.webp" + "image": "STiGMATiZED.webp", + "date": "2025-08-01" + }, + "STiK DiNE DEADLiNES...": { + "lat": 55.710322, + "lng": 12.478637, + "authors": [ + "SPYO" + ], + "image": "normrytteriet-lever.jpg", + "date": "2025-11-09" + }, + "StiLStAND i VORES TiLSTAND": { + "lat": 55.682969, + "lng": 12.552847, + "authors": [ + "SPYO" + ], + "image": "stilstand-i-vores-tilstand.jpg", + "date": "2026-01-31" }, - "STiNKER AF GENTRiFiCERiNG!": { + "STiNKER AF GENTRiFiCERiNG! &USSEL PROFiTMAGERi": { "lat": 55.706784, "lng": 12.5426, "authors": [ "SPYO" ], - "image": "STiNKER AF GENTRiFiCERiNG!.webp" + "image": "stinker-af-gentrificering-og-ussel-profitmageri.jpg", + "date": "2026-01-31" + }, + "STOP BELiEViNG POLiTiCiANS!": { + "lat": 55.707775, + "lng": 12.554167, + "authors": [ + "SPYO" + ], + "image": "stop-believing-politicians.jpg", + "date": "2026-02-15" + }, + "STOP iDOLiZiNG THE RiCH & POWERFULL": { + "lat": 55.7167, + "lng": 12.563597, + "authors": [ + "SPYO" + ], + "image": "stop-idolizing-the-rich-and-powerfull.jpg", + "date": "2026-02-15" }, "STOP iSRAEL NOW!": { "lat": 55.688413, @@ -1386,7 +2192,8 @@ "authors": [ "SPYO" ], - "image": "hvid-hetro-mand-blind.jpg" + "image": "hvid-hetro-mand-blind.jpg", + "date": "2025-05-21" }, "STOP JYDEN": { "lat": 55.7052, @@ -1394,7 +2201,8 @@ "authors": [ "SPYO" ], - "image": "STOP JYDEN.webp" + "image": "STOP JYDEN.webp", + "date": "2025-08-18" }, "STOP MAKiNG RiCH PEOPLE iMPORTANT": { "lat": 55.686894, @@ -1402,7 +2210,8 @@ "authors": [ "SPYO" ], - "image": "stop-making-rich-people-important.jpg" + "image": "stop-making-rich-people-important.jpg", + "date": "2025-04-17" }, "STOP MED AT FODRE MASKiNEN": { "lat": 55.6341222, @@ -1410,7 +2219,8 @@ "authors": [ "SPYO" ], - "image": "stop-med-at-fodre-maskinen.jpeg" + "image": "stop-med-at-fodre-maskinen.jpeg", + "date": "2025-05-21" }, "STRUKTUREL FATTiGDOM": { "lat": 55.655578, @@ -1418,7 +2228,8 @@ "authors": [ "SPYO" ], - "image": "strukturel-fattigdom.jpg" + "image": "strukturel-fattigdom.jpg", + "date": "2025-03-19" }, "SYG NOK": { "lat": 55.640537, @@ -1426,7 +2237,8 @@ "authors": [ "SPYO" ], - "image": "SYG NOK.webp" + "image": "SYG NOK.webp", + "date": "2025-05-20" }, "SYSTEMATISK": { "lat": 55.669143, @@ -1434,7 +2246,17 @@ "authors": [ "SPYO" ], - "image": "SYSTEMATISK.webp" + "image": "SYSTEMATISK.webp", + "date": "2025-08-01" + }, + "S\u00c5 DER BETALT!": { + "lat": 55.667536, + "lng": 12.624324, + "authors": [ + "SPYO" + ], + "image": "saa-der-betalt.jpeg", + "date": "2026-03-27" }, "TAK MAGtHAVERNE.. FOR At HOLDE DiG BESK\u00c6FtiGEt": { "lat": 55.668428, @@ -1442,7 +2264,8 @@ "authors": [ "SPYO" ], - "image": "./tak-magthaverne..-for-at-holde-dig-beskaeftiget.jpg" + "image": "images/tak-magthaverne..-for-at-holde-dig-beskaeftiget.jpg", + "date": "2025-03-22" }, "TELEVISED GENOCIDE": { "lat": 55.669456, @@ -1450,7 +2273,8 @@ "authors": [ "SPYO" ], - "image": "TELEVISED GENOCIDE.webp" + "image": "TELEVISED GENOCIDE.webp", + "date": "2025-08-01" }, "THE BEAUtY OF EtHNiCitY": { "lat": 55.708228, @@ -1458,7 +2282,8 @@ "authors": [ "SPYO" ], - "image": "the-beauty-of-ethnicity.jpg" + "image": "the-beauty-of-ethnicity.jpg", + "date": "2025-08-01" }, "THE CORE OF CAPiTALiSM iS GREED": { "lat": 55.63022, @@ -1466,7 +2291,17 @@ "authors": [ "SPYO" ], - "image": "the-core-of-capitalism-is-greed.webp" + "image": "the-core-of-capitalism-is-greed.webp", + "date": "2025-04-08" + }, + "the janitors from caucasis": { + "lat": 55.721022, + "lng": 12.602794, + "authors": [ + "SPYO" + ], + "image": "the-janitors-from-caucasus.jpg", + "date": "2026-03-07" }, "THE ORPHANS": { "lat": 55.666406, @@ -1475,7 +2310,8 @@ "SPYO", "SULT" ], - "image": "SPYO*SULT THE ORPHANS.webp" + "image": "SPYO*SULT THE ORPHANS.webp", + "date": "2025-08-01" }, "tHE RAt RACE": { "lat": 55.69899, @@ -1483,7 +2319,8 @@ "authors": [ "SPYO" ], - "image": "the-rat-race.jpeg" + "image": "the-rat-race.jpeg", + "date": "2025-10-06" }, "THIS MAKES ME FEEL ALiVE WHiLE U DEAD iNSiDE DECOLONZIE!": { "lat": 55.6683851, @@ -1491,7 +2328,8 @@ "authors": [ "SPYO" ], - "image": "this-makes-me-feel-alive-while-u-dead-inside-decolonize!.webp" + "image": "this-makes-me-feel-alive-while-u-dead-inside-decolonize!.webp", + "date": "2025-04-08" }, "THiS MAY NOT REFLECT REAL LiVE SiTUATiONS": { "lat": 55.652681, @@ -1499,15 +2337,17 @@ "authors": [ "SPYO" ], - "image": "./this-may-not-reflect-real-live-situations.jpg" + "image": "images/this-may-not-reflect-real-live-situations.jpg", + "date": "2025-03-21" }, "TiLGiVELSE TiLBLiVELSE": { - "lat": 55.647354, - "lng": 12.540456, + "lat": 55.647128, + "lng": 12.540411, "authors": [ "SPYO" ], - "image": "TiLGiVELSE TiLBLiVELSE.webp" + "image": "tilgivelse-tilblivelse.jpg", + "date": "2026-03-23" }, "TRANS RIGHTS COMiNG TO A THEATRE NEAR U": { "lat": 55.706579, @@ -1515,7 +2355,8 @@ "authors": [ "SPYO" ], - "image": "TRANS RIGHTS COMiNG TO A THEATRE NEAR U.webp" + "image": "TRANS RIGHTS COMiNG TO A THEATRE NEAR U.webp", + "date": "2025-05-20" }, "TRESPASSERS WiLL BE ACKNOWLEDGED CHERiSHED AND APPLAUDED-IN THE END SALUTED": { "lat": 55.66, @@ -1524,7 +2365,8 @@ "SPYO", "WHO" ], - "image": "trespassers-will-be-acknowledged....jpg" + "image": "trespassers-will-be-acknowledged....jpg", + "date": "2025-03-19" }, "TRY PRiVATiZiNG THiS": { "lat": 55.695683, @@ -1532,7 +2374,17 @@ "authors": [ "SPYO" ], - "image": "try-privatizing-this.jpg" + "image": "try-privatizing-this.jpg", + "date": "2025-03-19" + }, + "TR\u00c6K AnGSTEn FRA i SKAT": { + "lat": 55.697787, + "lng": 12.541344, + "authors": [ + "SPYO" + ], + "image": "selvfed-isme.jpg", + "date": "2025-03-19" }, "TURN OFF THE MAiN STREAM MEDiA!": { "lat": 55.699622, @@ -1540,7 +2392,8 @@ "authors": [ "SPYO" ], - "image": "TURN OFF THE MAiN STREAM MEDiA!.webp" + "image": "TURN OFF THE MAiN STREAM MEDiA!.webp", + "date": "2025-05-20" }, "TyK & USyNLiG": { "lat": 55.6690347, @@ -1549,7 +2402,8 @@ "SPYO", "HACK" ], - "image": "analog-barn-uden-mit-id.webp" + "image": "analog-barn-uden-mit-id.webp", + "date": "2025-04-08" }, "UDEN KLiPPEDE ViNGER": { "lat": 55.671489, @@ -1557,7 +2411,17 @@ "authors": [ "SPYO" ], - "image": "UDEN KLiPPEDE ViNGER.webp" + "image": "UDEN KLiPPEDE ViNGER.webp", + "date": "2025-08-01" + }, + "UDEN MANUS!!! TAK": { + "lat": 55.706828, + "lng": 12.528128, + "authors": [ + "SPYO" + ], + "image": "uden-manus-tak.jpg", + "date": "2026-03-31" }, "UMENNESKELiGT": { "lat": 55.707394, @@ -1565,7 +2429,8 @@ "authors": [ "SPYO" ], - "image": "umenneskeligt.jpg" + "image": "umenneskeligt.jpg", + "date": "2025-05-21" }, "UNALiViNG MYSELF SLOWLY WiTH PAiNT": { "lat": 55.668912, @@ -1573,7 +2438,17 @@ "authors": [ "SPYO" ], - "image": "UNALiViNG MYSELF SLOWLY WiTH PAiNT.webp" + "image": "UNALiViNG MYSELF SLOWLY WiTH PAiNT.webp", + "date": "2025-08-01" + }, + "UNFLUENCERS": { + "lat": 55.716742, + "lng": 12.598514, + "authors": [ + "SPYO" + ], + "image": "unfluencers.jpg", + "date": "2026-03-07" }, "UNGOVERNABLE": { "lat": 55.654827, @@ -1581,7 +2456,8 @@ "authors": [ "SPYO" ], - "image": "UNGOVERNABLE.webp" + "image": "UNGOVERNABLE.webp", + "date": "2025-08-01" }, "UPARLAMENTARiSK \u00c5NDEHUL": { "lat": 55.686564, @@ -1590,7 +2466,26 @@ "SPYO", "KURD1" ], - "image": "politiciansucks.jpg" + "image": "politiciansucks.jpg", + "date": "2025-04-17" + }, + "VAR DET DET HELE V\u00c6RD": { + "lat": 55.712933, + "lng": 12.590819, + "authors": [ + "SPYO" + ], + "image": "var-det-det-hele-v%C3%A6rd.jpg", + "date": "2026-03-07" + }, + "VASK DiN R\u00d8V!": { + "lat": 52.497849, + "lng": 13.447692, + "authors": [ + "SPYO" + ], + "image": "vask-din-roev.jpeg", + "date": "2026-01-31" }, "VOKSENBARN UDEN NEM I.D.": { "lat": 55.670432, @@ -1600,17 +2495,28 @@ "BRAVO", "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" ], - "image": "voksenbarn-uden-nemid.png" + "image": "voksenbarn-uden-nemid.png", + "date": "2025-11-07" }, - "WATCH UR LIFE VANISH FROM CAPiTALiSM !": { - "lat": 55.721368, - "lng": 12.60108, + "V\u00c6KST ER FREMGANG": { + "lat": 55.670559, + "lng": 12.628366, + "authors": [ + "SPYO" + ], + "image": "vaekst-er-fremgang.jpeg", + "date": "2026-04-12" + }, + "WATCH UR LiFE VANISH FROM CAPiTALiSM !": { + "lat": 55.72125, + "lng": 12.601217, "authors": [ - "COOLER", "SPYO", + "COLER", "JEEP" ], - "image": "watch-ur-live-vanish-from-capitalism.webp" + "image": "watch-ur-life-vanish-from-capitalism.jpg", + "date": "2026-03-07" }, "WHEN WILL I GET LAID?": { "lat": 55.7018, @@ -1618,7 +2524,17 @@ "authors": [ "SPYO" ], - "image": "WHEN%20WILL%20I%20GET%20LAID%253F.webp" + "image": "WHEN%20WILL%20I%20GET%20LAID%253F.webp", + "date": "2025-08-18" + }, + "WHY HAS DEBT BECOME SOVEREiGN?": { + "lat": 55.67391, + "lng": 12.60323, + "authors": [ + "SPYO" + ], + "image": "why-has-debt-become-sovereign.jpg", + "date": "2026-03-09" }, "WORLD ECONOMiC FORUM": { "lat": 55.679683, @@ -1626,7 +2542,17 @@ "authors": [ "SPYO" ], - "image": "world-economic-forum.jpg" + "image": "world-economic-forum.jpg", + "date": "2025-08-24" + }, + "yahya SinWaR": { + "lat": 55.72095, + "lng": 12.602583, + "authors": [ + "SPYO" + ], + "image": "yahya-sinwar.jpg", + "date": "2026-03-07" }, "YOU BREAK iT YOU BUY iT": { "lat": 55.703019, @@ -1634,7 +2560,8 @@ "authors": [ "SPYO" ], - "image": "you-break-it-you-buy-it.jpg" + "image": "you-break-it-you-buy-it.jpg", + "date": "2025-11-04" }, "YOUR MiSERY StARtS WiTH CAPitALiSM": { "lat": 55.658506, @@ -1642,6 +2569,16 @@ "authors": [ "SPYO" ], - "image": "YOUR MiSERY StARtS WiTH CAPitALiSM.webp" + "image": "YOUR MiSERY StARtS WiTH CAPitALiSM!.webp", + "date": "2025-08-01" + }, + "\u00c6GTE DRiVERT! UDEN NEM iD": { + "lat": 55.707475, + "lng": 12.552919, + "authors": [ + "SPYO" + ], + "image": "aegte-drivert-uden-nemid.jpg", + "date": "2026-02-15" } } diff --git a/static/js/data.json.bak b/static/js/data.json.bak new file mode 100644 index 0000000..1292193 --- /dev/null +++ b/static/js/data.json.bak @@ -0,0 +1,2198 @@ +{ + "#FiND FARHAD": { + "lat": 55.669377, + "lng": 12.610349, + "authors": [ + "SPYO" + ], + "image": "static/images/%2523FiND%20FARHAD.webp" + }, + "AARON BUSHNELL": { + "lat": 55.708503, + "lng": 12.551461, + "authors": [ + "SPYO" + ], + "image": "static/images/AARON BUSHNELL.webp" + }, + "ABOVe SOCiAL ACCEPTED NORMALiTiES": { + "lat": 55.692549, + "lng": 12.535942, + "authors": [ + "SPYO" + ], + "image": "static/images/ABOVe SOCiAL ACCEPTED NORMALiTiES.webp" + }, + "ABUSiVE PEOPLE SUCK!": { + "lat": 55.677347, + "lng": 12.603058, + "authors": [ + "SPYO", + "EARL" + ], + "image": "static/images/abusive-people-suck.jpeg" + }, + "AFMONTER iSRAEL NU": { + "lat": 55.687653, + "lng": 12.554092, + "authors": [ + "SPYO" + ], + "image": "static/images/afmonter-israel-nu.jpg" + }, + "AKTiV FiaSKOHW": { + "lat": 55.72105, + "lng": 12.602119, + "authors": [ + "SPYO" + ], + "image": "static/images/aktiv-fiaskohw.jpg" + }, + "ALDRi MER KOMPEtENt!\ud83d\udc80": { + "lat": 55.712922, + "lng": 12.590819, + "authors": [ + "SPYO" + ], + "image": "static/images/aldrig-mer-kompetent.jpg" + }, + "ALL YOU NEED iS LESS OF EVERYTHiNG": { + "lat": 55.660186, + "lng": 12.543522, + "authors": [ + "SPYO" + ], + "image": "static/images/all-you-need-is-less-of-everything.jpg" + }, + "ANALOG B\u00d8RN": { + "lat": 55.668512, + "lng": 12.60929, + "authors": [ + "SPYO", + "BRAVO" + ], + "image": "static/images/ANALOG B\u00d8RN.webp" + }, + "ANALOGBARN UDEN MiT iD": { + "lat": 55.6690447, + "lng": 12.6227563, + "authors": [ + "SPYO", + "HACK" + ], + "image": "static/images/analog-barn-uden-mit-id.webp" + }, + "AngST&TVAng": { + "lat": 55.657165, + "lng": 12.552707, + "authors": [ + "SULT", + "SPYO" + ], + "image": "static/images/sammen-hver-for-sig.jpg" + }, + "APARNAGE TIL ALLE!! SLUK FOR DE RiGES PRiViLEGiER!": { + "lat": 55.659767, + "lng": 12.552625, + "authors": [ + "SPYO" + ], + "image": "static/images/aparnage-til-alle....jpg" + }, + "aRT Belongs in gallery's": { + "lat": 55.720839, + "lng": 12.602969, + "authors": [ + "SPYO" + ], + "image": "static/images/art-belongs-in-gallerys.jpg" + }, + "ART iS ABOUT SACRiFiCES OVER&OVER AGAiN": { + "lat": 55.6396895, + "lng": 12.6457203, + "authors": [ + "SPYO" + ], + "image": "static/images/art-is-about-sacrifices-over-and-over-again.jpeg" + }, + "ART iS FOR THE RiCH & WEALTHy": { + "lat": 55.721081, + "lng": 12.602572, + "authors": [ + "SPYO" + ], + "image": "static/images/art-is-for-the-rich-and-wealthy.jpg" + }, + "ART iS SUCH A PREDiCTABLE CONSTRUCT": { + "lat": 55.660175, + "lng": 12.555319, + "authors": [ + "SPYO" + ], + "image": "static/images/in-the-end-its-all-4-sale.jpg" + }, + "ART WitHOUT iNTERFERENCE": { + "lat": 55.703397, + "lng": 12.554764, + "authors": [ + "SPYO" + ], + "image": "static/images/ART WitHOUT iNTERFERENCE.webp" + }, + "ARTiSTiC iNTEGRiTY YOU ARE ABOUt tO BECOME PRiVAtiZED AS StAtE GOVERMENt PROPERtY (iM DYSLEXiC)": { + "lat": 55.657492, + "lng": 12.556389, + "authors": [ + "SPYO" + ], + "image": "static/images/artistic-integrity-you-are....jpg" + }, + "AUTENTiSK MECHANDiSE": { + "lat": 55.667619, + "lng": 12.600768, + "authors": [ + "SPYO" + ], + "image": "static/images/AUTENTiSK MECHANDiSE.webp" + }, + "AUTORiTETS-NAiV": { + "lat": 55.691997, + "lng": 12.552897, + "authors": [ + "SPYO" + ], + "image": "static/images/autoritets-naiv.jpg" + }, + "BAADER MEiNHOF": { + "lat": 55.671155, + "lng": 12.546128, + "authors": [ + "SPYO", + "BRAVO", + "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" + ], + "image": "static/images/freaks-come-out-at-nite.png" + }, + "BAR ROLiG Vi FRA MYNDIGHEDERNE": { + "lat": 55.706921, + "lng": 12.527128, + "authors": [ + "SPYO", + "DYSO" + ], + "image": "static/images/bar-rolig-vi-fra-myndighederne.jpeg" + }, + "BERNiE & SPYO SViGERMORS DR\u00d8M": { + "lat": 55.69539, + "lng": 12.54897, + "authors": [ + "SPYO", + "BERNIE" + ], + "image": "static/images/bernie-spyo-svigermors-droem.jpg" + }, + "BET U DiDNT SEE ME!": { + "lat": 55.668461, + "lng": 12.609588, + "authors": [ + "SPYO" + ], + "image": "static/images/BET U DiDNT SEE ME!.webp" + }, + "BEVISMAtERIALE\ud83e\udef1": { + "lat": 55.689074, + "lng": 12.481725, + "authors": [ + "SPYO" + ], + "image": "static/images/BEVISMAtERIALE\ud83e\udef1.webp" + }, + "BiG PHARMA iS UR DADDY NOW!": { + "lat": 55.699211, + "lng": 12.544488, + "authors": [ + "SPYO" + ], + "image": "static/images/big-pharma-is-your-daddy-now.jpg" + }, + "BITE THE HAND THAT FEEDS YOU": { + "lat": 55.662945, + "lng": 12.52458, + "authors": [ + "SPYO", + "SMOAT" + ], + "image": "static/images/BITE THE HAND THAT FEEDS YOU.webp" + }, + "BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT ST\u00c6RKEste GruNDLAG": { + "lat": 55.70015, + "lng": 12.537528, + "authors": [ + "SPYO" + ], + "image": "static/images/BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT ST\u00c6RKEste GruNDLAG.webp" + }, + "BOLiG PRiSER": { + "lat": 55.6673412, + "lng": 12.6245399, + "authors": [ + "SPYO" + ], + "image": "static/images/bolig-priser.jpeg" + }, + "BR\u00c6ND LORTET AF!": { + "lat": 55.657492, + "lng": 12.556389, + "authors": [ + "SPYO" + ], + "image": "static/images/braend-lortet-af.jpg" + }, + "BULLIES HAVE SELF ESTEEM": { + "lat": 55.687486, + "lng": 12.5546, + "authors": [ + "SPYO" + ], + "image": "static/images/having-self-esteem.jpg" + }, + "BUREAUKRATiSK SKiLLELiNiE.": { + "lat": 55.687144, + "lng": 12.555031, + "authors": [ + "SPYO" + ], + "image": "static/images/bureaukratisk-skillelinie..jpg" + }, + "CAPiTALiSM HAS NO DEMOCRACY": { + "lat": 55.658949, + "lng": 12.502683, + "authors": [ + "SPYO" + ], + "image": "static/images/CAPiTALiSM HAS NO DEMOCRACY.webp" + }, + "CAPiTALiSM iS SHORT-TERMED": { + "lat": 55.654594, + "lng": 12.517883, + "authors": [ + "SPYO" + ], + "image": "static/images/capitalism-is-short-termed.jpg" + }, + "CAPiTALiSM SPAWNS MiSERy": { + "lat": 55.69789, + "lng": 12.54818, + "authors": [ + "SPYO" + ], + "image": "static/images/capitalism-spawns-misery.jpeg" + }, + "CAPiTALiSTiC DEMOCRACY": { + "lat": 55.686744, + "lng": 12.560272, + "authors": [ + "SPYO" + ], + "image": "static/images/capitalistic-democracy.jpg" + }, + "CARLO GiULiANi\u2764\ufe0f": { + "lat": 55.707461, + "lng": 12.553919, + "authors": [ + "SPYO" + ], + "image": "static/images/carlo-giuliani.jpg" + }, + "CASH RUiNS EVERYTHiNG AROUND ME": { + "lat": 55.669306, + "lng": 12.610307, + "authors": [ + "SPYO" + ], + "image": "static/images/CASH RUiNS EVERYTHiNG AROUND ME.webp" + }, + "CHR BORG ER EN KiBBUTZ": { + "lat": 55.641563, + "lng": 12.555214, + "authors": [ + "SPYO" + ], + "image": "static/images/CHR BORG ER EN KiBBUTZ.webp" + }, + "CHR.BORG=PARADiSE HOTEL": { + "lat": 55.683669, + "lng": 12.563781, + "authors": [ + "SPYO", + "SAZER" + ], + "image": "static/images/chr.borg-er-lig-paradise-hotel.jpg" + }, + "CiTRONMANE EKSTRA BLADET-ST\u00d8T KULTUREN": { + "lat": 55.658301, + "lng": 12.49729, + "authors": [ + "SPYO" + ], + "image": "static/images/CiTRONMANE EKSTRA BLADET-ST\u00d8T KULTUREN.webp" + }, + "COMMUNiCATiNG THRU WALLS...": { + "lat": 55.690506, + "lng": 12.55555, + "authors": [ + "SPYO" + ], + "image": "./static/images/communicating-thru-walls....jpg" + }, + "CONSUME MORE DATA": { + "lat": 55.707839, + "lng": 12.555428, + "authors": [ + "SPYO" + ], + "image": "static/images/consume-more-data.jpg" + }, + "CORPORATE GREED BURN iN HELL!": { + "lat": 55.711808, + "lng": 12.553769, + "authors": [ + "SPYO" + ], + "image": "static/images/corporate-greed-burn-in-hell.jpg" + }, + "CORPORATE GREED STiNKS!": { + "lat": 55.686508, + "lng": 12.551256, + "authors": [ + "SPYO" + ], + "image": "static/images/corporate-greed-stinks.jpg" + }, + "CORPORATiZED DEMOCRACY": { + "lat": 55.686564, + "lng": 12.551086, + "authors": [ + "SPYO" + ], + "image": "static/images/politiciansucks.jpg" + }, + "CRiMEFiGHTERS!": { + "lat": 55.685839, + "lng": 12.555461, + "authors": [ + "SPYO", + "DEPON" + ], + "image": "static/images/crimefighters.jpg" + }, + "DANSKE V\u00c6RDiER iNSHALLAH": { + "lat": 55.708586, + "lng": 12.522422, + "authors": [ + "SPYO" + ], + "image": "static/images/danske-vaerdier-inshallah.jpg" + }, + "DE MAGtFULDES D\u00c6MONKRAti": { + "lat": 55.693908, + "lng": 12.547853, + "authors": [ + "SPYO" + ], + "image": "static/images/de-magtfuldes-daemonkrati.jpg" + }, + "DEFiNE FREEDOM": { + "lat": 55.700823, + "lng": 12.534096, + "authors": [ + "SPYO" + ], + "image": "static/images/define-freedom.jpeg" + }, + "DEFY UNJUST .LAWS.": { + "lat": 55.658403, + "lng": 12.501836, + "authors": [ + "SPYO" + ], + "image": "static/images/DEFY UNJUST .LAWS..webp.webp" + }, + "DEHUMANiZATiON": { + "lat": 55.681533, + "lng": 12.520208, + "authors": [ + "SPYO" + ], + "image": "static/images/dehumanization.jpg" + }, + "DEMOKRATi KR\u00c6VR RESPEKT FOR <sup>(ViSSE)</sup> GRUNDL\u00c6GGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT <u>POLiTiKERNE</u> L\u00d8BENDE S\u00d8GER DiALOG MED V\u00c6LGERNE": { + "lat": 55.642316, + "lng": 12.553507, + "authors": [ + "SPYO" + ], + "image": "static/images/DEMOKRATi KR\u00c6VR RESPEKT FOR (ViSSE) GRUNDL\u00c6GGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE L\u00d8BENDE S\u00d8GER DiALOG MED V\u00c6LGERNE.webp" + }, + "DEN DANSKE STAT & M\u00c6RSK PROFITERE P\u00c5 ETNiSK UDRENSNiNG I PALAETiNA": { + "lat": 55.641619, + "lng": 12.555161, + "authors": [ + "SPYO" + ], + "image": "static/images/DEN DANSKE STAT & M\u00c6RSK PROFITERE P\u00c5 ETNiSK UDRENSNiNG I PALAETiNA.webp" + }, + "DENNE MODEL F\u00c5S OSS i SANDFARVET": { + "lat": 55.703644, + "lng": 12.556118, + "authors": [ + "SPYO" + ], + "image": "static/images/DENNE MODEL F\u00c5S OSS i SANDFARVET.webp" + }, + "DER BURDE V\u00c6RE EN GR\u00c6NSE FOR HVOR MEGET MENNESKER M\u00c5 EjE": { + "lat": 55.66876, + "lng": 12.607839, + "authors": [ + "SPYO", + "BRAVO" + ], + "image": "static/images/DER BURDE V\u00c6RE EN GR\u00c6NSE FOR HVOR MEGET MENNESKER M\u00c5 EjE.webp" + }, + "DESTROY ISRAEL!": { + "lat": 55.657606, + "lng": 12.502511, + "authors": [ + "SPYO" + ], + "image": "static/images/destroy-israel.jpg" + }, + "DESTROY ZiONiSM": { + "lat": 55.694614, + "lng": 12.537635, + "authors": [ + "SPYO" + ], + "image": "static/images/DESTROY ZiONiSM.webp" + }, + "DEt HER ER Mit DU KA BEHOLDE RESTEN!": { + "lat": 55.7071, + "lng": 12.52397, + "authors": [ + "SPYO" + ], + "image": "static/images/det-her-er-mit-du-kan-beholde-resten.jpeg" + }, + "DEt SKA CHEFEN iK BE OM!": { + "lat": 55.668254, + "lng": 12.541757, + "authors": [ + "SPYO" + ], + "image": "static/images/det-ska-chefen-ik-be-om.jpg" + }, + "DIAGNOSE": { + "lat": 55.668868, + "lng": 12.543589, + "authors": [ + "SPYO" + ], + "image": "static/images/diagnose.jpg" + }, + "DiGiTALiSEREt KV\u00c6G": { + "lat": 55.655769, + "lng": 12.538344, + "authors": [ + "SPYO" + ], + "image": "static/images/digitaliseret-kvaeg.jpg" + }, + "DinE PEnGE MiG i R\u00d8VEn": { + "lat": 55.692503, + "lng": 12.551478, + "authors": [ + "SPYO" + ], + "image": "static/images/dine-penge-mig-i-roeven.jpg" + }, + "DiNE PrObLEMEr HAr iNGEN PrObLEMEr": { + "lat": 55.668825, + "lng": 12.543654, + "authors": [ + "SPYO" + ], + "image": "static/images/dine-problemer-har-ingen-problemer.jpg" + }, + "DiT LiV BLiR M\u00c5LT i KRONER & \u00d8RE": { + "lat": 55.667243, + "lng": 12.621263, + "authors": [ + "SPYO" + ], + "image": "static/images/dit-liv-blir-maalt-i-kroner-og-oere.jpeg" + }, + "Dit V\u00c6RD St\u00c5R P\u00c5 DiN L\u00d8NSEDDEL": { + "lat": 55.613786, + "lng": 12.510473, + "authors": [ + "SPYO" + ], + "image": "static/images/Dit V\u00c6RD St\u00c5R P\u00c5 DiN L\u00d8NSEDDEL.webp" + }, + "DRiFTeRS AND DREAMERS": { + "lat": 55.693148, + "lng": 12.611749, + "authors": [ + "SPYO", + "TESM" + ], + "image": "static/images/drifters-and-dreamers.jpeg" + }, + "DU ER BANKENS LiLLE SK\u00d8DEHUND": { + "lat": 55.655769, + "lng": 12.538344, + "authors": [ + "SPYO" + ], + "image": "static/images/du-er-bankens-lille-skoedehund.jpg" + }, + "DU LEVER i Et MERitOKRAti": { + "lat": 55.690103, + "lng": 12.5659, + "authors": [ + "SPYO" + ], + "image": "static/images/du-lever-i-et-meritokrati.jpg" + }, + "EAT THE RiCH!": { + "lat": 55.667844, + "lng": 12.55323, + "authors": [ + "SPYO" + ], + "image": "static/images/eat-the-rich.jpg" + }, + "EDUCATE THIS": { + "lat": 55.689279, + "lng": 12.560393, + "authors": [ + "SPYO" + ], + "image": "static/images/EDUCATE THIS.webp" + }, + "ER PENGE DYNAMiSKE": { + "lat": 55.664269, + "lng": 12.576508, + "authors": [ + "SPYO" + ], + "image": "static/images/er-penge-dynamiske.jpg" + }, + "EUROPE BUiLD ON COLONiALiSM": { + "lat": 55.686872, + "lng": 12.551217, + "authors": [ + "SPYO" + ], + "image": "static/images/europe-build-on-colonialism.jpg" + }, + "EVErYBODY WANTS TO BE AN ArTiST": { + "lat": 55.667844, + "lng": 12.55323, + "authors": [ + "SPYO" + ], + "image": "static/images/everybody-wants-to-be-an-artist.jpg" + }, + "EVOLUTiON iN REVERSE": { + "lat": 55.700442, + "lng": 12.536506, + "authors": [ + "SPYO" + ], + "image": "static/images/evolution-in-reverse.jpg" + }, + "FAKE SOCiAL MEDiA PERSONALiTY": { + "lat": 55.689805, + "lng": 12.563156, + "authors": [ + "SPYO", + "SAZR" + ], + "image": "static/images/FAKE SOCiAL MEDiA PERSONALiTY.webp" + }, + "FALASTiN": { + "lat": 55.689518, + "lng": 12.544724, + "authors": [ + "SPYO" + ], + "image": "static/images/falastin.jpg" + }, + "FASCIST & RACIST TENDENCiES REQUIRES LOW INTELLiGENT FREqUENCIES": { + "lat": 55.685136, + "lng": 12.55276, + "authors": [ + "SPYO" + ], + "image": "static/images/fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg" + }, + "FAtNESS WORLD": { + "lat": 55.698572, + "lng": 12.535864, + "authors": [ + "SPYO" + ], + "image": "static/images/fatness-world.jpg" + }, + "FiLLiNG OUT THE BLANKS iN SOCiETY": { + "lat": 55.669108, + "lng": 12.608534, + "authors": [ + "SPYO" + ], + "image": "static/images/FiLLiNG OUT THE BLANKS iN SOCiETY.webp" + }, + "FORBLiV NAiV": { + "lat": 55.6695573, + "lng": 12.6209853, + "authors": [ + "SPYO", + "WHO" + ], + "image": "static/images/forbliv-naiv.jpeg" + }, + "FORBRUGSFESTEN": { + "lat": 55.657069, + "lng": 12.555044, + "authors": [ + "SPYO" + ], + "image": "static/images/forbrugsfesten.jpg" + }, + "FORG\u00c6LDET": { + "lat": 55.656675, + "lng": 12.636469, + "authors": [ + "SPYO" + ], + "image": "static/images/FORG\u00c6LDET.webp" + }, + "FREAKs COME OUT AT NiTE": { + "lat": 55.670914, + "lng": 12.546261, + "authors": [ + "SPYO", + "BRAVO", + "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" + ], + "image": "static/images/freaks-come-out-at-nite.png" + }, + "FREE GAZA": { + "lat": 55.667279, + "lng": 12.621519, + "authors": [ + "SPYO" + ], + "image": "static/images/free-gaza.jpeg" + }, + "FREE PALESTiNE": { + "lat": 55.684922, + "lng": 12.555394, + "authors": [ + "SPYO" + ], + "image": "static/images/free-palestine.jpg" + }, + "FRyGT BEN\u00c6GTELSE KONTROL": { + "lat": 55.652986, + "lng": 12.539856, + "authors": [ + "SPYO" + ], + "image": "static/images/frygt-benaegtelse-kontrol.jpg" + }, + "FUCK FASCISM": { + "lat": 55.686819, + "lng": 12.551469, + "authors": [ + "SPYO", + "SAZER" + ], + "image": "static/images/kbhs-kommune-din-kaerlige-krykstok.jpg" + }, + "FUK DiN KARRiERE BORGER Fj\u00c6S...": { + "lat": 55.707889, + "lng": 12.552255, + "authors": [ + "SPYO" + ], + "image": "static/images/FUK DiN KARRiERE BORGER Fj\u00c6S....webp" + }, + "GASLiGHTiN GOVRMENT": { + "lat": 55.659583, + "lng": 12.604414, + "authors": [ + "SPYO" + ], + "image": "static/images/gaslightin-govrment.jpg" + }, + "GAZA": { + "lat": 55.685536, + "lng": 12.559842, + "authors": [ + "SPYO", + "PUM" + ], + "image": "static/images/gaza.jpg" + }, + "GENOCiDE": { + "lat": 55.6681874, + "lng": 12.6086334, + "authors": [ + "SPYO", + "WHO" + ], + "image": "static/images/genocide.jpeg" + }, + "GL\u00c6DELiG ANGST OG GODT SAM'NBRUD": { + "lat": 55.706356, + "lng": 12.542257, + "authors": [ + "SPYO" + ], + "image": "static/images/glaedelig-angst-og-godt-samnbrud.jpg" + }, + "GODKENDT AF TRUSTPiLOT": { + "lat": 55.713489, + "lng": 12.591222, + "authors": [ + "SPYO" + ], + "image": "static/images/godkendt-af-trustpilot.jpg" + }, + "GOVERMENT LiES!": { + "lat": 55.657069, + "lng": 12.555044, + "authors": [ + "SPYO" + ], + "image": "static/images/goverment-lies.jpg" + }, + "GRAFFiTY IS A -> DiSCUSTiNG HABiT!": { + "lat": 55.707676, + "lng": 12.556587, + "authors": [ + "SPYO" + ], + "image": "static/images/GRAFFiTY IS A -> DiSCUSTiNG HABiT!.webp" + }, + "GREENWASHING UR ASS WitH FiNANCiAL MORALiSM": { + "lat": 55.655267, + "lng": 12.540433, + "authors": [ + "SPYO", + "WHO" + ], + "image": "static/images/greenwashing-ur-ass....jpg" + }, + "GrETA THUNBErG": { + "lat": 55.654089, + "lng": 12.510417, + "authors": [ + "SPYO" + ], + "image": "static/images/greta-thunberg.jpg" + }, + "GRUNDSKYLD": { + "lat": 55.702442, + "lng": 12.543458, + "authors": [ + "SPYO" + ], + "image": "static/images/grundskyld.jpg" + }, + "G\u00c6LD ER EN LiVSSTiL <3": { + "lat": 55.699464, + "lng": 12.544803, + "authors": [ + "SPYO" + ], + "image": "static/images/gaeld-er-en-livsstil.jpg" + }, + "HANNE REUMERT ILDSj\u00c6L": { + "lat": 55.695747, + "lng": 12.532172, + "authors": [ + "SPYO" + ], + "image": "static/images/hanne-reumert-ildsjael.jpg" + }, + "HANNE REUMERT!": { + "lat": 55.642092, + "lng": 12.5542, + "authors": [ + "SPYO" + ], + "image": "static/images/hanne-reumert.jpg" + }, + "HELLERE DRiVERT END BUREAUKRAT": { + "lat": 55.706371, + "lng": 12.543951, + "authors": [ + "SPYO" + ], + "image": "static/images/hellere-drivert-end-bureaukrat.jpeg.jpg" + }, + "HiLS i BRUMMEN iNGER-MUS": { + "lat": 55.708725, + "lng": 12.528164, + "authors": [ + "SPYO" + ], + "image": "static/images/hils-i-brummen-inger-mus.jpeg" + }, + "HiSTORiEL\u00d8ST SAMFUND": { + "lat": 55.652508, + "lng": 12.516631, + "authors": [ + "SPYO" + ], + "image": "./static/images/historieloest-samfund.jpg" + }, + "HOVEDL\u00d8ST OVERFOrBrUG": { + "lat": 55.667302, + "lng": 12.539762, + "authors": [ + "SPYO" + ], + "image": "static/images/hovedloest-overforbrug.jpg" + }, + "HOW iS WAR AN EXCUSE FOR PEACE": { + "lat": 55.719022, + "lng": 12.606856, + "authors": [ + "SPYO" + ], + "image": "static/images/how-is-war-an-excuse-for-peace.jpg" + }, + "HUMAN DESRVE EXTiNCTiON !": { + "lat": 55.669128, + "lng": 12.608869, + "authors": [ + "SPYO" + ], + "image": "static/images/HUMAN DESRVE EXTiNCTiON !.webp" + }, + "HUMANS DEHUMANiZE": { + "lat": 55.707492, + "lng": 12.554299, + "authors": [ + "SPYO" + ], + "image": "static/images/humans-dehumanize.jpg" + }, + "HVEM S\u00d8RGER FOR DU HAR G\u00c6LD & HVORFOR ?": { + "lat": 55.687439, + "lng": 12.489861, + "authors": [ + "SPYO" + ], + "image": "static/images/hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg" + }, + "HViD HETRO MAND BLiND": { + "lat": 55.688403, + "lng": 12.556472, + "authors": [ + "SPYO" + ], + "image": "static/images/hvid-hetro-mand-blind.jpg" + }, + "HViD SKR\u00d8BELiGHED": { + "lat": 55.686664, + "lng": 12.551086, + "authors": [ + "SPYO" + ], + "image": "static/images/hvid-skroebelighed.jpg" + }, + "HVORFOR ER FRiHED iK EN GLOBAL RETTiGHED.": { + "lat": 55.683519, + "lng": 12.564267, + "authors": [ + "SPYO" + ], + "image": "static/images/hvorfor-er-frihed-ik-en-global-rettighed.jpg" + }, + "HVORFOR G\u00d8R DU, SOM DU G\u00d8R?": { + "lat": 55.712319, + "lng": 12.551362, + "authors": [ + "SPYO" + ], + "image": "static/images/HVORFOR%20G%C3%98R%20DU%2C%20SOM%20DU%20G%C3%98R%3F.webp" + }, + "iLL NEVER COMPLY": { + "lat": 55.643542, + "lng": 12.539803, + "authors": [ + "SPYO" + ], + "image": "static/images/ill-never-comply.jpg" + }, + "iM GAY": { + "lat": 55.66658, + "lng": 12.550174, + "authors": [ + "SPYO" + ], + "image": "static/images/im-gay.jpg" + }, + "iM LOST FOR WORDS": { + "lat": 55.63007, + "lng": 12.486367, + "authors": [ + "SPYO" + ], + "image": "static/images/im-lost-for-words.webp" + }, + "iMPERiALiSTiC MiNDFULNESS": { + "lat": 55.66335, + "lng": 12.536819, + "authors": [ + "SPYO", + "DEPON" + ], + "image": "static/images/imperialistic-mindfulness.jpg" + }, + "iN THE END iTS ALL 4 SALE": { + "lat": 55.660119, + "lng": 12.555381, + "authors": [ + "SPYO" + ], + "image": "static/images/in-the-end-its-all-4-sale.jpg" + }, + "iNGEN SUBSTANS KUN yDRE GLANS": { + "lat": 55.707647, + "lng": 12.554283, + "authors": [ + "SPYO" + ], + "image": "static/images/ingen-substans-kun-ydre-glans.jpg" + }, + "iTS FREE PALESTiNE OR WE NOt FRiENDS": { + "lat": 55.641613, + "lng": 12.555277, + "authors": [ + "SPYO" + ], + "image": "static/images/iTS FREE PALESTiNE OR WE NOt FRiENDS.webp" + }, + "jEG BETRAGTER DETTE SO...": { + "lat": 55.669184, + "lng": 12.609955, + "authors": [ + "SPYO" + ], + "image": "static/images/jEG BETRAGTER DETTE SO....webp" + }, + "jEG ER S\u00c6RDELES OMSTiLLiNGSPARAT": { + "lat": 55.696828, + "lng": 12.546869, + "authors": [ + "SPYO" + ], + "image": "static/images/jeg-er-saerdeles-omstillingsparat.jpg" + }, + "jEG FORBLEV i NARNiASKABET": { + "lat": 55.683681, + "lng": 12.564467, + "authors": [ + "SPYO", + "SAZER" + ], + "image": "static/images/jeg-forblev-i-narniaskabet.jpg" + }, + "jEG HAR ET SAVN TiL NOGET jEG iKKE HELT KAN BESKRiVE": { + "lat": 55.659883, + "lng": 12.555844, + "authors": [ + "SPYO" + ], + "image": "static/images/jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg" + }, + "jOB NOGET DER SKA PASSES!": { + "lat": 55.698394, + "lng": 12.544128, + "authors": [ + "SPYO" + ], + "image": "static/images/job-noget-der-ska-passes.jpg" + }, + "jONEL MitROVAN": { + "lat": 55.708425, + "lng": 12.54775, + "authors": [ + "SPYO" + ], + "image": "static/images/jonel-mitrovan.jpg" + }, + "jYDERESERVAT": { + "lat": 55.692183, + "lng": 12.556647, + "authors": [ + "SPYO" + ], + "image": "static/images/jydereservat.jpg" + }, + "jYSKHEL\u00c5RS TURiST S\u00d8GES TiL BLiD OG GENSiDiG TEAM BUiLDiNG": { + "lat": 55.699804, + "lng": 12.537581, + "authors": [ + "SPYO" + ], + "image": "static/images/jYSKHEL\u00c5RS TURiST S\u00d8GES TiL BLiD OG GENSiDiG TEAM BUiLDiNG.webp" + }, + "KA METTE MIN MENTALiSERE?": { + "lat": 55.706433, + "lng": 12.543139, + "authors": [ + "SPYO" + ], + "image": "static/images/ka-mette-mon-mentalisere.jpg" + }, + "KAPiTALEN ER BEGEJSTRET": { + "lat": 55.667409, + "lng": 12.539276, + "authors": [ + "SPYO", + "KeSt", + "SMOAT" + ], + "image": "static/images/kapitalen-er-begejstret.jpg" + }, + "KAPitALiSMEN HAR F\u00d8S'DAG OG DU iKKE iNVitEREt!": { + "lat": 55.687531, + "lng": 12.488764, + "authors": [ + "SPYO" + ], + "image": "static/images/kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg" + }, + "KBHS-KOMMUNE DiN K\u00c6RLIGE KRYKSTOK": { + "lat": 55.686819, + "lng": 12.551469, + "authors": [ + "SPYO" + ], + "image": "static/images/kbhs-kommune-din-kaerlige-krykstok.jpg" + }, + "KiDS AT HEART": { + "lat": 55.667683, + "lng": 12.538633, + "authors": [ + "SPYO", + "FNUG" + ], + "image": "static/images/kids-at-heart.jpg" + }, + "KiL UR EGO": { + "lat": 55.650416, + "lng": 12.518833, + "authors": [ + "SPYO" + ], + "image": "static/images/KiL UR EGO.webp" + }, + "KL\u00d8jS i VALGFL\u00c6SK": { + "lat": 55.687663, + "lng": 12.554102, + "authors": [ + "SPYO", + "DANKO", + "SAZER" + ], + "image": "static/images/afmonter-israel-nu.jpg" + }, + "KOFOD SKOLE HER ER DER PLADS TiL DiG & MiG": { + "lat": 55.687663, + "lng": 12.554102, + "authors": [ + "SPYO" + ], + "image": "static/images/kofod-skole-her-er-der-plads-til-dig-og-mig.jpeg" + }, + "KRiG&KAPiTAL": { + "lat": 55.669034, + "lng": 12.610087, + "authors": [ + "SPYO" + ], + "image": "static/images/KRiG&KAPiTAL.webp" + }, + "KR\u00c6NKER!": { + "lat": 55.66106, + "lng": 12.503467, + "authors": [ + "SPYO" + ], + "image": "static/images/KR\u00c6NKER!.webp" + }, + "KUNSt&KULtUR FUNGERE BEDSt UNDER ORDNEDE FORHOLD, HiLSEN StAt&KOMMUNE": { + "lat": 55.65905, + "lng": 12.543878, + "authors": [ + "SPYO" + ], + "image": "static/images/kunst-og-kultur-fungere-bedst....jpg" + }, + "K\u00d8b MER!": { + "lat": 55.669817, + "lng": 12.55147, + "authors": [ + "SPYO" + ], + "image": "static/images/koeb-mer.jpg" + }, + "LANDSFORR\u00c6DER BjARNE CORYDON": { + "lat": 55.685906, + "lng": 12.560081, + "authors": [ + "SPYO" + ], + "image": "static/images/landsforraeder-bjarne-corydon.jpg" + }, + "LARS & METTE TiLGODESER FOLKEMORD!!": { + "lat": 55.699976, + "lng": 12.537451, + "authors": [ + "SPYO" + ], + "image": "static/images/METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp" + }, + "LEAVE NOONE BEHIND": { + "lat": 55.686175, + "lng": 12.560594, + "authors": [ + "SPYO" + ], + "image": "static/images/leave-noone-behind.jpg" + }, + "LETS ALL jUST BE NORMAL": { + "lat": 55.6989, + "lng": 12.5767, + "authors": [ + "SPYO" + ], + "image": "static/images/LETS ALL jUST BE NORMAL.webp" + }, + "LiGE HER GiVER JEG HAMSTERHjULET FiNGEREN!": { + "lat": 55.662274, + "lng": 12.624347, + "authors": [ + "SPYO", + "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" + ], + "image": "static/images/lige-her-giver-jeg-hamsterhjulet-fingeren.png" + }, + "LiKE\u00b7MiNDLESS DRONES\u00b7YOU BLiNDLY\u00b7FOLLOW": { + "lat": 55.645064, + "lng": 12.539222, + "authors": [ + "SPYO" + ], + "image": "static/images/like-mindless-drones-you-blindly-follow.jpg" + }, + "LiSTEN TO GRETA THUNBERG": { + "lat": 55.6869656, + "lng": 12.4909978, + "authors": [ + "SPYO" + ], + "image": "static/images/listen-to-greta-thunberg.jpeg" + }, + "LiVET ER EN DANS P\u00c5 ROSER": { + "lat": 55.720397, + "lng": 12.602514, + "authors": [ + "SPYO" + ], + "image": "static/images/livet-er-en-dans-paa-roser.jpg" + }, + "Lyt iK TiL DE VOKSNE! OVERHOVED": { + "lat": 55.6658, + "lng": 12.505842, + "authors": [ + "SPYO", + "SULT" + ], + "image": "static/images/lyt-ik-til-de-voksne-overhoved.jpg" + }, + "MAGTSyGE METTE STyRER SHOWET": { + "lat": 55.702433, + "lng": 12.538139, + "authors": [ + "SPYO" + ], + "image": "static/images/magtsyge-mette-styrer-showet.jpg" + }, + "MANGFOLDiGHED NU!": { + "lat": 55.684878, + "lng": 12.554564, + "authors": [ + "SPYO" + ], + "image": "static/images/mangfoldighed-nu.jpg" + }, + "MEDF\u00d8DtE PRiViLEGiER": { + "lat": 55.68279, + "lng": 12.6082411, + "authors": [ + "SPYO" + ], + "image": "static/images/medfoedte-privilegier.jpeg" + }, + "MEDMENNESKELiGHED": { + "lat": 55.662946, + "lng": 12.575752, + "authors": [ + "SPYO" + ], + "image": "static/images/medmenneskelighed.jpg" + }, + "MENNESKER! KA iK G\u00d8RES OP I ... PENGE!": { + "lat": 55.657981, + "lng": 12.502597, + "authors": [ + "SPYO" + ], + "image": "static/images/MENNESKER! KA iK G\u00d8RES OP I ... PENGE!.webp" + }, + "MENNESKET F\u00d8R PrOFiT": { + "lat": 55.654961, + "lng": 12.520164, + "authors": [ + "SPYO" + ], + "image": "static/images/mennesket-foer-profit.jpg" + }, + "METTE DU iK MiN STATSMiNiSTER": { + "lat": 55.699966, + "lng": 12.537441, + "authors": [ + "SPYO" + ], + "image": "static/images/METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp" + }, + "METTE KA SLETTE": { + "lat": 55.706579, + "lng": 12.54231, + "authors": [ + "SPYO" + ], + "image": "static/images/METTE KA SLETTE.webp" + }, + "MiGRANTES VALiENTES!!": { + "lat": 55.687789, + "lng": 12.555021, + "authors": [ + "SPYO" + ], + "image": "static/images/migrantes-valientes.jpg" + }, + "NE TRAVAiLLEZ jAMAiS": { + "lat": 55.655633, + "lng": 12.539511, + "authors": [ + "SPYO" + ], + "image": "static/images/ne-traveillez-jamaiz.jpg" + }, + "NEj TAK TiL ROTTER\u00c6SET": { + "lat": 55.63946, + "lng": 12.550777, + "authors": [ + "SPYO", + "SULT", + "WHO" + ], + "image": "static/images/nej-tak-til-rotteraeset.webp" + }, + "NEOCOLONiALiSM STiLL GOiNG ON": { + "lat": 55.650236, + "lng": 12.511519, + "authors": [ + "SPYO", + "SULT" + ], + "image": "static/images/neocolonialism-still-going-on.jpg" + }, + "NO BORDERS!": { + "lat": 55.643467, + "lng": 12.539778, + "authors": [ + "SPYO" + ], + "image": "static/images/no-borders.jpg" + }, + "NO JOB MORE LiFE": { + "lat": 55.654581, + "lng": 12.517139, + "authors": [ + "SPYO" + ], + "image": "static/images/no-job-more-life.jpg" + }, + "NON COMPATiBLE PLAYERS": { + "lat": 55.716033, + "lng": 12.600289, + "authors": [ + "SPYO", + "PUM" + ], + "image": "static/images/non-compatible-players.jpg" + }, + "NON SERViAM": { + "lat": 55.654025, + "lng": 12.535908, + "authors": [ + "SPYO" + ], + "image": "static/images/birdsfmk-spyo-non-serviam.jpg" + }, + "NONFiGURATiVT": { + "lat": 55.683827, + "lng": 12.548286, + "authors": [ + "SPYO" + ], + "image": "static/images/nonfigurativt.jpg" + }, + "NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM": { + "lat": 55.694614, + "lng": 12.535879, + "authors": [ + "SPYO" + ], + "image": "static/images/NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM.webp" + }, + "NORMALiSERiNG": { + "lat": 55.717511, + "lng": 12.600506, + "authors": [ + "SPYO" + ], + "image": "static/images/normalisering.jpg" + }, + "NORMEN TRIVES": { + "lat": 55.698986, + "lng": 12.536356, + "authors": [ + "SPYO" + ], + "image": "static/images/normen-trives.jpg" + }, + "NORMRyttERiET-LEVER": { + "lat": 55.710311, + "lng": 12.478683, + "authors": [ + "SPYO" + ], + "image": "static/images/normrytteriet-lever.jpg" + }, + "N\u00c5R iNKOMPETENCE ER SPiDSKOMPETENCE": { + "lat": 55.766097, + "lng": 12.5089, + "authors": [ + "SPYO" + ], + "image": "static/images/naar-inkompetence-er-spidskompetance.jpg" + }, + "ON A RAFT'23": { + "lat": 55.641286, + "lng": 12.551092, + "authors": [ + "SPYO", + "SULT", + "WHO" + ], + "image": "static/images/on-a-raft-23.jpg" + }, + "ORDNUNG MUSS SEiN!": { + "lat": 55.692228, + "lng": 12.563014, + "authors": [ + "SPYO" + ], + "image": "static/images/ordnung-muss-sein.jpg" + }, + "OVERKiLL OF CONSUMPTiON": { + "lat": 55.668953, + "lng": 12.627213, + "authors": [ + "SPYO" + ], + "image": "static/images/overkill-of-consumption.jpeg" + }, + "OVERRENDT AF KULTUR D\u00d8DE BONDER\u00d8VE": { + "lat": 55.678383, + "lng": 12.563429, + "authors": [ + "SMOAT", + "SPYO" + ], + "image": "static/images/overrendt-af-kultur-d\u00f8de-bonder\u00f8ve.webp" + }, + "PALESTiNE": { + "lat": 55.700212, + "lng": 12.536908, + "authors": [ + "SPYO" + ], + "image": "static/images/palestine.jpg" + }, + "PALESTINE WILL BE FREE": { + "lat": 55.702919, + "lng": 12.543353, + "authors": [ + "SPYO" + ], + "image": "static/images/palestine-will-be-free.jpg" + }, + "PALESTiNE WiLL NEVER DiE": { + "lat": 55.658835, + "lng": 12.553774, + "authors": [ + "SPYO" + ], + "image": "static/images/PALESTiNE WiLL NEVER DiE.webp" + }, + "PASiV iNDKOMST": { + "lat": 55.685269, + "lng": 12.554536, + "authors": [ + "SPYO", + "TESM" + ], + "image": "static/images/pasiv-indkomst.jpg" + }, + "PEOPLE iN POWER BNEFiTS FROM YOUR iGNORANCE": { + "lat": 55.6681855, + "lng": 12.6244779, + "authors": [ + "SPYO", + "WHO" + ], + "image": "static/images/people-in-power-benefits-from-your-ignorance.webp" + }, + "POLiTiCALLY ORGANiSED DENiAL! :(": { + "lat": 55.655992, + "lng": 12.538383, + "authors": [ + "SPYO" + ], + "image": "static/images/politically-organised-denial.jpg" + }, + "POLItICIAnSUCKS": { + "lat": 55.686564, + "lng": 12.551086, + "authors": [ + "SPYO" + ], + "image": "static/images/politiciansucks.jpg" + }, + "POLiTiK=P\u00d8Ls": { + "lat": 55.670386, + "lng": 12.538222, + "authors": [ + "SPYO" + ], + "image": "static/images/politik-er-lig-poels.jpg" + }, + "POLiTiKERE ER TYRANER": { + "lat": 55.707886, + "lng": 12.52789, + "authors": [ + "SPYO" + ], + "image": "static/images/politikere-er-tyraner.jpeg" + }, + "POLiTiSK HYKLERi": { + "lat": 55.699843, + "lng": 12.537694, + "authors": [ + "SPYO" + ], + "image": "static/images/POLiTiSK HYKLERi.webp" + }, + "POLiTKOVSKaja": { + "lat": 55.707461, + "lng": 12.554436, + "authors": [ + "SPYO" + ], + "image": "static/images/politkivskaja.jpg" + }, + "PRiVAT EjENDOM": { + "lat": 55.704784, + "lng": 12.502959, + "authors": [ + "SPYO" + ], + "image": "static/images/privat-ejendom.jpg" + }, + "PROFiT ORiENTERET R\u00d8VSNAK": { + "lat": 55.658564, + "lng": 12.497506, + "authors": [ + "SPYO" + ], + "image": "static/images/profit-orienteret-roevsnak.jpg" + }, + "PROFiTMAGERi": { + "lat": 55.644478, + "lng": 12.570383, + "authors": [ + "SPYO" + ], + "image": "static/images/profitmageri.jpg" + }, + "PSEUDO DiT LiV ER R\u00d8V SKOD": { + "lat": 55.690506, + "lng": 12.55555, + "authors": [ + "SPYO", + "SMOAT" + ], + "image": "./static/images/pseudo-dit-liv-er-roev-skod.jpg" + }, + "PSEUDO LiFESTYLE": { + "lat": 55.652986, + "lng": 12.515002, + "authors": [ + "SPYO" + ], + "image": "static/images/PSEUDO LiFESTYLE.webp" + }, + "PUNiSH POLiTiCAL MiSCONDUCT!": { + "lat": 55.66202, + "lng": 12.624136, + "authors": [ + "SPYO" + ], + "image": "static/images/punish-political-misconduct.jpeg" + }, + "P\u00c5 FARTEN": { + "lat": 55.704643, + "lng": 12.541529, + "authors": [ + "SPYO" + ], + "image": "static/images/paa-farten.jpg" + }, + "REFU GEES W EL CO ME": { + "lat": 55.6892, + "lng": 12.5447, + "authors": [ + "SPYO", + "TESM" + ], + "image": "static/images/REFU GEES W EL CO ME.webp" + }, + "REFUGEES WELCOME": { + "lat": 55.688131, + "lng": 12.554289, + "authors": [ + "SPYO" + ], + "image": "static/images/refugees-welcome.jpg" + }, + "REMOVE POLiTiCiANS NOW!": { + "lat": 55.667106, + "lng": 12.513761, + "authors": [ + "SPYO" + ], + "image": "static/images/remove-politicians-now.jpg" + }, + "RESSOURCEFAtti ANDENRANDGSBORGER": { + "lat": 55.699795, + "lng": 12.537409, + "authors": [ + "SPYO" + ], + "image": "static/images/RESSOURCEFAtti ANDENRANDGSBORGER.webp" + }, + "SAMARBEjDE MED K\u00e4HLER": { + "lat": 55.699789, + "lng": 12.539475, + "authors": [ + "SPYO" + ], + "image": "static/images/samarbejde-med-kahler.jpg" + }, + "SAMFUNDSSViND": { + "lat": 55.707461, + "lng": 12.555983, + "authors": [ + "SPYO" + ], + "image": "static/images/samfundssvind.jpeg" + }, + "SAMMEN HVEr FOr SiG": { + "lat": 55.657172, + "lng": 12.552817, + "authors": [ + "SULT", + "SPYO" + ], + "image": "static/images/sammen-hver-for-sig.jpg" + }, + "SASS DEN OP FRA SLAP": { + "lat": 55.698511, + "lng": 12.543947, + "authors": [ + "SPYO" + ], + "image": "static/images/sass-den-op-fra-slap.jpg" + }, + "SE VENEDi OG D\u00d8D OVER FiSKETORVET": { + "lat": 55.641544, + "lng": 12.548658, + "authors": [ + "SPYO" + ], + "image": "static/images/se-venedi-og-doed-over-fisketorvet.jpg" + }, + "SELF SUFFiCiENT WiTH NO iMAGE": { + "lat": 55.693555, + "lng": 12.611938, + "authors": [ + "SPYO" + ], + "image": "static/images/self-sufficient-with-no-image.jpeg" + }, + "SELFHATE": { + "lat": 55.663539, + "lng": 12.537517, + "authors": [ + "SPYO" + ], + "image": "static/images/selfhate.jpg" + }, + "SELVCENTER'D": { + "lat": 55.660589, + "lng": 12.514628, + "authors": [ + "SPYO" + ], + "image": "./static/images/selvcenterd.jpg" + }, + "SELVFED-ISME": { + "lat": 55.697795, + "lng": 12.541347, + "authors": [ + "SPYO" + ], + "image": "static/images/selvfed-isme.jpg" + }, + "SKABSFACiSTER": { + "lat": 55.70882, + "lng": 12.551236, + "authors": [ + "SPYO" + ], + "image": "static/images/skabsfacister.jpg" + }, + "SLUM": { + "lat": 55.670569, + "lng": 12.546207, + "authors": [ + "SPYO", + "BRAVO", + "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" + ], + "image": "static/images/slum.png" + }, + "SM\u00c5BORGERLiGHEDEN?": { + "lat": 55.642494, + "lng": 12.50319, + "authors": [ + "SPYO" + ], + "image": "static/images/SM\u00c5BORGERLiGHEDEN%3F.webp" + }, + "SM\u00c5FACiSTiSK LEDELSE": { + "lat": 55.685128, + "lng": 12.559483, + "authors": [ + "SPYO" + ], + "image": "static/images/smaafacistisk-ledelse.jpg" + }, + "SM\u00c5FACiSTiSK OG KULTURL\u00d8ST": { + "lat": 55.650836, + "lng": 12.511331, + "authors": [ + "SPYO" + ], + "image": "static/images/smaafacistist-og-kulturloest.jpg" + }, + "SOVEPiLLEN": { + "lat": 55.703022, + "lng": 12.534442, + "authors": [ + "SPYO" + ], + "image": "static/images/sovepillen.jpg" + }, + "SPYO GRAFFiTi'NS AMiN JENSEN": { + "lat": 55.706044, + "lng": 12.543631, + "authors": [ + "SPYO" + ], + "image": "static/images/spyo-graffitins-amin-jensen.jpg" + }, + "SPYO iS A 9i": { + "lat": 55.712922, + "lng": 12.590786, + "authors": [ + "SPYO" + ], + "image": "static/images/spyo-is-a-9i.jpg" + }, + "SPYO-StREEt ARtENS tESSA": { + "lat": 55.7003787, + "lng": 12.5336687, + "authors": [ + "SPYO" + ], + "image": "static/images/street-artens-tessa.jpeg" + }, + "STADiG UDEN E-BOKS OG NEM iD": { + "lat": 55.686511, + "lng": 12.551422, + "authors": [ + "SPYO" + ], + "image": "static/images/stadig-uden-e-boks-og-nem-id.jpg" + }, + "STAKKELS HViDE PATRiARK": { + "lat": 55.702442, + "lng": 12.538194, + "authors": [ + "SPYO" + ], + "image": "static/images/stakkels-hvide-patriark.jpg" + }, + "STATEN ER ALT\u00c6DENDE": { + "lat": 55.722717, + "lng": 12.539788, + "authors": [ + "SPYO" + ], + "image": "static/images/STATEN ER ALT\u00c6DENDE.webp" + }, + "STATSANERKENDT LORT DER LiGNER KUNST": { + "lat": 55.70602, + "lng": 12.543485, + "authors": [ + "SPYO" + ], + "image": "static/images/STATSANERKENDT LORT DER LiGNER KUNST.webp" + }, + "STAVNSBUNDET": { + "lat": 55.697753, + "lng": 12.498571, + "authors": [ + "SPYO" + ], + "image": "static/images/stavnsbundet.jpeg" + }, + "STENBROENS BUTTEDE AFRODiTE": { + "lat": 55.697402, + "lng": 12.498428, + "authors": [ + "SPYO" + ], + "image": "static/images/stenbroens-buttede-afrodite.jpeg" + }, + "STiGMATiZED": { + "lat": 55.660328, + "lng": 12.494448, + "authors": [ + "SPYO" + ], + "image": "static/images/STiGMATiZED.webp" + }, + "STiK DiNE DEADLiNES...": { + "lat": 55.710322, + "lng": 12.478637, + "authors": [ + "SPYO" + ], + "image": "static/images/normrytteriet-lever.jpg" + }, + "StiLStAND i VORES TiLSTAND": { + "lat": 55.682969, + "lng": 12.552847, + "authors": [ + "SPYO" + ], + "image": "static/images/stilstand-i-vores-tilstand.jpg" + }, + "STiNKER AF GENTRiFiCERiNG! &USSEL PROFiTMAGERi": { + "lat": 55.706784, + "lng": 12.5426, + "authors": [ + "SPYO" + ], + "image": "static/images/stinker-af-gentrificering-og-ussel-profitmageri.jpg" + }, + "STOP BELiEViNG POLiTiCiANS!": { + "lat": 55.707775, + "lng": 12.554167, + "authors": [ + "SPYO" + ], + "image": "static/images/stop-believing-politicians.jpg" + }, + "STOP iDOLiZiNG THE RiCH & POWERFULL": { + "lat": 55.7167, + "lng": 12.563597, + "authors": [ + "SPYO" + ], + "image": "static/images/stop-idolizing-the-rich-and-powerfull.jpg" + }, + "STOP iSRAEL NOW!": { + "lat": 55.688413, + "lng": 12.556482, + "authors": [ + "SPYO" + ], + "image": "static/images/hvid-hetro-mand-blind.jpg" + }, + "STOP JYDEN": { + "lat": 55.7052, + "lng": 12.5273, + "authors": [ + "SPYO" + ], + "image": "static/images/STOP JYDEN.webp" + }, + "STOP MAKiNG RiCH PEOPLE iMPORTANT": { + "lat": 55.686894, + "lng": 12.551008, + "authors": [ + "SPYO" + ], + "image": "static/images/stop-making-rich-people-important.jpg" + }, + "STOP MED AT FODRE MASKiNEN": { + "lat": 55.6341222, + "lng": 12.6519585, + "authors": [ + "SPYO" + ], + "image": "static/images/stop-med-at-fodre-maskinen.jpeg" + }, + "STRUKTUREL FATTiGDOM": { + "lat": 55.655578, + "lng": 12.540731, + "authors": [ + "SPYO" + ], + "image": "static/images/strukturel-fattigdom.jpg" + }, + "SYG NOK": { + "lat": 55.640537, + "lng": 12.498912, + "authors": [ + "SPYO" + ], + "image": "static/images/SYG NOK.webp" + }, + "SYSTEMATISK": { + "lat": 55.669143, + "lng": 12.608413, + "authors": [ + "SPYO" + ], + "image": "static/images/SYSTEMATISK.webp" + }, + "TAK MAGtHAVERNE.. FOR At HOLDE DiG BESK\u00c6FtiGEt": { + "lat": 55.668428, + "lng": 12.542317, + "authors": [ + "SPYO" + ], + "image": "./static/images/tak-magthaverne..-for-at-holde-dig-beskaeftiget.jpg" + }, + "TELEVISED GENOCIDE": { + "lat": 55.669456, + "lng": 12.610234, + "authors": [ + "SPYO" + ], + "image": "static/images/TELEVISED GENOCIDE.webp" + }, + "THE BEAUtY OF EtHNiCitY": { + "lat": 55.708228, + "lng": 12.548157, + "authors": [ + "SPYO" + ], + "image": "static/images/the-beauty-of-ethnicity.jpg" + }, + "THE CORE OF CAPiTALiSM iS GREED": { + "lat": 55.63022, + "lng": 12.486847, + "authors": [ + "SPYO" + ], + "image": "static/images/the-core-of-capitalism-is-greed.webp" + }, + "the janitors from caucasis": { + "lat": 55.721022, + "lng": 12.602794, + "authors": [ + "SPYO" + ], + "image": "static/images/the-janitors-from-caucasus.jpg" + }, + "THE ORPHANS": { + "lat": 55.666406, + "lng": 12.515525, + "authors": [ + "SPYO", + "SULT" + ], + "image": "static/images/SPYO*SULT THE ORPHANS.webp" + }, + "tHE RAt RACE": { + "lat": 55.69899, + "lng": 12.54458, + "authors": [ + "SPYO" + ], + "image": "static/images/the-rat-race.jpeg" + }, + "THIS MAKES ME FEEL ALiVE WHiLE U DEAD iNSiDE DECOLONZIE!": { + "lat": 55.6683851, + "lng": 12.6246536, + "authors": [ + "SPYO" + ], + "image": "static/images/this-makes-me-feel-alive-while-u-dead-inside-decolonize!.webp" + }, + "THiS MAY NOT REFLECT REAL LiVE SiTUATiONS": { + "lat": 55.652681, + "lng": 12.515906, + "authors": [ + "SPYO" + ], + "image": "./static/images/this-may-not-reflect-real-live-situations.jpg" + }, + "TiLGiVELSE TiLBLiVELSE": { + "lat": 55.647128, + "lng": 12.540411, + "authors": [ + "SPYO" + ], + "image": "static/images/tilgivelse-tilblivelse.jpg" + }, + "TRANS RIGHTS COMiNG TO A THEATRE NEAR U": { + "lat": 55.706579, + "lng": 12.54231, + "authors": [ + "SPYO" + ], + "image": "static/images/TRANS RIGHTS COMiNG TO A THEATRE NEAR U.webp" + }, + "TRESPASSERS WiLL BE ACKNOWLEDGED CHERiSHED AND APPLAUDED-IN THE END SALUTED": { + "lat": 55.66, + "lng": 12.553628, + "authors": [ + "SPYO", + "WHO" + ], + "image": "static/images/trespassers-will-be-acknowledged....jpg" + }, + "TRY PRiVATiZiNG THiS": { + "lat": 55.695683, + "lng": 12.5318, + "authors": [ + "SPYO" + ], + "image": "static/images/try-privatizing-this.jpg" + }, + "TR\u00c6K AnGSTEn FRA i SKAT": { + "lat": 55.697787, + "lng": 12.541344, + "authors": [ + "SPYO" + ], + "image": "static/images/selvfed-isme.jpg" + }, + "TURN OFF THE MAiN STREAM MEDiA!": { + "lat": 55.699622, + "lng": 12.5373, + "authors": [ + "SPYO" + ], + "image": "static/images/TURN OFF THE MAiN STREAM MEDiA!.webp" + }, + "TyK & USyNLiG": { + "lat": 55.6690347, + "lng": 12.6227463, + "authors": [ + "SPYO", + "HACK" + ], + "image": "static/images/analog-barn-uden-mit-id.webp" + }, + "UDEN KLiPPEDE ViNGER": { + "lat": 55.671489, + "lng": 12.591306, + "authors": [ + "SPYO" + ], + "image": "static/images/UDEN KLiPPEDE ViNGER.webp" + }, + "UMENNESKELiGT": { + "lat": 55.707394, + "lng": 12.521897, + "authors": [ + "SPYO" + ], + "image": "static/images/umenneskeligt.jpg" + }, + "UNALiViNG MYSELF SLOWLY WiTH PAiNT": { + "lat": 55.668912, + "lng": 12.609099, + "authors": [ + "SPYO" + ], + "image": "static/images/UNALiViNG MYSELF SLOWLY WiTH PAiNT.webp" + }, + "UNFLUENCERS": { + "lat": 55.716742, + "lng": 12.598514, + "authors": [ + "SPYO" + ], + "image": "static/images/unfluencers.jpg" + }, + "UNGOVERNABLE": { + "lat": 55.654827, + "lng": 12.51136, + "authors": [ + "SPYO" + ], + "image": "static/images/UNGOVERNABLE.webp" + }, + "UPARLAMENTARiSK \u00c5NDEHUL": { + "lat": 55.686564, + "lng": 12.551086, + "authors": [ + "SPYO", + "KURD1" + ], + "image": "static/images/politiciansucks.jpg" + }, + "VAR DET DET HELE V\u00c6RD": { + "lat": 55.712933, + "lng": 12.590819, + "authors": [ + "SPYO" + ], + "image": "static/images/var-det-det-hele-v%C3%A6rd.jpg" + }, + "VASK DiN R\u00d8V!": { + "lat": 52.497849, + "lng": 13.447692, + "authors": [ + "SPYO" + ], + "image": "static/images/vask-din-roev.jpeg" + }, + "VOKSENBARN UDEN NEM I.D.": { + "lat": 55.670432, + "lng": 12.546081, + "authors": [ + "SPYO", + "BRAVO", + "Dataejer: <a href='https://dataforsyningen.dk/data/1036'>Klimadatastyrelsen</a> (<a href='https://creativecommons.org/licenses/by/4.0/deed.da'>CC BY 4.0</a>)" + ], + "image": "static/images/voksenbarn-uden-nemid.png" + }, + "WATCH UR LiFE VANISH FROM CAPiTALiSM !": { + "lat": 55.72125, + "lng": 12.601217, + "authors": [ + "SPYO", + "COLER", + "JEEP" + ], + "image": "static/images/watch-ur-life-vanish-from-capitalism.jpg" + }, + "WHEN WILL I GET LAID?": { + "lat": 55.7018, + "lng": 12.534, + "authors": [ + "SPYO" + ], + "image": "static/images/WHEN%20WILL%20I%20GET%20LAID%253F.webp" + }, + "WHY HAS DEBT BECOME SOVEREiGN?": { + "lat": 55.67391, + "lng": 12.60323, + "authors": [ + "SPYO" + ], + "image": "static/images/why-has-debt-become-sovereign.jpg" + }, + "WORLD ECONOMiC FORUM": { + "lat": 55.679683, + "lng": 12.549783, + "authors": [ + "SPYO" + ], + "image": "static/images/world-economic-forum.jpg" + }, + "yahya SinWaR": { + "lat": 55.72095, + "lng": 12.602583, + "authors": [ + "SPYO" + ], + "image": "static/images/yahya-sinwar.jpg" + }, + "YOU BREAK iT YOU BUY iT": { + "lat": 55.703019, + "lng": 12.534161, + "authors": [ + "SPYO" + ], + "image": "static/images/you-break-it-you-buy-it.jpg" + }, + "YOUR MiSERY StARtS WiTH CAPitALiSM": { + "lat": 55.658506, + "lng": 12.499971, + "authors": [ + "SPYO" + ], + "image": "static/images/YOUR MiSERY StARtS WiTH CAPitALiSM!.webp" + }, + "\u00c6GTE DRiVERT! UDEN NEM iD": { + "lat": 55.707475, + "lng": 12.552919, + "authors": [ + "SPYO" + ], + "image": "static/images/aegte-drivert-uden-nemid.jpg" + } +} diff --git a/static/js/menu.js b/static/js/menu.js new file mode 100644 index 0000000..7e8b29a --- /dev/null +++ b/static/js/menu.js @@ -0,0 +1,157 @@ +/*function toggleNav() { + var x = document.getElementById("navlinks"); + if (x.style.display === "block") { + x.style.display = "none"; + } else { + x.style.display = "block"; + } +}*/ + +function toggleNav() { + const menu = document.getElementById("navlinks"); + menu.classList.toggle("open"); +} + +function removeDiacritics(str) { + return str.normalize("NFD").replace(/[\u0300-\u036f]/g, ""); +} + +function searchList() { + var input, filter, ul, li, a, i, txtValue; + input = document.getElementById("search"); + input.focus({ preventScroll: true }); + filter = input.value.toUpperCase(); + filter = removeDiacritics(input.value.toUpperCase()); + ul = document.getElementById("links"); + li = ul.getElementsByTagName("li") + for (i = 0; i < li.length; i++) { + a = li[i].getElementsByTagName("a")[0]; + txtValue = a.textContent || a.innerText; + if (txtValue.toUpperCase().indexOf(filter) > -1) { + li[i].style.display = ""; + } else { + li[i].style.display = "none"; + } + } +} + +function scrollSearch() { + var input; + input = document.getElementById("search"); + input.addEventListener("click", () => { + document.getElementById("search").scrollIntoView({ + behavior: "smooth", + block: "start" + }); + }); +} + +function handleFocus() { + var input; + input = document.getElementById("search"); + setTimeout(() => { + input.scrollIntoView({ + behavior: "smooth", + block: "start" + }); + }, 300); +} + +function sortByName() { + const ul = document.getElementById("links"); + const items = Array.from(ul.querySelectorAll("li")); + + items.sort((a, b) => { + const textA = a.textContent.toLowerCase(); + const textB = b.textContent.toLowerCase(); + return textA.localeCompare(textB); + }); + + items.forEach(li => ul.appendChild(li)); +} + +function sortByDate() { + const ul = document.getElementById("links"); + const items = Array.from(ul.querySelectorAll("li")); + + items.sort((a, b) => { + const dateA = new Date(a.dataset.date); + const dateB = new Date(b.dataset.date); + return dateB - dateA; // newest first + }); + + items.forEach(li => ul.appendChild(li)); +} + +function sortList() { + const ul = document.getElementById("links"); + const items = Array.from(ul.querySelectorAll("li")); + const sortType = document.getElementById("sortSelect").value; + + items.sort((a, b) => { + const nameA = a.textContent.trim().toLowerCase(); + const nameB = b.textContent.trim().toLowerCase(); + + const dateA = new Date(a.dataset.date); + const dateB = new Date(b.dataset.date); + + switch (sortType) { + + case "az": + return compareDanish(nameA, nameB); + + case "za": + return compareDanish(nameB, nameA); + + case "newest": + return dateB - dateA; + + case "oldest": + return dateA - dateB; + + default: + return 0; + } + }); + + items.forEach(li => ul.appendChild(li)); +} + +function normalizeDanish(str) { + return str + .toLowerCase() + .replace(/aa/g, "az"); // push "aa" BEFORE æ/ø/å +} + +function customSortKey(str) { + return str + .toLowerCase() + .replace(/æ/g, "{") + .replace(/ø/g, "|") + .replace(/å/g, "}"); +} + +function compareDanish(a, b) { + const keyA = customSortKey(a); + const keyB = customSortKey(b); + + if (keyA < keyB) return -1; + if (keyA > keyB) return 1; + return 0; +} + +function formatRelativeDate(dateString) { + const inputDate = new Date(dateString); + const now = new Date(); + + const diffMs = now - inputDate; + const diffDays = Math.floor(diffMs / (1000 * 60 * 60 * 24)); + + if (diffDays === 0) return "Today"; + if (diffDays === 1) return "Yesterday"; + if (diffDays < 7) return `${diffDays} days ago`; + if (diffDays < 30) return `${Math.floor(diffDays / 7)} weeks ago`; + if (diffDays < 365) return `${Math.floor(diffDays / 30)} months ago`; + + return `${Math.floor(diffDays / 365)} years ago`; +} diff --git a/static/style/all.css b/static/style/all.css new file mode 100644 index 0000000..12da97d --- /dev/null +++ b/static/style/all.css @@ -0,0 +1,10879 @@ +/*! + * Font Awesome Free 7.2.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2026 Fonticons, Inc. + */ +.fa-solid, +.fa-regular, +.fa-brands, +.fa-classic, +.fas, +.far, +.fab, +.fa { + --_fa-family: var(--fa-family, var(--fa-style-family, 'Font Awesome 7 Free')); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: var(--fa-display, inline-block); + font-family: var(--_fa-family); + font-feature-settings: normal; + font-style: normal; + font-synthesis: none; + font-variant: normal; + font-weight: var(--fa-style, 900); + line-height: 1; + text-align: center; + text-rendering: auto; + width: var(--fa-width, 1.25em); +} + +:is(.fas, +.far, +.fab, +.fa-solid, +.fa-regular, +.fa-brands, +.fa-classic, +.fa)::before { + content: var(--fa)/""; +} + +@supports not (content: ""/"") { + :is(.fas, + .far, + .fab, + .fa-solid, + .fa-regular, + .fa-brands, + .fa-classic, + .fa)::before { + content: var(--fa); + } +} +.fa-1x { + font-size: 1em; +} + +.fa-2x { + font-size: 2em; +} + +.fa-3x { + font-size: 3em; +} + +.fa-4x { + font-size: 4em; +} + +.fa-5x { + font-size: 5em; +} + +.fa-6x { + font-size: 6em; +} + +.fa-7x { + font-size: 7em; +} + +.fa-8x { + font-size: 8em; +} + +.fa-9x { + font-size: 9em; +} + +.fa-10x { + font-size: 10em; +} + +.fa-2xs { + font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-xs { + font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-sm { + font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-lg { + font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-xl { + font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-2xl { + font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-width-auto { + --fa-width: auto; +} + +.fa-fw, +.fa-width-fixed { + --fa-width: 1.25em; +} + +.fa-ul { + list-style-type: none; + margin-inline-start: var(--fa-li-margin, 2.5em); + padding-inline-start: 0; +} +.fa-ul > li { + position: relative; +} + +.fa-li { + inset-inline-start: calc(-1 * var(--fa-li-width, 2em)); + position: absolute; + text-align: center; + width: var(--fa-li-width, 2em); + line-height: inherit; +} + +/* Heads Up: Bordered Icons will not be supported in the future! + - This feature will be deprecated in the next major release of Font Awesome (v8)! + - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8. +*/ +/* Notes: +* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size) +* --@{v.$css-prefix}-border-padding = + ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment) + ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon) +*/ +.fa-border { + border-color: var(--fa-border-color, #eee); + border-radius: var(--fa-border-radius, 0.1em); + border-style: var(--fa-border-style, solid); + border-width: var(--fa-border-width, 0.0625em); + box-sizing: var(--fa-border-box-sizing, content-box); + padding: var(--fa-border-padding, 0.1875em 0.25em); +} + +.fa-pull-left, +.fa-pull-start { + float: inline-start; + margin-inline-end: var(--fa-pull-margin, 0.3em); +} + +.fa-pull-right, +.fa-pull-end { + float: inline-end; + margin-inline-start: var(--fa-pull-margin, 0.3em); +} + +.fa-beat { + animation-name: fa-beat; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} + +.fa-bounce { + animation-name: fa-bounce; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); +} + +.fa-fade { + animation-name: fa-fade; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); +} + +.fa-beat-fade { + animation-name: fa-beat-fade; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); +} + +.fa-flip { + animation-name: fa-flip; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} + +.fa-shake { + animation-name: fa-shake; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); +} + +.fa-spin { + animation-name: fa-spin; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 2s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); +} + +.fa-spin-reverse { + --fa-animation-direction: reverse; +} + +.fa-pulse, +.fa-spin-pulse { + animation-name: fa-spin; + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, steps(8)); +} + +@media (prefers-reduced-motion: reduce) { + .fa-beat, + .fa-bounce, + .fa-fade, + .fa-beat-fade, + .fa-flip, + .fa-pulse, + .fa-shake, + .fa-spin, + .fa-spin-pulse { + animation: none !important; + transition: none !important; + } +} +@keyframes fa-beat { + 0%, 90% { + transform: scale(1); + } + 45% { + transform: scale(var(--fa-beat-scale, 1.25)); + } +} +@keyframes fa-bounce { + 0% { + transform: scale(1, 1) translateY(0); + } + 10% { + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + } + 30% { + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + } + 50% { + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + } + 57% { + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + } + 64% { + transform: scale(1, 1) translateY(0); + } + 100% { + transform: scale(1, 1) translateY(0); + } +} +@keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); + } +} +@keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + transform: scale(1); + } + 50% { + opacity: 1; + transform: scale(var(--fa-beat-fade-scale, 1.125)); + } +} +@keyframes fa-flip { + 50% { + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + } +} +@keyframes fa-shake { + 0% { + transform: rotate(-15deg); + } + 4% { + transform: rotate(15deg); + } + 8%, 24% { + transform: rotate(-18deg); + } + 12%, 28% { + transform: rotate(18deg); + } + 16% { + transform: rotate(-22deg); + } + 20% { + transform: rotate(22deg); + } + 32% { + transform: rotate(-12deg); + } + 36% { + transform: rotate(12deg); + } + 40%, 100% { + transform: rotate(0deg); + } +} +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} +.fa-rotate-90 { + transform: rotate(90deg); +} + +.fa-rotate-180 { + transform: rotate(180deg); +} + +.fa-rotate-270 { + transform: rotate(270deg); +} + +.fa-flip-horizontal { + transform: scale(-1, 1); +} + +.fa-flip-vertical { + transform: scale(1, -1); +} + +.fa-flip-both, +.fa-flip-horizontal.fa-flip-vertical { + transform: scale(-1, -1); +} + +.fa-rotate-by { + transform: rotate(var(--fa-rotate-angle, 0)); +} + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; +} + +.fa-stack-1x, +.fa-stack-2x { + --fa-width: 100%; + inset: 0; + position: absolute; + text-align: center; + width: var(--fa-width); + z-index: var(--fa-stack-z-index, auto); +} + +.fa-stack-1x { + line-height: inherit; +} + +.fa-stack-2x { + font-size: 2em; +} + +.fa-inverse { + color: var(--fa-inverse, #fff); +} + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.fa-0 { + --fa: "\30 "; +} + +.fa-1 { + --fa: "\31 "; +} + +.fa-2 { + --fa: "\32 "; +} + +.fa-3 { + --fa: "\33 "; +} + +.fa-4 { + --fa: "\34 "; +} + +.fa-5 { + --fa: "\35 "; +} + +.fa-6 { + --fa: "\36 "; +} + +.fa-7 { + --fa: "\37 "; +} + +.fa-8 { + --fa: "\38 "; +} + +.fa-9 { + --fa: "\39 "; +} + +.fa-exclamation { + --fa: "\!"; +} + +.fa-hashtag { + --fa: "\#"; +} + +.fa-dollar-sign { + --fa: "\$"; +} + +.fa-dollar { + --fa: "\$"; +} + +.fa-usd { + --fa: "\$"; +} + +.fa-percent { + --fa: "\%"; +} + +.fa-percentage { + --fa: "\%"; +} + +.fa-asterisk { + --fa: "\*"; +} + +.fa-plus { + --fa: "\+"; +} + +.fa-add { + --fa: "\+"; +} + +.fa-less-than { + --fa: "\<"; +} + +.fa-equals { + --fa: "\="; +} + +.fa-greater-than { + --fa: "\>"; +} + +.fa-question { + --fa: "\?"; +} + +.fa-at { + --fa: "\@"; +} + +.fa-a { + --fa: "A"; +} + +.fa-b { + --fa: "B"; +} + +.fa-c { + --fa: "C"; +} + +.fa-d { + --fa: "D"; +} + +.fa-e { + --fa: "E"; +} + +.fa-f { + --fa: "F"; +} + +.fa-g { + --fa: "G"; +} + +.fa-h { + --fa: "H"; +} + +.fa-i { + --fa: "I"; +} + +.fa-j { + --fa: "J"; +} + +.fa-k { + --fa: "K"; +} + +.fa-l { + --fa: "L"; +} + +.fa-m { + --fa: "M"; +} + +.fa-n { + --fa: "N"; +} + +.fa-o { + --fa: "O"; +} + +.fa-p { + --fa: "P"; +} + +.fa-q { + --fa: "Q"; +} + +.fa-r { + --fa: "R"; +} + +.fa-s { + --fa: "S"; +} + +.fa-t { + --fa: "T"; +} + +.fa-u { + --fa: "U"; +} + +.fa-v { + --fa: "V"; +} + +.fa-w { + --fa: "W"; +} + +.fa-x { + --fa: "X"; +} + +.fa-y { + --fa: "Y"; +} + +.fa-z { + --fa: "Z"; +} + +.fa-faucet { + --fa: "\e005"; +} + +.fa-faucet-drip { + --fa: "\e006"; +} + +.fa-house-chimney-window { + --fa: "\e00d"; +} + +.fa-house-signal { + --fa: "\e012"; +} + +.fa-temperature-arrow-down { + --fa: "\e03f"; +} + +.fa-temperature-down { + --fa: "\e03f"; +} + +.fa-temperature-arrow-up { + --fa: "\e040"; +} + +.fa-temperature-up { + --fa: "\e040"; +} + +.fa-trailer { + --fa: "\e041"; +} + +.fa-bacteria { + --fa: "\e059"; +} + +.fa-bacterium { + --fa: "\e05a"; +} + +.fa-box-tissue { + --fa: "\e05b"; +} + +.fa-hand-holding-medical { + --fa: "\e05c"; +} + +.fa-hand-sparkles { + --fa: "\e05d"; +} + +.fa-hands-bubbles { + --fa: "\e05e"; +} + +.fa-hands-wash { + --fa: "\e05e"; +} + +.fa-handshake-slash { + --fa: "\e060"; +} + +.fa-handshake-alt-slash { + --fa: "\e060"; +} + +.fa-handshake-simple-slash { + --fa: "\e060"; +} + +.fa-head-side-cough { + --fa: "\e061"; +} + +.fa-head-side-cough-slash { + --fa: "\e062"; +} + +.fa-head-side-mask { + --fa: "\e063"; +} + +.fa-head-side-virus { + --fa: "\e064"; +} + +.fa-house-chimney-user { + --fa: "\e065"; +} + +.fa-house-laptop { + --fa: "\e066"; +} + +.fa-laptop-house { + --fa: "\e066"; +} + +.fa-lungs-virus { + --fa: "\e067"; +} + +.fa-people-arrows { + --fa: "\e068"; +} + +.fa-people-arrows-left-right { + --fa: "\e068"; +} + +.fa-plane-slash { + --fa: "\e069"; +} + +.fa-pump-medical { + --fa: "\e06a"; +} + +.fa-pump-soap { + --fa: "\e06b"; +} + +.fa-shield-virus { + --fa: "\e06c"; +} + +.fa-sink { + --fa: "\e06d"; +} + +.fa-soap { + --fa: "\e06e"; +} + +.fa-stopwatch-20 { + --fa: "\e06f"; +} + +.fa-shop-slash { + --fa: "\e070"; +} + +.fa-store-alt-slash { + --fa: "\e070"; +} + +.fa-store-slash { + --fa: "\e071"; +} + +.fa-toilet-paper-slash { + --fa: "\e072"; +} + +.fa-users-slash { + --fa: "\e073"; +} + +.fa-virus { + --fa: "\e074"; +} + +.fa-virus-slash { + --fa: "\e075"; +} + +.fa-viruses { + --fa: "\e076"; +} + +.fa-vest { + --fa: "\e085"; +} + +.fa-vest-patches { + --fa: "\e086"; +} + +.fa-arrow-trend-down { + --fa: "\e097"; +} + +.fa-arrow-trend-up { + --fa: "\e098"; +} + +.fa-arrow-up-from-bracket { + --fa: "\e09a"; +} + +.fa-austral-sign { + --fa: "\e0a9"; +} + +.fa-baht-sign { + --fa: "\e0ac"; +} + +.fa-bitcoin-sign { + --fa: "\e0b4"; +} + +.fa-bolt-lightning { + --fa: "\e0b7"; +} + +.fa-book-bookmark { + --fa: "\e0bb"; +} + +.fa-camera-rotate { + --fa: "\e0d8"; +} + +.fa-cedi-sign { + --fa: "\e0df"; +} + +.fa-chart-column { + --fa: "\e0e3"; +} + +.fa-chart-gantt { + --fa: "\e0e4"; +} + +.fa-clapperboard { + --fa: "\e131"; +} + +.fa-closed-captioning-slash { + --fa: "\e135"; +} + +.fa-clover { + --fa: "\e139"; +} + +.fa-code-compare { + --fa: "\e13a"; +} + +.fa-code-fork { + --fa: "\e13b"; +} + +.fa-code-pull-request { + --fa: "\e13c"; +} + +.fa-colon-sign { + --fa: "\e140"; +} + +.fa-cruzeiro-sign { + --fa: "\e152"; +} + +.fa-display { + --fa: "\e163"; +} + +.fa-dong-sign { + --fa: "\e169"; +} + +.fa-elevator { + --fa: "\e16d"; +} + +.fa-filter-circle-xmark { + --fa: "\e17b"; +} + +.fa-florin-sign { + --fa: "\e184"; +} + +.fa-folder-closed { + --fa: "\e185"; +} + +.fa-franc-sign { + --fa: "\e18f"; +} + +.fa-guarani-sign { + --fa: "\e19a"; +} + +.fa-gun { + --fa: "\e19b"; +} + +.fa-hands-clapping { + --fa: "\e1a8"; +} + +.fa-house-user { + --fa: "\e1b0"; +} + +.fa-home-user { + --fa: "\e1b0"; +} + +.fa-indian-rupee-sign { + --fa: "\e1bc"; +} + +.fa-indian-rupee { + --fa: "\e1bc"; +} + +.fa-inr { + --fa: "\e1bc"; +} + +.fa-kip-sign { + --fa: "\e1c4"; +} + +.fa-lari-sign { + --fa: "\e1c8"; +} + +.fa-litecoin-sign { + --fa: "\e1d3"; +} + +.fa-manat-sign { + --fa: "\e1d5"; +} + +.fa-mask-face { + --fa: "\e1d7"; +} + +.fa-mill-sign { + --fa: "\e1ed"; +} + +.fa-money-bills { + --fa: "\e1f3"; +} + +.fa-naira-sign { + --fa: "\e1f6"; +} + +.fa-notdef { + --fa: "\e1fe"; +} + +.fa-panorama { + --fa: "\e209"; +} + +.fa-peseta-sign { + --fa: "\e221"; +} + +.fa-peso-sign { + --fa: "\e222"; +} + +.fa-plane-up { + --fa: "\e22d"; +} + +.fa-rupiah-sign { + --fa: "\e23d"; +} + +.fa-stairs { + --fa: "\e289"; +} + +.fa-timeline { + --fa: "\e29c"; +} + +.fa-truck-front { + --fa: "\e2b7"; +} + +.fa-turkish-lira-sign { + --fa: "\e2bb"; +} + +.fa-try { + --fa: "\e2bb"; +} + +.fa-turkish-lira { + --fa: "\e2bb"; +} + +.fa-vault { + --fa: "\e2c5"; +} + +.fa-wand-magic-sparkles { + --fa: "\e2ca"; +} + +.fa-magic-wand-sparkles { + --fa: "\e2ca"; +} + +.fa-wheat-awn { + --fa: "\e2cd"; +} + +.fa-wheat-alt { + --fa: "\e2cd"; +} + +.fa-wheelchair-move { + --fa: "\e2ce"; +} + +.fa-wheelchair-alt { + --fa: "\e2ce"; +} + +.fa-bangladeshi-taka-sign { + --fa: "\e2e6"; +} + +.fa-bowl-rice { + --fa: "\e2eb"; +} + +.fa-person-pregnant { + --fa: "\e31e"; +} + +.fa-house-chimney { + --fa: "\e3af"; +} + +.fa-home-lg { + --fa: "\e3af"; +} + +.fa-house-crack { + --fa: "\e3b1"; +} + +.fa-house-medical { + --fa: "\e3b2"; +} + +.fa-cent-sign { + --fa: "\e3f5"; +} + +.fa-plus-minus { + --fa: "\e43c"; +} + +.fa-sailboat { + --fa: "\e445"; +} + +.fa-section { + --fa: "\e447"; +} + +.fa-shrimp { + --fa: "\e448"; +} + +.fa-brazilian-real-sign { + --fa: "\e46c"; +} + +.fa-chart-simple { + --fa: "\e473"; +} + +.fa-diagram-next { + --fa: "\e476"; +} + +.fa-diagram-predecessor { + --fa: "\e477"; +} + +.fa-diagram-successor { + --fa: "\e47a"; +} + +.fa-earth-oceania { + --fa: "\e47b"; +} + +.fa-globe-oceania { + --fa: "\e47b"; +} + +.fa-bug-slash { + --fa: "\e490"; +} + +.fa-file-circle-plus { + --fa: "\e494"; +} + +.fa-shop-lock { + --fa: "\e4a5"; +} + +.fa-virus-covid { + --fa: "\e4a8"; +} + +.fa-virus-covid-slash { + --fa: "\e4a9"; +} + +.fa-anchor-circle-check { + --fa: "\e4aa"; +} + +.fa-anchor-circle-exclamation { + --fa: "\e4ab"; +} + +.fa-anchor-circle-xmark { + --fa: "\e4ac"; +} + +.fa-anchor-lock { + --fa: "\e4ad"; +} + +.fa-arrow-down-up-across-line { + --fa: "\e4af"; +} + +.fa-arrow-down-up-lock { + --fa: "\e4b0"; +} + +.fa-arrow-right-to-city { + --fa: "\e4b3"; +} + +.fa-arrow-up-from-ground-water { + --fa: "\e4b5"; +} + +.fa-arrow-up-from-water-pump { + --fa: "\e4b6"; +} + +.fa-arrow-up-right-dots { + --fa: "\e4b7"; +} + +.fa-arrows-down-to-line { + --fa: "\e4b8"; +} + +.fa-arrows-down-to-people { + --fa: "\e4b9"; +} + +.fa-arrows-left-right-to-line { + --fa: "\e4ba"; +} + +.fa-arrows-spin { + --fa: "\e4bb"; +} + +.fa-arrows-split-up-and-left { + --fa: "\e4bc"; +} + +.fa-arrows-to-circle { + --fa: "\e4bd"; +} + +.fa-arrows-to-dot { + --fa: "\e4be"; +} + +.fa-arrows-to-eye { + --fa: "\e4bf"; +} + +.fa-arrows-turn-right { + --fa: "\e4c0"; +} + +.fa-arrows-turn-to-dots { + --fa: "\e4c1"; +} + +.fa-arrows-up-to-line { + --fa: "\e4c2"; +} + +.fa-bore-hole { + --fa: "\e4c3"; +} + +.fa-bottle-droplet { + --fa: "\e4c4"; +} + +.fa-bottle-water { + --fa: "\e4c5"; +} + +.fa-bowl-food { + --fa: "\e4c6"; +} + +.fa-boxes-packing { + --fa: "\e4c7"; +} + +.fa-bridge { + --fa: "\e4c8"; +} + +.fa-bridge-circle-check { + --fa: "\e4c9"; +} + +.fa-bridge-circle-exclamation { + --fa: "\e4ca"; +} + +.fa-bridge-circle-xmark { + --fa: "\e4cb"; +} + +.fa-bridge-lock { + --fa: "\e4cc"; +} + +.fa-bridge-water { + --fa: "\e4ce"; +} + +.fa-bucket { + --fa: "\e4cf"; +} + +.fa-bugs { + --fa: "\e4d0"; +} + +.fa-building-circle-arrow-right { + --fa: "\e4d1"; +} + +.fa-building-circle-check { + --fa: "\e4d2"; +} + +.fa-building-circle-exclamation { + --fa: "\e4d3"; +} + +.fa-building-circle-xmark { + --fa: "\e4d4"; +} + +.fa-building-flag { + --fa: "\e4d5"; +} + +.fa-building-lock { + --fa: "\e4d6"; +} + +.fa-building-ngo { + --fa: "\e4d7"; +} + +.fa-building-shield { + --fa: "\e4d8"; +} + +.fa-building-un { + --fa: "\e4d9"; +} + +.fa-building-user { + --fa: "\e4da"; +} + +.fa-building-wheat { + --fa: "\e4db"; +} + +.fa-burst { + --fa: "\e4dc"; +} + +.fa-car-on { + --fa: "\e4dd"; +} + +.fa-car-tunnel { + --fa: "\e4de"; +} + +.fa-child-combatant { + --fa: "\e4e0"; +} + +.fa-child-rifle { + --fa: "\e4e0"; +} + +.fa-children { + --fa: "\e4e1"; +} + +.fa-circle-nodes { + --fa: "\e4e2"; +} + +.fa-clipboard-question { + --fa: "\e4e3"; +} + +.fa-cloud-showers-water { + --fa: "\e4e4"; +} + +.fa-computer { + --fa: "\e4e5"; +} + +.fa-cubes-stacked { + --fa: "\e4e6"; +} + +.fa-envelope-circle-check { + --fa: "\e4e8"; +} + +.fa-explosion { + --fa: "\e4e9"; +} + +.fa-ferry { + --fa: "\e4ea"; +} + +.fa-file-circle-exclamation { + --fa: "\e4eb"; +} + +.fa-file-circle-minus { + --fa: "\e4ed"; +} + +.fa-file-circle-question { + --fa: "\e4ef"; +} + +.fa-file-shield { + --fa: "\e4f0"; +} + +.fa-fire-burner { + --fa: "\e4f1"; +} + +.fa-fish-fins { + --fa: "\e4f2"; +} + +.fa-flask-vial { + --fa: "\e4f3"; +} + +.fa-glass-water { + --fa: "\e4f4"; +} + +.fa-glass-water-droplet { + --fa: "\e4f5"; +} + +.fa-group-arrows-rotate { + --fa: "\e4f6"; +} + +.fa-hand-holding-hand { + --fa: "\e4f7"; +} + +.fa-handcuffs { + --fa: "\e4f8"; +} + +.fa-hands-bound { + --fa: "\e4f9"; +} + +.fa-hands-holding-child { + --fa: "\e4fa"; +} + +.fa-hands-holding-circle { + --fa: "\e4fb"; +} + +.fa-heart-circle-bolt { + --fa: "\e4fc"; +} + +.fa-heart-circle-check { + --fa: "\e4fd"; +} + +.fa-heart-circle-exclamation { + --fa: "\e4fe"; +} + +.fa-heart-circle-minus { + --fa: "\e4ff"; +} + +.fa-heart-circle-plus { + --fa: "\e500"; +} + +.fa-heart-circle-xmark { + --fa: "\e501"; +} + +.fa-helicopter-symbol { + --fa: "\e502"; +} + +.fa-helmet-un { + --fa: "\e503"; +} + +.fa-hill-avalanche { + --fa: "\e507"; +} + +.fa-hill-rockslide { + --fa: "\e508"; +} + +.fa-house-circle-check { + --fa: "\e509"; +} + +.fa-house-circle-exclamation { + --fa: "\e50a"; +} + +.fa-house-circle-xmark { + --fa: "\e50b"; +} + +.fa-house-fire { + --fa: "\e50c"; +} + +.fa-house-flag { + --fa: "\e50d"; +} + +.fa-house-flood-water { + --fa: "\e50e"; +} + +.fa-house-flood-water-circle-arrow-right { + --fa: "\e50f"; +} + +.fa-house-lock { + --fa: "\e510"; +} + +.fa-house-medical-circle-check { + --fa: "\e511"; +} + +.fa-house-medical-circle-exclamation { + --fa: "\e512"; +} + +.fa-house-medical-circle-xmark { + --fa: "\e513"; +} + +.fa-house-medical-flag { + --fa: "\e514"; +} + +.fa-house-tsunami { + --fa: "\e515"; +} + +.fa-jar { + --fa: "\e516"; +} + +.fa-jar-wheat { + --fa: "\e517"; +} + +.fa-jet-fighter-up { + --fa: "\e518"; +} + +.fa-jug-detergent { + --fa: "\e519"; +} + +.fa-kitchen-set { + --fa: "\e51a"; +} + +.fa-land-mine-on { + --fa: "\e51b"; +} + +.fa-landmark-flag { + --fa: "\e51c"; +} + +.fa-laptop-file { + --fa: "\e51d"; +} + +.fa-lines-leaning { + --fa: "\e51e"; +} + +.fa-location-pin-lock { + --fa: "\e51f"; +} + +.fa-locust { + --fa: "\e520"; +} + +.fa-magnifying-glass-arrow-right { + --fa: "\e521"; +} + +.fa-magnifying-glass-chart { + --fa: "\e522"; +} + +.fa-mars-and-venus-burst { + --fa: "\e523"; +} + +.fa-mask-ventilator { + --fa: "\e524"; +} + +.fa-mattress-pillow { + --fa: "\e525"; +} + +.fa-mobile-retro { + --fa: "\e527"; +} + +.fa-money-bill-transfer { + --fa: "\e528"; +} + +.fa-money-bill-trend-up { + --fa: "\e529"; +} + +.fa-money-bill-wheat { + --fa: "\e52a"; +} + +.fa-mosquito { + --fa: "\e52b"; +} + +.fa-mosquito-net { + --fa: "\e52c"; +} + +.fa-mound { + --fa: "\e52d"; +} + +.fa-mountain-city { + --fa: "\e52e"; +} + +.fa-mountain-sun { + --fa: "\e52f"; +} + +.fa-oil-well { + --fa: "\e532"; +} + +.fa-people-group { + --fa: "\e533"; +} + +.fa-people-line { + --fa: "\e534"; +} + +.fa-people-pulling { + --fa: "\e535"; +} + +.fa-people-robbery { + --fa: "\e536"; +} + +.fa-people-roof { + --fa: "\e537"; +} + +.fa-person-arrow-down-to-line { + --fa: "\e538"; +} + +.fa-person-arrow-up-from-line { + --fa: "\e539"; +} + +.fa-person-breastfeeding { + --fa: "\e53a"; +} + +.fa-person-burst { + --fa: "\e53b"; +} + +.fa-person-cane { + --fa: "\e53c"; +} + +.fa-person-chalkboard { + --fa: "\e53d"; +} + +.fa-person-circle-check { + --fa: "\e53e"; +} + +.fa-person-circle-exclamation { + --fa: "\e53f"; +} + +.fa-person-circle-minus { + --fa: "\e540"; +} + +.fa-person-circle-plus { + --fa: "\e541"; +} + +.fa-person-circle-question { + --fa: "\e542"; +} + +.fa-person-circle-xmark { + --fa: "\e543"; +} + +.fa-person-dress-burst { + --fa: "\e544"; +} + +.fa-person-drowning { + --fa: "\e545"; +} + +.fa-person-falling { + --fa: "\e546"; +} + +.fa-person-falling-burst { + --fa: "\e547"; +} + +.fa-person-half-dress { + --fa: "\e548"; +} + +.fa-person-harassing { + --fa: "\e549"; +} + +.fa-person-military-pointing { + --fa: "\e54a"; +} + +.fa-person-military-rifle { + --fa: "\e54b"; +} + +.fa-person-military-to-person { + --fa: "\e54c"; +} + +.fa-person-rays { + --fa: "\e54d"; +} + +.fa-person-rifle { + --fa: "\e54e"; +} + +.fa-person-shelter { + --fa: "\e54f"; +} + +.fa-person-walking-arrow-loop-left { + --fa: "\e551"; +} + +.fa-person-walking-arrow-right { + --fa: "\e552"; +} + +.fa-person-walking-dashed-line-arrow-right { + --fa: "\e553"; +} + +.fa-person-walking-luggage { + --fa: "\e554"; +} + +.fa-plane-circle-check { + --fa: "\e555"; +} + +.fa-plane-circle-exclamation { + --fa: "\e556"; +} + +.fa-plane-circle-xmark { + --fa: "\e557"; +} + +.fa-plane-lock { + --fa: "\e558"; +} + +.fa-plate-wheat { + --fa: "\e55a"; +} + +.fa-plug-circle-bolt { + --fa: "\e55b"; +} + +.fa-plug-circle-check { + --fa: "\e55c"; +} + +.fa-plug-circle-exclamation { + --fa: "\e55d"; +} + +.fa-plug-circle-minus { + --fa: "\e55e"; +} + +.fa-plug-circle-plus { + --fa: "\e55f"; +} + +.fa-plug-circle-xmark { + --fa: "\e560"; +} + +.fa-ranking-star { + --fa: "\e561"; +} + +.fa-road-barrier { + --fa: "\e562"; +} + +.fa-road-bridge { + --fa: "\e563"; +} + +.fa-road-circle-check { + --fa: "\e564"; +} + +.fa-road-circle-exclamation { + --fa: "\e565"; +} + +.fa-road-circle-xmark { + --fa: "\e566"; +} + +.fa-road-lock { + --fa: "\e567"; +} + +.fa-road-spikes { + --fa: "\e568"; +} + +.fa-rug { + --fa: "\e569"; +} + +.fa-sack-xmark { + --fa: "\e56a"; +} + +.fa-school-circle-check { + --fa: "\e56b"; +} + +.fa-school-circle-exclamation { + --fa: "\e56c"; +} + +.fa-school-circle-xmark { + --fa: "\e56d"; +} + +.fa-school-flag { + --fa: "\e56e"; +} + +.fa-school-lock { + --fa: "\e56f"; +} + +.fa-sheet-plastic { + --fa: "\e571"; +} + +.fa-shield-cat { + --fa: "\e572"; +} + +.fa-shield-dog { + --fa: "\e573"; +} + +.fa-shield-heart { + --fa: "\e574"; +} + +.fa-square-nfi { + --fa: "\e576"; +} + +.fa-square-person-confined { + --fa: "\e577"; +} + +.fa-square-virus { + --fa: "\e578"; +} + +.fa-staff-snake { + --fa: "\e579"; +} + +.fa-rod-asclepius { + --fa: "\e579"; +} + +.fa-rod-snake { + --fa: "\e579"; +} + +.fa-staff-aesculapius { + --fa: "\e579"; +} + +.fa-sun-plant-wilt { + --fa: "\e57a"; +} + +.fa-tarp { + --fa: "\e57b"; +} + +.fa-tarp-droplet { + --fa: "\e57c"; +} + +.fa-tent { + --fa: "\e57d"; +} + +.fa-tent-arrow-down-to-line { + --fa: "\e57e"; +} + +.fa-tent-arrow-left-right { + --fa: "\e57f"; +} + +.fa-tent-arrow-turn-left { + --fa: "\e580"; +} + +.fa-tent-arrows-down { + --fa: "\e581"; +} + +.fa-tents { + --fa: "\e582"; +} + +.fa-toilet-portable { + --fa: "\e583"; +} + +.fa-toilets-portable { + --fa: "\e584"; +} + +.fa-tower-cell { + --fa: "\e585"; +} + +.fa-tower-observation { + --fa: "\e586"; +} + +.fa-tree-city { + --fa: "\e587"; +} + +.fa-trowel { + --fa: "\e589"; +} + +.fa-trowel-bricks { + --fa: "\e58a"; +} + +.fa-truck-arrow-right { + --fa: "\e58b"; +} + +.fa-truck-droplet { + --fa: "\e58c"; +} + +.fa-truck-field { + --fa: "\e58d"; +} + +.fa-truck-field-un { + --fa: "\e58e"; +} + +.fa-truck-plane { + --fa: "\e58f"; +} + +.fa-users-between-lines { + --fa: "\e591"; +} + +.fa-users-line { + --fa: "\e592"; +} + +.fa-users-rays { + --fa: "\e593"; +} + +.fa-users-rectangle { + --fa: "\e594"; +} + +.fa-users-viewfinder { + --fa: "\e595"; +} + +.fa-vial-circle-check { + --fa: "\e596"; +} + +.fa-vial-virus { + --fa: "\e597"; +} + +.fa-wheat-awn-circle-exclamation { + --fa: "\e598"; +} + +.fa-worm { + --fa: "\e599"; +} + +.fa-xmarks-lines { + --fa: "\e59a"; +} + +.fa-child-dress { + --fa: "\e59c"; +} + +.fa-child-reaching { + --fa: "\e59d"; +} + +.fa-file-circle-check { + --fa: "\e5a0"; +} + +.fa-file-circle-xmark { + --fa: "\e5a1"; +} + +.fa-person-through-window { + --fa: "\e5a9"; +} + +.fa-plant-wilt { + --fa: "\e5aa"; +} + +.fa-stapler { + --fa: "\e5af"; +} + +.fa-train-tram { + --fa: "\e5b4"; +} + +.fa-table-cells-column-lock { + --fa: "\e678"; +} + +.fa-table-cells-row-lock { + --fa: "\e67a"; +} + +.fa-web-awesome { + --fa: "\e682"; +} + +.fa-thumbtack-slash { + --fa: "\e68f"; +} + +.fa-thumb-tack-slash { + --fa: "\e68f"; +} + +.fa-table-cells-row-unlock { + --fa: "\e691"; +} + +.fa-chart-diagram { + --fa: "\e695"; +} + +.fa-comment-nodes { + --fa: "\e696"; +} + +.fa-file-fragment { + --fa: "\e697"; +} + +.fa-file-half-dashed { + --fa: "\e698"; +} + +.fa-hexagon-nodes { + --fa: "\e699"; +} + +.fa-hexagon-nodes-bolt { + --fa: "\e69a"; +} + +.fa-square-binary { + --fa: "\e69b"; +} + +.fa-pentagon { + --fa: "\e790"; +} + +.fa-non-binary { + --fa: "\e807"; +} + +.fa-spiral { + --fa: "\e80a"; +} + +.fa-picture-in-picture { + --fa: "\e80b"; +} + +.fa-mobile-vibrate { + --fa: "\e816"; +} + +.fa-single-quote-left { + --fa: "\e81b"; +} + +.fa-single-quote-right { + --fa: "\e81c"; +} + +.fa-bus-side { + --fa: "\e81d"; +} + +.fa-septagon { + --fa: "\e820"; +} + +.fa-heptagon { + --fa: "\e820"; +} + +.fa-aquarius { + --fa: "\e845"; +} + +.fa-aries { + --fa: "\e846"; +} + +.fa-cancer { + --fa: "\e847"; +} + +.fa-capricorn { + --fa: "\e848"; +} + +.fa-gemini { + --fa: "\e849"; +} + +.fa-leo { + --fa: "\e84a"; +} + +.fa-libra { + --fa: "\e84b"; +} + +.fa-pisces { + --fa: "\e84c"; +} + +.fa-sagittarius { + --fa: "\e84d"; +} + +.fa-scorpio { + --fa: "\e84e"; +} + +.fa-taurus { + --fa: "\e84f"; +} + +.fa-virgo { + --fa: "\e850"; +} + +.fa-martini-glass-empty { + --fa: "\f000"; +} + +.fa-glass-martini { + --fa: "\f000"; +} + +.fa-music { + --fa: "\f001"; +} + +.fa-magnifying-glass { + --fa: "\f002"; +} + +.fa-search { + --fa: "\f002"; +} + +.fa-heart { + --fa: "\f004"; +} + +.fa-star { + --fa: "\f005"; +} + +.fa-user { + --fa: "\f007"; +} + +.fa-user-alt { + --fa: "\f007"; +} + +.fa-user-large { + --fa: "\f007"; +} + +.fa-film { + --fa: "\f008"; +} + +.fa-film-alt { + --fa: "\f008"; +} + +.fa-film-simple { + --fa: "\f008"; +} + +.fa-table-cells-large { + --fa: "\f009"; +} + +.fa-th-large { + --fa: "\f009"; +} + +.fa-table-cells { + --fa: "\f00a"; +} + +.fa-th { + --fa: "\f00a"; +} + +.fa-table-list { + --fa: "\f00b"; +} + +.fa-th-list { + --fa: "\f00b"; +} + +.fa-check { + --fa: "\f00c"; +} + +.fa-xmark { + --fa: "\f00d"; +} + +.fa-close { + --fa: "\f00d"; +} + +.fa-multiply { + --fa: "\f00d"; +} + +.fa-remove { + --fa: "\f00d"; +} + +.fa-times { + --fa: "\f00d"; +} + +.fa-magnifying-glass-plus { + --fa: "\f00e"; +} + +.fa-search-plus { + --fa: "\f00e"; +} + +.fa-magnifying-glass-minus { + --fa: "\f010"; +} + +.fa-search-minus { + --fa: "\f010"; +} + +.fa-power-off { + --fa: "\f011"; +} + +.fa-signal { + --fa: "\f012"; +} + +.fa-signal-5 { + --fa: "\f012"; +} + +.fa-signal-perfect { + --fa: "\f012"; +} + +.fa-gear { + --fa: "\f013"; +} + +.fa-cog { + --fa: "\f013"; +} + +.fa-house { + --fa: "\f015"; +} + +.fa-home { + --fa: "\f015"; +} + +.fa-home-alt { + --fa: "\f015"; +} + +.fa-home-lg-alt { + --fa: "\f015"; +} + +.fa-clock { + --fa: "\f017"; +} + +.fa-clock-four { + --fa: "\f017"; +} + +.fa-road { + --fa: "\f018"; +} + +.fa-download { + --fa: "\f019"; +} + +.fa-inbox { + --fa: "\f01c"; +} + +.fa-arrow-rotate-right { + --fa: "\f01e"; +} + +.fa-arrow-right-rotate { + --fa: "\f01e"; +} + +.fa-arrow-rotate-forward { + --fa: "\f01e"; +} + +.fa-redo { + --fa: "\f01e"; +} + +.fa-arrows-rotate { + --fa: "\f021"; +} + +.fa-refresh { + --fa: "\f021"; +} + +.fa-sync { + --fa: "\f021"; +} + +.fa-rectangle-list { + --fa: "\f022"; +} + +.fa-list-alt { + --fa: "\f022"; +} + +.fa-lock { + --fa: "\f023"; +} + +.fa-flag { + --fa: "\f024"; +} + +.fa-headphones { + --fa: "\f025"; +} + +.fa-headphones-alt { + --fa: "\f025"; +} + +.fa-headphones-simple { + --fa: "\f025"; +} + +.fa-volume-off { + --fa: "\f026"; +} + +.fa-volume-low { + --fa: "\f027"; +} + +.fa-volume-down { + --fa: "\f027"; +} + +.fa-volume-high { + --fa: "\f028"; +} + +.fa-volume-up { + --fa: "\f028"; +} + +.fa-qrcode { + --fa: "\f029"; +} + +.fa-barcode { + --fa: "\f02a"; +} + +.fa-tag { + --fa: "\f02b"; +} + +.fa-tags { + --fa: "\f02c"; +} + +.fa-book { + --fa: "\f02d"; +} + +.fa-bookmark { + --fa: "\f02e"; +} + +.fa-print { + --fa: "\f02f"; +} + +.fa-camera { + --fa: "\f030"; +} + +.fa-camera-alt { + --fa: "\f030"; +} + +.fa-font { + --fa: "\f031"; +} + +.fa-bold { + --fa: "\f032"; +} + +.fa-italic { + --fa: "\f033"; +} + +.fa-text-height { + --fa: "\f034"; +} + +.fa-text-width { + --fa: "\f035"; +} + +.fa-align-left { + --fa: "\f036"; +} + +.fa-align-center { + --fa: "\f037"; +} + +.fa-align-right { + --fa: "\f038"; +} + +.fa-align-justify { + --fa: "\f039"; +} + +.fa-list { + --fa: "\f03a"; +} + +.fa-list-squares { + --fa: "\f03a"; +} + +.fa-outdent { + --fa: "\f03b"; +} + +.fa-dedent { + --fa: "\f03b"; +} + +.fa-indent { + --fa: "\f03c"; +} + +.fa-video { + --fa: "\f03d"; +} + +.fa-video-camera { + --fa: "\f03d"; +} + +.fa-image { + --fa: "\f03e"; +} + +.fa-location-pin { + --fa: "\f041"; +} + +.fa-map-marker { + --fa: "\f041"; +} + +.fa-circle-half-stroke { + --fa: "\f042"; +} + +.fa-adjust { + --fa: "\f042"; +} + +.fa-droplet { + --fa: "\f043"; +} + +.fa-tint { + --fa: "\f043"; +} + +.fa-pen-to-square { + --fa: "\f044"; +} + +.fa-edit { + --fa: "\f044"; +} + +.fa-arrows-up-down-left-right { + --fa: "\f047"; +} + +.fa-arrows { + --fa: "\f047"; +} + +.fa-backward-step { + --fa: "\f048"; +} + +.fa-step-backward { + --fa: "\f048"; +} + +.fa-backward-fast { + --fa: "\f049"; +} + +.fa-fast-backward { + --fa: "\f049"; +} + +.fa-backward { + --fa: "\f04a"; +} + +.fa-play { + --fa: "\f04b"; +} + +.fa-pause { + --fa: "\f04c"; +} + +.fa-stop { + --fa: "\f04d"; +} + +.fa-forward { + --fa: "\f04e"; +} + +.fa-forward-fast { + --fa: "\f050"; +} + +.fa-fast-forward { + --fa: "\f050"; +} + +.fa-forward-step { + --fa: "\f051"; +} + +.fa-step-forward { + --fa: "\f051"; +} + +.fa-eject { + --fa: "\f052"; +} + +.fa-chevron-left { + --fa: "\f053"; +} + +.fa-chevron-right { + --fa: "\f054"; +} + +.fa-circle-plus { + --fa: "\f055"; +} + +.fa-plus-circle { + --fa: "\f055"; +} + +.fa-circle-minus { + --fa: "\f056"; +} + +.fa-minus-circle { + --fa: "\f056"; +} + +.fa-circle-xmark { + --fa: "\f057"; +} + +.fa-times-circle { + --fa: "\f057"; +} + +.fa-xmark-circle { + --fa: "\f057"; +} + +.fa-circle-check { + --fa: "\f058"; +} + +.fa-check-circle { + --fa: "\f058"; +} + +.fa-circle-question { + --fa: "\f059"; +} + +.fa-question-circle { + --fa: "\f059"; +} + +.fa-circle-info { + --fa: "\f05a"; +} + +.fa-info-circle { + --fa: "\f05a"; +} + +.fa-crosshairs { + --fa: "\f05b"; +} + +.fa-ban { + --fa: "\f05e"; +} + +.fa-cancel { + --fa: "\f05e"; +} + +.fa-arrow-left { + --fa: "\f060"; +} + +.fa-arrow-right { + --fa: "\f061"; +} + +.fa-arrow-up { + --fa: "\f062"; +} + +.fa-arrow-down { + --fa: "\f063"; +} + +.fa-share { + --fa: "\f064"; +} + +.fa-mail-forward { + --fa: "\f064"; +} + +.fa-expand { + --fa: "\f065"; +} + +.fa-compress { + --fa: "\f066"; +} + +.fa-minus { + --fa: "\f068"; +} + +.fa-subtract { + --fa: "\f068"; +} + +.fa-circle-exclamation { + --fa: "\f06a"; +} + +.fa-exclamation-circle { + --fa: "\f06a"; +} + +.fa-gift { + --fa: "\f06b"; +} + +.fa-leaf { + --fa: "\f06c"; +} + +.fa-fire { + --fa: "\f06d"; +} + +.fa-eye { + --fa: "\f06e"; +} + +.fa-eye-slash { + --fa: "\f070"; +} + +.fa-triangle-exclamation { + --fa: "\f071"; +} + +.fa-exclamation-triangle { + --fa: "\f071"; +} + +.fa-warning { + --fa: "\f071"; +} + +.fa-plane { + --fa: "\f072"; +} + +.fa-calendar-days { + --fa: "\f073"; +} + +.fa-calendar-alt { + --fa: "\f073"; +} + +.fa-shuffle { + --fa: "\f074"; +} + +.fa-random { + --fa: "\f074"; +} + +.fa-comment { + --fa: "\f075"; +} + +.fa-magnet { + --fa: "\f076"; +} + +.fa-chevron-up { + --fa: "\f077"; +} + +.fa-chevron-down { + --fa: "\f078"; +} + +.fa-retweet { + --fa: "\f079"; +} + +.fa-cart-shopping { + --fa: "\f07a"; +} + +.fa-shopping-cart { + --fa: "\f07a"; +} + +.fa-folder { + --fa: "\f07b"; +} + +.fa-folder-blank { + --fa: "\f07b"; +} + +.fa-folder-open { + --fa: "\f07c"; +} + +.fa-arrows-up-down { + --fa: "\f07d"; +} + +.fa-arrows-v { + --fa: "\f07d"; +} + +.fa-arrows-left-right { + --fa: "\f07e"; +} + +.fa-arrows-h { + --fa: "\f07e"; +} + +.fa-chart-bar { + --fa: "\f080"; +} + +.fa-bar-chart { + --fa: "\f080"; +} + +.fa-camera-retro { + --fa: "\f083"; +} + +.fa-key { + --fa: "\f084"; +} + +.fa-gears { + --fa: "\f085"; +} + +.fa-cogs { + --fa: "\f085"; +} + +.fa-comments { + --fa: "\f086"; +} + +.fa-star-half { + --fa: "\f089"; +} + +.fa-arrow-right-from-bracket { + --fa: "\f08b"; +} + +.fa-sign-out { + --fa: "\f08b"; +} + +.fa-thumbtack { + --fa: "\f08d"; +} + +.fa-thumb-tack { + --fa: "\f08d"; +} + +.fa-arrow-up-right-from-square { + --fa: "\f08e"; +} + +.fa-external-link { + --fa: "\f08e"; +} + +.fa-arrow-right-to-bracket { + --fa: "\f090"; +} + +.fa-sign-in { + --fa: "\f090"; +} + +.fa-trophy { + --fa: "\f091"; +} + +.fa-upload { + --fa: "\f093"; +} + +.fa-lemon { + --fa: "\f094"; +} + +.fa-phone { + --fa: "\f095"; +} + +.fa-square-phone { + --fa: "\f098"; +} + +.fa-phone-square { + --fa: "\f098"; +} + +.fa-unlock { + --fa: "\f09c"; +} + +.fa-credit-card { + --fa: "\f09d"; +} + +.fa-credit-card-alt { + --fa: "\f09d"; +} + +.fa-rss { + --fa: "\f09e"; +} + +.fa-feed { + --fa: "\f09e"; +} + +.fa-hard-drive { + --fa: "\f0a0"; +} + +.fa-hdd { + --fa: "\f0a0"; +} + +.fa-bullhorn { + --fa: "\f0a1"; +} + +.fa-certificate { + --fa: "\f0a3"; +} + +.fa-hand-point-right { + --fa: "\f0a4"; +} + +.fa-hand-point-left { + --fa: "\f0a5"; +} + +.fa-hand-point-up { + --fa: "\f0a6"; +} + +.fa-hand-point-down { + --fa: "\f0a7"; +} + +.fa-circle-arrow-left { + --fa: "\f0a8"; +} + +.fa-arrow-circle-left { + --fa: "\f0a8"; +} + +.fa-circle-arrow-right { + --fa: "\f0a9"; +} + +.fa-arrow-circle-right { + --fa: "\f0a9"; +} + +.fa-circle-arrow-up { + --fa: "\f0aa"; +} + +.fa-arrow-circle-up { + --fa: "\f0aa"; +} + +.fa-circle-arrow-down { + --fa: "\f0ab"; +} + +.fa-arrow-circle-down { + --fa: "\f0ab"; +} + +.fa-globe { + --fa: "\f0ac"; +} + +.fa-wrench { + --fa: "\f0ad"; +} + +.fa-list-check { + --fa: "\f0ae"; +} + +.fa-tasks { + --fa: "\f0ae"; +} + +.fa-filter { + --fa: "\f0b0"; +} + +.fa-briefcase { + --fa: "\f0b1"; +} + +.fa-up-down-left-right { + --fa: "\f0b2"; +} + +.fa-arrows-alt { + --fa: "\f0b2"; +} + +.fa-users { + --fa: "\f0c0"; +} + +.fa-link { + --fa: "\f0c1"; +} + +.fa-chain { + --fa: "\f0c1"; +} + +.fa-cloud { + --fa: "\f0c2"; +} + +.fa-flask { + --fa: "\f0c3"; +} + +.fa-scissors { + --fa: "\f0c4"; +} + +.fa-cut { + --fa: "\f0c4"; +} + +.fa-copy { + --fa: "\f0c5"; +} + +.fa-paperclip { + --fa: "\f0c6"; +} + +.fa-floppy-disk { + --fa: "\f0c7"; +} + +.fa-save { + --fa: "\f0c7"; +} + +.fa-square { + --fa: "\f0c8"; +} + +.fa-bars { + --fa: "\f0c9"; +} + +.fa-navicon { + --fa: "\f0c9"; +} + +.fa-list-ul { + --fa: "\f0ca"; +} + +.fa-list-dots { + --fa: "\f0ca"; +} + +.fa-list-ol { + --fa: "\f0cb"; +} + +.fa-list-1-2 { + --fa: "\f0cb"; +} + +.fa-list-numeric { + --fa: "\f0cb"; +} + +.fa-strikethrough { + --fa: "\f0cc"; +} + +.fa-underline { + --fa: "\f0cd"; +} + +.fa-table { + --fa: "\f0ce"; +} + +.fa-wand-magic { + --fa: "\f0d0"; +} + +.fa-magic { + --fa: "\f0d0"; +} + +.fa-truck { + --fa: "\f0d1"; +} + +.fa-money-bill { + --fa: "\f0d6"; +} + +.fa-caret-down { + --fa: "\f0d7"; +} + +.fa-caret-up { + --fa: "\f0d8"; +} + +.fa-caret-left { + --fa: "\f0d9"; +} + +.fa-caret-right { + --fa: "\f0da"; +} + +.fa-table-columns { + --fa: "\f0db"; +} + +.fa-columns { + --fa: "\f0db"; +} + +.fa-sort { + --fa: "\f0dc"; +} + +.fa-unsorted { + --fa: "\f0dc"; +} + +.fa-sort-down { + --fa: "\f0dd"; +} + +.fa-sort-desc { + --fa: "\f0dd"; +} + +.fa-sort-up { + --fa: "\f0de"; +} + +.fa-sort-asc { + --fa: "\f0de"; +} + +.fa-envelope { + --fa: "\f0e0"; +} + +.fa-arrow-rotate-left { + --fa: "\f0e2"; +} + +.fa-arrow-left-rotate { + --fa: "\f0e2"; +} + +.fa-arrow-rotate-back { + --fa: "\f0e2"; +} + +.fa-arrow-rotate-backward { + --fa: "\f0e2"; +} + +.fa-undo { + --fa: "\f0e2"; +} + +.fa-gavel { + --fa: "\f0e3"; +} + +.fa-legal { + --fa: "\f0e3"; +} + +.fa-bolt { + --fa: "\f0e7"; +} + +.fa-zap { + --fa: "\f0e7"; +} + +.fa-sitemap { + --fa: "\f0e8"; +} + +.fa-umbrella { + --fa: "\f0e9"; +} + +.fa-paste { + --fa: "\f0ea"; +} + +.fa-file-clipboard { + --fa: "\f0ea"; +} + +.fa-lightbulb { + --fa: "\f0eb"; +} + +.fa-arrow-right-arrow-left { + --fa: "\f0ec"; +} + +.fa-exchange { + --fa: "\f0ec"; +} + +.fa-cloud-arrow-down { + --fa: "\f0ed"; +} + +.fa-cloud-download { + --fa: "\f0ed"; +} + +.fa-cloud-download-alt { + --fa: "\f0ed"; +} + +.fa-cloud-arrow-up { + --fa: "\f0ee"; +} + +.fa-cloud-upload { + --fa: "\f0ee"; +} + +.fa-cloud-upload-alt { + --fa: "\f0ee"; +} + +.fa-user-doctor { + --fa: "\f0f0"; +} + +.fa-user-md { + --fa: "\f0f0"; +} + +.fa-stethoscope { + --fa: "\f0f1"; +} + +.fa-suitcase { + --fa: "\f0f2"; +} + +.fa-bell { + --fa: "\f0f3"; +} + +.fa-mug-saucer { + --fa: "\f0f4"; +} + +.fa-coffee { + --fa: "\f0f4"; +} + +.fa-hospital { + --fa: "\f0f8"; +} + +.fa-hospital-alt { + --fa: "\f0f8"; +} + +.fa-hospital-wide { + --fa: "\f0f8"; +} + +.fa-truck-medical { + --fa: "\f0f9"; +} + +.fa-ambulance { + --fa: "\f0f9"; +} + +.fa-suitcase-medical { + --fa: "\f0fa"; +} + +.fa-medkit { + --fa: "\f0fa"; +} + +.fa-jet-fighter { + --fa: "\f0fb"; +} + +.fa-fighter-jet { + --fa: "\f0fb"; +} + +.fa-beer-mug-empty { + --fa: "\f0fc"; +} + +.fa-beer { + --fa: "\f0fc"; +} + +.fa-square-h { + --fa: "\f0fd"; +} + +.fa-h-square { + --fa: "\f0fd"; +} + +.fa-square-plus { + --fa: "\f0fe"; +} + +.fa-plus-square { + --fa: "\f0fe"; +} + +.fa-angles-left { + --fa: "\f100"; +} + +.fa-angle-double-left { + --fa: "\f100"; +} + +.fa-angles-right { + --fa: "\f101"; +} + +.fa-angle-double-right { + --fa: "\f101"; +} + +.fa-angles-up { + --fa: "\f102"; +} + +.fa-angle-double-up { + --fa: "\f102"; +} + +.fa-angles-down { + --fa: "\f103"; +} + +.fa-angle-double-down { + --fa: "\f103"; +} + +.fa-angle-left { + --fa: "\f104"; +} + +.fa-angle-right { + --fa: "\f105"; +} + +.fa-angle-up { + --fa: "\f106"; +} + +.fa-angle-down { + --fa: "\f107"; +} + +.fa-laptop { + --fa: "\f109"; +} + +.fa-tablet-button { + --fa: "\f10a"; +} + +.fa-mobile-button { + --fa: "\f10b"; +} + +.fa-quote-left { + --fa: "\f10d"; +} + +.fa-quote-left-alt { + --fa: "\f10d"; +} + +.fa-quote-right { + --fa: "\f10e"; +} + +.fa-quote-right-alt { + --fa: "\f10e"; +} + +.fa-spinner { + --fa: "\f110"; +} + +.fa-circle { + --fa: "\f111"; +} + +.fa-face-smile { + --fa: "\f118"; +} + +.fa-smile { + --fa: "\f118"; +} + +.fa-face-frown { + --fa: "\f119"; +} + +.fa-frown { + --fa: "\f119"; +} + +.fa-face-meh { + --fa: "\f11a"; +} + +.fa-meh { + --fa: "\f11a"; +} + +.fa-gamepad { + --fa: "\f11b"; +} + +.fa-keyboard { + --fa: "\f11c"; +} + +.fa-flag-checkered { + --fa: "\f11e"; +} + +.fa-terminal { + --fa: "\f120"; +} + +.fa-code { + --fa: "\f121"; +} + +.fa-reply-all { + --fa: "\f122"; +} + +.fa-mail-reply-all { + --fa: "\f122"; +} + +.fa-location-arrow { + --fa: "\f124"; +} + +.fa-crop { + --fa: "\f125"; +} + +.fa-code-branch { + --fa: "\f126"; +} + +.fa-link-slash { + --fa: "\f127"; +} + +.fa-chain-broken { + --fa: "\f127"; +} + +.fa-chain-slash { + --fa: "\f127"; +} + +.fa-unlink { + --fa: "\f127"; +} + +.fa-info { + --fa: "\f129"; +} + +.fa-superscript { + --fa: "\f12b"; +} + +.fa-subscript { + --fa: "\f12c"; +} + +.fa-eraser { + --fa: "\f12d"; +} + +.fa-puzzle-piece { + --fa: "\f12e"; +} + +.fa-microphone { + --fa: "\f130"; +} + +.fa-microphone-slash { + --fa: "\f131"; +} + +.fa-shield { + --fa: "\f132"; +} + +.fa-shield-blank { + --fa: "\f132"; +} + +.fa-calendar { + --fa: "\f133"; +} + +.fa-fire-extinguisher { + --fa: "\f134"; +} + +.fa-rocket { + --fa: "\f135"; +} + +.fa-circle-chevron-left { + --fa: "\f137"; +} + +.fa-chevron-circle-left { + --fa: "\f137"; +} + +.fa-circle-chevron-right { + --fa: "\f138"; +} + +.fa-chevron-circle-right { + --fa: "\f138"; +} + +.fa-circle-chevron-up { + --fa: "\f139"; +} + +.fa-chevron-circle-up { + --fa: "\f139"; +} + +.fa-circle-chevron-down { + --fa: "\f13a"; +} + +.fa-chevron-circle-down { + --fa: "\f13a"; +} + +.fa-anchor { + --fa: "\f13d"; +} + +.fa-unlock-keyhole { + --fa: "\f13e"; +} + +.fa-unlock-alt { + --fa: "\f13e"; +} + +.fa-bullseye { + --fa: "\f140"; +} + +.fa-ellipsis { + --fa: "\f141"; +} + +.fa-ellipsis-h { + --fa: "\f141"; +} + +.fa-ellipsis-vertical { + --fa: "\f142"; +} + +.fa-ellipsis-v { + --fa: "\f142"; +} + +.fa-square-rss { + --fa: "\f143"; +} + +.fa-rss-square { + --fa: "\f143"; +} + +.fa-circle-play { + --fa: "\f144"; +} + +.fa-play-circle { + --fa: "\f144"; +} + +.fa-ticket { + --fa: "\f145"; +} + +.fa-square-minus { + --fa: "\f146"; +} + +.fa-minus-square { + --fa: "\f146"; +} + +.fa-arrow-turn-up { + --fa: "\f148"; +} + +.fa-level-up { + --fa: "\f148"; +} + +.fa-arrow-turn-down { + --fa: "\f149"; +} + +.fa-level-down { + --fa: "\f149"; +} + +.fa-square-check { + --fa: "\f14a"; +} + +.fa-check-square { + --fa: "\f14a"; +} + +.fa-square-pen { + --fa: "\f14b"; +} + +.fa-pen-square { + --fa: "\f14b"; +} + +.fa-pencil-square { + --fa: "\f14b"; +} + +.fa-square-arrow-up-right { + --fa: "\f14c"; +} + +.fa-external-link-square { + --fa: "\f14c"; +} + +.fa-share-from-square { + --fa: "\f14d"; +} + +.fa-share-square { + --fa: "\f14d"; +} + +.fa-compass { + --fa: "\f14e"; +} + +.fa-square-caret-down { + --fa: "\f150"; +} + +.fa-caret-square-down { + --fa: "\f150"; +} + +.fa-square-caret-up { + --fa: "\f151"; +} + +.fa-caret-square-up { + --fa: "\f151"; +} + +.fa-square-caret-right { + --fa: "\f152"; +} + +.fa-caret-square-right { + --fa: "\f152"; +} + +.fa-euro-sign { + --fa: "\f153"; +} + +.fa-eur { + --fa: "\f153"; +} + +.fa-euro { + --fa: "\f153"; +} + +.fa-sterling-sign { + --fa: "\f154"; +} + +.fa-gbp { + --fa: "\f154"; +} + +.fa-pound-sign { + --fa: "\f154"; +} + +.fa-rupee-sign { + --fa: "\f156"; +} + +.fa-rupee { + --fa: "\f156"; +} + +.fa-yen-sign { + --fa: "\f157"; +} + +.fa-cny { + --fa: "\f157"; +} + +.fa-jpy { + --fa: "\f157"; +} + +.fa-rmb { + --fa: "\f157"; +} + +.fa-yen { + --fa: "\f157"; +} + +.fa-ruble-sign { + --fa: "\f158"; +} + +.fa-rouble { + --fa: "\f158"; +} + +.fa-rub { + --fa: "\f158"; +} + +.fa-ruble { + --fa: "\f158"; +} + +.fa-won-sign { + --fa: "\f159"; +} + +.fa-krw { + --fa: "\f159"; +} + +.fa-won { + --fa: "\f159"; +} + +.fa-file { + --fa: "\f15b"; +} + +.fa-file-lines { + --fa: "\f15c"; +} + +.fa-file-alt { + --fa: "\f15c"; +} + +.fa-file-text { + --fa: "\f15c"; +} + +.fa-arrow-down-a-z { + --fa: "\f15d"; +} + +.fa-sort-alpha-asc { + --fa: "\f15d"; +} + +.fa-sort-alpha-down { + --fa: "\f15d"; +} + +.fa-arrow-up-a-z { + --fa: "\f15e"; +} + +.fa-sort-alpha-up { + --fa: "\f15e"; +} + +.fa-arrow-down-wide-short { + --fa: "\f160"; +} + +.fa-sort-amount-asc { + --fa: "\f160"; +} + +.fa-sort-amount-down { + --fa: "\f160"; +} + +.fa-arrow-up-wide-short { + --fa: "\f161"; +} + +.fa-sort-amount-up { + --fa: "\f161"; +} + +.fa-arrow-down-1-9 { + --fa: "\f162"; +} + +.fa-sort-numeric-asc { + --fa: "\f162"; +} + +.fa-sort-numeric-down { + --fa: "\f162"; +} + +.fa-arrow-up-1-9 { + --fa: "\f163"; +} + +.fa-sort-numeric-up { + --fa: "\f163"; +} + +.fa-thumbs-up { + --fa: "\f164"; +} + +.fa-thumbs-down { + --fa: "\f165"; +} + +.fa-arrow-down-long { + --fa: "\f175"; +} + +.fa-long-arrow-down { + --fa: "\f175"; +} + +.fa-arrow-up-long { + --fa: "\f176"; +} + +.fa-long-arrow-up { + --fa: "\f176"; +} + +.fa-arrow-left-long { + --fa: "\f177"; +} + +.fa-long-arrow-left { + --fa: "\f177"; +} + +.fa-arrow-right-long { + --fa: "\f178"; +} + +.fa-long-arrow-right { + --fa: "\f178"; +} + +.fa-person-dress { + --fa: "\f182"; +} + +.fa-female { + --fa: "\f182"; +} + +.fa-person { + --fa: "\f183"; +} + +.fa-male { + --fa: "\f183"; +} + +.fa-sun { + --fa: "\f185"; +} + +.fa-moon { + --fa: "\f186"; +} + +.fa-box-archive { + --fa: "\f187"; +} + +.fa-archive { + --fa: "\f187"; +} + +.fa-bug { + --fa: "\f188"; +} + +.fa-square-caret-left { + --fa: "\f191"; +} + +.fa-caret-square-left { + --fa: "\f191"; +} + +.fa-circle-dot { + --fa: "\f192"; +} + +.fa-dot-circle { + --fa: "\f192"; +} + +.fa-wheelchair { + --fa: "\f193"; +} + +.fa-lira-sign { + --fa: "\f195"; +} + +.fa-shuttle-space { + --fa: "\f197"; +} + +.fa-space-shuttle { + --fa: "\f197"; +} + +.fa-square-envelope { + --fa: "\f199"; +} + +.fa-envelope-square { + --fa: "\f199"; +} + +.fa-building-columns { + --fa: "\f19c"; +} + +.fa-bank { + --fa: "\f19c"; +} + +.fa-institution { + --fa: "\f19c"; +} + +.fa-museum { + --fa: "\f19c"; +} + +.fa-university { + --fa: "\f19c"; +} + +.fa-graduation-cap { + --fa: "\f19d"; +} + +.fa-mortar-board { + --fa: "\f19d"; +} + +.fa-language { + --fa: "\f1ab"; +} + +.fa-fax { + --fa: "\f1ac"; +} + +.fa-building { + --fa: "\f1ad"; +} + +.fa-child { + --fa: "\f1ae"; +} + +.fa-paw { + --fa: "\f1b0"; +} + +.fa-cube { + --fa: "\f1b2"; +} + +.fa-cubes { + --fa: "\f1b3"; +} + +.fa-recycle { + --fa: "\f1b8"; +} + +.fa-car { + --fa: "\f1b9"; +} + +.fa-automobile { + --fa: "\f1b9"; +} + +.fa-taxi { + --fa: "\f1ba"; +} + +.fa-cab { + --fa: "\f1ba"; +} + +.fa-tree { + --fa: "\f1bb"; +} + +.fa-database { + --fa: "\f1c0"; +} + +.fa-file-pdf { + --fa: "\f1c1"; +} + +.fa-file-word { + --fa: "\f1c2"; +} + +.fa-file-excel { + --fa: "\f1c3"; +} + +.fa-file-powerpoint { + --fa: "\f1c4"; +} + +.fa-file-image { + --fa: "\f1c5"; +} + +.fa-file-zipper { + --fa: "\f1c6"; +} + +.fa-file-archive { + --fa: "\f1c6"; +} + +.fa-file-audio { + --fa: "\f1c7"; +} + +.fa-file-video { + --fa: "\f1c8"; +} + +.fa-file-code { + --fa: "\f1c9"; +} + +.fa-life-ring { + --fa: "\f1cd"; +} + +.fa-circle-notch { + --fa: "\f1ce"; +} + +.fa-paper-plane { + --fa: "\f1d8"; +} + +.fa-clock-rotate-left { + --fa: "\f1da"; +} + +.fa-history { + --fa: "\f1da"; +} + +.fa-heading { + --fa: "\f1dc"; +} + +.fa-header { + --fa: "\f1dc"; +} + +.fa-paragraph { + --fa: "\f1dd"; +} + +.fa-sliders { + --fa: "\f1de"; +} + +.fa-sliders-h { + --fa: "\f1de"; +} + +.fa-share-nodes { + --fa: "\f1e0"; +} + +.fa-share-alt { + --fa: "\f1e0"; +} + +.fa-square-share-nodes { + --fa: "\f1e1"; +} + +.fa-share-alt-square { + --fa: "\f1e1"; +} + +.fa-bomb { + --fa: "\f1e2"; +} + +.fa-futbol { + --fa: "\f1e3"; +} + +.fa-futbol-ball { + --fa: "\f1e3"; +} + +.fa-soccer-ball { + --fa: "\f1e3"; +} + +.fa-tty { + --fa: "\f1e4"; +} + +.fa-teletype { + --fa: "\f1e4"; +} + +.fa-binoculars { + --fa: "\f1e5"; +} + +.fa-plug { + --fa: "\f1e6"; +} + +.fa-newspaper { + --fa: "\f1ea"; +} + +.fa-wifi { + --fa: "\f1eb"; +} + +.fa-wifi-3 { + --fa: "\f1eb"; +} + +.fa-wifi-strong { + --fa: "\f1eb"; +} + +.fa-calculator { + --fa: "\f1ec"; +} + +.fa-bell-slash { + --fa: "\f1f6"; +} + +.fa-trash { + --fa: "\f1f8"; +} + +.fa-copyright { + --fa: "\f1f9"; +} + +.fa-eye-dropper { + --fa: "\f1fb"; +} + +.fa-eye-dropper-empty { + --fa: "\f1fb"; +} + +.fa-eyedropper { + --fa: "\f1fb"; +} + +.fa-paintbrush { + --fa: "\f1fc"; +} + +.fa-paint-brush { + --fa: "\f1fc"; +} + +.fa-cake-candles { + --fa: "\f1fd"; +} + +.fa-birthday-cake { + --fa: "\f1fd"; +} + +.fa-cake { + --fa: "\f1fd"; +} + +.fa-chart-area { + --fa: "\f1fe"; +} + +.fa-area-chart { + --fa: "\f1fe"; +} + +.fa-chart-pie { + --fa: "\f200"; +} + +.fa-pie-chart { + --fa: "\f200"; +} + +.fa-chart-line { + --fa: "\f201"; +} + +.fa-line-chart { + --fa: "\f201"; +} + +.fa-toggle-off { + --fa: "\f204"; +} + +.fa-toggle-on { + --fa: "\f205"; +} + +.fa-bicycle { + --fa: "\f206"; +} + +.fa-bus { + --fa: "\f207"; +} + +.fa-closed-captioning { + --fa: "\f20a"; +} + +.fa-shekel-sign { + --fa: "\f20b"; +} + +.fa-ils { + --fa: "\f20b"; +} + +.fa-shekel { + --fa: "\f20b"; +} + +.fa-sheqel { + --fa: "\f20b"; +} + +.fa-sheqel-sign { + --fa: "\f20b"; +} + +.fa-cart-plus { + --fa: "\f217"; +} + +.fa-cart-arrow-down { + --fa: "\f218"; +} + +.fa-diamond { + --fa: "\f219"; +} + +.fa-ship { + --fa: "\f21a"; +} + +.fa-user-secret { + --fa: "\f21b"; +} + +.fa-motorcycle { + --fa: "\f21c"; +} + +.fa-street-view { + --fa: "\f21d"; +} + +.fa-heart-pulse { + --fa: "\f21e"; +} + +.fa-heartbeat { + --fa: "\f21e"; +} + +.fa-venus { + --fa: "\f221"; +} + +.fa-mars { + --fa: "\f222"; +} + +.fa-mercury { + --fa: "\f223"; +} + +.fa-mars-and-venus { + --fa: "\f224"; +} + +.fa-transgender { + --fa: "\f225"; +} + +.fa-transgender-alt { + --fa: "\f225"; +} + +.fa-venus-double { + --fa: "\f226"; +} + +.fa-mars-double { + --fa: "\f227"; +} + +.fa-venus-mars { + --fa: "\f228"; +} + +.fa-mars-stroke { + --fa: "\f229"; +} + +.fa-mars-stroke-up { + --fa: "\f22a"; +} + +.fa-mars-stroke-v { + --fa: "\f22a"; +} + +.fa-mars-stroke-right { + --fa: "\f22b"; +} + +.fa-mars-stroke-h { + --fa: "\f22b"; +} + +.fa-neuter { + --fa: "\f22c"; +} + +.fa-genderless { + --fa: "\f22d"; +} + +.fa-server { + --fa: "\f233"; +} + +.fa-user-plus { + --fa: "\f234"; +} + +.fa-user-xmark { + --fa: "\f235"; +} + +.fa-user-times { + --fa: "\f235"; +} + +.fa-bed { + --fa: "\f236"; +} + +.fa-train { + --fa: "\f238"; +} + +.fa-train-subway { + --fa: "\f239"; +} + +.fa-subway { + --fa: "\f239"; +} + +.fa-battery-full { + --fa: "\f240"; +} + +.fa-battery { + --fa: "\f240"; +} + +.fa-battery-5 { + --fa: "\f240"; +} + +.fa-battery-three-quarters { + --fa: "\f241"; +} + +.fa-battery-4 { + --fa: "\f241"; +} + +.fa-battery-half { + --fa: "\f242"; +} + +.fa-battery-3 { + --fa: "\f242"; +} + +.fa-battery-quarter { + --fa: "\f243"; +} + +.fa-battery-2 { + --fa: "\f243"; +} + +.fa-battery-empty { + --fa: "\f244"; +} + +.fa-battery-0 { + --fa: "\f244"; +} + +.fa-arrow-pointer { + --fa: "\f245"; +} + +.fa-mouse-pointer { + --fa: "\f245"; +} + +.fa-i-cursor { + --fa: "\f246"; +} + +.fa-object-group { + --fa: "\f247"; +} + +.fa-object-ungroup { + --fa: "\f248"; +} + +.fa-note-sticky { + --fa: "\f249"; +} + +.fa-sticky-note { + --fa: "\f249"; +} + +.fa-clone { + --fa: "\f24d"; +} + +.fa-scale-balanced { + --fa: "\f24e"; +} + +.fa-balance-scale { + --fa: "\f24e"; +} + +.fa-hourglass-start { + --fa: "\f251"; +} + +.fa-hourglass-1 { + --fa: "\f251"; +} + +.fa-hourglass-half { + --fa: "\f252"; +} + +.fa-hourglass-2 { + --fa: "\f252"; +} + +.fa-hourglass-end { + --fa: "\f253"; +} + +.fa-hourglass-3 { + --fa: "\f253"; +} + +.fa-hourglass { + --fa: "\f254"; +} + +.fa-hourglass-empty { + --fa: "\f254"; +} + +.fa-hand-back-fist { + --fa: "\f255"; +} + +.fa-hand-rock { + --fa: "\f255"; +} + +.fa-hand { + --fa: "\f256"; +} + +.fa-hand-paper { + --fa: "\f256"; +} + +.fa-hand-scissors { + --fa: "\f257"; +} + +.fa-hand-lizard { + --fa: "\f258"; +} + +.fa-hand-spock { + --fa: "\f259"; +} + +.fa-hand-pointer { + --fa: "\f25a"; +} + +.fa-hand-peace { + --fa: "\f25b"; +} + +.fa-trademark { + --fa: "\f25c"; +} + +.fa-registered { + --fa: "\f25d"; +} + +.fa-tv { + --fa: "\f26c"; +} + +.fa-television { + --fa: "\f26c"; +} + +.fa-tv-alt { + --fa: "\f26c"; +} + +.fa-calendar-plus { + --fa: "\f271"; +} + +.fa-calendar-minus { + --fa: "\f272"; +} + +.fa-calendar-xmark { + --fa: "\f273"; +} + +.fa-calendar-times { + --fa: "\f273"; +} + +.fa-calendar-check { + --fa: "\f274"; +} + +.fa-industry { + --fa: "\f275"; +} + +.fa-map-pin { + --fa: "\f276"; +} + +.fa-signs-post { + --fa: "\f277"; +} + +.fa-map-signs { + --fa: "\f277"; +} + +.fa-map { + --fa: "\f279"; +} + +.fa-message { + --fa: "\f27a"; +} + +.fa-comment-alt { + --fa: "\f27a"; +} + +.fa-circle-pause { + --fa: "\f28b"; +} + +.fa-pause-circle { + --fa: "\f28b"; +} + +.fa-circle-stop { + --fa: "\f28d"; +} + +.fa-stop-circle { + --fa: "\f28d"; +} + +.fa-bag-shopping { + --fa: "\f290"; +} + +.fa-shopping-bag { + --fa: "\f290"; +} + +.fa-basket-shopping { + --fa: "\f291"; +} + +.fa-shopping-basket { + --fa: "\f291"; +} + +.fa-universal-access { + --fa: "\f29a"; +} + +.fa-person-walking-with-cane { + --fa: "\f29d"; +} + +.fa-blind { + --fa: "\f29d"; +} + +.fa-audio-description { + --fa: "\f29e"; +} + +.fa-phone-volume { + --fa: "\f2a0"; +} + +.fa-volume-control-phone { + --fa: "\f2a0"; +} + +.fa-braille { + --fa: "\f2a1"; +} + +.fa-ear-listen { + --fa: "\f2a2"; +} + +.fa-assistive-listening-systems { + --fa: "\f2a2"; +} + +.fa-hands-asl-interpreting { + --fa: "\f2a3"; +} + +.fa-american-sign-language-interpreting { + --fa: "\f2a3"; +} + +.fa-asl-interpreting { + --fa: "\f2a3"; +} + +.fa-hands-american-sign-language-interpreting { + --fa: "\f2a3"; +} + +.fa-ear-deaf { + --fa: "\f2a4"; +} + +.fa-deaf { + --fa: "\f2a4"; +} + +.fa-deafness { + --fa: "\f2a4"; +} + +.fa-hard-of-hearing { + --fa: "\f2a4"; +} + +.fa-hands { + --fa: "\f2a7"; +} + +.fa-sign-language { + --fa: "\f2a7"; +} + +.fa-signing { + --fa: "\f2a7"; +} + +.fa-eye-low-vision { + --fa: "\f2a8"; +} + +.fa-low-vision { + --fa: "\f2a8"; +} + +.fa-font-awesome { + --fa: "\f2b4"; +} + +.fa-font-awesome-flag { + --fa: "\f2b4"; +} + +.fa-font-awesome-logo-full { + --fa: "\f2b4"; +} + +.fa-handshake { + --fa: "\f2b5"; +} + +.fa-handshake-alt { + --fa: "\f2b5"; +} + +.fa-handshake-simple { + --fa: "\f2b5"; +} + +.fa-envelope-open { + --fa: "\f2b6"; +} + +.fa-address-book { + --fa: "\f2b9"; +} + +.fa-contact-book { + --fa: "\f2b9"; +} + +.fa-address-card { + --fa: "\f2bb"; +} + +.fa-contact-card { + --fa: "\f2bb"; +} + +.fa-vcard { + --fa: "\f2bb"; +} + +.fa-circle-user { + --fa: "\f2bd"; +} + +.fa-user-circle { + --fa: "\f2bd"; +} + +.fa-id-badge { + --fa: "\f2c1"; +} + +.fa-id-card { + --fa: "\f2c2"; +} + +.fa-drivers-license { + --fa: "\f2c2"; +} + +.fa-temperature-full { + --fa: "\f2c7"; +} + +.fa-temperature-4 { + --fa: "\f2c7"; +} + +.fa-thermometer-4 { + --fa: "\f2c7"; +} + +.fa-thermometer-full { + --fa: "\f2c7"; +} + +.fa-temperature-three-quarters { + --fa: "\f2c8"; +} + +.fa-temperature-3 { + --fa: "\f2c8"; +} + +.fa-thermometer-3 { + --fa: "\f2c8"; +} + +.fa-thermometer-three-quarters { + --fa: "\f2c8"; +} + +.fa-temperature-half { + --fa: "\f2c9"; +} + +.fa-temperature-2 { + --fa: "\f2c9"; +} + +.fa-thermometer-2 { + --fa: "\f2c9"; +} + +.fa-thermometer-half { + --fa: "\f2c9"; +} + +.fa-temperature-quarter { + --fa: "\f2ca"; +} + +.fa-temperature-1 { + --fa: "\f2ca"; +} + +.fa-thermometer-1 { + --fa: "\f2ca"; +} + +.fa-thermometer-quarter { + --fa: "\f2ca"; +} + +.fa-temperature-empty { + --fa: "\f2cb"; +} + +.fa-temperature-0 { + --fa: "\f2cb"; +} + +.fa-thermometer-0 { + --fa: "\f2cb"; +} + +.fa-thermometer-empty { + --fa: "\f2cb"; +} + +.fa-shower { + --fa: "\f2cc"; +} + +.fa-bath { + --fa: "\f2cd"; +} + +.fa-bathtub { + --fa: "\f2cd"; +} + +.fa-podcast { + --fa: "\f2ce"; +} + +.fa-window-maximize { + --fa: "\f2d0"; +} + +.fa-window-minimize { + --fa: "\f2d1"; +} + +.fa-window-restore { + --fa: "\f2d2"; +} + +.fa-square-xmark { + --fa: "\f2d3"; +} + +.fa-times-square { + --fa: "\f2d3"; +} + +.fa-xmark-square { + --fa: "\f2d3"; +} + +.fa-microchip { + --fa: "\f2db"; +} + +.fa-snowflake { + --fa: "\f2dc"; +} + +.fa-spoon { + --fa: "\f2e5"; +} + +.fa-utensil-spoon { + --fa: "\f2e5"; +} + +.fa-utensils { + --fa: "\f2e7"; +} + +.fa-cutlery { + --fa: "\f2e7"; +} + +.fa-rotate-left { + --fa: "\f2ea"; +} + +.fa-rotate-back { + --fa: "\f2ea"; +} + +.fa-rotate-backward { + --fa: "\f2ea"; +} + +.fa-undo-alt { + --fa: "\f2ea"; +} + +.fa-trash-can { + --fa: "\f2ed"; +} + +.fa-trash-alt { + --fa: "\f2ed"; +} + +.fa-rotate { + --fa: "\f2f1"; +} + +.fa-sync-alt { + --fa: "\f2f1"; +} + +.fa-stopwatch { + --fa: "\f2f2"; +} + +.fa-right-from-bracket { + --fa: "\f2f5"; +} + +.fa-sign-out-alt { + --fa: "\f2f5"; +} + +.fa-right-to-bracket { + --fa: "\f2f6"; +} + +.fa-sign-in-alt { + --fa: "\f2f6"; +} + +.fa-rotate-right { + --fa: "\f2f9"; +} + +.fa-redo-alt { + --fa: "\f2f9"; +} + +.fa-rotate-forward { + --fa: "\f2f9"; +} + +.fa-poo { + --fa: "\f2fe"; +} + +.fa-images { + --fa: "\f302"; +} + +.fa-pencil { + --fa: "\f303"; +} + +.fa-pencil-alt { + --fa: "\f303"; +} + +.fa-pen { + --fa: "\f304"; +} + +.fa-pen-clip { + --fa: "\f305"; +} + +.fa-pen-alt { + --fa: "\f305"; +} + +.fa-octagon { + --fa: "\f306"; +} + +.fa-down-long { + --fa: "\f309"; +} + +.fa-long-arrow-alt-down { + --fa: "\f309"; +} + +.fa-left-long { + --fa: "\f30a"; +} + +.fa-long-arrow-alt-left { + --fa: "\f30a"; +} + +.fa-right-long { + --fa: "\f30b"; +} + +.fa-long-arrow-alt-right { + --fa: "\f30b"; +} + +.fa-up-long { + --fa: "\f30c"; +} + +.fa-long-arrow-alt-up { + --fa: "\f30c"; +} + +.fa-hexagon { + --fa: "\f312"; +} + +.fa-file-pen { + --fa: "\f31c"; +} + +.fa-file-edit { + --fa: "\f31c"; +} + +.fa-maximize { + --fa: "\f31e"; +} + +.fa-expand-arrows-alt { + --fa: "\f31e"; +} + +.fa-clipboard { + --fa: "\f328"; +} + +.fa-left-right { + --fa: "\f337"; +} + +.fa-arrows-alt-h { + --fa: "\f337"; +} + +.fa-up-down { + --fa: "\f338"; +} + +.fa-arrows-alt-v { + --fa: "\f338"; +} + +.fa-alarm-clock { + --fa: "\f34e"; +} + +.fa-circle-down { + --fa: "\f358"; +} + +.fa-arrow-alt-circle-down { + --fa: "\f358"; +} + +.fa-circle-left { + --fa: "\f359"; +} + +.fa-arrow-alt-circle-left { + --fa: "\f359"; +} + +.fa-circle-right { + --fa: "\f35a"; +} + +.fa-arrow-alt-circle-right { + --fa: "\f35a"; +} + +.fa-circle-up { + --fa: "\f35b"; +} + +.fa-arrow-alt-circle-up { + --fa: "\f35b"; +} + +.fa-up-right-from-square { + --fa: "\f35d"; +} + +.fa-external-link-alt { + --fa: "\f35d"; +} + +.fa-square-up-right { + --fa: "\f360"; +} + +.fa-external-link-square-alt { + --fa: "\f360"; +} + +.fa-right-left { + --fa: "\f362"; +} + +.fa-exchange-alt { + --fa: "\f362"; +} + +.fa-repeat { + --fa: "\f363"; +} + +.fa-code-commit { + --fa: "\f386"; +} + +.fa-code-merge { + --fa: "\f387"; +} + +.fa-desktop { + --fa: "\f390"; +} + +.fa-desktop-alt { + --fa: "\f390"; +} + +.fa-gem { + --fa: "\f3a5"; +} + +.fa-turn-down { + --fa: "\f3be"; +} + +.fa-level-down-alt { + --fa: "\f3be"; +} + +.fa-turn-up { + --fa: "\f3bf"; +} + +.fa-level-up-alt { + --fa: "\f3bf"; +} + +.fa-lock-open { + --fa: "\f3c1"; +} + +.fa-location-dot { + --fa: "\f3c5"; +} + +.fa-map-marker-alt { + --fa: "\f3c5"; +} + +.fa-microphone-lines { + --fa: "\f3c9"; +} + +.fa-microphone-alt { + --fa: "\f3c9"; +} + +.fa-mobile-screen-button { + --fa: "\f3cd"; +} + +.fa-mobile-alt { + --fa: "\f3cd"; +} + +.fa-mobile { + --fa: "\f3ce"; +} + +.fa-mobile-android { + --fa: "\f3ce"; +} + +.fa-mobile-phone { + --fa: "\f3ce"; +} + +.fa-mobile-screen { + --fa: "\f3cf"; +} + +.fa-mobile-android-alt { + --fa: "\f3cf"; +} + +.fa-money-bill-1 { + --fa: "\f3d1"; +} + +.fa-money-bill-alt { + --fa: "\f3d1"; +} + +.fa-phone-slash { + --fa: "\f3dd"; +} + +.fa-image-portrait { + --fa: "\f3e0"; +} + +.fa-portrait { + --fa: "\f3e0"; +} + +.fa-reply { + --fa: "\f3e5"; +} + +.fa-mail-reply { + --fa: "\f3e5"; +} + +.fa-shield-halved { + --fa: "\f3ed"; +} + +.fa-shield-alt { + --fa: "\f3ed"; +} + +.fa-tablet-screen-button { + --fa: "\f3fa"; +} + +.fa-tablet-alt { + --fa: "\f3fa"; +} + +.fa-tablet { + --fa: "\f3fb"; +} + +.fa-tablet-android { + --fa: "\f3fb"; +} + +.fa-ticket-simple { + --fa: "\f3ff"; +} + +.fa-ticket-alt { + --fa: "\f3ff"; +} + +.fa-rectangle-xmark { + --fa: "\f410"; +} + +.fa-rectangle-times { + --fa: "\f410"; +} + +.fa-times-rectangle { + --fa: "\f410"; +} + +.fa-window-close { + --fa: "\f410"; +} + +.fa-down-left-and-up-right-to-center { + --fa: "\f422"; +} + +.fa-compress-alt { + --fa: "\f422"; +} + +.fa-up-right-and-down-left-from-center { + --fa: "\f424"; +} + +.fa-expand-alt { + --fa: "\f424"; +} + +.fa-baseball-bat-ball { + --fa: "\f432"; +} + +.fa-baseball { + --fa: "\f433"; +} + +.fa-baseball-ball { + --fa: "\f433"; +} + +.fa-basketball { + --fa: "\f434"; +} + +.fa-basketball-ball { + --fa: "\f434"; +} + +.fa-bowling-ball { + --fa: "\f436"; +} + +.fa-chess { + --fa: "\f439"; +} + +.fa-chess-bishop { + --fa: "\f43a"; +} + +.fa-chess-board { + --fa: "\f43c"; +} + +.fa-chess-king { + --fa: "\f43f"; +} + +.fa-chess-knight { + --fa: "\f441"; +} + +.fa-chess-pawn { + --fa: "\f443"; +} + +.fa-chess-queen { + --fa: "\f445"; +} + +.fa-chess-rook { + --fa: "\f447"; +} + +.fa-dumbbell { + --fa: "\f44b"; +} + +.fa-football { + --fa: "\f44e"; +} + +.fa-football-ball { + --fa: "\f44e"; +} + +.fa-golf-ball-tee { + --fa: "\f450"; +} + +.fa-golf-ball { + --fa: "\f450"; +} + +.fa-hockey-puck { + --fa: "\f453"; +} + +.fa-broom-ball { + --fa: "\f458"; +} + +.fa-quidditch { + --fa: "\f458"; +} + +.fa-quidditch-broom-ball { + --fa: "\f458"; +} + +.fa-square-full { + --fa: "\f45c"; +} + +.fa-table-tennis-paddle-ball { + --fa: "\f45d"; +} + +.fa-ping-pong-paddle-ball { + --fa: "\f45d"; +} + +.fa-table-tennis { + --fa: "\f45d"; +} + +.fa-volleyball { + --fa: "\f45f"; +} + +.fa-volleyball-ball { + --fa: "\f45f"; +} + +.fa-hand-dots { + --fa: "\f461"; +} + +.fa-allergies { + --fa: "\f461"; +} + +.fa-bandage { + --fa: "\f462"; +} + +.fa-band-aid { + --fa: "\f462"; +} + +.fa-box { + --fa: "\f466"; +} + +.fa-boxes-stacked { + --fa: "\f468"; +} + +.fa-boxes { + --fa: "\f468"; +} + +.fa-boxes-alt { + --fa: "\f468"; +} + +.fa-briefcase-medical { + --fa: "\f469"; +} + +.fa-fire-flame-simple { + --fa: "\f46a"; +} + +.fa-burn { + --fa: "\f46a"; +} + +.fa-capsules { + --fa: "\f46b"; +} + +.fa-clipboard-check { + --fa: "\f46c"; +} + +.fa-clipboard-list { + --fa: "\f46d"; +} + +.fa-person-dots-from-line { + --fa: "\f470"; +} + +.fa-diagnoses { + --fa: "\f470"; +} + +.fa-dna { + --fa: "\f471"; +} + +.fa-dolly { + --fa: "\f472"; +} + +.fa-dolly-box { + --fa: "\f472"; +} + +.fa-cart-flatbed { + --fa: "\f474"; +} + +.fa-dolly-flatbed { + --fa: "\f474"; +} + +.fa-file-medical { + --fa: "\f477"; +} + +.fa-file-waveform { + --fa: "\f478"; +} + +.fa-file-medical-alt { + --fa: "\f478"; +} + +.fa-kit-medical { + --fa: "\f479"; +} + +.fa-first-aid { + --fa: "\f479"; +} + +.fa-circle-h { + --fa: "\f47e"; +} + +.fa-hospital-symbol { + --fa: "\f47e"; +} + +.fa-id-card-clip { + --fa: "\f47f"; +} + +.fa-id-card-alt { + --fa: "\f47f"; +} + +.fa-notes-medical { + --fa: "\f481"; +} + +.fa-pallet { + --fa: "\f482"; +} + +.fa-pills { + --fa: "\f484"; +} + +.fa-prescription-bottle { + --fa: "\f485"; +} + +.fa-prescription-bottle-medical { + --fa: "\f486"; +} + +.fa-prescription-bottle-alt { + --fa: "\f486"; +} + +.fa-bed-pulse { + --fa: "\f487"; +} + +.fa-procedures { + --fa: "\f487"; +} + +.fa-truck-fast { + --fa: "\f48b"; +} + +.fa-shipping-fast { + --fa: "\f48b"; +} + +.fa-smoking { + --fa: "\f48d"; +} + +.fa-syringe { + --fa: "\f48e"; +} + +.fa-tablets { + --fa: "\f490"; +} + +.fa-thermometer { + --fa: "\f491"; +} + +.fa-vial { + --fa: "\f492"; +} + +.fa-vials { + --fa: "\f493"; +} + +.fa-warehouse { + --fa: "\f494"; +} + +.fa-weight-scale { + --fa: "\f496"; +} + +.fa-weight { + --fa: "\f496"; +} + +.fa-x-ray { + --fa: "\f497"; +} + +.fa-box-open { + --fa: "\f49e"; +} + +.fa-comment-dots { + --fa: "\f4ad"; +} + +.fa-commenting { + --fa: "\f4ad"; +} + +.fa-comment-slash { + --fa: "\f4b3"; +} + +.fa-couch { + --fa: "\f4b8"; +} + +.fa-circle-dollar-to-slot { + --fa: "\f4b9"; +} + +.fa-donate { + --fa: "\f4b9"; +} + +.fa-dove { + --fa: "\f4ba"; +} + +.fa-hand-holding { + --fa: "\f4bd"; +} + +.fa-hand-holding-heart { + --fa: "\f4be"; +} + +.fa-hand-holding-dollar { + --fa: "\f4c0"; +} + +.fa-hand-holding-usd { + --fa: "\f4c0"; +} + +.fa-hand-holding-droplet { + --fa: "\f4c1"; +} + +.fa-hand-holding-water { + --fa: "\f4c1"; +} + +.fa-hands-holding { + --fa: "\f4c2"; +} + +.fa-handshake-angle { + --fa: "\f4c4"; +} + +.fa-hands-helping { + --fa: "\f4c4"; +} + +.fa-parachute-box { + --fa: "\f4cd"; +} + +.fa-people-carry-box { + --fa: "\f4ce"; +} + +.fa-people-carry { + --fa: "\f4ce"; +} + +.fa-piggy-bank { + --fa: "\f4d3"; +} + +.fa-ribbon { + --fa: "\f4d6"; +} + +.fa-route { + --fa: "\f4d7"; +} + +.fa-seedling { + --fa: "\f4d8"; +} + +.fa-sprout { + --fa: "\f4d8"; +} + +.fa-sign-hanging { + --fa: "\f4d9"; +} + +.fa-sign { + --fa: "\f4d9"; +} + +.fa-face-smile-wink { + --fa: "\f4da"; +} + +.fa-smile-wink { + --fa: "\f4da"; +} + +.fa-tape { + --fa: "\f4db"; +} + +.fa-truck-ramp-box { + --fa: "\f4de"; +} + +.fa-truck-loading { + --fa: "\f4de"; +} + +.fa-truck-moving { + --fa: "\f4df"; +} + +.fa-video-slash { + --fa: "\f4e2"; +} + +.fa-wine-glass { + --fa: "\f4e3"; +} + +.fa-user-astronaut { + --fa: "\f4fb"; +} + +.fa-user-check { + --fa: "\f4fc"; +} + +.fa-user-clock { + --fa: "\f4fd"; +} + +.fa-user-gear { + --fa: "\f4fe"; +} + +.fa-user-cog { + --fa: "\f4fe"; +} + +.fa-user-pen { + --fa: "\f4ff"; +} + +.fa-user-edit { + --fa: "\f4ff"; +} + +.fa-user-group { + --fa: "\f500"; +} + +.fa-user-friends { + --fa: "\f500"; +} + +.fa-user-graduate { + --fa: "\f501"; +} + +.fa-user-lock { + --fa: "\f502"; +} + +.fa-user-minus { + --fa: "\f503"; +} + +.fa-user-ninja { + --fa: "\f504"; +} + +.fa-user-shield { + --fa: "\f505"; +} + +.fa-user-slash { + --fa: "\f506"; +} + +.fa-user-alt-slash { + --fa: "\f506"; +} + +.fa-user-large-slash { + --fa: "\f506"; +} + +.fa-user-tag { + --fa: "\f507"; +} + +.fa-user-tie { + --fa: "\f508"; +} + +.fa-users-gear { + --fa: "\f509"; +} + +.fa-users-cog { + --fa: "\f509"; +} + +.fa-scale-unbalanced { + --fa: "\f515"; +} + +.fa-balance-scale-left { + --fa: "\f515"; +} + +.fa-scale-unbalanced-flip { + --fa: "\f516"; +} + +.fa-balance-scale-right { + --fa: "\f516"; +} + +.fa-blender { + --fa: "\f517"; +} + +.fa-book-open { + --fa: "\f518"; +} + +.fa-tower-broadcast { + --fa: "\f519"; +} + +.fa-broadcast-tower { + --fa: "\f519"; +} + +.fa-broom { + --fa: "\f51a"; +} + +.fa-chalkboard { + --fa: "\f51b"; +} + +.fa-blackboard { + --fa: "\f51b"; +} + +.fa-chalkboard-user { + --fa: "\f51c"; +} + +.fa-chalkboard-teacher { + --fa: "\f51c"; +} + +.fa-church { + --fa: "\f51d"; +} + +.fa-coins { + --fa: "\f51e"; +} + +.fa-compact-disc { + --fa: "\f51f"; +} + +.fa-crow { + --fa: "\f520"; +} + +.fa-crown { + --fa: "\f521"; +} + +.fa-dice { + --fa: "\f522"; +} + +.fa-dice-five { + --fa: "\f523"; +} + +.fa-dice-four { + --fa: "\f524"; +} + +.fa-dice-one { + --fa: "\f525"; +} + +.fa-dice-six { + --fa: "\f526"; +} + +.fa-dice-three { + --fa: "\f527"; +} + +.fa-dice-two { + --fa: "\f528"; +} + +.fa-divide { + --fa: "\f529"; +} + +.fa-door-closed { + --fa: "\f52a"; +} + +.fa-door-open { + --fa: "\f52b"; +} + +.fa-feather { + --fa: "\f52d"; +} + +.fa-frog { + --fa: "\f52e"; +} + +.fa-gas-pump { + --fa: "\f52f"; +} + +.fa-glasses { + --fa: "\f530"; +} + +.fa-greater-than-equal { + --fa: "\f532"; +} + +.fa-helicopter { + --fa: "\f533"; +} + +.fa-infinity { + --fa: "\f534"; +} + +.fa-kiwi-bird { + --fa: "\f535"; +} + +.fa-less-than-equal { + --fa: "\f537"; +} + +.fa-memory { + --fa: "\f538"; +} + +.fa-microphone-lines-slash { + --fa: "\f539"; +} + +.fa-microphone-alt-slash { + --fa: "\f539"; +} + +.fa-money-bill-wave { + --fa: "\f53a"; +} + +.fa-money-bill-1-wave { + --fa: "\f53b"; +} + +.fa-money-bill-wave-alt { + --fa: "\f53b"; +} + +.fa-money-check { + --fa: "\f53c"; +} + +.fa-money-check-dollar { + --fa: "\f53d"; +} + +.fa-money-check-alt { + --fa: "\f53d"; +} + +.fa-not-equal { + --fa: "\f53e"; +} + +.fa-palette { + --fa: "\f53f"; +} + +.fa-square-parking { + --fa: "\f540"; +} + +.fa-parking { + --fa: "\f540"; +} + +.fa-diagram-project { + --fa: "\f542"; +} + +.fa-project-diagram { + --fa: "\f542"; +} + +.fa-receipt { + --fa: "\f543"; +} + +.fa-robot { + --fa: "\f544"; +} + +.fa-ruler { + --fa: "\f545"; +} + +.fa-ruler-combined { + --fa: "\f546"; +} + +.fa-ruler-horizontal { + --fa: "\f547"; +} + +.fa-ruler-vertical { + --fa: "\f548"; +} + +.fa-school { + --fa: "\f549"; +} + +.fa-screwdriver { + --fa: "\f54a"; +} + +.fa-shoe-prints { + --fa: "\f54b"; +} + +.fa-skull { + --fa: "\f54c"; +} + +.fa-ban-smoking { + --fa: "\f54d"; +} + +.fa-smoking-ban { + --fa: "\f54d"; +} + +.fa-store { + --fa: "\f54e"; +} + +.fa-shop { + --fa: "\f54f"; +} + +.fa-store-alt { + --fa: "\f54f"; +} + +.fa-bars-staggered { + --fa: "\f550"; +} + +.fa-reorder { + --fa: "\f550"; +} + +.fa-stream { + --fa: "\f550"; +} + +.fa-stroopwafel { + --fa: "\f551"; +} + +.fa-toolbox { + --fa: "\f552"; +} + +.fa-shirt { + --fa: "\f553"; +} + +.fa-t-shirt { + --fa: "\f553"; +} + +.fa-tshirt { + --fa: "\f553"; +} + +.fa-person-walking { + --fa: "\f554"; +} + +.fa-walking { + --fa: "\f554"; +} + +.fa-wallet { + --fa: "\f555"; +} + +.fa-face-angry { + --fa: "\f556"; +} + +.fa-angry { + --fa: "\f556"; +} + +.fa-archway { + --fa: "\f557"; +} + +.fa-book-atlas { + --fa: "\f558"; +} + +.fa-atlas { + --fa: "\f558"; +} + +.fa-award { + --fa: "\f559"; +} + +.fa-delete-left { + --fa: "\f55a"; +} + +.fa-backspace { + --fa: "\f55a"; +} + +.fa-bezier-curve { + --fa: "\f55b"; +} + +.fa-bong { + --fa: "\f55c"; +} + +.fa-brush { + --fa: "\f55d"; +} + +.fa-bus-simple { + --fa: "\f55e"; +} + +.fa-bus-alt { + --fa: "\f55e"; +} + +.fa-cannabis { + --fa: "\f55f"; +} + +.fa-check-double { + --fa: "\f560"; +} + +.fa-martini-glass-citrus { + --fa: "\f561"; +} + +.fa-cocktail { + --fa: "\f561"; +} + +.fa-bell-concierge { + --fa: "\f562"; +} + +.fa-concierge-bell { + --fa: "\f562"; +} + +.fa-cookie { + --fa: "\f563"; +} + +.fa-cookie-bite { + --fa: "\f564"; +} + +.fa-crop-simple { + --fa: "\f565"; +} + +.fa-crop-alt { + --fa: "\f565"; +} + +.fa-tachograph-digital { + --fa: "\f566"; +} + +.fa-digital-tachograph { + --fa: "\f566"; +} + +.fa-face-dizzy { + --fa: "\f567"; +} + +.fa-dizzy { + --fa: "\f567"; +} + +.fa-compass-drafting { + --fa: "\f568"; +} + +.fa-drafting-compass { + --fa: "\f568"; +} + +.fa-drum { + --fa: "\f569"; +} + +.fa-drum-steelpan { + --fa: "\f56a"; +} + +.fa-feather-pointed { + --fa: "\f56b"; +} + +.fa-feather-alt { + --fa: "\f56b"; +} + +.fa-file-contract { + --fa: "\f56c"; +} + +.fa-file-arrow-down { + --fa: "\f56d"; +} + +.fa-file-download { + --fa: "\f56d"; +} + +.fa-file-export { + --fa: "\f56e"; +} + +.fa-arrow-right-from-file { + --fa: "\f56e"; +} + +.fa-file-import { + --fa: "\f56f"; +} + +.fa-arrow-right-to-file { + --fa: "\f56f"; +} + +.fa-file-invoice { + --fa: "\f570"; +} + +.fa-file-invoice-dollar { + --fa: "\f571"; +} + +.fa-file-prescription { + --fa: "\f572"; +} + +.fa-file-signature { + --fa: "\f573"; +} + +.fa-file-arrow-up { + --fa: "\f574"; +} + +.fa-file-upload { + --fa: "\f574"; +} + +.fa-fill { + --fa: "\f575"; +} + +.fa-fill-drip { + --fa: "\f576"; +} + +.fa-fingerprint { + --fa: "\f577"; +} + +.fa-fish { + --fa: "\f578"; +} + +.fa-face-flushed { + --fa: "\f579"; +} + +.fa-flushed { + --fa: "\f579"; +} + +.fa-face-frown-open { + --fa: "\f57a"; +} + +.fa-frown-open { + --fa: "\f57a"; +} + +.fa-martini-glass { + --fa: "\f57b"; +} + +.fa-glass-martini-alt { + --fa: "\f57b"; +} + +.fa-earth-africa { + --fa: "\f57c"; +} + +.fa-globe-africa { + --fa: "\f57c"; +} + +.fa-earth-americas { + --fa: "\f57d"; +} + +.fa-earth { + --fa: "\f57d"; +} + +.fa-earth-america { + --fa: "\f57d"; +} + +.fa-globe-americas { + --fa: "\f57d"; +} + +.fa-earth-asia { + --fa: "\f57e"; +} + +.fa-globe-asia { + --fa: "\f57e"; +} + +.fa-face-grimace { + --fa: "\f57f"; +} + +.fa-grimace { + --fa: "\f57f"; +} + +.fa-face-grin { + --fa: "\f580"; +} + +.fa-grin { + --fa: "\f580"; +} + +.fa-face-grin-wide { + --fa: "\f581"; +} + +.fa-grin-alt { + --fa: "\f581"; +} + +.fa-face-grin-beam { + --fa: "\f582"; +} + +.fa-grin-beam { + --fa: "\f582"; +} + +.fa-face-grin-beam-sweat { + --fa: "\f583"; +} + +.fa-grin-beam-sweat { + --fa: "\f583"; +} + +.fa-face-grin-hearts { + --fa: "\f584"; +} + +.fa-grin-hearts { + --fa: "\f584"; +} + +.fa-face-grin-squint { + --fa: "\f585"; +} + +.fa-grin-squint { + --fa: "\f585"; +} + +.fa-face-grin-squint-tears { + --fa: "\f586"; +} + +.fa-grin-squint-tears { + --fa: "\f586"; +} + +.fa-face-grin-stars { + --fa: "\f587"; +} + +.fa-grin-stars { + --fa: "\f587"; +} + +.fa-face-grin-tears { + --fa: "\f588"; +} + +.fa-grin-tears { + --fa: "\f588"; +} + +.fa-face-grin-tongue { + --fa: "\f589"; +} + +.fa-grin-tongue { + --fa: "\f589"; +} + +.fa-face-grin-tongue-squint { + --fa: "\f58a"; +} + +.fa-grin-tongue-squint { + --fa: "\f58a"; +} + +.fa-face-grin-tongue-wink { + --fa: "\f58b"; +} + +.fa-grin-tongue-wink { + --fa: "\f58b"; +} + +.fa-face-grin-wink { + --fa: "\f58c"; +} + +.fa-grin-wink { + --fa: "\f58c"; +} + +.fa-grip { + --fa: "\f58d"; +} + +.fa-grid-horizontal { + --fa: "\f58d"; +} + +.fa-grip-horizontal { + --fa: "\f58d"; +} + +.fa-grip-vertical { + --fa: "\f58e"; +} + +.fa-grid-vertical { + --fa: "\f58e"; +} + +.fa-headset { + --fa: "\f590"; +} + +.fa-highlighter { + --fa: "\f591"; +} + +.fa-hot-tub-person { + --fa: "\f593"; +} + +.fa-hot-tub { + --fa: "\f593"; +} + +.fa-hotel { + --fa: "\f594"; +} + +.fa-joint { + --fa: "\f595"; +} + +.fa-face-kiss { + --fa: "\f596"; +} + +.fa-kiss { + --fa: "\f596"; +} + +.fa-face-kiss-beam { + --fa: "\f597"; +} + +.fa-kiss-beam { + --fa: "\f597"; +} + +.fa-face-kiss-wink-heart { + --fa: "\f598"; +} + +.fa-kiss-wink-heart { + --fa: "\f598"; +} + +.fa-face-laugh { + --fa: "\f599"; +} + +.fa-laugh { + --fa: "\f599"; +} + +.fa-face-laugh-beam { + --fa: "\f59a"; +} + +.fa-laugh-beam { + --fa: "\f59a"; +} + +.fa-face-laugh-squint { + --fa: "\f59b"; +} + +.fa-laugh-squint { + --fa: "\f59b"; +} + +.fa-face-laugh-wink { + --fa: "\f59c"; +} + +.fa-laugh-wink { + --fa: "\f59c"; +} + +.fa-cart-flatbed-suitcase { + --fa: "\f59d"; +} + +.fa-luggage-cart { + --fa: "\f59d"; +} + +.fa-map-location { + --fa: "\f59f"; +} + +.fa-map-marked { + --fa: "\f59f"; +} + +.fa-map-location-dot { + --fa: "\f5a0"; +} + +.fa-map-marked-alt { + --fa: "\f5a0"; +} + +.fa-marker { + --fa: "\f5a1"; +} + +.fa-medal { + --fa: "\f5a2"; +} + +.fa-face-meh-blank { + --fa: "\f5a4"; +} + +.fa-meh-blank { + --fa: "\f5a4"; +} + +.fa-face-rolling-eyes { + --fa: "\f5a5"; +} + +.fa-meh-rolling-eyes { + --fa: "\f5a5"; +} + +.fa-monument { + --fa: "\f5a6"; +} + +.fa-mortar-pestle { + --fa: "\f5a7"; +} + +.fa-paint-roller { + --fa: "\f5aa"; +} + +.fa-passport { + --fa: "\f5ab"; +} + +.fa-pen-fancy { + --fa: "\f5ac"; +} + +.fa-pen-nib { + --fa: "\f5ad"; +} + +.fa-pen-ruler { + --fa: "\f5ae"; +} + +.fa-pencil-ruler { + --fa: "\f5ae"; +} + +.fa-plane-arrival { + --fa: "\f5af"; +} + +.fa-plane-departure { + --fa: "\f5b0"; +} + +.fa-prescription { + --fa: "\f5b1"; +} + +.fa-face-sad-cry { + --fa: "\f5b3"; +} + +.fa-sad-cry { + --fa: "\f5b3"; +} + +.fa-face-sad-tear { + --fa: "\f5b4"; +} + +.fa-sad-tear { + --fa: "\f5b4"; +} + +.fa-van-shuttle { + --fa: "\f5b6"; +} + +.fa-shuttle-van { + --fa: "\f5b6"; +} + +.fa-signature { + --fa: "\f5b7"; +} + +.fa-face-smile-beam { + --fa: "\f5b8"; +} + +.fa-smile-beam { + --fa: "\f5b8"; +} + +.fa-solar-panel { + --fa: "\f5ba"; +} + +.fa-spa { + --fa: "\f5bb"; +} + +.fa-splotch { + --fa: "\f5bc"; +} + +.fa-spray-can { + --fa: "\f5bd"; +} + +.fa-stamp { + --fa: "\f5bf"; +} + +.fa-star-half-stroke { + --fa: "\f5c0"; +} + +.fa-star-half-alt { + --fa: "\f5c0"; +} + +.fa-suitcase-rolling { + --fa: "\f5c1"; +} + +.fa-face-surprise { + --fa: "\f5c2"; +} + +.fa-surprise { + --fa: "\f5c2"; +} + +.fa-swatchbook { + --fa: "\f5c3"; +} + +.fa-person-swimming { + --fa: "\f5c4"; +} + +.fa-swimmer { + --fa: "\f5c4"; +} + +.fa-water-ladder { + --fa: "\f5c5"; +} + +.fa-ladder-water { + --fa: "\f5c5"; +} + +.fa-swimming-pool { + --fa: "\f5c5"; +} + +.fa-droplet-slash { + --fa: "\f5c7"; +} + +.fa-tint-slash { + --fa: "\f5c7"; +} + +.fa-face-tired { + --fa: "\f5c8"; +} + +.fa-tired { + --fa: "\f5c8"; +} + +.fa-tooth { + --fa: "\f5c9"; +} + +.fa-umbrella-beach { + --fa: "\f5ca"; +} + +.fa-weight-hanging { + --fa: "\f5cd"; +} + +.fa-wine-glass-empty { + --fa: "\f5ce"; +} + +.fa-wine-glass-alt { + --fa: "\f5ce"; +} + +.fa-spray-can-sparkles { + --fa: "\f5d0"; +} + +.fa-air-freshener { + --fa: "\f5d0"; +} + +.fa-apple-whole { + --fa: "\f5d1"; +} + +.fa-apple-alt { + --fa: "\f5d1"; +} + +.fa-atom { + --fa: "\f5d2"; +} + +.fa-bone { + --fa: "\f5d7"; +} + +.fa-book-open-reader { + --fa: "\f5da"; +} + +.fa-book-reader { + --fa: "\f5da"; +} + +.fa-brain { + --fa: "\f5dc"; +} + +.fa-car-rear { + --fa: "\f5de"; +} + +.fa-car-alt { + --fa: "\f5de"; +} + +.fa-car-battery { + --fa: "\f5df"; +} + +.fa-battery-car { + --fa: "\f5df"; +} + +.fa-car-burst { + --fa: "\f5e1"; +} + +.fa-car-crash { + --fa: "\f5e1"; +} + +.fa-car-side { + --fa: "\f5e4"; +} + +.fa-charging-station { + --fa: "\f5e7"; +} + +.fa-diamond-turn-right { + --fa: "\f5eb"; +} + +.fa-directions { + --fa: "\f5eb"; +} + +.fa-draw-polygon { + --fa: "\f5ee"; +} + +.fa-vector-polygon { + --fa: "\f5ee"; +} + +.fa-laptop-code { + --fa: "\f5fc"; +} + +.fa-layer-group { + --fa: "\f5fd"; +} + +.fa-location-crosshairs { + --fa: "\f601"; +} + +.fa-location { + --fa: "\f601"; +} + +.fa-lungs { + --fa: "\f604"; +} + +.fa-microscope { + --fa: "\f610"; +} + +.fa-oil-can { + --fa: "\f613"; +} + +.fa-poop { + --fa: "\f619"; +} + +.fa-shapes { + --fa: "\f61f"; +} + +.fa-triangle-circle-square { + --fa: "\f61f"; +} + +.fa-star-of-life { + --fa: "\f621"; +} + +.fa-gauge { + --fa: "\f624"; +} + +.fa-dashboard { + --fa: "\f624"; +} + +.fa-gauge-med { + --fa: "\f624"; +} + +.fa-tachometer-alt-average { + --fa: "\f624"; +} + +.fa-gauge-high { + --fa: "\f625"; +} + +.fa-tachometer-alt { + --fa: "\f625"; +} + +.fa-tachometer-alt-fast { + --fa: "\f625"; +} + +.fa-gauge-simple { + --fa: "\f629"; +} + +.fa-gauge-simple-med { + --fa: "\f629"; +} + +.fa-tachometer-average { + --fa: "\f629"; +} + +.fa-gauge-simple-high { + --fa: "\f62a"; +} + +.fa-tachometer { + --fa: "\f62a"; +} + +.fa-tachometer-fast { + --fa: "\f62a"; +} + +.fa-teeth { + --fa: "\f62e"; +} + +.fa-teeth-open { + --fa: "\f62f"; +} + +.fa-masks-theater { + --fa: "\f630"; +} + +.fa-theater-masks { + --fa: "\f630"; +} + +.fa-traffic-light { + --fa: "\f637"; +} + +.fa-truck-monster { + --fa: "\f63b"; +} + +.fa-truck-pickup { + --fa: "\f63c"; +} + +.fa-rectangle-ad { + --fa: "\f641"; +} + +.fa-ad { + --fa: "\f641"; +} + +.fa-ankh { + --fa: "\f644"; +} + +.fa-book-bible { + --fa: "\f647"; +} + +.fa-bible { + --fa: "\f647"; +} + +.fa-business-time { + --fa: "\f64a"; +} + +.fa-briefcase-clock { + --fa: "\f64a"; +} + +.fa-city { + --fa: "\f64f"; +} + +.fa-comment-dollar { + --fa: "\f651"; +} + +.fa-comments-dollar { + --fa: "\f653"; +} + +.fa-cross { + --fa: "\f654"; +} + +.fa-dharmachakra { + --fa: "\f655"; +} + +.fa-envelope-open-text { + --fa: "\f658"; +} + +.fa-folder-minus { + --fa: "\f65d"; +} + +.fa-folder-plus { + --fa: "\f65e"; +} + +.fa-filter-circle-dollar { + --fa: "\f662"; +} + +.fa-funnel-dollar { + --fa: "\f662"; +} + +.fa-gopuram { + --fa: "\f664"; +} + +.fa-hamsa { + --fa: "\f665"; +} + +.fa-bahai { + --fa: "\f666"; +} + +.fa-haykal { + --fa: "\f666"; +} + +.fa-jedi { + --fa: "\f669"; +} + +.fa-book-journal-whills { + --fa: "\f66a"; +} + +.fa-journal-whills { + --fa: "\f66a"; +} + +.fa-kaaba { + --fa: "\f66b"; +} + +.fa-khanda { + --fa: "\f66d"; +} + +.fa-landmark { + --fa: "\f66f"; +} + +.fa-envelopes-bulk { + --fa: "\f674"; +} + +.fa-mail-bulk { + --fa: "\f674"; +} + +.fa-menorah { + --fa: "\f676"; +} + +.fa-mosque { + --fa: "\f678"; +} + +.fa-om { + --fa: "\f679"; +} + +.fa-spaghetti-monster-flying { + --fa: "\f67b"; +} + +.fa-pastafarianism { + --fa: "\f67b"; +} + +.fa-peace { + --fa: "\f67c"; +} + +.fa-place-of-worship { + --fa: "\f67f"; +} + +.fa-square-poll-vertical { + --fa: "\f681"; +} + +.fa-poll { + --fa: "\f681"; +} + +.fa-square-poll-horizontal { + --fa: "\f682"; +} + +.fa-poll-h { + --fa: "\f682"; +} + +.fa-person-praying { + --fa: "\f683"; +} + +.fa-pray { + --fa: "\f683"; +} + +.fa-hands-praying { + --fa: "\f684"; +} + +.fa-praying-hands { + --fa: "\f684"; +} + +.fa-book-quran { + --fa: "\f687"; +} + +.fa-quran { + --fa: "\f687"; +} + +.fa-magnifying-glass-dollar { + --fa: "\f688"; +} + +.fa-search-dollar { + --fa: "\f688"; +} + +.fa-magnifying-glass-location { + --fa: "\f689"; +} + +.fa-search-location { + --fa: "\f689"; +} + +.fa-socks { + --fa: "\f696"; +} + +.fa-square-root-variable { + --fa: "\f698"; +} + +.fa-square-root-alt { + --fa: "\f698"; +} + +.fa-star-and-crescent { + --fa: "\f699"; +} + +.fa-star-of-david { + --fa: "\f69a"; +} + +.fa-synagogue { + --fa: "\f69b"; +} + +.fa-scroll-torah { + --fa: "\f6a0"; +} + +.fa-torah { + --fa: "\f6a0"; +} + +.fa-torii-gate { + --fa: "\f6a1"; +} + +.fa-vihara { + --fa: "\f6a7"; +} + +.fa-volume { + --fa: "\f6a8"; +} + +.fa-volume-medium { + --fa: "\f6a8"; +} + +.fa-volume-xmark { + --fa: "\f6a9"; +} + +.fa-volume-mute { + --fa: "\f6a9"; +} + +.fa-volume-times { + --fa: "\f6a9"; +} + +.fa-yin-yang { + --fa: "\f6ad"; +} + +.fa-blender-phone { + --fa: "\f6b6"; +} + +.fa-book-skull { + --fa: "\f6b7"; +} + +.fa-book-dead { + --fa: "\f6b7"; +} + +.fa-campground { + --fa: "\f6bb"; +} + +.fa-cat { + --fa: "\f6be"; +} + +.fa-chair { + --fa: "\f6c0"; +} + +.fa-cloud-moon { + --fa: "\f6c3"; +} + +.fa-cloud-sun { + --fa: "\f6c4"; +} + +.fa-cow { + --fa: "\f6c8"; +} + +.fa-dice-d20 { + --fa: "\f6cf"; +} + +.fa-dice-d6 { + --fa: "\f6d1"; +} + +.fa-dog { + --fa: "\f6d3"; +} + +.fa-dragon { + --fa: "\f6d5"; +} + +.fa-drumstick-bite { + --fa: "\f6d7"; +} + +.fa-dungeon { + --fa: "\f6d9"; +} + +.fa-file-csv { + --fa: "\f6dd"; +} + +.fa-hand-fist { + --fa: "\f6de"; +} + +.fa-fist-raised { + --fa: "\f6de"; +} + +.fa-ghost { + --fa: "\f6e2"; +} + +.fa-hammer { + --fa: "\f6e3"; +} + +.fa-hanukiah { + --fa: "\f6e6"; +} + +.fa-hat-wizard { + --fa: "\f6e8"; +} + +.fa-person-hiking { + --fa: "\f6ec"; +} + +.fa-hiking { + --fa: "\f6ec"; +} + +.fa-hippo { + --fa: "\f6ed"; +} + +.fa-horse { + --fa: "\f6f0"; +} + +.fa-house-chimney-crack { + --fa: "\f6f1"; +} + +.fa-house-damage { + --fa: "\f6f1"; +} + +.fa-hryvnia-sign { + --fa: "\f6f2"; +} + +.fa-hryvnia { + --fa: "\f6f2"; +} + +.fa-mask { + --fa: "\f6fa"; +} + +.fa-mountain { + --fa: "\f6fc"; +} + +.fa-network-wired { + --fa: "\f6ff"; +} + +.fa-otter { + --fa: "\f700"; +} + +.fa-ring { + --fa: "\f70b"; +} + +.fa-person-running { + --fa: "\f70c"; +} + +.fa-running { + --fa: "\f70c"; +} + +.fa-scroll { + --fa: "\f70e"; +} + +.fa-skull-crossbones { + --fa: "\f714"; +} + +.fa-slash { + --fa: "\f715"; +} + +.fa-spider { + --fa: "\f717"; +} + +.fa-toilet-paper { + --fa: "\f71e"; +} + +.fa-toilet-paper-alt { + --fa: "\f71e"; +} + +.fa-toilet-paper-blank { + --fa: "\f71e"; +} + +.fa-tractor { + --fa: "\f722"; +} + +.fa-user-injured { + --fa: "\f728"; +} + +.fa-vr-cardboard { + --fa: "\f729"; +} + +.fa-wand-sparkles { + --fa: "\f72b"; +} + +.fa-wind { + --fa: "\f72e"; +} + +.fa-wine-bottle { + --fa: "\f72f"; +} + +.fa-cloud-meatball { + --fa: "\f73b"; +} + +.fa-cloud-moon-rain { + --fa: "\f73c"; +} + +.fa-cloud-rain { + --fa: "\f73d"; +} + +.fa-cloud-showers-heavy { + --fa: "\f740"; +} + +.fa-cloud-sun-rain { + --fa: "\f743"; +} + +.fa-democrat { + --fa: "\f747"; +} + +.fa-flag-usa { + --fa: "\f74d"; +} + +.fa-hurricane { + --fa: "\f751"; +} + +.fa-landmark-dome { + --fa: "\f752"; +} + +.fa-landmark-alt { + --fa: "\f752"; +} + +.fa-meteor { + --fa: "\f753"; +} + +.fa-person-booth { + --fa: "\f756"; +} + +.fa-poo-storm { + --fa: "\f75a"; +} + +.fa-poo-bolt { + --fa: "\f75a"; +} + +.fa-rainbow { + --fa: "\f75b"; +} + +.fa-republican { + --fa: "\f75e"; +} + +.fa-smog { + --fa: "\f75f"; +} + +.fa-temperature-high { + --fa: "\f769"; +} + +.fa-temperature-low { + --fa: "\f76b"; +} + +.fa-cloud-bolt { + --fa: "\f76c"; +} + +.fa-thunderstorm { + --fa: "\f76c"; +} + +.fa-tornado { + --fa: "\f76f"; +} + +.fa-volcano { + --fa: "\f770"; +} + +.fa-check-to-slot { + --fa: "\f772"; +} + +.fa-vote-yea { + --fa: "\f772"; +} + +.fa-water { + --fa: "\f773"; +} + +.fa-baby { + --fa: "\f77c"; +} + +.fa-baby-carriage { + --fa: "\f77d"; +} + +.fa-carriage-baby { + --fa: "\f77d"; +} + +.fa-biohazard { + --fa: "\f780"; +} + +.fa-blog { + --fa: "\f781"; +} + +.fa-calendar-day { + --fa: "\f783"; +} + +.fa-calendar-week { + --fa: "\f784"; +} + +.fa-candy-cane { + --fa: "\f786"; +} + +.fa-carrot { + --fa: "\f787"; +} + +.fa-cash-register { + --fa: "\f788"; +} + +.fa-minimize { + --fa: "\f78c"; +} + +.fa-compress-arrows-alt { + --fa: "\f78c"; +} + +.fa-dumpster { + --fa: "\f793"; +} + +.fa-dumpster-fire { + --fa: "\f794"; +} + +.fa-ethernet { + --fa: "\f796"; +} + +.fa-gifts { + --fa: "\f79c"; +} + +.fa-champagne-glasses { + --fa: "\f79f"; +} + +.fa-glass-cheers { + --fa: "\f79f"; +} + +.fa-whiskey-glass { + --fa: "\f7a0"; +} + +.fa-glass-whiskey { + --fa: "\f7a0"; +} + +.fa-earth-europe { + --fa: "\f7a2"; +} + +.fa-globe-europe { + --fa: "\f7a2"; +} + +.fa-grip-lines { + --fa: "\f7a4"; +} + +.fa-grip-lines-vertical { + --fa: "\f7a5"; +} + +.fa-guitar { + --fa: "\f7a6"; +} + +.fa-heart-crack { + --fa: "\f7a9"; +} + +.fa-heart-broken { + --fa: "\f7a9"; +} + +.fa-holly-berry { + --fa: "\f7aa"; +} + +.fa-horse-head { + --fa: "\f7ab"; +} + +.fa-icicles { + --fa: "\f7ad"; +} + +.fa-igloo { + --fa: "\f7ae"; +} + +.fa-mitten { + --fa: "\f7b5"; +} + +.fa-mug-hot { + --fa: "\f7b6"; +} + +.fa-radiation { + --fa: "\f7b9"; +} + +.fa-circle-radiation { + --fa: "\f7ba"; +} + +.fa-radiation-alt { + --fa: "\f7ba"; +} + +.fa-restroom { + --fa: "\f7bd"; +} + +.fa-satellite { + --fa: "\f7bf"; +} + +.fa-satellite-dish { + --fa: "\f7c0"; +} + +.fa-sd-card { + --fa: "\f7c2"; +} + +.fa-sim-card { + --fa: "\f7c4"; +} + +.fa-person-skating { + --fa: "\f7c5"; +} + +.fa-skating { + --fa: "\f7c5"; +} + +.fa-person-skiing { + --fa: "\f7c9"; +} + +.fa-skiing { + --fa: "\f7c9"; +} + +.fa-person-skiing-nordic { + --fa: "\f7ca"; +} + +.fa-skiing-nordic { + --fa: "\f7ca"; +} + +.fa-sleigh { + --fa: "\f7cc"; +} + +.fa-comment-sms { + --fa: "\f7cd"; +} + +.fa-sms { + --fa: "\f7cd"; +} + +.fa-person-snowboarding { + --fa: "\f7ce"; +} + +.fa-snowboarding { + --fa: "\f7ce"; +} + +.fa-snowman { + --fa: "\f7d0"; +} + +.fa-snowplow { + --fa: "\f7d2"; +} + +.fa-tenge-sign { + --fa: "\f7d7"; +} + +.fa-tenge { + --fa: "\f7d7"; +} + +.fa-toilet { + --fa: "\f7d8"; +} + +.fa-screwdriver-wrench { + --fa: "\f7d9"; +} + +.fa-tools { + --fa: "\f7d9"; +} + +.fa-cable-car { + --fa: "\f7da"; +} + +.fa-tram { + --fa: "\f7da"; +} + +.fa-fire-flame-curved { + --fa: "\f7e4"; +} + +.fa-fire-alt { + --fa: "\f7e4"; +} + +.fa-bacon { + --fa: "\f7e5"; +} + +.fa-book-medical { + --fa: "\f7e6"; +} + +.fa-bread-slice { + --fa: "\f7ec"; +} + +.fa-cheese { + --fa: "\f7ef"; +} + +.fa-house-chimney-medical { + --fa: "\f7f2"; +} + +.fa-clinic-medical { + --fa: "\f7f2"; +} + +.fa-clipboard-user { + --fa: "\f7f3"; +} + +.fa-comment-medical { + --fa: "\f7f5"; +} + +.fa-crutch { + --fa: "\f7f7"; +} + +.fa-disease { + --fa: "\f7fa"; +} + +.fa-egg { + --fa: "\f7fb"; +} + +.fa-folder-tree { + --fa: "\f802"; +} + +.fa-burger { + --fa: "\f805"; +} + +.fa-hamburger { + --fa: "\f805"; +} + +.fa-hand-middle-finger { + --fa: "\f806"; +} + +.fa-helmet-safety { + --fa: "\f807"; +} + +.fa-hard-hat { + --fa: "\f807"; +} + +.fa-hat-hard { + --fa: "\f807"; +} + +.fa-hospital-user { + --fa: "\f80d"; +} + +.fa-hotdog { + --fa: "\f80f"; +} + +.fa-ice-cream { + --fa: "\f810"; +} + +.fa-laptop-medical { + --fa: "\f812"; +} + +.fa-pager { + --fa: "\f815"; +} + +.fa-pepper-hot { + --fa: "\f816"; +} + +.fa-pizza-slice { + --fa: "\f818"; +} + +.fa-sack-dollar { + --fa: "\f81d"; +} + +.fa-book-tanakh { + --fa: "\f827"; +} + +.fa-tanakh { + --fa: "\f827"; +} + +.fa-bars-progress { + --fa: "\f828"; +} + +.fa-tasks-alt { + --fa: "\f828"; +} + +.fa-trash-arrow-up { + --fa: "\f829"; +} + +.fa-trash-restore { + --fa: "\f829"; +} + +.fa-trash-can-arrow-up { + --fa: "\f82a"; +} + +.fa-trash-restore-alt { + --fa: "\f82a"; +} + +.fa-user-nurse { + --fa: "\f82f"; +} + +.fa-wave-square { + --fa: "\f83e"; +} + +.fa-person-biking { + --fa: "\f84a"; +} + +.fa-biking { + --fa: "\f84a"; +} + +.fa-border-all { + --fa: "\f84c"; +} + +.fa-border-none { + --fa: "\f850"; +} + +.fa-border-top-left { + --fa: "\f853"; +} + +.fa-border-style { + --fa: "\f853"; +} + +.fa-person-digging { + --fa: "\f85e"; +} + +.fa-digging { + --fa: "\f85e"; +} + +.fa-fan { + --fa: "\f863"; +} + +.fa-icons { + --fa: "\f86d"; +} + +.fa-heart-music-camera-bolt { + --fa: "\f86d"; +} + +.fa-phone-flip { + --fa: "\f879"; +} + +.fa-phone-alt { + --fa: "\f879"; +} + +.fa-square-phone-flip { + --fa: "\f87b"; +} + +.fa-phone-square-alt { + --fa: "\f87b"; +} + +.fa-photo-film { + --fa: "\f87c"; +} + +.fa-photo-video { + --fa: "\f87c"; +} + +.fa-text-slash { + --fa: "\f87d"; +} + +.fa-remove-format { + --fa: "\f87d"; +} + +.fa-arrow-down-z-a { + --fa: "\f881"; +} + +.fa-sort-alpha-desc { + --fa: "\f881"; +} + +.fa-sort-alpha-down-alt { + --fa: "\f881"; +} + +.fa-arrow-up-z-a { + --fa: "\f882"; +} + +.fa-sort-alpha-up-alt { + --fa: "\f882"; +} + +.fa-arrow-down-short-wide { + --fa: "\f884"; +} + +.fa-sort-amount-desc { + --fa: "\f884"; +} + +.fa-sort-amount-down-alt { + --fa: "\f884"; +} + +.fa-arrow-up-short-wide { + --fa: "\f885"; +} + +.fa-sort-amount-up-alt { + --fa: "\f885"; +} + +.fa-arrow-down-9-1 { + --fa: "\f886"; +} + +.fa-sort-numeric-desc { + --fa: "\f886"; +} + +.fa-sort-numeric-down-alt { + --fa: "\f886"; +} + +.fa-arrow-up-9-1 { + --fa: "\f887"; +} + +.fa-sort-numeric-up-alt { + --fa: "\f887"; +} + +.fa-spell-check { + --fa: "\f891"; +} + +.fa-voicemail { + --fa: "\f897"; +} + +.fa-hat-cowboy { + --fa: "\f8c0"; +} + +.fa-hat-cowboy-side { + --fa: "\f8c1"; +} + +.fa-computer-mouse { + --fa: "\f8cc"; +} + +.fa-mouse { + --fa: "\f8cc"; +} + +.fa-radio { + --fa: "\f8d7"; +} + +.fa-record-vinyl { + --fa: "\f8d9"; +} + +.fa-walkie-talkie { + --fa: "\f8ef"; +} + +.fa-caravan { + --fa: "\f8ff"; +} +:root, :host { + --fa-family-brands: 'Font Awesome 7 Brands'; + --fa-font-brands: normal 400 1em/1 var(--fa-family-brands); +} + +@font-face { + font-family: "Font Awesome 7 Brands"; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../fonts/fa-brands-400.woff2"); +} +.fab, +.fa-brands, +.fa-classic.fa-brands { + --fa-family: var(--fa-family-brands); + --fa-style: 400; +} + +.fa-firefox-browser { + --fa: "\e007"; +} + +.fa-ideal { + --fa: "\e013"; +} + +.fa-microblog { + --fa: "\e01a"; +} + +.fa-square-pied-piper { + --fa: "\e01e"; +} + +.fa-pied-piper-square { + --fa: "\e01e"; +} + +.fa-unity { + --fa: "\e049"; +} + +.fa-dailymotion { + --fa: "\e052"; +} + +.fa-square-instagram { + --fa: "\e055"; +} + +.fa-instagram-square { + --fa: "\e055"; +} + +.fa-mixer { + --fa: "\e056"; +} + +.fa-shopify { + --fa: "\e057"; +} + +.fa-deezer { + --fa: "\e077"; +} + +.fa-edge-legacy { + --fa: "\e078"; +} + +.fa-google-pay { + --fa: "\e079"; +} + +.fa-rust { + --fa: "\e07a"; +} + +.fa-tiktok { + --fa: "\e07b"; +} + +.fa-unsplash { + --fa: "\e07c"; +} + +.fa-cloudflare { + --fa: "\e07d"; +} + +.fa-guilded { + --fa: "\e07e"; +} + +.fa-hive { + --fa: "\e07f"; +} + +.fa-42-group { + --fa: "\e080"; +} + +.fa-innosoft { + --fa: "\e080"; +} + +.fa-instalod { + --fa: "\e081"; +} + +.fa-octopus-deploy { + --fa: "\e082"; +} + +.fa-perbyte { + --fa: "\e083"; +} + +.fa-uncharted { + --fa: "\e084"; +} + +.fa-watchman-monitoring { + --fa: "\e087"; +} + +.fa-wodu { + --fa: "\e088"; +} + +.fa-wirsindhandwerk { + --fa: "\e2d0"; +} + +.fa-wsh { + --fa: "\e2d0"; +} + +.fa-bots { + --fa: "\e340"; +} + +.fa-cmplid { + --fa: "\e360"; +} + +.fa-bilibili { + --fa: "\e3d9"; +} + +.fa-golang { + --fa: "\e40f"; +} + +.fa-pix { + --fa: "\e43a"; +} + +.fa-sitrox { + --fa: "\e44a"; +} + +.fa-hashnode { + --fa: "\e499"; +} + +.fa-meta { + --fa: "\e49b"; +} + +.fa-padlet { + --fa: "\e4a0"; +} + +.fa-nfc-directional { + --fa: "\e530"; +} + +.fa-nfc-symbol { + --fa: "\e531"; +} + +.fa-screenpal { + --fa: "\e570"; +} + +.fa-space-awesome { + --fa: "\e5ac"; +} + +.fa-square-font-awesome { + --fa: "\e5ad"; +} + +.fa-square-gitlab { + --fa: "\e5ae"; +} + +.fa-gitlab-square { + --fa: "\e5ae"; +} + +.fa-odysee { + --fa: "\e5c6"; +} + +.fa-stubber { + --fa: "\e5c7"; +} + +.fa-debian { + --fa: "\e60b"; +} + +.fa-shoelace { + --fa: "\e60c"; +} + +.fa-threads { + --fa: "\e618"; +} + +.fa-square-threads { + --fa: "\e619"; +} + +.fa-square-x-twitter { + --fa: "\e61a"; +} + +.fa-x-twitter { + --fa: "\e61b"; +} + +.fa-opensuse { + --fa: "\e62b"; +} + +.fa-letterboxd { + --fa: "\e62d"; +} + +.fa-square-letterboxd { + --fa: "\e62e"; +} + +.fa-mintbit { + --fa: "\e62f"; +} + +.fa-google-scholar { + --fa: "\e63b"; +} + +.fa-brave { + --fa: "\e63c"; +} + +.fa-brave-reverse { + --fa: "\e63d"; +} + +.fa-pixiv { + --fa: "\e640"; +} + +.fa-upwork { + --fa: "\e641"; +} + +.fa-webflow { + --fa: "\e65c"; +} + +.fa-signal-messenger { + --fa: "\e663"; +} + +.fa-bluesky { + --fa: "\e671"; +} + +.fa-jxl { + --fa: "\e67b"; +} + +.fa-square-upwork { + --fa: "\e67c"; +} + +.fa-web-awesome { + --fa: "\e682"; +} + +.fa-square-web-awesome { + --fa: "\e683"; +} + +.fa-square-web-awesome-stroke { + --fa: "\e684"; +} + +.fa-dart-lang { + --fa: "\e693"; +} + +.fa-flutter { + --fa: "\e694"; +} + +.fa-files-pinwheel { + --fa: "\e69f"; +} + +.fa-css { + --fa: "\e6a2"; +} + +.fa-square-bluesky { + --fa: "\e6a3"; +} + +.fa-openai { + --fa: "\e7cf"; +} + +.fa-square-linkedin { + --fa: "\e7d0"; +} + +.fa-cash-app { + --fa: "\e7d4"; +} + +.fa-disqus { + --fa: "\e7d5"; +} + +.fa-eleventy { + --fa: "\e7d6"; +} + +.fa-11ty { + --fa: "\e7d6"; +} + +.fa-kakao-talk { + --fa: "\e7d7"; +} + +.fa-linktree { + --fa: "\e7d8"; +} + +.fa-notion { + --fa: "\e7d9"; +} + +.fa-pandora { + --fa: "\e7da"; +} + +.fa-pixelfed { + --fa: "\e7db"; +} + +.fa-tidal { + --fa: "\e7dc"; +} + +.fa-vsco { + --fa: "\e7dd"; +} + +.fa-w3c { + --fa: "\e7de"; +} + +.fa-lumon { + --fa: "\e7e2"; +} + +.fa-lumon-drop { + --fa: "\e7e3"; +} + +.fa-square-figma { + --fa: "\e7e4"; +} + +.fa-tex { + --fa: "\e7ff"; +} + +.fa-duolingo { + --fa: "\e812"; +} + +.fa-supportnow { + --fa: "\e833"; +} + +.fa-tor-browser { + --fa: "\e838"; +} + +.fa-typescript { + --fa: "\e840"; +} + +.fa-square-deskpro { + --fa: "\e844"; +} + +.fa-circle-zulip { + --fa: "\e851"; +} + +.fa-julia { + --fa: "\e852"; +} + +.fa-zulip { + --fa: "\e853"; +} + +.fa-unison { + --fa: "\e854"; +} + +.fa-board-game-geek { + --fa: "\e855"; +} + +.fa-bgg { + --fa: "\e855"; +} + +.fa-ko-fi { + --fa: "\e856"; +} + +.fa-kubernetes { + --fa: "\e857"; +} + +.fa-postgresql { + --fa: "\e858"; +} + +.fa-scaleway { + --fa: "\e859"; +} + +.fa-venmo { + --fa: "\e85a"; +} + +.fa-venmo-v { + --fa: "\e85b"; +} + +.fa-unreal-engine { + --fa: "\e85c"; +} + +.fa-globaleaks { + --fa: "\e85d"; +} + +.fa-solana { + --fa: "\e85e"; +} + +.fa-threema { + --fa: "\e85f"; +} + +.fa-forgejo { + --fa: "\e860"; +} + +.fa-claude { + --fa: "\e861"; +} + +.fa-gitee { + --fa: "\e863"; +} + +.fa-xmpp { + --fa: "\e864"; +} + +.fa-fediverse { + --fa: "\e865"; +} + +.fa-tailwind-css { + --fa: "\e866"; +} + +.fa-arch-linux { + --fa: "\e867"; +} + +.fa-svelte { + --fa: "\e868"; +} + +.fa-hugging-face { + --fa: "\e869"; +} + +.fa-leetcode { + --fa: "\e86a"; +} + +.fa-openstreetmap { + --fa: "\e86b"; +} + +.fa-ultralytics { + --fa: "\e86d"; +} + +.fa-ultralytics-hub { + --fa: "\e86e"; +} + +.fa-ultralytics-yolo { + --fa: "\e86f"; +} + +.fa-obsidian { + --fa: "\e879"; +} + +.fa-zoom { + --fa: "\e87b"; +} + +.fa-vim { + --fa: "\e88a"; +} + +.fa-symfonycasts { + --fa: "\e8ab"; +} + +.fa-square-twitter { + --fa: "\f081"; +} + +.fa-twitter-square { + --fa: "\f081"; +} + +.fa-square-facebook { + --fa: "\f082"; +} + +.fa-facebook-square { + --fa: "\f082"; +} + +.fa-linkedin { + --fa: "\f08c"; +} + +.fa-square-github { + --fa: "\f092"; +} + +.fa-github-square { + --fa: "\f092"; +} + +.fa-twitter { + --fa: "\f099"; +} + +.fa-facebook { + --fa: "\f09a"; +} + +.fa-github { + --fa: "\f09b"; +} + +.fa-pinterest { + --fa: "\f0d2"; +} + +.fa-square-pinterest { + --fa: "\f0d3"; +} + +.fa-pinterest-square { + --fa: "\f0d3"; +} + +.fa-square-google-plus { + --fa: "\f0d4"; +} + +.fa-google-plus-square { + --fa: "\f0d4"; +} + +.fa-google-plus-g { + --fa: "\f0d5"; +} + +.fa-linkedin-in { + --fa: "\f0e1"; +} + +.fa-github-alt { + --fa: "\f113"; +} + +.fa-maxcdn { + --fa: "\f136"; +} + +.fa-html5 { + --fa: "\f13b"; +} + +.fa-css3 { + --fa: "\f13c"; +} + +.fa-btc { + --fa: "\f15a"; +} + +.fa-youtube { + --fa: "\f167"; +} + +.fa-xing { + --fa: "\f168"; +} + +.fa-square-xing { + --fa: "\f169"; +} + +.fa-xing-square { + --fa: "\f169"; +} + +.fa-dropbox { + --fa: "\f16b"; +} + +.fa-stack-overflow { + --fa: "\f16c"; +} + +.fa-instagram { + --fa: "\f16d"; +} + +.fa-flickr { + --fa: "\f16e"; +} + +.fa-adn { + --fa: "\f170"; +} + +.fa-bitbucket { + --fa: "\f171"; +} + +.fa-tumblr { + --fa: "\f173"; +} + +.fa-square-tumblr { + --fa: "\f174"; +} + +.fa-tumblr-square { + --fa: "\f174"; +} + +.fa-apple { + --fa: "\f179"; +} + +.fa-windows { + --fa: "\f17a"; +} + +.fa-android { + --fa: "\f17b"; +} + +.fa-linux { + --fa: "\f17c"; +} + +.fa-dribbble { + --fa: "\f17d"; +} + +.fa-skype { + --fa: "\f17e"; +} + +.fa-foursquare { + --fa: "\f180"; +} + +.fa-trello { + --fa: "\f181"; +} + +.fa-gratipay { + --fa: "\f184"; +} + +.fa-vk { + --fa: "\f189"; +} + +.fa-weibo { + --fa: "\f18a"; +} + +.fa-renren { + --fa: "\f18b"; +} + +.fa-pagelines { + --fa: "\f18c"; +} + +.fa-stack-exchange { + --fa: "\f18d"; +} + +.fa-square-vimeo { + --fa: "\f194"; +} + +.fa-vimeo-square { + --fa: "\f194"; +} + +.fa-slack { + --fa: "\f198"; +} + +.fa-slack-hash { + --fa: "\f198"; +} + +.fa-wordpress { + --fa: "\f19a"; +} + +.fa-openid { + --fa: "\f19b"; +} + +.fa-yahoo { + --fa: "\f19e"; +} + +.fa-google { + --fa: "\f1a0"; +} + +.fa-reddit { + --fa: "\f1a1"; +} + +.fa-square-reddit { + --fa: "\f1a2"; +} + +.fa-reddit-square { + --fa: "\f1a2"; +} + +.fa-stumbleupon-circle { + --fa: "\f1a3"; +} + +.fa-stumbleupon { + --fa: "\f1a4"; +} + +.fa-delicious { + --fa: "\f1a5"; +} + +.fa-digg { + --fa: "\f1a6"; +} + +.fa-pied-piper-pp { + --fa: "\f1a7"; +} + +.fa-pied-piper-alt { + --fa: "\f1a8"; +} + +.fa-drupal { + --fa: "\f1a9"; +} + +.fa-joomla { + --fa: "\f1aa"; +} + +.fa-behance { + --fa: "\f1b4"; +} + +.fa-square-behance { + --fa: "\f1b5"; +} + +.fa-behance-square { + --fa: "\f1b5"; +} + +.fa-steam { + --fa: "\f1b6"; +} + +.fa-square-steam { + --fa: "\f1b7"; +} + +.fa-steam-square { + --fa: "\f1b7"; +} + +.fa-spotify { + --fa: "\f1bc"; +} + +.fa-deviantart { + --fa: "\f1bd"; +} + +.fa-soundcloud { + --fa: "\f1be"; +} + +.fa-vine { + --fa: "\f1ca"; +} + +.fa-codepen { + --fa: "\f1cb"; +} + +.fa-jsfiddle { + --fa: "\f1cc"; +} + +.fa-rebel { + --fa: "\f1d0"; +} + +.fa-empire { + --fa: "\f1d1"; +} + +.fa-square-git { + --fa: "\f1d2"; +} + +.fa-git-square { + --fa: "\f1d2"; +} + +.fa-git { + --fa: "\f1d3"; +} + +.fa-hacker-news { + --fa: "\f1d4"; +} + +.fa-tencent-weibo { + --fa: "\f1d5"; +} + +.fa-qq { + --fa: "\f1d6"; +} + +.fa-weixin { + --fa: "\f1d7"; +} + +.fa-slideshare { + --fa: "\f1e7"; +} + +.fa-twitch { + --fa: "\f1e8"; +} + +.fa-yelp { + --fa: "\f1e9"; +} + +.fa-paypal { + --fa: "\f1ed"; +} + +.fa-google-wallet { + --fa: "\f1ee"; +} + +.fa-cc-visa { + --fa: "\f1f0"; +} + +.fa-cc-mastercard { + --fa: "\f1f1"; +} + +.fa-cc-discover { + --fa: "\f1f2"; +} + +.fa-cc-amex { + --fa: "\f1f3"; +} + +.fa-cc-paypal { + --fa: "\f1f4"; +} + +.fa-cc-stripe { + --fa: "\f1f5"; +} + +.fa-lastfm { + --fa: "\f202"; +} + +.fa-square-lastfm { + --fa: "\f203"; +} + +.fa-lastfm-square { + --fa: "\f203"; +} + +.fa-ioxhost { + --fa: "\f208"; +} + +.fa-angellist { + --fa: "\f209"; +} + +.fa-buysellads { + --fa: "\f20d"; +} + +.fa-connectdevelop { + --fa: "\f20e"; +} + +.fa-dashcube { + --fa: "\f210"; +} + +.fa-forumbee { + --fa: "\f211"; +} + +.fa-leanpub { + --fa: "\f212"; +} + +.fa-sellsy { + --fa: "\f213"; +} + +.fa-shirtsinbulk { + --fa: "\f214"; +} + +.fa-simplybuilt { + --fa: "\f215"; +} + +.fa-skyatlas { + --fa: "\f216"; +} + +.fa-pinterest-p { + --fa: "\f231"; +} + +.fa-whatsapp { + --fa: "\f232"; +} + +.fa-viacoin { + --fa: "\f237"; +} + +.fa-medium { + --fa: "\f23a"; +} + +.fa-medium-m { + --fa: "\f23a"; +} + +.fa-y-combinator { + --fa: "\f23b"; +} + +.fa-optin-monster { + --fa: "\f23c"; +} + +.fa-opencart { + --fa: "\f23d"; +} + +.fa-expeditedssl { + --fa: "\f23e"; +} + +.fa-cc-jcb { + --fa: "\f24b"; +} + +.fa-cc-diners-club { + --fa: "\f24c"; +} + +.fa-creative-commons { + --fa: "\f25e"; +} + +.fa-gg { + --fa: "\f260"; +} + +.fa-gg-circle { + --fa: "\f261"; +} + +.fa-odnoklassniki { + --fa: "\f263"; +} + +.fa-square-odnoklassniki { + --fa: "\f264"; +} + +.fa-odnoklassniki-square { + --fa: "\f264"; +} + +.fa-get-pocket { + --fa: "\f265"; +} + +.fa-wikipedia-w { + --fa: "\f266"; +} + +.fa-safari { + --fa: "\f267"; +} + +.fa-chrome { + --fa: "\f268"; +} + +.fa-firefox { + --fa: "\f269"; +} + +.fa-opera { + --fa: "\f26a"; +} + +.fa-internet-explorer { + --fa: "\f26b"; +} + +.fa-contao { + --fa: "\f26d"; +} + +.fa-500px { + --fa: "\f26e"; +} + +.fa-amazon { + --fa: "\f270"; +} + +.fa-houzz { + --fa: "\f27c"; +} + +.fa-vimeo-v { + --fa: "\f27d"; +} + +.fa-black-tie { + --fa: "\f27e"; +} + +.fa-fonticons { + --fa: "\f280"; +} + +.fa-reddit-alien { + --fa: "\f281"; +} + +.fa-edge { + --fa: "\f282"; +} + +.fa-codiepie { + --fa: "\f284"; +} + +.fa-modx { + --fa: "\f285"; +} + +.fa-fort-awesome { + --fa: "\f286"; +} + +.fa-usb { + --fa: "\f287"; +} + +.fa-product-hunt { + --fa: "\f288"; +} + +.fa-mixcloud { + --fa: "\f289"; +} + +.fa-scribd { + --fa: "\f28a"; +} + +.fa-bluetooth { + --fa: "\f293"; +} + +.fa-bluetooth-b { + --fa: "\f294"; +} + +.fa-gitlab { + --fa: "\f296"; +} + +.fa-wpbeginner { + --fa: "\f297"; +} + +.fa-wpforms { + --fa: "\f298"; +} + +.fa-envira { + --fa: "\f299"; +} + +.fa-glide { + --fa: "\f2a5"; +} + +.fa-glide-g { + --fa: "\f2a6"; +} + +.fa-viadeo { + --fa: "\f2a9"; +} + +.fa-square-viadeo { + --fa: "\f2aa"; +} + +.fa-viadeo-square { + --fa: "\f2aa"; +} + +.fa-snapchat { + --fa: "\f2ab"; +} + +.fa-snapchat-ghost { + --fa: "\f2ab"; +} + +.fa-square-snapchat { + --fa: "\f2ad"; +} + +.fa-snapchat-square { + --fa: "\f2ad"; +} + +.fa-pied-piper { + --fa: "\f2ae"; +} + +.fa-first-order { + --fa: "\f2b0"; +} + +.fa-yoast { + --fa: "\f2b1"; +} + +.fa-themeisle { + --fa: "\f2b2"; +} + +.fa-google-plus { + --fa: "\f2b3"; +} + +.fa-font-awesome { + --fa: "\f2b4"; +} + +.fa-font-awesome-flag { + --fa: "\f2b4"; +} + +.fa-font-awesome-logo-full { + --fa: "\f2b4"; +} + +.fa-linode { + --fa: "\f2b8"; +} + +.fa-quora { + --fa: "\f2c4"; +} + +.fa-free-code-camp { + --fa: "\f2c5"; +} + +.fa-telegram { + --fa: "\f2c6"; +} + +.fa-telegram-plane { + --fa: "\f2c6"; +} + +.fa-bandcamp { + --fa: "\f2d5"; +} + +.fa-grav { + --fa: "\f2d6"; +} + +.fa-etsy { + --fa: "\f2d7"; +} + +.fa-imdb { + --fa: "\f2d8"; +} + +.fa-ravelry { + --fa: "\f2d9"; +} + +.fa-sellcast { + --fa: "\f2da"; +} + +.fa-superpowers { + --fa: "\f2dd"; +} + +.fa-wpexplorer { + --fa: "\f2de"; +} + +.fa-meetup { + --fa: "\f2e0"; +} + +.fa-square-font-awesome-stroke { + --fa: "\f35c"; +} + +.fa-font-awesome-alt { + --fa: "\f35c"; +} + +.fa-accessible-icon { + --fa: "\f368"; +} + +.fa-accusoft { + --fa: "\f369"; +} + +.fa-adversal { + --fa: "\f36a"; +} + +.fa-affiliatetheme { + --fa: "\f36b"; +} + +.fa-algolia { + --fa: "\f36c"; +} + +.fa-amilia { + --fa: "\f36d"; +} + +.fa-angrycreative { + --fa: "\f36e"; +} + +.fa-app-store { + --fa: "\f36f"; +} + +.fa-app-store-ios { + --fa: "\f370"; +} + +.fa-apper { + --fa: "\f371"; +} + +.fa-asymmetrik { + --fa: "\f372"; +} + +.fa-audible { + --fa: "\f373"; +} + +.fa-avianex { + --fa: "\f374"; +} + +.fa-aws { + --fa: "\f375"; +} + +.fa-bimobject { + --fa: "\f378"; +} + +.fa-bitcoin { + --fa: "\f379"; +} + +.fa-bity { + --fa: "\f37a"; +} + +.fa-blackberry { + --fa: "\f37b"; +} + +.fa-blogger { + --fa: "\f37c"; +} + +.fa-blogger-b { + --fa: "\f37d"; +} + +.fa-buromobelexperte { + --fa: "\f37f"; +} + +.fa-centercode { + --fa: "\f380"; +} + +.fa-cloudscale { + --fa: "\f383"; +} + +.fa-cloudsmith { + --fa: "\f384"; +} + +.fa-cloudversify { + --fa: "\f385"; +} + +.fa-cpanel { + --fa: "\f388"; +} + +.fa-css3-alt { + --fa: "\f38b"; +} + +.fa-cuttlefish { + --fa: "\f38c"; +} + +.fa-d-and-d { + --fa: "\f38d"; +} + +.fa-deploydog { + --fa: "\f38e"; +} + +.fa-deskpro { + --fa: "\f38f"; +} + +.fa-digital-ocean { + --fa: "\f391"; +} + +.fa-discord { + --fa: "\f392"; +} + +.fa-discourse { + --fa: "\f393"; +} + +.fa-dochub { + --fa: "\f394"; +} + +.fa-docker { + --fa: "\f395"; +} + +.fa-draft2digital { + --fa: "\f396"; +} + +.fa-square-dribbble { + --fa: "\f397"; +} + +.fa-dribbble-square { + --fa: "\f397"; +} + +.fa-dyalog { + --fa: "\f399"; +} + +.fa-earlybirds { + --fa: "\f39a"; +} + +.fa-erlang { + --fa: "\f39d"; +} + +.fa-facebook-f { + --fa: "\f39e"; +} + +.fa-facebook-messenger { + --fa: "\f39f"; +} + +.fa-firstdraft { + --fa: "\f3a1"; +} + +.fa-fonticons-fi { + --fa: "\f3a2"; +} + +.fa-fort-awesome-alt { + --fa: "\f3a3"; +} + +.fa-freebsd { + --fa: "\f3a4"; +} + +.fa-gitkraken { + --fa: "\f3a6"; +} + +.fa-gofore { + --fa: "\f3a7"; +} + +.fa-goodreads { + --fa: "\f3a8"; +} + +.fa-goodreads-g { + --fa: "\f3a9"; +} + +.fa-google-drive { + --fa: "\f3aa"; +} + +.fa-google-play { + --fa: "\f3ab"; +} + +.fa-gripfire { + --fa: "\f3ac"; +} + +.fa-grunt { + --fa: "\f3ad"; +} + +.fa-gulp { + --fa: "\f3ae"; +} + +.fa-square-hacker-news { + --fa: "\f3af"; +} + +.fa-hacker-news-square { + --fa: "\f3af"; +} + +.fa-hire-a-helper { + --fa: "\f3b0"; +} + +.fa-hotjar { + --fa: "\f3b1"; +} + +.fa-hubspot { + --fa: "\f3b2"; +} + +.fa-itunes { + --fa: "\f3b4"; +} + +.fa-itunes-note { + --fa: "\f3b5"; +} + +.fa-jenkins { + --fa: "\f3b6"; +} + +.fa-joget { + --fa: "\f3b7"; +} + +.fa-js { + --fa: "\f3b8"; +} + +.fa-square-js { + --fa: "\f3b9"; +} + +.fa-js-square { + --fa: "\f3b9"; +} + +.fa-keycdn { + --fa: "\f3ba"; +} + +.fa-kickstarter { + --fa: "\f3bb"; +} + +.fa-square-kickstarter { + --fa: "\f3bb"; +} + +.fa-kickstarter-k { + --fa: "\f3bc"; +} + +.fa-laravel { + --fa: "\f3bd"; +} + +.fa-line { + --fa: "\f3c0"; +} + +.fa-lyft { + --fa: "\f3c3"; +} + +.fa-magento { + --fa: "\f3c4"; +} + +.fa-medapps { + --fa: "\f3c6"; +} + +.fa-medrt { + --fa: "\f3c8"; +} + +.fa-microsoft { + --fa: "\f3ca"; +} + +.fa-mix { + --fa: "\f3cb"; +} + +.fa-mizuni { + --fa: "\f3cc"; +} + +.fa-monero { + --fa: "\f3d0"; +} + +.fa-napster { + --fa: "\f3d2"; +} + +.fa-node-js { + --fa: "\f3d3"; +} + +.fa-npm { + --fa: "\f3d4"; +} + +.fa-ns8 { + --fa: "\f3d5"; +} + +.fa-nutritionix { + --fa: "\f3d6"; +} + +.fa-page4 { + --fa: "\f3d7"; +} + +.fa-palfed { + --fa: "\f3d8"; +} + +.fa-patreon { + --fa: "\f3d9"; +} + +.fa-periscope { + --fa: "\f3da"; +} + +.fa-phabricator { + --fa: "\f3db"; +} + +.fa-phoenix-framework { + --fa: "\f3dc"; +} + +.fa-playstation { + --fa: "\f3df"; +} + +.fa-pushed { + --fa: "\f3e1"; +} + +.fa-python { + --fa: "\f3e2"; +} + +.fa-red-river { + --fa: "\f3e3"; +} + +.fa-wpressr { + --fa: "\f3e4"; +} + +.fa-rendact { + --fa: "\f3e4"; +} + +.fa-replyd { + --fa: "\f3e6"; +} + +.fa-resolving { + --fa: "\f3e7"; +} + +.fa-rocketchat { + --fa: "\f3e8"; +} + +.fa-rockrms { + --fa: "\f3e9"; +} + +.fa-schlix { + --fa: "\f3ea"; +} + +.fa-searchengin { + --fa: "\f3eb"; +} + +.fa-servicestack { + --fa: "\f3ec"; +} + +.fa-sistrix { + --fa: "\f3ee"; +} + +.fa-speakap { + --fa: "\f3f3"; +} + +.fa-staylinked { + --fa: "\f3f5"; +} + +.fa-steam-symbol { + --fa: "\f3f6"; +} + +.fa-sticker-mule { + --fa: "\f3f7"; +} + +.fa-studiovinari { + --fa: "\f3f8"; +} + +.fa-supple { + --fa: "\f3f9"; +} + +.fa-uber { + --fa: "\f402"; +} + +.fa-uikit { + --fa: "\f403"; +} + +.fa-uniregistry { + --fa: "\f404"; +} + +.fa-untappd { + --fa: "\f405"; +} + +.fa-ussunnah { + --fa: "\f407"; +} + +.fa-vaadin { + --fa: "\f408"; +} + +.fa-viber { + --fa: "\f409"; +} + +.fa-vimeo { + --fa: "\f40a"; +} + +.fa-vnv { + --fa: "\f40b"; +} + +.fa-square-whatsapp { + --fa: "\f40c"; +} + +.fa-whatsapp-square { + --fa: "\f40c"; +} + +.fa-whmcs { + --fa: "\f40d"; +} + +.fa-wordpress-simple { + --fa: "\f411"; +} + +.fa-xbox { + --fa: "\f412"; +} + +.fa-yandex { + --fa: "\f413"; +} + +.fa-yandex-international { + --fa: "\f414"; +} + +.fa-apple-pay { + --fa: "\f415"; +} + +.fa-cc-apple-pay { + --fa: "\f416"; +} + +.fa-fly { + --fa: "\f417"; +} + +.fa-node { + --fa: "\f419"; +} + +.fa-osi { + --fa: "\f41a"; +} + +.fa-react { + --fa: "\f41b"; +} + +.fa-autoprefixer { + --fa: "\f41c"; +} + +.fa-less { + --fa: "\f41d"; +} + +.fa-sass { + --fa: "\f41e"; +} + +.fa-vuejs { + --fa: "\f41f"; +} + +.fa-angular { + --fa: "\f420"; +} + +.fa-aviato { + --fa: "\f421"; +} + +.fa-ember { + --fa: "\f423"; +} + +.fa-gitter { + --fa: "\f426"; +} + +.fa-hooli { + --fa: "\f427"; +} + +.fa-strava { + --fa: "\f428"; +} + +.fa-stripe { + --fa: "\f429"; +} + +.fa-stripe-s { + --fa: "\f42a"; +} + +.fa-typo3 { + --fa: "\f42b"; +} + +.fa-amazon-pay { + --fa: "\f42c"; +} + +.fa-cc-amazon-pay { + --fa: "\f42d"; +} + +.fa-ethereum { + --fa: "\f42e"; +} + +.fa-korvue { + --fa: "\f42f"; +} + +.fa-elementor { + --fa: "\f430"; +} + +.fa-square-youtube { + --fa: "\f431"; +} + +.fa-youtube-square { + --fa: "\f431"; +} + +.fa-flipboard { + --fa: "\f44d"; +} + +.fa-hips { + --fa: "\f452"; +} + +.fa-php { + --fa: "\f457"; +} + +.fa-quinscape { + --fa: "\f459"; +} + +.fa-readme { + --fa: "\f4d5"; +} + +.fa-java { + --fa: "\f4e4"; +} + +.fa-pied-piper-hat { + --fa: "\f4e5"; +} + +.fa-creative-commons-by { + --fa: "\f4e7"; +} + +.fa-creative-commons-nc { + --fa: "\f4e8"; +} + +.fa-creative-commons-nc-eu { + --fa: "\f4e9"; +} + +.fa-creative-commons-nc-jp { + --fa: "\f4ea"; +} + +.fa-creative-commons-nd { + --fa: "\f4eb"; +} + +.fa-creative-commons-pd { + --fa: "\f4ec"; +} + +.fa-creative-commons-pd-alt { + --fa: "\f4ed"; +} + +.fa-creative-commons-remix { + --fa: "\f4ee"; +} + +.fa-creative-commons-sa { + --fa: "\f4ef"; +} + +.fa-creative-commons-sampling { + --fa: "\f4f0"; +} + +.fa-creative-commons-sampling-plus { + --fa: "\f4f1"; +} + +.fa-creative-commons-share { + --fa: "\f4f2"; +} + +.fa-creative-commons-zero { + --fa: "\f4f3"; +} + +.fa-ebay { + --fa: "\f4f4"; +} + +.fa-keybase { + --fa: "\f4f5"; +} + +.fa-mastodon { + --fa: "\f4f6"; +} + +.fa-r-project { + --fa: "\f4f7"; +} + +.fa-researchgate { + --fa: "\f4f8"; +} + +.fa-teamspeak { + --fa: "\f4f9"; +} + +.fa-first-order-alt { + --fa: "\f50a"; +} + +.fa-fulcrum { + --fa: "\f50b"; +} + +.fa-galactic-republic { + --fa: "\f50c"; +} + +.fa-galactic-senate { + --fa: "\f50d"; +} + +.fa-jedi-order { + --fa: "\f50e"; +} + +.fa-mandalorian { + --fa: "\f50f"; +} + +.fa-old-republic { + --fa: "\f510"; +} + +.fa-phoenix-squadron { + --fa: "\f511"; +} + +.fa-sith { + --fa: "\f512"; +} + +.fa-trade-federation { + --fa: "\f513"; +} + +.fa-wolf-pack-battalion { + --fa: "\f514"; +} + +.fa-hornbill { + --fa: "\f592"; +} + +.fa-mailchimp { + --fa: "\f59e"; +} + +.fa-megaport { + --fa: "\f5a3"; +} + +.fa-nimblr { + --fa: "\f5a8"; +} + +.fa-rev { + --fa: "\f5b2"; +} + +.fa-shopware { + --fa: "\f5b5"; +} + +.fa-squarespace { + --fa: "\f5be"; +} + +.fa-themeco { + --fa: "\f5c6"; +} + +.fa-weebly { + --fa: "\f5cc"; +} + +.fa-wix { + --fa: "\f5cf"; +} + +.fa-ello { + --fa: "\f5f1"; +} + +.fa-hackerrank { + --fa: "\f5f7"; +} + +.fa-kaggle { + --fa: "\f5fa"; +} + +.fa-markdown { + --fa: "\f60f"; +} + +.fa-neos { + --fa: "\f612"; +} + +.fa-zhihu { + --fa: "\f63f"; +} + +.fa-alipay { + --fa: "\f642"; +} + +.fa-the-red-yeti { + --fa: "\f69d"; +} + +.fa-critical-role { + --fa: "\f6c9"; +} + +.fa-d-and-d-beyond { + --fa: "\f6ca"; +} + +.fa-dev { + --fa: "\f6cc"; +} + +.fa-fantasy-flight-games { + --fa: "\f6dc"; +} + +.fa-wizards-of-the-coast { + --fa: "\f730"; +} + +.fa-think-peaks { + --fa: "\f731"; +} + +.fa-reacteurope { + --fa: "\f75d"; +} + +.fa-artstation { + --fa: "\f77a"; +} + +.fa-atlassian { + --fa: "\f77b"; +} + +.fa-canadian-maple-leaf { + --fa: "\f785"; +} + +.fa-centos { + --fa: "\f789"; +} + +.fa-confluence { + --fa: "\f78d"; +} + +.fa-dhl { + --fa: "\f790"; +} + +.fa-diaspora { + --fa: "\f791"; +} + +.fa-fedex { + --fa: "\f797"; +} + +.fa-fedora { + --fa: "\f798"; +} + +.fa-figma { + --fa: "\f799"; +} + +.fa-intercom { + --fa: "\f7af"; +} + +.fa-invision { + --fa: "\f7b0"; +} + +.fa-jira { + --fa: "\f7b1"; +} + +.fa-mendeley { + --fa: "\f7b3"; +} + +.fa-raspberry-pi { + --fa: "\f7bb"; +} + +.fa-redhat { + --fa: "\f7bc"; +} + +.fa-sketch { + --fa: "\f7c6"; +} + +.fa-sourcetree { + --fa: "\f7d3"; +} + +.fa-suse { + --fa: "\f7d6"; +} + +.fa-ubuntu { + --fa: "\f7df"; +} + +.fa-ups { + --fa: "\f7e0"; +} + +.fa-usps { + --fa: "\f7e1"; +} + +.fa-yarn { + --fa: "\f7e3"; +} + +.fa-airbnb { + --fa: "\f834"; +} + +.fa-battle-net { + --fa: "\f835"; +} + +.fa-bootstrap { + --fa: "\f836"; +} + +.fa-buffer { + --fa: "\f837"; +} + +.fa-chromecast { + --fa: "\f838"; +} + +.fa-evernote { + --fa: "\f839"; +} + +.fa-itch-io { + --fa: "\f83a"; +} + +.fa-salesforce { + --fa: "\f83b"; +} + +.fa-speaker-deck { + --fa: "\f83c"; +} + +.fa-symfony { + --fa: "\f83d"; +} + +.fa-waze { + --fa: "\f83f"; +} + +.fa-yammer { + --fa: "\f840"; +} + +.fa-git-alt { + --fa: "\f841"; +} + +.fa-stackpath { + --fa: "\f842"; +} + +.fa-cotton-bureau { + --fa: "\f89e"; +} + +.fa-buy-n-large { + --fa: "\f8a6"; +} + +.fa-mdb { + --fa: "\f8ca"; +} + +.fa-orcid { + --fa: "\f8d2"; +} + +.fa-swift { + --fa: "\f8e1"; +} + +.fa-umbraco { + --fa: "\f8e8"; +}:root, :host { + --fa-family-classic: 'Font Awesome 7 Free'; + --fa-font-regular: normal 400 1em/1 var(--fa-family-classic); + /* deprecated: this older custom property will be removed next major release */ + --fa-style-family-classic: var(--fa-family-classic); +} + +@font-face { + font-family: "Font Awesome 7 Free"; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../fonts/fa-regular-400.woff2"); +} +.far { + --fa-family: var(--fa-family-classic); + --fa-style: 400; +} + +.fa-classic { + --fa-family: var(--fa-family-classic); +} + +.fa-regular { + --fa-style: 400; +}:root, :host { + --fa-family-classic: 'Font Awesome 7 Free'; + --fa-font-solid: normal 900 1em/1 var(--fa-family-classic); + /* deprecated: this older custom property will be removed next major release */ + --fa-style-family-classic: var(--fa-family-classic); +} + +@font-face { + font-family: "Font Awesome 7 Free"; + font-style: normal; + font-weight: 900; + font-display: block; + src: url("../fonts/fa-solid-900.woff2"); +} +.fas { + --fa-family: var(--fa-family-classic); + --fa-style: 900; +} + +.fa-classic { + --fa-family: var(--fa-family-classic); +} + +.fa-solid { + --fa-style: 900; +}@font-face { + font-family: "Font Awesome 5 Brands"; + font-display: block; + font-weight: 400; + src: url("../fonts/fa-brands-400.woff2") format("woff2"); +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-display: block; + font-weight: 900; + src: url("../fonts/fa-solid-900.woff2") format("woff2"); +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-display: block; + font-weight: 400; + src: url("../fonts/fa-regular-400.woff2") format("woff2"); +}@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-solid-900.woff2") format("woff2"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-brands-400.woff2") format("woff2"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-regular-400.woff2") format("woff2"); + unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D, U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088, U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5, U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A, U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E, U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7, U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D, U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA, U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC; +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-v4compatibility.woff2") format("woff2"); + unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B, U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4, U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E, U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F27A; +} diff --git a/static/style/style.css b/static/style/style.css index 24d56f5..17d399a 100644 --- a/static/style/style.css +++ b/static/style/style.css @@ -1,3 +1,4 @@ + @font-face { font-family: 'Ubuntu'; font-style: normal; @@ -14,10 +15,177 @@ body { height: 100%; } +h1 { + text-align: center; + font-size: 32px; + text-align: center; + text-shadow: 2px 2px 2px #202020; + transform: skewY(-2deg) translate(-1rem,-0.4rem); + text-underline-offset: 4%; + text-decoration: underline; + text-decoration-color: #bd93f9; + text-decoration-thickness: 5px; +} + +h2 { + font-size: 20px; + margin: 0px; + transform: skewY(-2deg) translate(-1rem,-0.4rem); + padding-left: 16px; + padding-top: 20px; + padding-bottom: 10px; + text-decoration: underline; + text-decoration-color: currentcolor; + text-decoration-thickness: auto; + text-decoration-color: #ff79c6; + text-decoration-thickness: 3px; +} + + +.item { + position: relative; + cursor: default; +} + +.span-date { + position: absolute; + bottom: 125%; + left: 0; + background: #ddd; + color: #262c30; + padding: 6px 10px; + border-radius: 6px; + font-size: 12px; + opacity: 0; + pointer-events: none; + transition: opacity 0.2s ease; + white-space: nowrap; +} + +.item:hover .span-date { + opacity: 1; +} + + +select::-ms-expand { + display: none; +} + +select { + -webkit-appearance: none; + -moz-appearance: none; + text-indent: 1px; + text-overflow: ''; +} + +#sortSelect { + box-sizing: border-box; + background-image: url('/static/icons/sort.svg'); + background-repeat: no-repeat; + width: 165px; + font-size: 16px; + border: 1px solid #262c30; + padding: 12px 20px 12px 40px; + margin-bottom: 12px; + border-radius: 5px; + background-position: 10px 10px; + background-color: #1c2024; + color: #fff; + scroll-margin-top: 10px; + margin-left: 5px; + text-align: center; +} + +div.about,div.contributors { + padding-left: 20px; + overflow-y: scroll; +} + +div.contributors ul { + padding-left: 15px; +} + +div.contributors li { + margin-left: unset; +} + +#navlinks { + max-height: 0; + overflow: hidden; + transition: all 0.5s ease; + grid-column: 1 / -1; + +} + +#navlinks.open { + padding-top: 20px; + max-height: 300px; +} + +.filter-bar { + margin-left: auto; + margin-right: auto; + display: flex; +} + +#search { + box-sizing: border-box; + background-image: url('/static/icons/search.svg'); + background-repeat: no-repeat; + width: 100%; + font-size: 16px; + border: 1px solid #262c30; + padding: 12px 20px 12px 40px; + margin-bottom: 12px; + border-radius: 5px; + background-position: 10px 10px; + background-color: #1c2024; + color: #fff; + scroll-margin-top: 10px; + margin-right: 5px; +} + +#search li a:hover:not(.header) { + background-color: #262c30; +} + +input:focus { + outline: none; +} + +/*#navlinks { + display: none; + padding-top: 20px; + grid-column: 1 / -1; +} +*/ + +#navlinks a { + color: white; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; + display: block; + transition: max-height 0.5s ease; +} + +a.icon { + top: 50%; + justify-self: end; + cursor: pointer; +} + +#navlinks a:hover { + background-color: #ddd; + color: black; + border-radius: 5px; +} + .wrapper { height: 100%; margin-left: 20px; margin-right: 20px; + /*padding-bottom: 1px;*/ } #map { @@ -26,7 +194,8 @@ body { } .map-link { - padding: 10px; + min-height: 95%;; + padding: 10px; } li { @@ -47,12 +216,11 @@ li::before { header img.banner { display: block; margin-right: auto; - height: 10vh; max-width: 60vw; } -a.source-code img { - width: 40px; +header img.source-code { + height:unset; } a.source-code { @@ -66,14 +234,9 @@ a.source-code { transform: translateY(-50%); padding: 15px; */ - right: 0; - top: 50%; - transform: translateY(-50%); - position: absolute; padding: 15px; display: inline-block; - text-align: center;; - font-size: 12px;; + text-align: center; } .grid { @@ -81,10 +244,18 @@ a.source-code { } .grid header { + display: grid; padding: 20px; position: relative; } +header { + grid-template-columns: 1fr auto; + align-items: center; + background-color: unset !important; + padding: 5px !important; +} + .grid > * { background-color: #262c30; margin-top: 20px; @@ -139,14 +310,6 @@ body { letter-spacing: 0.1px; } -h1 { - text-align: center; - font-size: 40px; - line-height: 48px; - text-shadow: 2px 2px 2px #202020; - font-family: 'Josefin Sans', sans-serif; -} - a, a:visited { text-decoration: none;; font-weight: bold; @@ -167,10 +330,32 @@ a:hover { height: 100vh; } + /* + #navlinks.hover { + position: absolute; + right: 0; + top: 100%; + grid-column: auto; + background: #262c30; + width: 200px; + padding-top: unset; + border-radius: 5px; + border-color: white; + } */ + + header img.banner { + height: 10vh; + } + header img { margin-left: auto; } + header { + position: relative; /* anchor for dropdown */ + background-color: #262c30 !important; + padding: 20px !important; + } .grid > * { margin: 0; diff --git a/static/thumbnail/ABOVe SOCiAL ACCEPTED NORMALiTiES.webp b/static/thumbnail/ABOVe SOCiAL ACCEPTED NORMALiTiES.webp Binary files differindex 0750127..06e6797 100644 --- a/static/thumbnail/ABOVe SOCiAL ACCEPTED NORMALiTiES.webp +++ b/static/thumbnail/ABOVe SOCiAL ACCEPTED NORMALiTiES.webp diff --git a/static/thumbnail/ART WitHOUT iNTERFERENCE.webp b/static/thumbnail/ART WitHOUT iNTERFERENCE.webp Binary files differindex 3cfd534..f144f01 100644 --- a/static/thumbnail/ART WitHOUT iNTERFERENCE.webp +++ b/static/thumbnail/ART WitHOUT iNTERFERENCE.webp diff --git a/static/thumbnail/AUTENTiSK MECHANDiSE.webp b/static/thumbnail/AUTENTiSK MECHANDiSE.webp Binary files differnew file mode 100644 index 0000000..5f0caad --- /dev/null +++ b/static/thumbnail/AUTENTiSK MECHANDiSE.webp diff --git a/static/thumbnail/BEVISMAtERIALE🫱.webp b/static/thumbnail/BEVISMAtERIALE🫱.webp Binary files differnew file mode 100644 index 0000000..48cb77c --- /dev/null +++ b/static/thumbnail/BEVISMAtERIALE🫱.webp diff --git a/static/thumbnail/BITE THE HAND THAT FEEDS YOU.webp b/static/thumbnail/BITE THE HAND THAT FEEDS YOU.webp Binary files differindex 5ec84fa..bfc1e7a 100644 --- a/static/thumbnail/BITE THE HAND THAT FEEDS YOU.webp +++ b/static/thumbnail/BITE THE HAND THAT FEEDS YOU.webp diff --git a/static/thumbnail/BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT STÆRKEste GruNDLAG.webp b/static/thumbnail/BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT STÆRKEste GruNDLAG.webp Binary files differindex 817a955..5d406f4 100644 --- a/static/thumbnail/BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT STÆRKEste GruNDLAG.webp +++ b/static/thumbnail/BLEV KASSiFiCERET SOM UTiLPASSET DET NU MiT STÆRKEste GruNDLAG.webp diff --git a/static/thumbnail/CHR BORG ER EN KiBBUTZ.webp b/static/thumbnail/CHR BORG ER EN KiBBUTZ.webp Binary files differnew file mode 100644 index 0000000..e552c9c --- /dev/null +++ b/static/thumbnail/CHR BORG ER EN KiBBUTZ.webp diff --git a/static/thumbnail/DEFY UNJUST .LAWS..webp.webp b/static/thumbnail/DEFY UNJUST .LAWS..webp.webp Binary files differnew file mode 100644 index 0000000..afb5318 --- /dev/null +++ b/static/thumbnail/DEFY UNJUST .LAWS..webp.webp diff --git a/static/thumbnail/DEMOKRATi KRÆVR RESPEKT FOR (ViSSE) GRUNDLÆGGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE LØBENDE SØGER DiALOG MED VÆLGERNE.webp b/static/thumbnail/DEMOKRATi KRÆVR RESPEKT FOR (ViSSE) GRUNDLÆGGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE LØBENDE SØGER DiALOG MED VÆLGERNE.webp Binary files differnew file mode 100644 index 0000000..d46ca33 --- /dev/null +++ b/static/thumbnail/DEMOKRATi KRÆVR RESPEKT FOR (ViSSE) GRUNDLÆGGENDE SPiLLEREGLER, EN AF DiSSE FUNDAMENTALE BUNDSTYKKER ER AT POLiTiKERNE LØBENDE SØGER DiALOG MED VÆLGERNE.webp diff --git a/static/thumbnail/DEN DANSKE STAT & MÆRSK PROFITERE PÅ ETNiSK UDRENSNiNG I PALAETiNA.webp b/static/thumbnail/DEN DANSKE STAT & MÆRSK PROFITERE PÅ ETNiSK UDRENSNiNG I PALAETiNA.webp Binary files differnew file mode 100644 index 0000000..2fe963b --- /dev/null +++ b/static/thumbnail/DEN DANSKE STAT & MÆRSK PROFITERE PÅ ETNiSK UDRENSNiNG I PALAETiNA.webp diff --git a/static/thumbnail/DENNE MODEL FÅS OSS i SANDFARVET.webp b/static/thumbnail/DENNE MODEL FÅS OSS i SANDFARVET.webp Binary files differindex 6a7e63d..8729f2f 100644 --- a/static/thumbnail/DENNE MODEL FÅS OSS i SANDFARVET.webp +++ b/static/thumbnail/DENNE MODEL FÅS OSS i SANDFARVET.webp diff --git a/static/thumbnail/DESTROY ZiONiSM.webp b/static/thumbnail/DESTROY ZiONiSM.webp Binary files differindex 6142838..897cf50 100644 --- a/static/thumbnail/DESTROY ZiONiSM.webp +++ b/static/thumbnail/DESTROY ZiONiSM.webp diff --git a/static/thumbnail/Dit VÆRD StÅR PÅ DiN LØNSEDDEL.webp b/static/thumbnail/Dit VÆRD StÅR PÅ DiN LØNSEDDEL.webp Binary files differindex 7337f88..8453c4b 100644 --- a/static/thumbnail/Dit VÆRD StÅR PÅ DiN LØNSEDDEL.webp +++ b/static/thumbnail/Dit VÆRD StÅR PÅ DiN LØNSEDDEL.webp diff --git a/static/thumbnail/FAKE SOCiAL MEDiA PERSONALiTY.webp b/static/thumbnail/FAKE SOCiAL MEDiA PERSONALiTY.webp Binary files differindex b6fcc85..6b1b0ef 100644 --- a/static/thumbnail/FAKE SOCiAL MEDiA PERSONALiTY.webp +++ b/static/thumbnail/FAKE SOCiAL MEDiA PERSONALiTY.webp diff --git a/static/thumbnail/GRAFFiTY IS A -> DiSCUSTiNG HABiT!.webp b/static/thumbnail/GRAFFiTY IS A -> DiSCUSTiNG HABiT!.webp Binary files differindex ba7ec88..9bd22e3 100644 --- a/static/thumbnail/GRAFFiTY IS A -> DiSCUSTiNG HABiT!.webp +++ b/static/thumbnail/GRAFFiTY IS A -> DiSCUSTiNG HABiT!.webp diff --git a/static/thumbnail/GRAFFiTY IS A -_ DiSCUSTiNG HABiT!.webp b/static/thumbnail/GRAFFiTY IS A -_ DiSCUSTiNG HABiT!.webp Binary files differnew file mode 100644 index 0000000..9bd22e3 --- /dev/null +++ b/static/thumbnail/GRAFFiTY IS A -_ DiSCUSTiNG HABiT!.webp diff --git a/static/thumbnail/GlÆDLiG ANGST OG GO.webp b/static/thumbnail/GlÆDLiG ANGST OG GO.webp Binary files differindex 6911968..b373ef3 100644 --- a/static/thumbnail/GlÆDLiG ANGST OG GO.webp +++ b/static/thumbnail/GlÆDLiG ANGST OG GO.webp diff --git a/static/thumbnail/HVORFOR GØR DU, SOM DU GØR_.webp b/static/thumbnail/HVORFOR GØR DU, SOM DU GØR_.webp Binary files differnew file mode 100644 index 0000000..cdb6a9f --- /dev/null +++ b/static/thumbnail/HVORFOR GØR DU, SOM DU GØR_.webp diff --git a/static/thumbnail/KRÆNKER!.webp b/static/thumbnail/KRÆNKER!.webp Binary files differnew file mode 100644 index 0000000..66006bf --- /dev/null +++ b/static/thumbnail/KRÆNKER!.webp diff --git a/static/thumbnail/KiL UR EGO.webp b/static/thumbnail/KiL UR EGO.webp Binary files differindex bde9498..3dce67d 100644 --- a/static/thumbnail/KiL UR EGO.webp +++ b/static/thumbnail/KiL UR EGO.webp diff --git a/static/thumbnail/METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp b/static/thumbnail/METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp Binary files differindex 86d311f..17cd3ac 100644 --- a/static/thumbnail/METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp +++ b/static/thumbnail/METTE DU iK MiN STATSMiNiSTER - LARS & METTE TiLGODESER FOLKEMORD!!.webp diff --git a/static/thumbnail/METTE KA SLETTE.webp b/static/thumbnail/METTE KA SLETTE.webp Binary files differindex 18e85aa..1bc67a8 100644 --- a/static/thumbnail/METTE KA SLETTE.webp +++ b/static/thumbnail/METTE KA SLETTE.webp diff --git a/static/thumbnail/NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM.webp b/static/thumbnail/NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM.webp Binary files differindex 55d1ce7..101158e 100644 --- a/static/thumbnail/NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM.webp +++ b/static/thumbnail/NORM CONSUMiNG ROBOtS WORSHiPPiNG CAPitALiSM.webp diff --git a/static/thumbnail/PALESTiNE WiLL NEVER DiE.webp b/static/thumbnail/PALESTiNE WiLL NEVER DiE.webp Binary files differnew file mode 100644 index 0000000..b2eb32b --- /dev/null +++ b/static/thumbnail/PALESTiNE WiLL NEVER DiE.webp diff --git a/static/thumbnail/POLiTiSK HYKLERi.webp b/static/thumbnail/POLiTiSK HYKLERi.webp Binary files differindex 3465f8c..474e314 100644 --- a/static/thumbnail/POLiTiSK HYKLERi.webp +++ b/static/thumbnail/POLiTiSK HYKLERi.webp diff --git a/static/thumbnail/PSEUDO LiFESTYLE.webp b/static/thumbnail/PSEUDO LiFESTYLE.webp Binary files differnew file mode 100644 index 0000000..582b7b5 --- /dev/null +++ b/static/thumbnail/PSEUDO LiFESTYLE.webp diff --git a/static/thumbnail/RESSOURCEFAtti ANDENRANDGSBORGER.webp b/static/thumbnail/RESSOURCEFAtti ANDENRANDGSBORGER.webp Binary files differindex e554747..4241dd3 100644 --- a/static/thumbnail/RESSOURCEFAtti ANDENRANDGSBORGER.webp +++ b/static/thumbnail/RESSOURCEFAtti ANDENRANDGSBORGER.webp diff --git a/static/thumbnail/SAMFUNDSSViND.webp b/static/thumbnail/SAMFUNDSSViND.webp Binary files differindex 3920a19..fc0cc6b 100644 --- a/static/thumbnail/SAMFUNDSSViND.webp +++ b/static/thumbnail/SAMFUNDSSViND.webp diff --git a/static/thumbnail/SLUK FOR DE RIGES PRiViLEGiER.webp b/static/thumbnail/SLUK FOR DE RIGES PRiViLEGiER.webp Binary files differnew file mode 100644 index 0000000..a07e4ef --- /dev/null +++ b/static/thumbnail/SLUK FOR DE RIGES PRiViLEGiER.webp diff --git a/static/thumbnail/SMÅBORGERLiGHEDEN_.webp b/static/thumbnail/SMÅBORGERLiGHEDEN_.webp Binary files differnew file mode 100644 index 0000000..9915ade --- /dev/null +++ b/static/thumbnail/SMÅBORGERLiGHEDEN_.webp diff --git a/static/thumbnail/SPYOSCAPE.svg b/static/thumbnail/SPYOSCAPE.svg new file mode 100644 index 0000000..ebea273 --- /dev/null +++ b/static/thumbnail/SPYOSCAPE.svg @@ -0,0 +1,13 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" + "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> +<svg version="1.0" xmlns="http://www.w3.org/2000/svg" + width="100.000000pt" height="18.000000pt" viewBox="0 0 100.000000 18.000000" + preserveAspectRatio="xMidYMid meet"> +<metadata> +Created by potrace 1.16, written by Peter Selinger 2001-2019 +</metadata> +<g transform="translate(0.000000,18.000000) scale(0.100000,-0.100000)" +fill="#000000" stroke="none"> +</g> +</svg> diff --git a/static/thumbnail/SPYO_SULT THE ORPHANS.webp b/static/thumbnail/SPYO_SULT THE ORPHANS.webp Binary files differnew file mode 100644 index 0000000..0f43d1d --- /dev/null +++ b/static/thumbnail/SPYO_SULT THE ORPHANS.webp diff --git a/static/thumbnail/STiNKER AF GENTRiFiCERiNG!.webp b/static/thumbnail/STiNKER AF GENTRiFiCERiNG!.webp Binary files differindex bad7ae0..407e386 100644 --- a/static/thumbnail/STiNKER AF GENTRiFiCERiNG!.webp +++ b/static/thumbnail/STiNKER AF GENTRiFiCERiNG!.webp diff --git a/static/thumbnail/SYG NOK.webp b/static/thumbnail/SYG NOK.webp Binary files differindex 91911f0..fe337e6 100644 --- a/static/thumbnail/SYG NOK.webp +++ b/static/thumbnail/SYG NOK.webp diff --git a/static/thumbnail/TRANS RIGHTS COMiNG TO A THEATRE NEAR U.webp b/static/thumbnail/TRANS RIGHTS COMiNG TO A THEATRE NEAR U.webp Binary files differindex 5af0ec7..6249d6b 100644 --- a/static/thumbnail/TRANS RIGHTS COMiNG TO A THEATRE NEAR U.webp +++ b/static/thumbnail/TRANS RIGHTS COMiNG TO A THEATRE NEAR U.webp diff --git a/static/thumbnail/TURN OFF THE MAiN STREAM MEDiA!.webp b/static/thumbnail/TURN OFF THE MAiN STREAM MEDiA!.webp Binary files differindex 1570a5a..ade5523 100644 --- a/static/thumbnail/TURN OFF THE MAiN STREAM MEDiA!.webp +++ b/static/thumbnail/TURN OFF THE MAiN STREAM MEDiA!.webp diff --git a/static/thumbnail/YOUR MiSERY StARtS WiTH CAPitALiSM!.webp b/static/thumbnail/YOUR MiSERY StARtS WiTH CAPitALiSM!.webp Binary files differnew file mode 100644 index 0000000..602f016 --- /dev/null +++ b/static/thumbnail/YOUR MiSERY StARtS WiTH CAPitALiSM!.webp diff --git a/static/thumbnail/abusive-people-suck.jpeg b/static/thumbnail/abusive-people-suck.jpeg Binary files differindex b6dc527..537b674 100644 --- a/static/thumbnail/abusive-people-suck.jpeg +++ b/static/thumbnail/abusive-people-suck.jpeg diff --git a/static/thumbnail/aegte-drivert-uden-nemid.jpg b/static/thumbnail/aegte-drivert-uden-nemid.jpg Binary files differnew file mode 100644 index 0000000..ed8f120 --- /dev/null +++ b/static/thumbnail/aegte-drivert-uden-nemid.jpg diff --git a/static/thumbnail/afmonter-israel-nu.jpg b/static/thumbnail/afmonter-israel-nu.jpg Binary files differindex 1383438..4ef435c 100644 --- a/static/thumbnail/afmonter-israel-nu.jpg +++ b/static/thumbnail/afmonter-israel-nu.jpg diff --git a/static/thumbnail/aktiv-fiaskohw.jpg b/static/thumbnail/aktiv-fiaskohw.jpg Binary files differnew file mode 100644 index 0000000..189ad88 --- /dev/null +++ b/static/thumbnail/aktiv-fiaskohw.jpg diff --git a/static/thumbnail/aldrig-mer-kompetent.jpg b/static/thumbnail/aldrig-mer-kompetent.jpg Binary files differnew file mode 100644 index 0000000..35059db --- /dev/null +++ b/static/thumbnail/aldrig-mer-kompetent.jpg diff --git a/static/thumbnail/all-you-need-is-less-of-everything.jpg b/static/thumbnail/all-you-need-is-less-of-everything.jpg Binary files differindex 7f96dd6..def1cf2 100644 --- a/static/thumbnail/all-you-need-is-less-of-everything.jpg +++ b/static/thumbnail/all-you-need-is-less-of-everything.jpg diff --git a/static/thumbnail/aparnage-til-alle....jpg b/static/thumbnail/aparnage-til-alle....jpg Binary files differindex f8989b2..910319c 100644 --- a/static/thumbnail/aparnage-til-alle....jpg +++ b/static/thumbnail/aparnage-til-alle....jpg diff --git a/static/thumbnail/art-belongs-in-gallerys.jpg b/static/thumbnail/art-belongs-in-gallerys.jpg Binary files differnew file mode 100644 index 0000000..1921eef --- /dev/null +++ b/static/thumbnail/art-belongs-in-gallerys.jpg diff --git a/static/thumbnail/art-is-about-sacrifices-over-and-over-again.jpeg b/static/thumbnail/art-is-about-sacrifices-over-and-over-again.jpeg Binary files differindex 9c3a9a0..8e1cdcf 100644 --- a/static/thumbnail/art-is-about-sacrifices-over-and-over-again.jpeg +++ b/static/thumbnail/art-is-about-sacrifices-over-and-over-again.jpeg diff --git a/static/thumbnail/art-is-for-the-rich-and-wealthy.jpg b/static/thumbnail/art-is-for-the-rich-and-wealthy.jpg Binary files differnew file mode 100644 index 0000000..ac21d2a --- /dev/null +++ b/static/thumbnail/art-is-for-the-rich-and-wealthy.jpg diff --git a/static/thumbnail/artistic-integrity-you-are....jpg b/static/thumbnail/artistic-integrity-you-are....jpg Binary files differindex d01ce00..265daeb 100644 --- a/static/thumbnail/artistic-integrity-you-are....jpg +++ b/static/thumbnail/artistic-integrity-you-are....jpg diff --git a/static/thumbnail/autoritets-naiv.jpg b/static/thumbnail/autoritets-naiv.jpg Binary files differnew file mode 100644 index 0000000..f243cd3 --- /dev/null +++ b/static/thumbnail/autoritets-naiv.jpg diff --git a/static/thumbnail/bar-rolig-vi-fra-myndighederne.jpeg b/static/thumbnail/bar-rolig-vi-fra-myndighederne.jpeg Binary files differindex c6a5186..c420a1a 100644 --- a/static/thumbnail/bar-rolig-vi-fra-myndighederne.jpeg +++ b/static/thumbnail/bar-rolig-vi-fra-myndighederne.jpeg diff --git a/static/thumbnail/bernie-spyo-svigermors-droem.jpg b/static/thumbnail/bernie-spyo-svigermors-droem.jpg Binary files differnew file mode 100644 index 0000000..a49c2fc --- /dev/null +++ b/static/thumbnail/bernie-spyo-svigermors-droem.jpg diff --git a/static/thumbnail/bevismateriale.jpg b/static/thumbnail/bevismateriale.jpg Binary files differindex dd03478..603a82c 100644 --- a/static/thumbnail/bevismateriale.jpg +++ b/static/thumbnail/bevismateriale.jpg diff --git a/static/thumbnail/big-pharma-is-your-daddy-now.jpg b/static/thumbnail/big-pharma-is-your-daddy-now.jpg Binary files differindex b5cdaef..9e46d62 100644 --- a/static/thumbnail/big-pharma-is-your-daddy-now.jpg +++ b/static/thumbnail/big-pharma-is-your-daddy-now.jpg diff --git a/static/thumbnail/birdsfmk-spyo-non-serviam.jpg b/static/thumbnail/birdsfmk-spyo-non-serviam.jpg Binary files differindex 6e07a15..60b4fa1 100644 --- a/static/thumbnail/birdsfmk-spyo-non-serviam.jpg +++ b/static/thumbnail/birdsfmk-spyo-non-serviam.jpg diff --git a/static/thumbnail/boern-af-asfalten.jpg b/static/thumbnail/boern-af-asfalten.jpg Binary files differnew file mode 100644 index 0000000..5ab3355 --- /dev/null +++ b/static/thumbnail/boern-af-asfalten.jpg diff --git a/static/thumbnail/bolig-priser.jpeg b/static/thumbnail/bolig-priser.jpeg Binary files differindex 650c744..b035fec 100644 --- a/static/thumbnail/bolig-priser.jpeg +++ b/static/thumbnail/bolig-priser.jpeg diff --git a/static/thumbnail/bolle-mae-ost.jpg b/static/thumbnail/bolle-mae-ost.jpg Binary files differnew file mode 100644 index 0000000..76ca1ca --- /dev/null +++ b/static/thumbnail/bolle-mae-ost.jpg diff --git a/static/thumbnail/braend-lortet-af.jpg b/static/thumbnail/braend-lortet-af.jpg Binary files differindex 7c9c487..ffef301 100644 --- a/static/thumbnail/braend-lortet-af.jpg +++ b/static/thumbnail/braend-lortet-af.jpg diff --git a/static/thumbnail/bureaukratisk-skillelinie..jpg b/static/thumbnail/bureaukratisk-skillelinie..jpg Binary files differindex 45a7522..2be060b 100644 --- a/static/thumbnail/bureaukratisk-skillelinie..jpg +++ b/static/thumbnail/bureaukratisk-skillelinie..jpg diff --git a/static/thumbnail/capitalism-has-no-democracy.jpg b/static/thumbnail/capitalism-has-no-democracy.jpg Binary files differindex 640c4a0..3910e6b 100644 --- a/static/thumbnail/capitalism-has-no-democracy.jpg +++ b/static/thumbnail/capitalism-has-no-democracy.jpg diff --git a/static/thumbnail/capitalism-is-short-termed.jpg b/static/thumbnail/capitalism-is-short-termed.jpg Binary files differindex ed75ee4..d795d1b 100644 --- a/static/thumbnail/capitalism-is-short-termed.jpg +++ b/static/thumbnail/capitalism-is-short-termed.jpg diff --git a/static/thumbnail/capitalism-spawns-misery.jpeg b/static/thumbnail/capitalism-spawns-misery.jpeg Binary files differnew file mode 100644 index 0000000..323623c --- /dev/null +++ b/static/thumbnail/capitalism-spawns-misery.jpeg diff --git a/static/thumbnail/capitalistic-democracy.jpg b/static/thumbnail/capitalistic-democracy.jpg Binary files differindex c457421..e259175 100644 --- a/static/thumbnail/capitalistic-democracy.jpg +++ b/static/thumbnail/capitalistic-democracy.jpg diff --git a/static/thumbnail/carlo-giuliani.jpg b/static/thumbnail/carlo-giuliani.jpg Binary files differnew file mode 100644 index 0000000..528ccaa --- /dev/null +++ b/static/thumbnail/carlo-giuliani.jpg diff --git a/static/thumbnail/chr.borg-er-lig-paradise-hotel.jpg b/static/thumbnail/chr.borg-er-lig-paradise-hotel.jpg Binary files differindex 060e742..bb169a8 100644 --- a/static/thumbnail/chr.borg-er-lig-paradise-hotel.jpg +++ b/static/thumbnail/chr.borg-er-lig-paradise-hotel.jpg diff --git a/static/thumbnail/communicating-thru-walls....jpg b/static/thumbnail/communicating-thru-walls....jpg Binary files differindex 09b7d34..cc1b48a 100644 --- a/static/thumbnail/communicating-thru-walls....jpg +++ b/static/thumbnail/communicating-thru-walls....jpg diff --git a/static/thumbnail/consume-more-data.jpg b/static/thumbnail/consume-more-data.jpg Binary files differnew file mode 100644 index 0000000..82922a1 --- /dev/null +++ b/static/thumbnail/consume-more-data.jpg diff --git a/static/thumbnail/corporate-greed-burn-in-hell.jpg b/static/thumbnail/corporate-greed-burn-in-hell.jpg Binary files differindex 6ca8643..c06ff55 100644 --- a/static/thumbnail/corporate-greed-burn-in-hell.jpg +++ b/static/thumbnail/corporate-greed-burn-in-hell.jpg diff --git a/static/thumbnail/corporate-greed-stinks.jpg b/static/thumbnail/corporate-greed-stinks.jpg Binary files differindex 56799ec..c4d32de 100644 --- a/static/thumbnail/corporate-greed-stinks.jpg +++ b/static/thumbnail/corporate-greed-stinks.jpg diff --git a/static/thumbnail/crimefighters.jpg b/static/thumbnail/crimefighters.jpg Binary files differindex 0c5965e..e73f2c2 100644 --- a/static/thumbnail/crimefighters.jpg +++ b/static/thumbnail/crimefighters.jpg diff --git a/static/thumbnail/danske-vaerdier-inshallah.jpg b/static/thumbnail/danske-vaerdier-inshallah.jpg Binary files differnew file mode 100644 index 0000000..3c685ec --- /dev/null +++ b/static/thumbnail/danske-vaerdier-inshallah.jpg diff --git a/static/thumbnail/de-magtfuldes-daemonkrati.jpg b/static/thumbnail/de-magtfuldes-daemonkrati.jpg Binary files differindex ba34559..76a4d09 100644 --- a/static/thumbnail/de-magtfuldes-daemonkrati.jpg +++ b/static/thumbnail/de-magtfuldes-daemonkrati.jpg diff --git a/static/thumbnail/define-freedom.jpeg b/static/thumbnail/define-freedom.jpeg Binary files differindex e850381..3a39169 100644 --- a/static/thumbnail/define-freedom.jpeg +++ b/static/thumbnail/define-freedom.jpeg diff --git a/static/thumbnail/dehumanization.jpg b/static/thumbnail/dehumanization.jpg Binary files differindex b19dab3..2cae20f 100644 --- a/static/thumbnail/dehumanization.jpg +++ b/static/thumbnail/dehumanization.jpg diff --git a/static/thumbnail/der-burde-vaere-en-graense-for-hvor-meget-mennesker-maa-eje.jpeg b/static/thumbnail/der-burde-vaere-en-graense-for-hvor-meget-mennesker-maa-eje.jpeg Binary files differindex 0e9c685..53f9b73 100644 --- a/static/thumbnail/der-burde-vaere-en-graense-for-hvor-meget-mennesker-maa-eje.jpeg +++ b/static/thumbnail/der-burde-vaere-en-graense-for-hvor-meget-mennesker-maa-eje.jpeg diff --git a/static/thumbnail/destroy-israel.jpg b/static/thumbnail/destroy-israel.jpg Binary files differnew file mode 100644 index 0000000..9d8a015 --- /dev/null +++ b/static/thumbnail/destroy-israel.jpg diff --git a/static/thumbnail/det-her-er-mit-du-kan-beholde-resten.jpeg b/static/thumbnail/det-her-er-mit-du-kan-beholde-resten.jpeg Binary files differindex 86e5b36..d9d89a7 100644 --- a/static/thumbnail/det-her-er-mit-du-kan-beholde-resten.jpeg +++ b/static/thumbnail/det-her-er-mit-du-kan-beholde-resten.jpeg diff --git a/static/thumbnail/det-ska-chefen-ik-be-om.jpg b/static/thumbnail/det-ska-chefen-ik-be-om.jpg Binary files differindex d7fa553..c483056 100644 --- a/static/thumbnail/det-ska-chefen-ik-be-om.jpg +++ b/static/thumbnail/det-ska-chefen-ik-be-om.jpg diff --git a/static/thumbnail/diagnose.jpg b/static/thumbnail/diagnose.jpg Binary files differindex 93b7a19..88752c0 100644 --- a/static/thumbnail/diagnose.jpg +++ b/static/thumbnail/diagnose.jpg diff --git a/static/thumbnail/digitaliseret-kvaeg.jpg b/static/thumbnail/digitaliseret-kvaeg.jpg Binary files differindex 82b228c..6ef530f 100644 --- a/static/thumbnail/digitaliseret-kvaeg.jpg +++ b/static/thumbnail/digitaliseret-kvaeg.jpg diff --git a/static/thumbnail/dine-penge-mig-i-roeven.jpg b/static/thumbnail/dine-penge-mig-i-roeven.jpg Binary files differindex 2d54c15..7816189 100644 --- a/static/thumbnail/dine-penge-mig-i-roeven.jpg +++ b/static/thumbnail/dine-penge-mig-i-roeven.jpg diff --git a/static/thumbnail/dine-problemer-har-ingen-problemer.jpg b/static/thumbnail/dine-problemer-har-ingen-problemer.jpg Binary files differindex 77dd0bb..4c59854 100644 --- a/static/thumbnail/dine-problemer-har-ingen-problemer.jpg +++ b/static/thumbnail/dine-problemer-har-ingen-problemer.jpg diff --git a/static/thumbnail/discusting-habit.jpeg b/static/thumbnail/discusting-habit.jpeg Binary files differindex 378e5a3..d21f486 100644 --- a/static/thumbnail/discusting-habit.jpeg +++ b/static/thumbnail/discusting-habit.jpeg diff --git a/static/thumbnail/dit-liv-blir-maalt-i-kroner-og-oere.jpeg b/static/thumbnail/dit-liv-blir-maalt-i-kroner-og-oere.jpeg Binary files differnew file mode 100644 index 0000000..5ac0d73 --- /dev/null +++ b/static/thumbnail/dit-liv-blir-maalt-i-kroner-og-oere.jpeg diff --git a/static/thumbnail/drifters-and-dreamers.jpeg b/static/thumbnail/drifters-and-dreamers.jpeg Binary files differindex 74e35eb..cd21242 100644 --- a/static/thumbnail/drifters-and-dreamers.jpeg +++ b/static/thumbnail/drifters-and-dreamers.jpeg diff --git a/static/thumbnail/du-er-bankens-lille-skoedehund.jpg b/static/thumbnail/du-er-bankens-lille-skoedehund.jpg Binary files differindex 8e6ee85..efe1d9a 100644 --- a/static/thumbnail/du-er-bankens-lille-skoedehund.jpg +++ b/static/thumbnail/du-er-bankens-lille-skoedehund.jpg diff --git a/static/thumbnail/du-lever-i-et-meritokrati.jpg b/static/thumbnail/du-lever-i-et-meritokrati.jpg Binary files differindex ec275cc..85312a0 100644 --- a/static/thumbnail/du-lever-i-et-meritokrati.jpg +++ b/static/thumbnail/du-lever-i-et-meritokrati.jpg diff --git a/static/thumbnail/eat-the-rich.jpg b/static/thumbnail/eat-the-rich.jpg Binary files differindex 006fb33..3d8513e 100644 --- a/static/thumbnail/eat-the-rich.jpg +++ b/static/thumbnail/eat-the-rich.jpg diff --git a/static/thumbnail/er-penge-dynamiske.jpg b/static/thumbnail/er-penge-dynamiske.jpg Binary files differindex c2c3a5d..6580059 100644 --- a/static/thumbnail/er-penge-dynamiske.jpg +++ b/static/thumbnail/er-penge-dynamiske.jpg diff --git a/static/thumbnail/etableret-kunst.jpg b/static/thumbnail/etableret-kunst.jpg Binary files differnew file mode 100644 index 0000000..5093ee2 --- /dev/null +++ b/static/thumbnail/etableret-kunst.jpg diff --git a/static/thumbnail/europe-build-on-colonialism.jpg b/static/thumbnail/europe-build-on-colonialism.jpg Binary files differindex 465b47a..b940780 100644 --- a/static/thumbnail/europe-build-on-colonialism.jpg +++ b/static/thumbnail/europe-build-on-colonialism.jpg diff --git a/static/thumbnail/everybody-wants-to-be-an-artist.jpg b/static/thumbnail/everybody-wants-to-be-an-artist.jpg Binary files differindex d1baa14..34e40e7 100644 --- a/static/thumbnail/everybody-wants-to-be-an-artist.jpg +++ b/static/thumbnail/everybody-wants-to-be-an-artist.jpg diff --git a/static/thumbnail/evolution-in-reverse.jpg b/static/thumbnail/evolution-in-reverse.jpg Binary files differindex 6d6b984..b0bc80a 100644 --- a/static/thumbnail/evolution-in-reverse.jpg +++ b/static/thumbnail/evolution-in-reverse.jpg diff --git a/static/thumbnail/falastin.jpg b/static/thumbnail/falastin.jpg Binary files differindex 1b24d70..18dbd13 100644 --- a/static/thumbnail/falastin.jpg +++ b/static/thumbnail/falastin.jpg diff --git a/static/thumbnail/fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg b/static/thumbnail/fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg Binary files differnew file mode 100644 index 0000000..a335597 --- /dev/null +++ b/static/thumbnail/fascist-and-racist-tendencies-requires-low-intelligent-frequencies.jpg diff --git a/static/thumbnail/fatness-world.jpg b/static/thumbnail/fatness-world.jpg Binary files differindex 181d1f0..9f9094d 100644 --- a/static/thumbnail/fatness-world.jpg +++ b/static/thumbnail/fatness-world.jpg diff --git a/static/thumbnail/forbliv-naiv.jpeg b/static/thumbnail/forbliv-naiv.jpeg Binary files differindex fdd4731..8062fa9 100644 --- a/static/thumbnail/forbliv-naiv.jpeg +++ b/static/thumbnail/forbliv-naiv.jpeg diff --git a/static/thumbnail/forbrugsfesten.jpg b/static/thumbnail/forbrugsfesten.jpg Binary files differindex 47537ab..452e730 100644 --- a/static/thumbnail/forbrugsfesten.jpg +++ b/static/thumbnail/forbrugsfesten.jpg diff --git a/static/thumbnail/freaks-come-out-at-nite.png b/static/thumbnail/freaks-come-out-at-nite.png Binary files differindex 755d041..b13b0a0 100644 --- a/static/thumbnail/freaks-come-out-at-nite.png +++ b/static/thumbnail/freaks-come-out-at-nite.png diff --git a/static/thumbnail/free-gaza.jpeg b/static/thumbnail/free-gaza.jpeg Binary files differnew file mode 100644 index 0000000..8189ee2 --- /dev/null +++ b/static/thumbnail/free-gaza.jpeg diff --git a/static/thumbnail/free-palestine-now.jpg b/static/thumbnail/free-palestine-now.jpg Binary files differnew file mode 100644 index 0000000..346fa53 --- /dev/null +++ b/static/thumbnail/free-palestine-now.jpg diff --git a/static/thumbnail/free-palestine.jpg b/static/thumbnail/free-palestine.jpg Binary files differindex 77e9fa0..aa5ef7c 100644 --- a/static/thumbnail/free-palestine.jpg +++ b/static/thumbnail/free-palestine.jpg diff --git a/static/thumbnail/frygt-benaegtelse-kontrol.jpg b/static/thumbnail/frygt-benaegtelse-kontrol.jpg Binary files differindex 9f16220..27e2ea9 100644 --- a/static/thumbnail/frygt-benaegtelse-kontrol.jpg +++ b/static/thumbnail/frygt-benaegtelse-kontrol.jpg diff --git a/static/thumbnail/gaeld-er-en-livsstil.jpg b/static/thumbnail/gaeld-er-en-livsstil.jpg Binary files differindex 022c259..96679da 100644 --- a/static/thumbnail/gaeld-er-en-livsstil.jpg +++ b/static/thumbnail/gaeld-er-en-livsstil.jpg diff --git a/static/thumbnail/gaslightin-govrment.jpg b/static/thumbnail/gaslightin-govrment.jpg Binary files differnew file mode 100644 index 0000000..ab1da87 --- /dev/null +++ b/static/thumbnail/gaslightin-govrment.jpg diff --git a/static/thumbnail/gaza.jpg b/static/thumbnail/gaza.jpg Binary files differindex 23f86b1..a797ee3 100644 --- a/static/thumbnail/gaza.jpg +++ b/static/thumbnail/gaza.jpg diff --git a/static/thumbnail/genocide.jpeg b/static/thumbnail/genocide.jpeg Binary files differindex b1c588d..aa25b1b 100644 --- a/static/thumbnail/genocide.jpeg +++ b/static/thumbnail/genocide.jpeg diff --git a/static/thumbnail/glaedelig-angst-og-godt-samnbrud.jpg b/static/thumbnail/glaedelig-angst-og-godt-samnbrud.jpg Binary files differnew file mode 100644 index 0000000..f5e7820 --- /dev/null +++ b/static/thumbnail/glaedelig-angst-og-godt-samnbrud.jpg diff --git a/static/thumbnail/godkendt-af-trustpilot.jpg b/static/thumbnail/godkendt-af-trustpilot.jpg Binary files differnew file mode 100644 index 0000000..d03bef2 --- /dev/null +++ b/static/thumbnail/godkendt-af-trustpilot.jpg diff --git a/static/thumbnail/goverment-lies.jpg b/static/thumbnail/goverment-lies.jpg Binary files differindex de59cfd..146b81a 100644 --- a/static/thumbnail/goverment-lies.jpg +++ b/static/thumbnail/goverment-lies.jpg diff --git a/static/thumbnail/greenwashing-ur-ass....jpg b/static/thumbnail/greenwashing-ur-ass....jpg Binary files differindex bf1e97f..eb158eb 100644 --- a/static/thumbnail/greenwashing-ur-ass....jpg +++ b/static/thumbnail/greenwashing-ur-ass....jpg diff --git a/static/thumbnail/greta-thunberg.jpg b/static/thumbnail/greta-thunberg.jpg Binary files differindex 1658c50..f953190 100644 --- a/static/thumbnail/greta-thunberg.jpg +++ b/static/thumbnail/greta-thunberg.jpg diff --git a/static/thumbnail/grundskyld.jpg b/static/thumbnail/grundskyld.jpg Binary files differindex f041ddf..e695fa5 100644 --- a/static/thumbnail/grundskyld.jpg +++ b/static/thumbnail/grundskyld.jpg diff --git a/static/thumbnail/hanne-reumert-ildsjael.jpg b/static/thumbnail/hanne-reumert-ildsjael.jpg Binary files differindex afe05be..8cf5b4d 100644 --- a/static/thumbnail/hanne-reumert-ildsjael.jpg +++ b/static/thumbnail/hanne-reumert-ildsjael.jpg diff --git a/static/thumbnail/hanne-reumert.jpg b/static/thumbnail/hanne-reumert.jpg Binary files differnew file mode 100644 index 0000000..d195c67 --- /dev/null +++ b/static/thumbnail/hanne-reumert.jpg diff --git a/static/thumbnail/having-self-esteem.jpg b/static/thumbnail/having-self-esteem.jpg Binary files differindex 4e9dd45..402c8b7 100644 --- a/static/thumbnail/having-self-esteem.jpg +++ b/static/thumbnail/having-self-esteem.jpg diff --git a/static/thumbnail/hellere-drivert-end-bureaukrat.jpeg.jpg b/static/thumbnail/hellere-drivert-end-bureaukrat.jpeg.jpg Binary files differindex 0b7f5cd..80897a4 100644 --- a/static/thumbnail/hellere-drivert-end-bureaukrat.jpeg.jpg +++ b/static/thumbnail/hellere-drivert-end-bureaukrat.jpeg.jpg diff --git a/static/thumbnail/hils-i-brummen-inger-mus.jpeg b/static/thumbnail/hils-i-brummen-inger-mus.jpeg Binary files differindex 90abc34..7cdf553 100644 --- a/static/thumbnail/hils-i-brummen-inger-mus.jpeg +++ b/static/thumbnail/hils-i-brummen-inger-mus.jpeg diff --git a/static/thumbnail/historieloest-samfund.jpg b/static/thumbnail/historieloest-samfund.jpg Binary files differindex 181e5c6..a2b9b38 100644 --- a/static/thumbnail/historieloest-samfund.jpg +++ b/static/thumbnail/historieloest-samfund.jpg diff --git a/static/thumbnail/hovedloest-overforbrug.jpg b/static/thumbnail/hovedloest-overforbrug.jpg Binary files differindex 1a78318..f30b105 100644 --- a/static/thumbnail/hovedloest-overforbrug.jpg +++ b/static/thumbnail/hovedloest-overforbrug.jpg diff --git a/static/thumbnail/how-is-war-an-excuse-for-peace.jpg b/static/thumbnail/how-is-war-an-excuse-for-peace.jpg Binary files differnew file mode 100644 index 0000000..20d24fe --- /dev/null +++ b/static/thumbnail/how-is-war-an-excuse-for-peace.jpg diff --git a/static/thumbnail/humans-dehumanize.jpeg b/static/thumbnail/humans-dehumanize.jpeg Binary files differindex c203955..6d9a47e 100644 --- a/static/thumbnail/humans-dehumanize.jpeg +++ b/static/thumbnail/humans-dehumanize.jpeg diff --git a/static/thumbnail/humans-dehumanize.jpg b/static/thumbnail/humans-dehumanize.jpg Binary files differindex ec88351..5a9fbad 100644 --- a/static/thumbnail/humans-dehumanize.jpg +++ b/static/thumbnail/humans-dehumanize.jpg diff --git a/static/thumbnail/hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg b/static/thumbnail/hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg Binary files differnew file mode 100644 index 0000000..1a4074b --- /dev/null +++ b/static/thumbnail/hvem-soerger-for-du-har-gaeld-og-hvorfor.jpg diff --git a/static/thumbnail/hverdagens-helte.jpg b/static/thumbnail/hverdagens-helte.jpg Binary files differnew file mode 100644 index 0000000..17d5243 --- /dev/null +++ b/static/thumbnail/hverdagens-helte.jpg diff --git a/static/thumbnail/hvid-hetro-mand-blind.jpg b/static/thumbnail/hvid-hetro-mand-blind.jpg Binary files differindex 77397ab..15949b5 100644 --- a/static/thumbnail/hvid-hetro-mand-blind.jpg +++ b/static/thumbnail/hvid-hetro-mand-blind.jpg diff --git a/static/thumbnail/hvid-skroebelighed.jpg b/static/thumbnail/hvid-skroebelighed.jpg Binary files differindex b6181b2..948f561 100644 --- a/static/thumbnail/hvid-skroebelighed.jpg +++ b/static/thumbnail/hvid-skroebelighed.jpg diff --git a/static/thumbnail/hvorfor-er-frihed-ik-en-global-rettighed.jpg b/static/thumbnail/hvorfor-er-frihed-ik-en-global-rettighed.jpg Binary files differindex 4c07c8d..60971ab 100644 --- a/static/thumbnail/hvorfor-er-frihed-ik-en-global-rettighed.jpg +++ b/static/thumbnail/hvorfor-er-frihed-ik-en-global-rettighed.jpg diff --git a/static/thumbnail/iTS FREE PALESTiNE OR WE NOt FRiENDS.webp b/static/thumbnail/iTS FREE PALESTiNE OR WE NOt FRiENDS.webp Binary files differnew file mode 100644 index 0000000..23be360 --- /dev/null +++ b/static/thumbnail/iTS FREE PALESTiNE OR WE NOt FRiENDS.webp diff --git a/static/thumbnail/ill-never-comply.jpg b/static/thumbnail/ill-never-comply.jpg Binary files differnew file mode 100644 index 0000000..ecd7b4e --- /dev/null +++ b/static/thumbnail/ill-never-comply.jpg diff --git a/static/thumbnail/im-gay.jpg b/static/thumbnail/im-gay.jpg Binary files differindex e06ad3a..31be3a5 100644 --- a/static/thumbnail/im-gay.jpg +++ b/static/thumbnail/im-gay.jpg diff --git a/static/thumbnail/imperialistic-mindfulness.jpg b/static/thumbnail/imperialistic-mindfulness.jpg Binary files differindex 36bf682..d99aaea 100644 --- a/static/thumbnail/imperialistic-mindfulness.jpg +++ b/static/thumbnail/imperialistic-mindfulness.jpg diff --git a/static/thumbnail/in-the-end-its-all-4-sale.jpg b/static/thumbnail/in-the-end-its-all-4-sale.jpg Binary files differnew file mode 100644 index 0000000..3b42ad4 --- /dev/null +++ b/static/thumbnail/in-the-end-its-all-4-sale.jpg diff --git a/static/thumbnail/ingen-substans-kun-ydre-glans.jpg b/static/thumbnail/ingen-substans-kun-ydre-glans.jpg Binary files differnew file mode 100644 index 0000000..4b75a85 --- /dev/null +++ b/static/thumbnail/ingen-substans-kun-ydre-glans.jpg diff --git a/static/thumbnail/jeg-er-saerdeles-omstillingsparat.jpg b/static/thumbnail/jeg-er-saerdeles-omstillingsparat.jpg Binary files differindex a5302fd..6bfae66 100644 --- a/static/thumbnail/jeg-er-saerdeles-omstillingsparat.jpg +++ b/static/thumbnail/jeg-er-saerdeles-omstillingsparat.jpg diff --git a/static/thumbnail/jeg-forblev-i-narniaskabet.jpg b/static/thumbnail/jeg-forblev-i-narniaskabet.jpg Binary files differindex 2fe09ee..0db0f9e 100644 --- a/static/thumbnail/jeg-forblev-i-narniaskabet.jpg +++ b/static/thumbnail/jeg-forblev-i-narniaskabet.jpg diff --git a/static/thumbnail/jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg b/static/thumbnail/jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg Binary files differnew file mode 100644 index 0000000..160072b --- /dev/null +++ b/static/thumbnail/jeg-har-et-savn-til-noget-jeg-ikke-helt-kan-beskrive.jpg diff --git a/static/thumbnail/job-noget-der-ska-passes.jpg b/static/thumbnail/job-noget-der-ska-passes.jpg Binary files differindex cedb746..4c7da28 100644 --- a/static/thumbnail/job-noget-der-ska-passes.jpg +++ b/static/thumbnail/job-noget-der-ska-passes.jpg diff --git a/static/thumbnail/joesses-per.jpg b/static/thumbnail/joesses-per.jpg Binary files differnew file mode 100644 index 0000000..aa16379 --- /dev/null +++ b/static/thumbnail/joesses-per.jpg diff --git a/static/thumbnail/jonel-mitrovan.jpg b/static/thumbnail/jonel-mitrovan.jpg Binary files differnew file mode 100644 index 0000000..054777f --- /dev/null +++ b/static/thumbnail/jonel-mitrovan.jpg diff --git a/static/thumbnail/jydereservat.jpg b/static/thumbnail/jydereservat.jpg Binary files differindex ec792c5..f3d3178 100644 --- a/static/thumbnail/jydereservat.jpg +++ b/static/thumbnail/jydereservat.jpg diff --git a/static/thumbnail/ka-mette-mon-mentalisere.jpg b/static/thumbnail/ka-mette-mon-mentalisere.jpg Binary files differnew file mode 100644 index 0000000..9597a1d --- /dev/null +++ b/static/thumbnail/ka-mette-mon-mentalisere.jpg diff --git a/static/thumbnail/kapitalen-er-begejstret.jpg b/static/thumbnail/kapitalen-er-begejstret.jpg Binary files differindex 8545d30..6daff81 100644 --- a/static/thumbnail/kapitalen-er-begejstret.jpg +++ b/static/thumbnail/kapitalen-er-begejstret.jpg diff --git a/static/thumbnail/kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg b/static/thumbnail/kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg Binary files differnew file mode 100644 index 0000000..b2ebc8e --- /dev/null +++ b/static/thumbnail/kapitalismen-har-foesdag-og-du-ikke-inviteret.jpg diff --git a/static/thumbnail/kbhs-kommune-din-kaerlige-krykstok.jpg b/static/thumbnail/kbhs-kommune-din-kaerlige-krykstok.jpg Binary files differindex ca3e28c..1c80aba 100644 --- a/static/thumbnail/kbhs-kommune-din-kaerlige-krykstok.jpg +++ b/static/thumbnail/kbhs-kommune-din-kaerlige-krykstok.jpg diff --git a/static/thumbnail/kids-at-heart.jpg b/static/thumbnail/kids-at-heart.jpg Binary files differnew file mode 100644 index 0000000..291e6f7 --- /dev/null +++ b/static/thumbnail/kids-at-heart.jpg diff --git a/static/thumbnail/koeb-mer.jpg b/static/thumbnail/koeb-mer.jpg Binary files differindex 0ce461d..01cb832 100644 --- a/static/thumbnail/koeb-mer.jpg +++ b/static/thumbnail/koeb-mer.jpg diff --git a/static/thumbnail/kofod-skole-her-er-der-plads-til-dig-og-mig.jpeg b/static/thumbnail/kofod-skole-her-er-der-plads-til-dig-og-mig.jpeg Binary files differindex a56bd8a..449f555 100644 --- a/static/thumbnail/kofod-skole-her-er-der-plads-til-dig-og-mig.jpeg +++ b/static/thumbnail/kofod-skole-her-er-der-plads-til-dig-og-mig.jpeg diff --git a/static/thumbnail/kunst-og-kultur-fungere-bedst....jpg b/static/thumbnail/kunst-og-kultur-fungere-bedst....jpg Binary files differindex ef684a7..cd2966e 100644 --- a/static/thumbnail/kunst-og-kultur-fungere-bedst....jpg +++ b/static/thumbnail/kunst-og-kultur-fungere-bedst....jpg diff --git a/static/thumbnail/landsforraeder-bjarne-corydon.jpg b/static/thumbnail/landsforraeder-bjarne-corydon.jpg Binary files differindex 7058143..23c55bf 100644 --- a/static/thumbnail/landsforraeder-bjarne-corydon.jpg +++ b/static/thumbnail/landsforraeder-bjarne-corydon.jpg diff --git a/static/thumbnail/leave-noone-behind.jpg b/static/thumbnail/leave-noone-behind.jpg Binary files differindex e65332b..72b0751 100644 --- a/static/thumbnail/leave-noone-behind.jpg +++ b/static/thumbnail/leave-noone-behind.jpg diff --git a/static/thumbnail/lige-her-giver-jeg-hamsterhjulet-fingeren.png b/static/thumbnail/lige-her-giver-jeg-hamsterhjulet-fingeren.png Binary files differnew file mode 100644 index 0000000..3b3df9a --- /dev/null +++ b/static/thumbnail/lige-her-giver-jeg-hamsterhjulet-fingeren.png diff --git a/static/thumbnail/like-mindless-drones-you-blindly-follow.jpg b/static/thumbnail/like-mindless-drones-you-blindly-follow.jpg Binary files differnew file mode 100644 index 0000000..cf45b1e --- /dev/null +++ b/static/thumbnail/like-mindless-drones-you-blindly-follow.jpg diff --git a/static/thumbnail/listen-to-greta-thunberg.jpeg b/static/thumbnail/listen-to-greta-thunberg.jpeg Binary files differindex d5a487b..2b3b1cd 100644 --- a/static/thumbnail/listen-to-greta-thunberg.jpeg +++ b/static/thumbnail/listen-to-greta-thunberg.jpeg diff --git a/static/thumbnail/livet-er-en-dans-paa-roser.jpg b/static/thumbnail/livet-er-en-dans-paa-roser.jpg Binary files differnew file mode 100644 index 0000000..e28c073 --- /dev/null +++ b/static/thumbnail/livet-er-en-dans-paa-roser.jpg diff --git a/static/thumbnail/lyt-ik-til-de-voksne-overhoved.jpg b/static/thumbnail/lyt-ik-til-de-voksne-overhoved.jpg Binary files differindex ef57c41..89254c1 100644 --- a/static/thumbnail/lyt-ik-til-de-voksne-overhoved.jpg +++ b/static/thumbnail/lyt-ik-til-de-voksne-overhoved.jpg diff --git a/static/thumbnail/magtsyge-mette-styrer-showet.jpg b/static/thumbnail/magtsyge-mette-styrer-showet.jpg Binary files differnew file mode 100644 index 0000000..5b9313c --- /dev/null +++ b/static/thumbnail/magtsyge-mette-styrer-showet.jpg diff --git a/static/thumbnail/mangfoldighed-nu.jpg b/static/thumbnail/mangfoldighed-nu.jpg Binary files differindex c275f31..8549f60 100644 --- a/static/thumbnail/mangfoldighed-nu.jpg +++ b/static/thumbnail/mangfoldighed-nu.jpg diff --git a/static/thumbnail/medfoedte-privilegier.jpeg b/static/thumbnail/medfoedte-privilegier.jpeg Binary files differindex 0bb221d..904c784 100644 --- a/static/thumbnail/medfoedte-privilegier.jpeg +++ b/static/thumbnail/medfoedte-privilegier.jpeg diff --git a/static/thumbnail/medmenneskelighed.jpg b/static/thumbnail/medmenneskelighed.jpg Binary files differindex d2ab19f..1b283b2 100644 --- a/static/thumbnail/medmenneskelighed.jpg +++ b/static/thumbnail/medmenneskelighed.jpg diff --git a/static/thumbnail/mennesket-foer-profit.jpg b/static/thumbnail/mennesket-foer-profit.jpg Binary files differindex 53cc713..953abea 100644 --- a/static/thumbnail/mennesket-foer-profit.jpg +++ b/static/thumbnail/mennesket-foer-profit.jpg diff --git a/static/thumbnail/migrantes-valientes.jpg b/static/thumbnail/migrantes-valientes.jpg Binary files differindex 2b38bb5..1a52855 100644 --- a/static/thumbnail/migrantes-valientes.jpg +++ b/static/thumbnail/migrantes-valientes.jpg diff --git a/static/thumbnail/naar-inkompetence-er-spidskompetance.jpg b/static/thumbnail/naar-inkompetence-er-spidskompetance.jpg Binary files differnew file mode 100644 index 0000000..eca047e --- /dev/null +++ b/static/thumbnail/naar-inkompetence-er-spidskompetance.jpg diff --git a/static/thumbnail/ne-traveillez-jamaiz.jpg b/static/thumbnail/ne-traveillez-jamaiz.jpg Binary files differindex 34a66f8..0c55708 100644 --- a/static/thumbnail/ne-traveillez-jamaiz.jpg +++ b/static/thumbnail/ne-traveillez-jamaiz.jpg diff --git a/static/thumbnail/neocolonialism-still-going-on.jpg b/static/thumbnail/neocolonialism-still-going-on.jpg Binary files differindex c5365ca..8b5f1f7 100644 --- a/static/thumbnail/neocolonialism-still-going-on.jpg +++ b/static/thumbnail/neocolonialism-still-going-on.jpg diff --git a/static/thumbnail/no-borders.jpg b/static/thumbnail/no-borders.jpg Binary files differnew file mode 100644 index 0000000..d9037dd --- /dev/null +++ b/static/thumbnail/no-borders.jpg diff --git a/static/thumbnail/no-job-more-life.jpg b/static/thumbnail/no-job-more-life.jpg Binary files differindex c8fc7f6..9835310 100644 --- a/static/thumbnail/no-job-more-life.jpg +++ b/static/thumbnail/no-job-more-life.jpg diff --git a/static/thumbnail/non-compatible-players.jpeg b/static/thumbnail/non-compatible-players.jpeg Binary files differnew file mode 100644 index 0000000..85b5814 --- /dev/null +++ b/static/thumbnail/non-compatible-players.jpeg diff --git a/static/thumbnail/non-compatible-players.jpg b/static/thumbnail/non-compatible-players.jpg Binary files differnew file mode 100644 index 0000000..69a5c08 --- /dev/null +++ b/static/thumbnail/non-compatible-players.jpg diff --git a/static/thumbnail/nonfigurativt.jpg b/static/thumbnail/nonfigurativt.jpg Binary files differindex 53070c9..07b15ca 100644 --- a/static/thumbnail/nonfigurativt.jpg +++ b/static/thumbnail/nonfigurativt.jpg diff --git a/static/thumbnail/normalisering.jpg b/static/thumbnail/normalisering.jpg Binary files differnew file mode 100644 index 0000000..faeda5f --- /dev/null +++ b/static/thumbnail/normalisering.jpg diff --git a/static/thumbnail/normen-trives.jpg b/static/thumbnail/normen-trives.jpg Binary files differindex fc07c45..54f90dc 100644 --- a/static/thumbnail/normen-trives.jpg +++ b/static/thumbnail/normen-trives.jpg diff --git a/static/thumbnail/normrytteriet-lever.jpg b/static/thumbnail/normrytteriet-lever.jpg Binary files differnew file mode 100644 index 0000000..ca41e67 --- /dev/null +++ b/static/thumbnail/normrytteriet-lever.jpg diff --git a/static/thumbnail/on-a-raft-23.jpg b/static/thumbnail/on-a-raft-23.jpg Binary files differnew file mode 100644 index 0000000..c6c88e2 --- /dev/null +++ b/static/thumbnail/on-a-raft-23.jpg diff --git a/static/thumbnail/ordnung-muss-sein.jpg b/static/thumbnail/ordnung-muss-sein.jpg Binary files differindex d57385c..2f6eb27 100644 --- a/static/thumbnail/ordnung-muss-sein.jpg +++ b/static/thumbnail/ordnung-muss-sein.jpg diff --git a/static/thumbnail/overkill-of-consumption.jpeg b/static/thumbnail/overkill-of-consumption.jpeg Binary files differnew file mode 100644 index 0000000..6d4e92a --- /dev/null +++ b/static/thumbnail/overkill-of-consumption.jpeg diff --git a/static/thumbnail/paa-farten.jpg b/static/thumbnail/paa-farten.jpg Binary files differindex d75f306..57b9933 100644 --- a/static/thumbnail/paa-farten.jpg +++ b/static/thumbnail/paa-farten.jpg diff --git a/static/thumbnail/palestine-will-be-free.jpg b/static/thumbnail/palestine-will-be-free.jpg Binary files differindex 51213a6..061174d 100644 --- a/static/thumbnail/palestine-will-be-free.jpg +++ b/static/thumbnail/palestine-will-be-free.jpg diff --git a/static/thumbnail/palestine.jpg b/static/thumbnail/palestine.jpg Binary files differindex 97013ee..4de82c8 100644 --- a/static/thumbnail/palestine.jpg +++ b/static/thumbnail/palestine.jpg diff --git a/static/thumbnail/pasiv-indkomst.jpg b/static/thumbnail/pasiv-indkomst.jpg Binary files differindex 5cdb8cb..25a68de 100644 --- a/static/thumbnail/pasiv-indkomst.jpg +++ b/static/thumbnail/pasiv-indkomst.jpg diff --git a/static/thumbnail/penge-laveste-faellesnaevner.jpeg b/static/thumbnail/penge-laveste-faellesnaevner.jpeg Binary files differnew file mode 100644 index 0000000..06c8024 --- /dev/null +++ b/static/thumbnail/penge-laveste-faellesnaevner.jpeg diff --git a/static/thumbnail/plastifikation.jpeg b/static/thumbnail/plastifikation.jpeg Binary files differnew file mode 100644 index 0000000..6e1c5e3 --- /dev/null +++ b/static/thumbnail/plastifikation.jpeg diff --git a/static/thumbnail/politically-organised-denial.jpg b/static/thumbnail/politically-organised-denial.jpg Binary files differindex 612d9a2..0f301e4 100644 --- a/static/thumbnail/politically-organised-denial.jpg +++ b/static/thumbnail/politically-organised-denial.jpg diff --git a/static/thumbnail/politiciansucks.jpg b/static/thumbnail/politiciansucks.jpg Binary files differindex ec33f82..b0fa924 100644 --- a/static/thumbnail/politiciansucks.jpg +++ b/static/thumbnail/politiciansucks.jpg diff --git a/static/thumbnail/politik-er-lig-poels.jpg b/static/thumbnail/politik-er-lig-poels.jpg Binary files differindex 41f3a7d..d0e7b0e 100644 --- a/static/thumbnail/politik-er-lig-poels.jpg +++ b/static/thumbnail/politik-er-lig-poels.jpg diff --git a/static/thumbnail/politikere-er-tyraner.jpeg b/static/thumbnail/politikere-er-tyraner.jpeg Binary files differindex 37e155f..fd58e6a 100644 --- a/static/thumbnail/politikere-er-tyraner.jpeg +++ b/static/thumbnail/politikere-er-tyraner.jpeg diff --git a/static/thumbnail/politkivskaja.jpg b/static/thumbnail/politkivskaja.jpg Binary files differnew file mode 100644 index 0000000..d179a11 --- /dev/null +++ b/static/thumbnail/politkivskaja.jpg diff --git a/static/thumbnail/privat-ejendom.jpg b/static/thumbnail/privat-ejendom.jpg Binary files differindex dc52d75..a12bbf2 100644 --- a/static/thumbnail/privat-ejendom.jpg +++ b/static/thumbnail/privat-ejendom.jpg diff --git a/static/thumbnail/profit-orienteret-roevsnak.jpg b/static/thumbnail/profit-orienteret-roevsnak.jpg Binary files differindex 7d3734a..d57db88 100644 --- a/static/thumbnail/profit-orienteret-roevsnak.jpg +++ b/static/thumbnail/profit-orienteret-roevsnak.jpg diff --git a/static/thumbnail/profitmageri.jpg b/static/thumbnail/profitmageri.jpg Binary files differindex 4fcc2ba..a1f320e 100644 --- a/static/thumbnail/profitmageri.jpg +++ b/static/thumbnail/profitmageri.jpg diff --git a/static/thumbnail/pseudo-dit-liv-er-roev-skod.jpg b/static/thumbnail/pseudo-dit-liv-er-roev-skod.jpg Binary files differindex fb6df2d..0ab8a1b 100644 --- a/static/thumbnail/pseudo-dit-liv-er-roev-skod.jpg +++ b/static/thumbnail/pseudo-dit-liv-er-roev-skod.jpg diff --git a/static/thumbnail/punish-political-misconduct.jpeg b/static/thumbnail/punish-political-misconduct.jpeg Binary files differnew file mode 100644 index 0000000..9771c48 --- /dev/null +++ b/static/thumbnail/punish-political-misconduct.jpeg diff --git a/static/thumbnail/refugees-welcome.jpg b/static/thumbnail/refugees-welcome.jpg Binary files differindex ba15896..e4c97cc 100644 --- a/static/thumbnail/refugees-welcome.jpg +++ b/static/thumbnail/refugees-welcome.jpg diff --git a/static/thumbnail/remove-politicians-now.jpg b/static/thumbnail/remove-politicians-now.jpg Binary files differindex 39e7d5c..c975cf4 100644 --- a/static/thumbnail/remove-politicians-now.jpg +++ b/static/thumbnail/remove-politicians-now.jpg diff --git a/static/thumbnail/return-of-investment.jpg b/static/thumbnail/return-of-investment.jpg Binary files differnew file mode 100644 index 0000000..168955f --- /dev/null +++ b/static/thumbnail/return-of-investment.jpg diff --git a/static/thumbnail/saa-der-betalt.jpeg b/static/thumbnail/saa-der-betalt.jpeg Binary files differnew file mode 100644 index 0000000..cf74a4e --- /dev/null +++ b/static/thumbnail/saa-der-betalt.jpeg diff --git a/static/thumbnail/samarbejde-med-kahler.jpg b/static/thumbnail/samarbejde-med-kahler.jpg Binary files differnew file mode 100644 index 0000000..a3b2f8f --- /dev/null +++ b/static/thumbnail/samarbejde-med-kahler.jpg diff --git a/static/thumbnail/samfundssvind.jpeg b/static/thumbnail/samfundssvind.jpeg Binary files differindex 4b15ba5..85b55bd 100644 --- a/static/thumbnail/samfundssvind.jpeg +++ b/static/thumbnail/samfundssvind.jpeg diff --git a/static/thumbnail/sammen-hver-for-sig.jpg b/static/thumbnail/sammen-hver-for-sig.jpg Binary files differindex ece1485..c05fc0a 100644 --- a/static/thumbnail/sammen-hver-for-sig.jpg +++ b/static/thumbnail/sammen-hver-for-sig.jpg diff --git a/static/thumbnail/sass-den-op-fra-slap.jpg b/static/thumbnail/sass-den-op-fra-slap.jpg Binary files differindex ff7e57d..9e4ed86 100644 --- a/static/thumbnail/sass-den-op-fra-slap.jpg +++ b/static/thumbnail/sass-den-op-fra-slap.jpg diff --git a/static/thumbnail/se-venedi-og-doed-over-fisketorvet.jpg b/static/thumbnail/se-venedi-og-doed-over-fisketorvet.jpg Binary files differnew file mode 100644 index 0000000..fb5238b --- /dev/null +++ b/static/thumbnail/se-venedi-og-doed-over-fisketorvet.jpg diff --git a/static/thumbnail/self-sufficient-with-no-image.jpeg b/static/thumbnail/self-sufficient-with-no-image.jpeg Binary files differindex 21f0a66..7242078 100644 --- a/static/thumbnail/self-sufficient-with-no-image.jpeg +++ b/static/thumbnail/self-sufficient-with-no-image.jpeg diff --git a/static/thumbnail/self-sufficient-with-no-image.png b/static/thumbnail/self-sufficient-with-no-image.png Binary files differnew file mode 100644 index 0000000..bd470e8 --- /dev/null +++ b/static/thumbnail/self-sufficient-with-no-image.png diff --git a/static/thumbnail/selfhate.jpg b/static/thumbnail/selfhate.jpg Binary files differnew file mode 100644 index 0000000..190fcb2 --- /dev/null +++ b/static/thumbnail/selfhate.jpg diff --git a/static/thumbnail/selvcenterd.jpg b/static/thumbnail/selvcenterd.jpg Binary files differindex 93e433c..e02ea4c 100644 --- a/static/thumbnail/selvcenterd.jpg +++ b/static/thumbnail/selvcenterd.jpg diff --git a/static/thumbnail/selvfed-isme.jpg b/static/thumbnail/selvfed-isme.jpg Binary files differindex 878716e..6771812 100644 --- a/static/thumbnail/selvfed-isme.jpg +++ b/static/thumbnail/selvfed-isme.jpg diff --git a/static/thumbnail/skabsfacister.jpg b/static/thumbnail/skabsfacister.jpg Binary files differindex e8f8d1c..bd4a277 100644 --- a/static/thumbnail/skabsfacister.jpg +++ b/static/thumbnail/skabsfacister.jpg diff --git a/static/thumbnail/slum.png b/static/thumbnail/slum.png Binary files differindex 561602c..3ca6555 100644 --- a/static/thumbnail/slum.png +++ b/static/thumbnail/slum.png diff --git a/static/thumbnail/smaafacistisk-ledelse.jpg b/static/thumbnail/smaafacistisk-ledelse.jpg Binary files differindex 0ae98e9..61803c3 100644 --- a/static/thumbnail/smaafacistisk-ledelse.jpg +++ b/static/thumbnail/smaafacistisk-ledelse.jpg diff --git a/static/thumbnail/smaafacistist-og-kulturloest.jpg b/static/thumbnail/smaafacistist-og-kulturloest.jpg Binary files differindex f125a6c..85e478b 100644 --- a/static/thumbnail/smaafacistist-og-kulturloest.jpg +++ b/static/thumbnail/smaafacistist-og-kulturloest.jpg diff --git a/static/thumbnail/sovepillen.jpg b/static/thumbnail/sovepillen.jpg Binary files differindex b7907b5..543b6e3 100644 --- a/static/thumbnail/sovepillen.jpg +++ b/static/thumbnail/sovepillen.jpg diff --git a/static/thumbnail/spyo-graffitins-amin-jensen.jpg b/static/thumbnail/spyo-graffitins-amin-jensen.jpg Binary files differnew file mode 100644 index 0000000..5fa61b2 --- /dev/null +++ b/static/thumbnail/spyo-graffitins-amin-jensen.jpg diff --git a/static/thumbnail/spyo-is-a-9i.jpg b/static/thumbnail/spyo-is-a-9i.jpg Binary files differnew file mode 100644 index 0000000..3e9806d --- /dev/null +++ b/static/thumbnail/spyo-is-a-9i.jpg diff --git a/static/thumbnail/spyoscape.png b/static/thumbnail/spyoscape.png Binary files differindex a53eeb5..03fb685 100644 --- a/static/thumbnail/spyoscape.png +++ b/static/thumbnail/spyoscape.png diff --git a/static/thumbnail/stadig-uden-e-boks-og-nem-id.jpg b/static/thumbnail/stadig-uden-e-boks-og-nem-id.jpg Binary files differindex 246fa6f..7125df3 100644 --- a/static/thumbnail/stadig-uden-e-boks-og-nem-id.jpg +++ b/static/thumbnail/stadig-uden-e-boks-og-nem-id.jpg diff --git a/static/thumbnail/stakkels-hvide-patriark.jpg b/static/thumbnail/stakkels-hvide-patriark.jpg Binary files differnew file mode 100644 index 0000000..a3cb7dd --- /dev/null +++ b/static/thumbnail/stakkels-hvide-patriark.jpg diff --git a/static/thumbnail/stavnsbundet.jpeg b/static/thumbnail/stavnsbundet.jpeg Binary files differindex 1c283f2..9fdc3fb 100644 --- a/static/thumbnail/stavnsbundet.jpeg +++ b/static/thumbnail/stavnsbundet.jpeg diff --git a/static/thumbnail/stenbroens-buttede-afrodite.jpeg b/static/thumbnail/stenbroens-buttede-afrodite.jpeg Binary files differindex 659cee7..30a9328 100644 --- a/static/thumbnail/stenbroens-buttede-afrodite.jpeg +++ b/static/thumbnail/stenbroens-buttede-afrodite.jpeg diff --git a/static/thumbnail/stilstand-i-vores-tilstand.jpg b/static/thumbnail/stilstand-i-vores-tilstand.jpg Binary files differnew file mode 100644 index 0000000..0558aca --- /dev/null +++ b/static/thumbnail/stilstand-i-vores-tilstand.jpg diff --git a/static/thumbnail/stinker-af-gentrificering-og-ussel-profitmageri.jpg b/static/thumbnail/stinker-af-gentrificering-og-ussel-profitmageri.jpg Binary files differnew file mode 100644 index 0000000..f98daca --- /dev/null +++ b/static/thumbnail/stinker-af-gentrificering-og-ussel-profitmageri.jpg diff --git a/static/thumbnail/stop-believing-politicians.jpg b/static/thumbnail/stop-believing-politicians.jpg Binary files differnew file mode 100644 index 0000000..b5556ad --- /dev/null +++ b/static/thumbnail/stop-believing-politicians.jpg diff --git a/static/thumbnail/stop-idolizing-the-rich-and-powerfull.jpg b/static/thumbnail/stop-idolizing-the-rich-and-powerfull.jpg Binary files differnew file mode 100644 index 0000000..1a416d5 --- /dev/null +++ b/static/thumbnail/stop-idolizing-the-rich-and-powerfull.jpg diff --git a/static/thumbnail/stop-making-rich-people-important.jpg b/static/thumbnail/stop-making-rich-people-important.jpg Binary files differindex 72c5065..dcd2048 100644 --- a/static/thumbnail/stop-making-rich-people-important.jpg +++ b/static/thumbnail/stop-making-rich-people-important.jpg diff --git a/static/thumbnail/stop-med-at-fodre-maskinen.jpeg b/static/thumbnail/stop-med-at-fodre-maskinen.jpeg Binary files differindex 08046ce..97030b9 100644 --- a/static/thumbnail/stop-med-at-fodre-maskinen.jpeg +++ b/static/thumbnail/stop-med-at-fodre-maskinen.jpeg diff --git a/static/thumbnail/street-artens-tessa.jpeg b/static/thumbnail/street-artens-tessa.jpeg Binary files differindex 9345c00..88445ee 100644 --- a/static/thumbnail/street-artens-tessa.jpeg +++ b/static/thumbnail/street-artens-tessa.jpeg diff --git a/static/thumbnail/strukturel-fattigdom.jpg b/static/thumbnail/strukturel-fattigdom.jpg Binary files differindex 923f1bb..abd618d 100644 --- a/static/thumbnail/strukturel-fattigdom.jpg +++ b/static/thumbnail/strukturel-fattigdom.jpg diff --git a/static/thumbnail/tak-magthaverne..-for-at-holde-dig-beskaeftiget.jpg b/static/thumbnail/tak-magthaverne..-for-at-holde-dig-beskaeftiget.jpg Binary files differindex 2d6638b..f25b3fc 100644 --- a/static/thumbnail/tak-magthaverne..-for-at-holde-dig-beskaeftiget.jpg +++ b/static/thumbnail/tak-magthaverne..-for-at-holde-dig-beskaeftiget.jpg diff --git a/static/thumbnail/the-beauty-of-ethnicity.jpg b/static/thumbnail/the-beauty-of-ethnicity.jpg Binary files differindex 242b31a..c249bc5 100644 --- a/static/thumbnail/the-beauty-of-ethnicity.jpg +++ b/static/thumbnail/the-beauty-of-ethnicity.jpg diff --git a/static/thumbnail/the-janitors-from-caucasus.jpg b/static/thumbnail/the-janitors-from-caucasus.jpg Binary files differnew file mode 100644 index 0000000..7c7b2e5 --- /dev/null +++ b/static/thumbnail/the-janitors-from-caucasus.jpg diff --git a/static/thumbnail/the-rat-race.jpeg b/static/thumbnail/the-rat-race.jpeg Binary files differindex 48aa6a5..4f4669a 100644 --- a/static/thumbnail/the-rat-race.jpeg +++ b/static/thumbnail/the-rat-race.jpeg diff --git a/static/thumbnail/this-may-not-reflect-real-live-situations.jpg b/static/thumbnail/this-may-not-reflect-real-live-situations.jpg Binary files differindex 7b52da6..9ec30c3 100644 --- a/static/thumbnail/this-may-not-reflect-real-live-situations.jpg +++ b/static/thumbnail/this-may-not-reflect-real-live-situations.jpg diff --git a/static/thumbnail/tilgivelse-tilblivelse.jpg b/static/thumbnail/tilgivelse-tilblivelse.jpg Binary files differnew file mode 100644 index 0000000..5be33e6 --- /dev/null +++ b/static/thumbnail/tilgivelse-tilblivelse.jpg diff --git a/static/thumbnail/trespassers-will-be-acknowledged....jpg b/static/thumbnail/trespassers-will-be-acknowledged....jpg Binary files differindex c7eeefe..923109a 100644 --- a/static/thumbnail/trespassers-will-be-acknowledged....jpg +++ b/static/thumbnail/trespassers-will-be-acknowledged....jpg diff --git a/static/thumbnail/trespassers-will-be-appreciated.jpg b/static/thumbnail/trespassers-will-be-appreciated.jpg Binary files differindex 2b52847..e398571 100644 --- a/static/thumbnail/trespassers-will-be-appreciated.jpg +++ b/static/thumbnail/trespassers-will-be-appreciated.jpg diff --git a/static/thumbnail/try-privatizing-this.jpg b/static/thumbnail/try-privatizing-this.jpg Binary files differindex 7465375..e1944e1 100644 --- a/static/thumbnail/try-privatizing-this.jpg +++ b/static/thumbnail/try-privatizing-this.jpg diff --git a/static/thumbnail/uden-manus-tak.jpg b/static/thumbnail/uden-manus-tak.jpg Binary files differnew file mode 100644 index 0000000..073361b --- /dev/null +++ b/static/thumbnail/uden-manus-tak.jpg diff --git a/static/thumbnail/umenneskeligt.jpg b/static/thumbnail/umenneskeligt.jpg Binary files differindex c00c209..2a72ce4 100644 --- a/static/thumbnail/umenneskeligt.jpg +++ b/static/thumbnail/umenneskeligt.jpg diff --git a/static/thumbnail/unfluencers.jpg b/static/thumbnail/unfluencers.jpg Binary files differnew file mode 100644 index 0000000..16a6cfe --- /dev/null +++ b/static/thumbnail/unfluencers.jpg diff --git a/static/thumbnail/vaekst-er-fremgang.jpeg b/static/thumbnail/vaekst-er-fremgang.jpeg Binary files differnew file mode 100644 index 0000000..c850e2e --- /dev/null +++ b/static/thumbnail/vaekst-er-fremgang.jpeg diff --git a/static/thumbnail/var-det-det-hele-værd.jpg b/static/thumbnail/var-det-det-hele-værd.jpg Binary files differnew file mode 100644 index 0000000..5d596e6 --- /dev/null +++ b/static/thumbnail/var-det-det-hele-værd.jpg diff --git a/static/thumbnail/vask-din-roev.jpeg b/static/thumbnail/vask-din-roev.jpeg Binary files differnew file mode 100644 index 0000000..bc1db22 --- /dev/null +++ b/static/thumbnail/vask-din-roev.jpeg diff --git a/static/thumbnail/voksenbarn-uden-nemid.png b/static/thumbnail/voksenbarn-uden-nemid.png Binary files differindex 98a3467..48bf70b 100644 --- a/static/thumbnail/voksenbarn-uden-nemid.png +++ b/static/thumbnail/voksenbarn-uden-nemid.png diff --git a/static/thumbnail/watch-ur-life-vanish-from-capitalism.jpg b/static/thumbnail/watch-ur-life-vanish-from-capitalism.jpg Binary files differnew file mode 100644 index 0000000..f0394ba --- /dev/null +++ b/static/thumbnail/watch-ur-life-vanish-from-capitalism.jpg diff --git a/static/thumbnail/why-has-debt-become-sovereign.jpg b/static/thumbnail/why-has-debt-become-sovereign.jpg Binary files differnew file mode 100644 index 0000000..18f4a3b --- /dev/null +++ b/static/thumbnail/why-has-debt-become-sovereign.jpg diff --git a/static/thumbnail/world-economic-forum.jpg b/static/thumbnail/world-economic-forum.jpg Binary files differindex 110f318..1bef60c 100644 --- a/static/thumbnail/world-economic-forum.jpg +++ b/static/thumbnail/world-economic-forum.jpg diff --git a/static/thumbnail/yahya-sinwar.jpg b/static/thumbnail/yahya-sinwar.jpg Binary files differnew file mode 100644 index 0000000..9a43ec0 --- /dev/null +++ b/static/thumbnail/yahya-sinwar.jpg diff --git a/static/thumbnail/you-break-it-you-buy-it.jpg b/static/thumbnail/you-break-it-you-buy-it.jpg Binary files differindex a3f80b4..0a94044 100644 --- a/static/thumbnail/you-break-it-you-buy-it.jpg +++ b/static/thumbnail/you-break-it-you-buy-it.jpg |
