diff --git a/configs/conferences/mrmcd/banner.png b/configs/conferences/mrmcd/banner.png deleted file mode 100644 index d6ac79ae..00000000 Binary files a/configs/conferences/mrmcd/banner.png and /dev/null differ diff --git a/configs/conferences/mrmcd/config.php b/configs/conferences/mrmcd/config.php index fc4e49e9..7152cda5 100644 --- a/configs/conferences/mrmcd/config.php +++ b/configs/conferences/mrmcd/config.php @@ -1,181 +1,212 @@ strtotime("2023-09-01 17:00"), - - /** - * Der Endzeitpunkt der Konferenz als Unix-Timestamp. Befinden wir uns danach, wird eine Danke-Und-Kommen-Sie- - * Gut-Nach-Hause-Seite sowie einem Ausblick auf die kommenden Events angezeigt. - * - * Wird dieser Zeitpunkt nicht angegeben, endet die Konferenz nie. (Siehe aber CLOSED weiter unten) - */ - 'ENDS_AT' => strtotime("2023-09-03 18:00"), - - /** - * Hiermit kann die Funktionalitaet von STARTS_AT/ENDS_AT überschrieben werden. Der Wert 'before' - * simuliert, dass die Konferenz noch nicht begonnen hat. Der Wert 'after' simuliert, dass die Konferenz - * bereits beendet ist. 'running' simuliert eine laufende Konferenz. - * - * Der Boolean true ist aus Abwärtskompatibilitätsgründen äquivalent zu 'after'. False ist äquivalent - * zu 'running'. - */ -// 'CLOSED' => true, - - /** - * Titel der Konferenz (kann Leer- und Sonderzeichen enthalten) - * Dieser im Seiten-Header, im -Tag, in der About-Seite und ggf. ab weiteren Stellen als - * Anzeigetext benutzt - */ - 'TITLE' => 'MRMCD 2023', - - /** - * Veranstalter - * Wird für den <meta name="author">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher - * <meta>-Tag generiert. - */ - 'AUTHOR' => 'MRMCD e.V.', - - /** - * Beschreibungstext - * Wird für den <meta name="description">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher - * <meta>-Tag generiert. - */ -// 'DESCRIPTION' => '<img src="./configs/conferences/jh-hh-2019/Icon_JH-Hamburg-2019.svg" class="iconjh">', - - /** - * Schlüsselwortliste, Kommasepariert - * Wird für den <meta name="keywords">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher - * <meta>-Tag generiert. - */ -// 'KEYWORDS' => '', - - /** - * HTML-Code für den Footer (z.B. für spezielle Attribuierung mit <a>-Tags) - * Sollte üblicherweise nur Inline-Elemente enthalten - * Wird diese Zeile auskommentiert, wird die Standard-Attribuierung für (c3voc.de) verwendet - */ - 'FOOTER_HTML' => ' +$CONFIG["CONFERENCE"] = [ + /** + * Der Startzeitpunkt der Konferenz als Unix-Timestamp. Befinden wir uns davor, wird die Closed-Seite + * mit einem Text der Art "hat noch nicht angefangen" angezeigt. + * + * Wird dieser Zeitpunkt nicht angegeben, gilt die Konferenz immer als angefangen. (Siehe aber ENDS_AT + * und CLOSED weiter unten) + */ + "STARTS_AT" => strtotime("2024-10-03 14:00"), + + /** + * Der Endzeitpunkt der Konferenz als Unix-Timestamp. Befinden wir uns danach, wird eine Danke-Und-Kommen-Sie- + * Gut-Nach-Hause-Seite sowie einem Ausblick auf die kommenden Events angezeigt. + * + * Wird dieser Zeitpunkt nicht angegeben, endet die Konferenz nie. (Siehe aber CLOSED weiter unten) + */ + "ENDS_AT" => strtotime("2024-10-06 18:00"), + + /** + * Hiermit kann die Funktionalitaet von STARTS_AT/ENDS_AT überschrieben werden. Der Wert 'before' + * simuliert, dass die Konferenz noch nicht begonnen hat. Der Wert 'after' simuliert, dass die Konferenz + * bereits beendet ist. 'running' simuliert eine laufende Konferenz. + * + * Der Boolean true ist aus Abwärtskompatibilitätsgründen äquivalent zu 'after'. False ist äquivalent + * zu 'running'. + */ + // 'CLOSED' => true, + + /** + * Titel der Konferenz (kann Leer- und Sonderzeichen enthalten) + * Dieser im Seiten-Header, im <title>-Tag, in der About-Seite und ggf. ab weiteren Stellen als + * Anzeigetext benutzt + */ + "TITLE" => "MRMCD 2024", + + /** + * Veranstalter + * Wird für den <meta name="author">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher + * <meta>-Tag generiert. + */ + "AUTHOR" => "MRMCD e.V.", + + /** + * Beschreibungstext + * Wird für den <meta name="description">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher + * <meta>-Tag generiert. + */ + "DESCRIPTION" => + "Die MRMCDs haben seit 20 Jahren ihr Seepferdchen und dieses Jahr hissen wir die Flagge mit dem Motto „Land in Sicht?“.", + + /** + * Schlüsselwortliste, Kommasepariert + * Wird für den <meta name="keywords">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher + * <meta>-Tag generiert. + */ + "KEYWORDS" => + "MRMCD, CCC, Chaos, Computer, Club, Konferenz, Land in Sicht?, 20 Jahre MRMCD, MRMCD Jubiläum, MRMCD 2024", + + /** + * HTML-Code für den Footer (z.B. für spezielle Attribuierung mit <a>-Tags) + * Sollte üblicherweise nur Inline-Elemente enthalten + * Wird diese Zeile auskommentiert, wird die Standard-Attribuierung für (c3voc.de) verwendet + */ + "FOOTER_HTML" => ' by <a href="https://mrmcd.net/">MRMCD</a> & <a href="https://c3voc.de">C3VOC</a> ', - /** - * HTML-Code für den Banner (nur auf der Startseite, direkt unter dem Header) - * wird üblicherweise für KeyVisuals oder Textmarke verwendet (vgl. Blaues - * Wischiwaschi auf http://media.ccc.de/) - * - * Dieser HTML-Block wird üblicherweise in der main.less speziell für die - * Konferenz umgestaltet. - * - * Wird diese Zeile auskommentiert, wird kein Banner ausgegeben. - */ -// 'BANNER_HTML' => '<img src="../configs/conferences/jh-hh-2019/Banner_JH-Hamburg-2019.svg" class="jhhh">', - 'BANNER_HTML' => '<img class="outer-div" src="../configs/conferences/mrmcd23/banner.png">', - - /** - * Link zu den Recordings - * Wird diese Zeile auskommentiert, wird der Link nicht angezeigt - */ - 'RELEASES' => 'https://media.ccc.de/c/mrmcd23', - - /** - * Link zu einer (externen) ReLive-Übersichts-Seite - * Wird diese Zeile auskommentiert, wird der Link nicht angezeigt - */ -// 'RELIVE' => 'http://vod.c3voc.de/', - - /** - * Alternativ kann ein ReLive-Json konfiguriert werden, um die interne - * ReLive-Ansicht zu aktivieren. - * - * Wird beides aktiviert, hat der externe Link Vorrang! - * Wird beides auskommentiert, wird der Link nicht angezeigt - */ -// 'RELIVE_JSON' => 'configs/conferences/jh-hh-2019/vod.json', - - /** - * APCU-Cache-Zeit in Sekunden - * Wird diese Zeile auskommentiert, werden die apc_*-Methoden nicht verwendet und - * das Relive-Json bei jedem Request von der Quelle geladen und geparst - */ -// 'RELIVE_JSON_CACHE' => 30*60, -); + /** + * HTML-Code für den Banner (nur auf der Startseite, direkt unter dem Header) + * wird üblicherweise für KeyVisuals oder Textmarke verwendet (vgl. Blaues + * Wischiwaschi auf http://media.ccc.de/) + * + * Dieser HTML-Block wird üblicherweise in der main.less speziell für die + * Konferenz umgestaltet. + * + * Wird diese Zeile auskommentiert, wird kein Banner ausgegeben. + */ + // 'BANNER_HTML' => '<img src="../configs/conferences/jh-hh-2019/Banner_JH-Hamburg-2019.svg" class="jhhh">', + "BANNER_HTML" => ' + <div class="banner container"> + <div class="banner-content"> + <span class="banner-content-name">MRMCD 2024</span> + <h1> + Land in Sicht? + </h1> + <span class="banner-content-date">3. bis 6.10.2024 TU Darmstadt</span> + </div> + </div> + ', + + /** + * Link zu den Recordings + * Wird diese Zeile auskommentiert, wird der Link nicht angezeigt + */ + "RELEASES" => "https://media.ccc.de/c/mrmcd24", + + /** + * Link zu einer (externen) ReLive-Übersichts-Seite + * Wird diese Zeile auskommentiert, wird der Link nicht angezeigt + */ + // 'RELIVE' => 'http://vod.c3voc.de/', + + /** + * Alternativ kann ein ReLive-Json konfiguriert werden, um die interne + * ReLive-Ansicht zu aktivieren. + * + * Wird beides aktiviert, hat der externe Link Vorrang! + * Wird beides auskommentiert, wird der Link nicht angezeigt + */ + // 'RELIVE_JSON' => 'configs/conferences/jh-hh-2019/vod.json', + + /** + * APCU-Cache-Zeit in Sekunden + * Wird diese Zeile auskommentiert, werden die apc_*-Methoden nicht verwendet und + * das Relive-Json bei jedem Request von der Quelle geladen und geparst + */ + // 'RELIVE_JSON_CACHE' => 30*60, +]; /** * Konfiguration der Stream-Übersicht auf der Startseite */ -$CONFIG['OVERVIEW'] = array( - /** - * Abschnitte aud der Startseite und darunter aufgeführte Räume - * Es können beliebig neue Gruppen und Räume hinzugefügt werden - * - * Die Räume müssen in $CONFIG['ROOMS'] konfiguriert werden, - * sonst werden sie nicht angezeigt. - */ - 'GROUPS' => array( - 'Lecture Rooms' => array( - 'brainwasher', 'arkanraum' - ), - ), -); - - +$CONFIG["OVERVIEW"] = [ + /** + * Abschnitte aud der Startseite und darunter aufgeführte Räume + * Es können beliebig neue Gruppen und Räume hinzugefügt werden + * + * Die Räume müssen in $CONFIG['ROOMS'] konfiguriert werden, + * sonst werden sie nicht angezeigt. + */ + "GROUPS" => [ + "Lecture Rooms" => ["oceanstarr", "rainbowwarrior", "trockendock"], + ], +]; /** * Liste der Räume (= Audio & Video Produktionen, also auch DJ-Sets oä.) */ -$CONFIG['ROOMS'] = array( - 'brainwasher' => array( - 'DISPLAY' => 'C205 - Gehirnwäscher', - 'STREAM' => 's3', - 'PREVIEW' => true, - 'TRANSLATION' => false, - 'SD_VIDEO' => true, - 'HD_VIDEO' => true, - 'DASH' => true, - 'H264_ONLY' => true, - 'HLS' => true, - 'SLIDES' => false, - 'AUDIO' => false, - 'MUSIC' => false, - 'SCHEDULE' => true, - 'SCHEDULE_NAME' => 'C205 - Gehirnwäscher', - 'FEEDBACK' => false, - 'SUBTITLES' => false, - 'EMBED' => true, - 'IRC' => false, - 'TWITTER' => false, - ), - 'arkanraum' => array( - 'DISPLAY' => 'C120 - Arkanraum', - 'STREAM' => 's4', - 'PREVIEW' => true, - 'TRANSLATION' => false, - 'SD_VIDEO' => true, - 'HD_VIDEO' => true, - 'DASH' => true, - 'H264_ONLY' => true, - 'HLS' => true, - 'SLIDES' => false, - 'AUDIO' => false, - 'MUSIC' => false, - 'SCHEDULE' => true, - 'SCHEDULE_NAME' => 'C120 - Arkanraum', - 'FEEDBACK' => false, - 'SUBTITLES' => false, - 'EMBED' => true, - 'IRC' => false, - 'TWITTER' => false, - ), - -); +$CONFIG["ROOMS"] = [ + "oceanstarr" => [ + "DISPLAY" => "C205 - Ocean Starr", + // TODO: VOC + "STREAM" => "s3", + "PREVIEW" => true, + "TRANSLATION" => false, + "SD_VIDEO" => true, + "HD_VIDEO" => true, + "DASH" => true, + "H264_ONLY" => true, + "HLS" => true, + "SLIDES" => false, + "AUDIO" => false, + "MUSIC" => false, + "SCHEDULE" => true, + "SCHEDULE_NAME" => "C205 - Ocean Starr", + "FEEDBACK" => false, + "SUBTITLES" => false, + "EMBED" => true, + "IRC" => false, + "TWITTER" => false, + ], + "rainbowwarrior" => [ + "DISPLAY" => "C120 - Rainbow Warrior", + // TODO: VOC + "STREAM" => "s4", + "PREVIEW" => true, + "TRANSLATION" => false, + "SD_VIDEO" => true, + "HD_VIDEO" => true, + "DASH" => true, + "H264_ONLY" => true, + "HLS" => true, + "SLIDES" => false, + "AUDIO" => false, + "MUSIC" => false, + "SCHEDULE" => true, + "SCHEDULE_NAME" => "C120 - Rainbow Warrior", + "FEEDBACK" => false, + "SUBTITLES" => false, + "EMBED" => true, + "IRC" => false, + "TWITTER" => false, + ], + "trockendock" => [ + "DISPLAY" => "B002 - Trockendock", + // TODO: VOC + "STREAM" => "s5", + "PREVIEW" => true, + "TRANSLATION" => false, + "SD_VIDEO" => true, + "HD_VIDEO" => true, + "DASH" => true, + "H264_ONLY" => true, + "HLS" => true, + "SLIDES" => false, + "AUDIO" => false, + "MUSIC" => false, + "SCHEDULE" => true, + "SCHEDULE_NAME" => "B002 - Trockendock", + "FEEDBACK" => false, + "SUBTITLES" => false, + "EMBED" => true, + "IRC" => false, + "TWITTER" => false, + ], +]; /** * Globaler Schalter für die Embedding-Funktionalitäten @@ -183,43 +214,42 @@ * Wird diese Zeile auskommentiert oder auf False gesetzt, werden alle * Embedding-Funktionen deaktiviert. */ -$CONFIG['EMBED'] = true; +$CONFIG["EMBED"] = true; /** * Konfigurationen zum Konferenz-Fahrplan * Wird dieser Block auskommentiert, werden alle Fahrplan-Bezogenen Features deaktiviert */ -$CONFIG['SCHEDULE'] = array( - /** - * URL zum Fahrplan-XML - * - * Diese URL muss immer verfügbar sein, sonst können kann die Programm-Ansicht - * aufhören zu funktionieren. Wenn die Quelle unverlässlich ist ;) sollte ein - * externer HTTP-Cache vorgeschaltet werden. - */ - 'URL' => 'https://talks.mrmcd.net/2023/schedule/export/schedule.xml', - - /** - * Nur die angegebenen Räume aus dem Fahrplan beachten - * - * Wird diese Zeile auskommentiert, werden alle Räume angezeigt - */ - 'ROOMFILTER' => array('C205 - Gehirnwäscher','C120 - Arkanraum'), - - /** - * Skalierung der Programm-Vorschau in Sekunden pro Pixel - */ - 'SCALE' => 7, - - /** - * Simuliere das Verhalten als wäre die Konferenz bereits heute - * - * Diese folgende Beispiel-Zeile Simuliert, dass das - * Konferenz-Datum 2014-12-29 auf den heutigen Tag 2015-02-24 verschoben ist. - */ - //'SIMULATE_OFFSET' => strtotime(/* Conference-Date */ '2019-05-21') - strtotime(/* Today */ '2019-05-19'), - 'SIMULATE_OFFSET' => 0, -); - +$CONFIG["SCHEDULE"] = [ + /** + * URL zum Fahrplan-XML + * + * Diese URL muss immer verfügbar sein, sonst können kann die Programm-Ansicht + * aufhören zu funktionieren. Wenn die Quelle unverlässlich ist ;) sollte ein + * externer HTTP-Cache vorgeschaltet werden. + */ + "URL" => "https://talks.mrmcd.net/2024/schedule/export/schedule.xml", + + /** + * Nur die angegebenen Räume aus dem Fahrplan beachten + * + * Wird diese Zeile auskommentiert, werden alle Räume angezeigt + */ + "ROOMFILTER" => ["C205 - Ocean Starr", "C120 - Rainbow Warrior", "B002 - Trockendock"], + + /** + * Skalierung der Programm-Vorschau in Sekunden pro Pixel + */ + "SCALE" => 7, + + /** + * Simuliere das Verhalten als wäre die Konferenz bereits heute + * + * Diese folgende Beispiel-Zeile Simuliert, dass das + * Konferenz-Datum 2014-12-29 auf den heutigen Tag 2015-02-24 verschoben ist. + */ + //'SIMULATE_OFFSET' => strtotime(/* Conference-Date */ '2019-05-21') - strtotime(/* Today */ '2019-05-19'), + "SIMULATE_OFFSET" => 0, +]; return $CONFIG; diff --git a/configs/conferences/mrmcd/download.sh b/configs/conferences/mrmcd/download.sh index 644a3401..76d1597e 100755 --- a/configs/conferences/mrmcd/download.sh +++ b/configs/conferences/mrmcd/download.sh @@ -1,8 +1,8 @@ #!/bin/sh # fahrplan -wget --no-check-certificate -q "https://talks.mrmcd.net/2023/schedule/export/schedule.xml" -O /tmp/mrmcd23-schedule.xml && mv /tmp/mrmcd23-schedule.xml schedule.xml -rm -f /tmp/mrmcd23-schedule.xml +wget --no-check-certificate -q "https://talks.mrmcd.net/2024/schedule/export/schedule.xml" -O /tmp/mrmcd24-schedule.xml && mv /tmp/mrmcd24-schedule.xml schedule.xml +rm -f /tmp/mrmcd24-schedule.xml # relive #wget -q "http://live.dus.c3voc.de/relive/emf2016/index.json" -O /tmp/emf2016-vod.json && mv /tmp/emf2016-vod.json vod.json diff --git a/configs/conferences/mrmcd/fonts.less b/configs/conferences/mrmcd/fonts.less new file mode 100644 index 00000000..fbadca60 --- /dev/null +++ b/configs/conferences/mrmcd/fonts.less @@ -0,0 +1,120 @@ +@font-face { + font-display: swap; + font-family: "Rubik Mono One"; + font-style: normal; + font-weight: 400; + src: url("/configs/conferences/mrmcd/fonts/rubik-mono-one-v18-latin-regular.woff2") format("woff2"); +} + +/* rubik-300 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: normal; + font-weight: 300; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-300italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: italic; + font-weight: 300; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-300italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-regular - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: normal; + font-weight: 400; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: italic; + font-weight: 400; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-500 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: normal; + font-weight: 500; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-500italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: italic; + font-weight: 500; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-500italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-600 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: normal; + font-weight: 600; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-600italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: italic; + font-weight: 600; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-700 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: normal; + font-weight: 700; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-700italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: italic; + font-weight: 700; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-800 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: normal; + font-weight: 800; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-800italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: italic; + font-weight: 800; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-800italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-900 - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: normal; + font-weight: 900; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} +/* rubik-900italic - latin */ +@font-face { + font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */ + font-family: "Rubik"; + font-style: italic; + font-weight: 900; + src: url("/configs/conferences/mrmcd/fonts/rubik-v28-latin-900italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ +} diff --git a/configs/conferences/mrmcd/fonts/rubik-mono-one-v18-latin-regular.woff2 b/configs/conferences/mrmcd/fonts/rubik-mono-one-v18-latin-regular.woff2 new file mode 100644 index 00000000..7b18f69d Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-mono-one-v18-latin-regular.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-300.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-300.woff2 new file mode 100644 index 00000000..1d1360e9 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-300.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-300italic.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-300italic.woff2 new file mode 100644 index 00000000..b7293880 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-300italic.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-500.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-500.woff2 new file mode 100644 index 00000000..f0d6b2a8 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-500.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-500italic.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-500italic.woff2 new file mode 100644 index 00000000..feb0b485 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-500italic.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-600.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-600.woff2 new file mode 100644 index 00000000..b1afae72 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-600.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-600italic.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-600italic.woff2 new file mode 100644 index 00000000..d3c5e4ea Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-600italic.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-700.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-700.woff2 new file mode 100644 index 00000000..96ff20be Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-700.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-700italic.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-700italic.woff2 new file mode 100644 index 00000000..06ef4579 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-700italic.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-800.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-800.woff2 new file mode 100644 index 00000000..909a37b8 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-800.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-800italic.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-800italic.woff2 new file mode 100644 index 00000000..2b134bb8 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-800italic.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-900.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-900.woff2 new file mode 100644 index 00000000..e83937f1 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-900.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-900italic.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-900italic.woff2 new file mode 100644 index 00000000..2f3f9ac1 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-900italic.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-italic.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-italic.woff2 new file mode 100644 index 00000000..af50274a Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-italic.woff2 differ diff --git a/configs/conferences/mrmcd/fonts/rubik-v28-latin-regular.woff2 b/configs/conferences/mrmcd/fonts/rubik-v28-latin-regular.woff2 new file mode 100644 index 00000000..ac6ff682 Binary files /dev/null and b/configs/conferences/mrmcd/fonts/rubik-v28-latin-regular.woff2 differ diff --git a/configs/conferences/mrmcd/img/bg-raw.svg b/configs/conferences/mrmcd/img/bg-raw.svg new file mode 100644 index 00000000..ceaeeaff --- /dev/null +++ b/configs/conferences/mrmcd/img/bg-raw.svg @@ -0,0 +1,1744 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + width="1920" + height="1080" + viewBox="0 0 1920 1080" + version="1.1" + id="svg1" + xml:space="preserve" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)" + sodipodi:docname="bg-raw.svg" + 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="namedview1" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + inkscape:document-units="px" + inkscape:zoom="0.60235022" + inkscape:cx="471.4865" + inkscape:cy="566.11584" + inkscape:window-width="2752" + inkscape:window-height="1124" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:current-layer="layer1" /><defs + id="defs1"><filter + id="filter0_i_19_47822" + x="63.2786" + y="-8" + width="121.575" + height="100.252" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood8" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend8" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix8" /><feOffset + dy="-12" + id="feOffset8" /><feGaussianBlur + stdDeviation="4" + id="feGaussianBlur8" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite8" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.607843 0 0 0 0 0.796078 0 0 0 0 0.858824 0 0 0 1 0" + id="feColorMatrix9" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_19_47822" + id="feBlend9" /></filter><linearGradient + id="paint0_linear_19_47822" + x1="45.6757" + y1="44.5693" + x2="112.278" + y2="116.535" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop9" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop10" /></linearGradient><linearGradient + id="paint1_linear_19_47822" + x1="108.989" + y1="85.746" + x2="153.088" + y2="123.715" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop11" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop12" /></linearGradient><linearGradient + id="paint2_linear_19_47822" + x1="66.0608" + y1="80.1375" + x2="101.867" + y2="103.403" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop13" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop14" /></linearGradient><linearGradient + id="paint3_linear_19_47822" + x1="33.8952" + y1="58.8453" + x2="71.7981" + y2="83.9056" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop15" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop16" /></linearGradient><linearGradient + id="paint4_linear_19_47822" + x1="118.563" + y1="103.422" + x2="142.499" + y2="118.028" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop17" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop18" /></linearGradient><linearGradient + id="paint5_linear_19_47822" + x1="129.871" + y1="111.528" + x2="146.002" + y2="121.371" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop19" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop20" /></linearGradient><linearGradient + id="paint6_linear_19_47822" + x1="116.293" + y1="122.845" + x2="139.786" + y2="165.27" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop21" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop22" /></linearGradient><clipPath + id="clip0_19_47822"><rect + width="212" + height="178" + fill="white" + transform="translate(0.453369)" + id="rect22" /></clipPath><filter + id="filter0_i_24_248773" + x="64.7126" + y="14.8708" + width="95.9338" + height="72.1224" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood18" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend18" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix18" /><feOffset + dx="-2" + dy="10" + id="feOffset18" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite18" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.717647 0 0 0 0 0.54902 0 0 0 0 0.45098 0 0 0 1 0" + id="feColorMatrix19" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend19" /></filter><filter + id="filter1_i_24_248773" + x="64.7126" + y="21.2519" + width="95.9338" + height="65.7413" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood19" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend20" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix20" /><feOffset + dy="1" + id="feOffset20" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite20" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.988235 0 0 0 0 0.819608 0 0 0 0 0.666667 0 0 0 1 0" + id="feColorMatrix21" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend21" /></filter><filter + id="filter2_i_24_248773" + x="86.2085" + y="2.58972" + width="62.4534" + height="65.5784" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood21" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend22" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix22" /><feOffset + dx="6" + dy="10" + id="feOffset22" /><feGaussianBlur + stdDeviation="5" + id="feGaussianBlur22" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite22" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix23" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend23" /></filter><filter + id="filter3_di_24_248773" + x="86.2085" + y="8.74639" + width="33.3831" + height="34.7917" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood23" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix24" /><feOffset + dx="0.5" + dy="1" + id="feOffset24" /><feComposite + in2="hardAlpha" + operator="out" + id="feComposite24" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.74902 0 0 0 0 0.572549 0 0 0 0 0.470588 0 0 0 1 0" + id="feColorMatrix25" /><feBlend + mode="normal" + in2="BackgroundImageFix" + result="effect1_dropShadow_24_248773" + id="feBlend25" /><feBlend + mode="normal" + in="SourceGraphic" + in2="effect1_dropShadow_24_248773" + result="shape" + id="feBlend26" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix26" /><feOffset + dx="2" + dy="4" + id="feOffset26" /><feGaussianBlur + stdDeviation="2" + id="feGaussianBlur26" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite26" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix27" /><feBlend + mode="normal" + in2="shape" + result="effect2_innerShadow_24_248773" + id="feBlend27" /></filter><filter + id="filter4_i_24_248773" + x="81.8264" + y="12.8547" + width="25.7078" + height="13.5456" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood27" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend28" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix28" /><feOffset + dx="2" + id="feOffset28" /><feGaussianBlur + stdDeviation="1" + id="feGaussianBlur28" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite28" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix29" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend29" /></filter><filter + id="filter5_i_24_248773" + x="84.8625" + y="1.84832" + width="31.3831" + height="24.7917" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood29" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend30" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix30" /><feOffset + dy="4" + id="feOffset30" /><feGaussianBlur + stdDeviation="2" + id="feGaussianBlur30" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite30" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix31" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend31" /></filter><filter + id="filter6_i_24_248773" + x="78.8586" + y="28.6419" + width="23.55" + height="12.4453" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood31" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend32" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix32" /><feOffset + dx="2" + id="feOffset32" /><feGaussianBlur + stdDeviation="1" + id="feGaussianBlur32" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite32" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix33" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend33" /></filter><filter + id="filter7_i_24_248773" + x="112.68" + y="28.8389" + width="22.5474" + height="24.9949" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood33" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend34" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix34" /><feOffset + dy="2" + id="feOffset34" /><feGaussianBlur + stdDeviation="1" + id="feGaussianBlur34" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite34" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix35" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend35" /></filter><linearGradient + id="paint0_linear_24_248773" + x1="107.599" + y1="39.4212" + x2="141.674" + y2="78.5378" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop35" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop36" /></linearGradient><linearGradient + id="paint1_linear_24_248773" + x1="49.6337" + y1="83.9259" + x2="59.0811" + y2="99.2929" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop37" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop38" /></linearGradient><linearGradient + id="paint2_linear_24_248773" + x1="13.1257" + y1="105.004" + x2="22.573" + y2="120.371" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop39" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop40" /></linearGradient><filter + id="filter0_f_22_86063" + x="6.67383" + y="33.906" + width="170.277" + height="99.0788" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood20" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend20-2" /><feGaussianBlur + stdDeviation="2" + result="effect1_foregroundBlur_22_86063" + id="feGaussianBlur20" /></filter><filter + id="filter1_i_22_86063" + x="7.27368" + y="0" + width="181.867" + height="99.2278" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood21-8" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend21-9" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix21-7" /><feOffset + dx="16" + dy="8" + id="feOffset21" /><feGaussianBlur + stdDeviation="5" + id="feGaussianBlur21" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite21" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix22-3" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_22_86063" + id="feBlend22-6" /></filter><linearGradient + id="paint0_linear_22_86063" + x1="72.1191" + y1="74.4727" + x2="133.074" + y2="147.505" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop22-1" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop23" /></linearGradient><radialGradient + id="paint1_radial_22_86063" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.78226245,2.9194432,-2.9199262,0.78239186,62.1749,31.7712)"><stop + stop-color="white" + id="stop24" /><stop + offset="0.285" + stop-color="#A7D3E2" + id="stop25" /><stop + offset="0.715" + stop-color="#313333" + id="stop26" /></radialGradient><filter + id="filter0_i_18_38620" + x="27.4565" + y="20.631" + width="148.632" + height="104.835" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood13" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend13" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix13" /><feOffset + dx="4" + dy="6" + id="feOffset13" /><feGaussianBlur + stdDeviation="2" + id="feGaussianBlur13" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite13" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix14" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_18_38620" + id="feBlend14" /></filter><radialGradient + id="paint0_radial_18_38620" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.78226245,2.9194432,-2.9199262,0.78239186,46.1576,106.07)"><stop + stop-color="white" + id="stop14-0" /><stop + offset="0.285" + stop-color="#A7D3E2" + id="stop15-6" /><stop + offset="0.715" + stop-color="#313333" + id="stop16-3" /></radialGradient><linearGradient + id="paint1_linear_18_38620" + x1="126.316" + y1="144.949" + x2="174.182" + y2="205.018" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop17-2" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop18-0" /></linearGradient><filter + id="filter0_i_18_19157" + x="45.5967" + y="13.8905" + width="162.33" + height="122.284" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood9" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend9-5" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix9-2" /><feOffset + dx="40" + dy="28" + id="feOffset9" /><feGaussianBlur + stdDeviation="14" + id="feGaussianBlur9" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite9" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.734427 0 0 0 0 0.930482 0 0 0 0 0.995833 0 0 0 1 0" + id="feColorMatrix10" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_18_19157" + id="feBlend10" /></filter><linearGradient + id="paint0_linear_18_19157" + x1="94.3169" + y1="59.2784" + x2="136.594" + y2="116.033" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop10-5" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop11-4" /></linearGradient><linearGradient + id="paint1_linear_18_19157" + x1="38.7301" + y1="99.967" + x2="50.6823" + y2="118.943" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop12-7" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop13-4" /></linearGradient><linearGradient + id="paint2_linear_18_19157" + x1="22.0516" + y1="109.076" + x2="34.0038" + y2="128.052" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop14-4" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop15-3" /></linearGradient><linearGradient + id="paint3_linear_18_19157" + x1="167.929" + y1="21.4713" + x2="183.586" + y2="44.5228" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop16-0" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop17-7" /></linearGradient><radialGradient + id="paint4_radial_18_19157" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.495736,5.5821626,-5.5830899,1.4959844,100.654,83.7292)"><stop + stop-color="white" + id="stop18-8" /><stop + offset="0.285" + stop-color="#A7D3E2" + id="stop19-6" /><stop + offset="0.715" + stop-color="#313333" + id="stop20-8" /></radialGradient><linearGradient + id="paint5_linear_18_19157" + x1="74.8129" + y1="48.0963" + x2="119.19" + y2="70.2135" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5E7881" + id="stop21-8" /><stop + offset="1" + stop-color="#5E7881" + stop-opacity="0" + id="stop22-4" /></linearGradient><radialGradient + id="paint6_angular_18_19157" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(75.999983,38.000072,-15.823473,31.646878,5.20654,6.96759)"><stop + stop-color="#FCD1AA" + id="stop23-3" /><stop + offset="0.03" + stop-color="#BF9278" + id="stop24-1" /><stop + offset="0.04" + stop-color="#BF9278" + id="stop25-4" /><stop + offset="0.0632378" + stop-color="#FCD1AA" + id="stop26-9" /></radialGradient><filter + id="filter0_i_24_105152" + x="0.9729" + y="61.6757" + width="155.026" + height="71.2611" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood21-7" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend21-1" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix21-1" /><feOffset + dx="5.17473" + dy="5.17473" + id="feOffset21-5" /><feGaussianBlur + stdDeviation="10.3495" + id="feGaussianBlur21-9" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite21-7" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix22-7" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend22-67" /></filter><filter + id="filter1_i_24_105152" + x="0.852051" + y="35.2426" + width="198.49" + height="87.2348" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood22" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend23-3" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix23-6" /><feOffset + dx="5.17473" + dy="5.17473" + id="feOffset23" /><feGaussianBlur + stdDeviation="10.3495" + id="feGaussianBlur23" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite23" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.734427 0 0 0 0 0.930482 0 0 0 0 0.995833 0 0 0 1 0" + id="feColorMatrix24-5" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend24" /></filter><filter + id="filter2_i_24_105152" + x="103.982" + y="2.6385" + width="46.5847" + height="65.5531" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood24" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend25-6" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix25-3" /><feOffset + dy="5.17473" + id="feOffset25" /><feGaussianBlur + stdDeviation="2.58736" + id="feGaussianBlur25" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite25" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix26-9" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend26-4" /></filter><filter + id="filter3_i_24_105152" + x="39.4426" + y="121.18" + width="6.87095" + height="4.19122" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood26" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend27-8" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix27-1" /><feOffset + dx="1.29368" + id="feOffset27" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur27" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite27" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix28-2" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend28-9" /></filter><filter + id="filter4_i_24_105152" + x="34.5219" + y="118.697" + width="6.70079" + height="5.18721" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood28" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend29-3" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix29-9" /><feOffset + dx="1.29368" + id="feOffset29" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur29" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite29" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix30-0" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend30-8" /></filter><filter + id="filter5_i_24_105152" + x="29.9153" + y="116.796" + width="6.27476" + height="5.23649" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood30" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend31-8" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix31-5" /><feOffset + dx="1.29368" + id="feOffset31" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur31" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite31" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix32-0" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend32-9" /></filter><filter + id="filter6_i_24_105152" + x="21.5923" + y="112.903" + width="5.8784" + height="4.43666" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood32" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend33-6" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix33-3" /><feOffset + dx="1.29368" + id="feOffset33" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur33" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite33" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix34-8" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend34-5" /></filter><filter + id="filter7_i_24_105152" + x="17.5217" + y="110.466" + width="5.58104" + height="3.61952" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood34" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend35-6" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix35-1" /><feOffset + dx="1.29368" + id="feOffset35" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur35" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite35" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix36" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend36" /></filter><filter + id="filter8_i_24_105152" + x="24.6176" + y="113.384" + width="7.13462" + height="5.8924" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood36" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend37" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix37" /><feOffset + dx="1.29368" + id="feOffset37" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur37" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite37" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix38" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend38" /></filter><filter + id="filter9_i_24_105152" + x="9.09717" + y="104.937" + width="4.7064" + height="3.76991" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood38" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend39" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix39" /><feOffset + dx="1.29368" + id="feOffset39" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur39" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite39" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix40" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend40" /></filter><filter + id="filter10_i_24_105152" + x="12.2067" + y="106.972" + width="4.23936" + height="3.75803" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood40" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend41" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix41" /><feOffset + dx="1.29368" + id="feOffset41" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur41" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite41" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix42" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend42" /></filter><filter + id="filter11_i_24_105152" + x="14.5779" + y="108.242" + width="5.3823" + height="4.01861" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood42" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend43" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix43" /><feOffset + dx="1.29368" + id="feOffset43" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur43" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite43" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix44" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend44" /></filter><filter + id="filter12_i_24_105152" + x="44.7704" + y="122.288" + width="6.2794" + height="3.28587" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood44" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend45" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix45" /><feOffset + dx="1.29368" + id="feOffset45" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur45" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite45" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix46" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend46" /></filter><filter + id="filter13_i_24_105152" + x="49.8412" + y="124.177" + width="6.0681" + height="3.80607" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood46" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend47" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix47" /><feOffset + dx="1.29368" + id="feOffset47" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur47" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite47" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix48" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend48" /></filter><linearGradient + id="paint0_linear_24_105152" + x1="69.3593" + y1="60.8214" + x2="120.376" + y2="134.233" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop48" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop49" /></linearGradient><clipPath + id="clip0_24_105152"><rect + width="217.339" + height="165.591" + fill="white" + transform="translate(0.852051)" + id="rect49" /></clipPath></defs><g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"><g + style="fill:none" + id="g1" + transform="translate(160.14649,793.50076)"><g + clip-path="url(#clip0_19_47822)" + id="g8"><path + d="M 167.563,71.2395 70.6672,16.847 c 0,0 -33.5868,16.0502 -50.5288,41.6117 C 4.89993,81.4502 0.453369,120.607 0.453369,120.607 L 84.9339,168.433 180.938,111.365 c 0,0 -21.122,9.809 -23.778,-1.783 -3.269,-14.2671 10.403,-20.8061 10.403,-20.8061 z" + fill="url(#paint0_linear_19_47822)" + id="path1" + style="fill:url(#paint0_linear_19_47822)" /><path + d="M 167.563,88.7759 V 67.2396 c 0,0 -42.285,18.564 -59.227,44.1254 -15.238,22.992 -23.4022,57.068 -23.4022,57.068 l 96.0042,-57.068 c 0,0 -21.122,9.809 -23.778,-1.783 -3.27,-14.2671 10.403,-20.8061 10.403,-20.8061 z" + fill="url(#paint1_linear_19_47822)" + id="path2" + style="fill:url(#paint1_linear_19_47822)" /><path + d="M 74.7986,93.5241 C 59.6581,112.071 52.7224,137.471 50.736,145.91 c -0.4008,1.703 0.4216,3.419 1.9624,4.247 l 0.5183,0.278 c 2.2541,1.211 5.0625,0.032 5.8186,-2.413 3.3397,-10.798 12.1881,-37.318 22.7389,-52.1365 6.629,-9.3107 13.1489,-16.3367 18.5558,-21.3988 1.733,-1.6224 0.027,-4.4943 -1.9511,-3.1826 -9.7923,6.4919 -17.8552,15.2069 -23.5803,22.22 z" + fill="url(#paint2_linear_19_47822)" + id="path3" + style="fill:url(#paint2_linear_19_47822)" /><path + d="m 42.1042,69.787 c -16.6486,18.3115 -22.894,46.084 -24.6774,56.065 -0.4026,2.253 0.7234,4.459 2.7306,5.56 3.3864,1.857 7.6346,-0.188 8.4143,-3.971 2.5953,-12.59 8.7274,-37.4253 18.994,-51.4765 6.0957,-8.3427 12.3692,-14.9692 17.9939,-20.0814 1.816,-1.6505 -0.2671,-5.2945 -2.3342,-3.9719 C 54.6621,57.3906 47.524,63.8258 42.1042,69.787 Z" + fill="url(#paint3_linear_19_47822)" + id="path4" + style="fill:url(#paint3_linear_19_47822)" /><path + d="m 149.341,92.2523 c -12.773,6.5673 -38.868,27.9767 -41.068,61.0757" + stroke="url(#paint4_linear_19_47822)" + stroke-width="2" + stroke-linecap="round" + id="path5" + style="stroke:url(#paint4_linear_19_47822)" /><path + d="m 150.613,104 c -8.608,4.426 -26.194,18.855 -27.677,41.162" + stroke="url(#paint5_linear_19_47822)" + stroke-width="2" + stroke-linecap="round" + id="path6" + style="stroke:url(#paint5_linear_19_47822)" /><g + filter="url(#filter0_i_19_47822)" + id="g7"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 173.066,68.6773 c 6.51,0 11.788,5.2774 11.788,11.7875 0,6.51 -5.278,11.7874 -11.788,11.7874 -6.51,0 -11.787,-5.2774 -11.787,-11.7874 0,-2.409 0.722,-4.6492 1.963,-6.5157 -0.317,0.0336 -0.638,0.0509 -0.963,0.0509 -3.281,0 -6.152,-1.7553 -7.725,-4.378 -2.714,3.8575 -7.2,6.378 -12.275,6.378 -8.285,0 -15,-6.7157 -15,-15 0,-1.4421 0.203,-2.8366 0.583,-4.1564 -2.736,-1.544 -4.583,-4.4781 -4.583,-7.8436 0,-0.348 0.019,-0.6914 0.058,-1.0291 -1.415,-0.0877 -2.778,-0.3716 -4.06,-0.8249 C 119.199,52.0492 115.2,56 110.279,56 106.017,56 102.447,53.038 101.516,49.0604 99.8851,49.6679 98.1206,50 96.2786,50 c -8.2843,0 -15,-6.7157 -15,-15 0,-1.9632 0.3771,-3.8383 1.0629,-5.5568 C 81.0493,29.806 79.6866,30 78.2786,30 c -8.2843,0 -15,-6.7157 -15,-15 0,-8.28428 6.7157,-15.00000762939 15,-15.00000762939 4.9861,0 9.404,2.43285762939 12.1315,6.17625762939 1.5757,-1.35635 3.6263,-2.17626 5.8685,-2.17626 4.9704,0 9.0004,4.02944 9.0004,9.00001 0,0.5324 -0.047,1.054 -0.135,1.561 0.976,-0.3628 2.032,-0.561 3.135,-0.561 3.922,0 7.259,2.5099 8.491,6.0114 2.209,-1.2792 4.773,-2.0114 7.509,-2.0114 8.284,0 15,6.7157 15,15 0,3.0388 -0.904,5.8665 -2.457,8.2292 1.841,1.079 3.265,2.794 3.97,4.8435 0.489,-0.0481 0.985,-0.0727 1.487,-0.0727 7.172,0 13.169,5.0343 14.649,11.7623 1.496,-1.1074 3.347,-1.7623 5.351,-1.7623 4.97,0 9,4.0294 9,9 0,1.4338 -0.336,2.7894 -0.932,3.9925 0.873,-0.2061 1.783,-0.3152 2.719,-0.3152 z" + fill="#ffffff" + id="path7" /></g><path + d="m 182.091,135.617 c 0,0.698 0.184,1.367 0.522,1.99 -3.593,-0.005 -7.616,-1.113 -11.478,-4.522 -8.916,-7.87 9.79,-21.743 9.79,-21.743 l -95.9912,57.091 c 0,0 34.5742,7.748 62.0512,5.341 30.549,-2.676 62.441,-31.714 62.441,-31.714 0.426,-0.584 0.665,-1.236 0.665,-1.924 0,-2.496 -3.134,-4.519 -7,-4.519 -0.837,0 -1.639,0.095 -2.383,0.269 0.006,-0.089 0.009,-0.179 0.009,-0.269 0,-3.32 -4.17,-6.011 -9.313,-6.011 -5.144,0 -9.313,2.691 -9.313,6.011 z" + fill="url(#paint6_linear_19_47822)" + id="path8" + style="fill:url(#paint6_linear_19_47822)" /></g></g><g + style="fill:none" + id="g2" + transform="translate(213.2557,108.22213)"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 161.148,75.7161 c 1.049,0.0667 2.087,0.3652 3.035,0.8964 2.267,1.27 3.664,3.6714 3.648,6.2696 l -0.018,2.9844 c -0.026,4.3171 -2.333,8.2987 -6.065,10.4688 l -10.719,6.2327 c -1.437,0.836 -3.209,0.85 -4.659,0.037 -1.131,-0.634 -1.933,-1.695 -2.251,-2.9157 l -3.662,2.1297 c -0.518,0.301 -1.156,0.306 -1.678,0.013 -0.539,-0.302 -0.871,-0.874 -0.865,-1.493 l 0.04,-4.0727 c -0.416,-0.1797 -0.825,-0.3816 -1.225,-0.6057 -1.219,-0.6833 -2.304,-1.5423 -3.228,-2.5351 -0.116,0.073 -0.234,0.1436 -0.353,0.2118 l -6.899,3.9307 c -0.519,0.2959 -1.155,0.2982 -1.676,0.0061 -0.131,-0.073 -0.249,-0.1617 -0.353,-0.2629 l -41.3614,-23.9967 1e-4,-14.869 42.4133,-24.863 c 0,0 26.325,-15.9659 50.091,-3.1688 3.777,6.085 4.504,16.2642 1.834,25.585 3.868,3.603 6.368,7.3799 2.378,9.0247 -2.059,0.8489 -4.279,2.123 -5.852,3.092 -0.533,0.3283 -1.063,0.6612 -1.593,0.994 v 4e-4 1e-4 h -0.001 v 2e-4 10e-5 3e-4 c -0.894,0.5609 -1.787,1.1218 -2.694,1.6609 l -2.478,1.4733 c -0.474,0.3742 -0.962,0.7312 -1.466,1.0698 -0.73,0.4912 -2.271,1.4453 -4.343,2.7016 z" + fill="url(#paint0_linear_24_248773)" + id="path1-3" + style="fill:url(#paint0_linear_24_248773)" /><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 100.799,30.2393 c 0.535,-0.1358 0.859,-0.6799 0.723,-1.2152 -0.136,-0.5353 -0.68,-0.8592 -1.215,-0.7233 L 88.1217,31.3931 76.5178,34.338 c -0.0313,-0.0358 -0.064,-0.0707 -0.0981,-0.1045 l -2.9028,-2.8778 c -0.4805,-0.4764 -1.1692,-0.6775 -1.8305,-0.5346 l -7.327,1.5833 c -1.022,0.2208 -1.7014,1.1917 -1.5589,2.2275 l 1.0223,7.4295 c 0.1717,1.2478 1.4401,2.0281 2.6312,1.6189 l 7.348,-2.5246 c 0.4878,-0.1676 0.892,-0.5172 1.1282,-0.9758 l 1.8594,-3.6104 c 0.0447,-0.0867 0.0825,-0.1756 0.1136,-0.2659 l 11.7105,-2.9719 z" + fill="#59727a" + id="path2-6" /><g + filter="url(#filter0_i_24_248773)" + id="g3"><path + d="m 106.516,86.9932 -41.8034,-24.2535 1e-4,-14.869 42.4133,-24.8629 c 0,0 26.325,-15.96592 50.091,-3.1688 6.582,10.6033 3.9,33.6381 -9.872,42.9007 -4.569,3.0729 -40.829,24.2535 -40.829,24.2535 z" + fill="#bf9278" + id="path3-7" /></g><path + d="M 112.692,63.4458 95.3854,53.9686 c -1.9589,-1.0728 -3.1769,-3.1284 -3.1769,-5.3618 0,-3.0001 2.1771,-5.5569 5.1388,-6.035 l 44.8537,-7.2411 c 8.731,-1.4095 13.52,9.8128 6.461,15.1413 l -9.313,9.2235 c -3.585,3.5499 -8.258,5.7932 -13.27,6.3698 -4.626,0.5323 -9.303,-0.3829 -13.387,-2.6195 z" + fill="#876151" + id="path4-5" /><g + filter="url(#filter1_i_24_248773)" + id="g5"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 64.7126,62.7397 41.8034,24.2535 c 0,0 36.26,-21.1806 40.829,-24.2535 10.676,-7.1803 14.688,-22.6365 12.886,-34.1624 0.684,6.557 -3.119,11.7763 -12.886,18.3453 -4.569,3.0729 -40.829,24.2535 -40.829,24.2535 L 65.0349,47.6818 64.7127,47.8707 Z M 158.004,21.2519 c 0.439,0.9525 0.818,1.8713 1.135,2.7612 -0.327,-0.9756 -0.705,-1.8996 -1.135,-2.7612 z" + fill="#bf9278" + id="path5-3" /></g><path + d="m 147.345,62.7397 c -4.569,3.0729 -40.829,24.2535 -40.829,24.2535 V 72.0159 l 39.442,-23.105 c 9.171,-6.4814 15.346,-11.0599 14.166,-20.099 -0.157,-0.9891 -0.354,-1.9569 -0.591,-2.8969 -0.5,-1.8397 -1.262,-3.8519 -2.316,-6.076 0.985,1.819 1.76,3.8713 2.316,6.076 0.276,1.016 0.471,1.9794 0.591,2.8969 1.874,11.8171 -2.019,26.6915 -12.779,33.9278 z" + fill="#876151" + id="path6-5" /><g + filter="url(#filter2_i_24_248773)" + id="g7-6"><path + d="m 100.617,55.1142 -7.3793,-4.041 c -4.3343,-2.3736 -7.0292,-6.9219 -7.0292,-11.8636 0,-4.8318 2.5775,-9.2967 6.7617,-11.713 L 124.17,9.47875 c 1.457,-0.84094 2.944,-1.62442 4.413,-2.44224 1.615,-0.8985 3.811,-2.21252 5.558,-3.59397 6.621,-5.23479 8.223,15.17016 8.48,19.36796 0.031,0.5016 0.041,0.9932 0.041,1.4957 0,9.0655 -3.624,17.7548 -10.065,24.1339 l -2.56,2.5351 c -1.475,1.4609 -3.128,2.7312 -4.919,3.7811 -7.536,4.418 -16.839,4.5539 -24.501,0.3579 z" + fill="#fcd1aa" + id="path7-2" /></g><g + filter="url(#filter3_di_24_248773)" + id="g8-9"><path + d="m 93.812,37.7399 -0.6942,-0.3801 c -4.2604,-2.3331 -6.9093,-6.8038 -6.9093,-11.6612 0,-4.7033 2.485,-9.0567 6.535,-11.4482 l 6.4519,-3.8098 c 3.7176,-2.19522 8.3186,-2.26134 12.0976,-0.1739 3.886,2.1466 6.299,6.2354 6.299,10.6749 v 2.0891 c 0,5.5846 -2.96,10.7508 -7.778,13.5751 l -1.575,0.9234 c -4.438,2.6013 -9.9155,2.6813 -14.427,0.2107 z" + fill="#fcd1aa" + id="path8-1" /></g><path + d="m 101.115,22.4301 12.183,10.7271" + stroke="#313334" + stroke-linecap="round" + id="path9" /><g + filter="url(#filter4_i_24_248773)" + id="g10"><path + d="M 87.5703,25.0419 82.7059,22.378 c -0.5423,-0.2969 -0.8795,-0.866 -0.8795,-1.4842 0,-0.5987 0.3163,-1.1528 0.8318,-1.4572 l 8.9789,-5.3021 c 2.8083,-1.6583 6.2841,-1.7082 9.1389,-0.1313 l 2.933,1.6203 c 1.126,0.6219 1.825,1.8066 1.825,3.0929 0,1.254 -0.664,2.414 -1.746,3.0482 l -5.3193,3.1181 c -3.3523,1.9652 -7.4902,2.0256 -10.8984,0.1592 z" + fill="#313334" + id="path10" /></g><g + filter="url(#filter5_i_24_248773)" + id="g11"><path + d="m 92.466,20.8418 -5.1613,-2.8264 c -1.5059,-0.8246 -2.4422,-2.4048 -2.4422,-4.1217 0,-1.6624 0.8784,-3.2011 2.3099,-4.04639 L 97.8494,3.54248 C 101.567,1.34731 106.168,1.28119 109.947,3.36864 l 2.612,1.44305 c 2.275,1.25627 3.687,3.64921 3.687,6.24741 0,2.533 -1.343,4.8762 -3.528,6.1572 l -5.825,3.4148 c -4.438,2.6013 -9.9154,2.6814 -14.427,0.2107 z" + fill="#ffffff" + id="path11" /></g><g + filter="url(#filter6_i_24_248773)" + id="g12"><path + d="m 84.8278,39.7936 -5.0835,-2.7838 c -0.5461,-0.2991 -0.8856,-0.8721 -0.8856,-1.4947 0,-0.5975 0.313,-1.1514 0.8248,-1.4597 l 6.8011,-4.0964 c 2.8098,-1.6925 6.309,-1.7581 9.1802,-0.172 l 2.9053,1.6048 c 1.1344,0.6266 1.8389,1.8202 1.8389,3.1161 0,1.2512 -0.6571,2.4105 -1.7303,3.0537 l -3.3848,2.0285 c -3.2053,1.9208 -7.1886,1.9983 -10.4661,0.2035 z" + fill="#efa4a4" + id="path12" /></g><circle + cx="106.559" + cy="26.867901" + r="2.9108901" + fill="#313334" + id="circle12" /><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 126.14,46.277 c -0.366,-0.4137 -0.998,-0.4524 -1.412,-0.0866 -0.414,0.3659 -0.452,0.9979 -0.086,1.4116 l 8.328,9.4171 7.931,8.9678 c -0.018,0.0442 -0.034,0.0893 -0.048,0.1352 l -1.229,3.8982 c -0.204,0.6453 -0.067,1.3496 0.362,1.8721 l 4.763,5.789 c 0.664,0.8074 1.838,0.967 2.694,0.366 l 6.137,-4.3106 c 1.03,-0.7239 1.143,-2.2088 0.234,-3.0804 l -5.609,-5.3766 c -0.372,-0.3569 -0.868,-0.5562 -1.384,-0.5562 h -4.061 c -0.097,0 -0.194,0.0071 -0.288,0.0208 l -8.004,-9.0502 z" + fill="#313334" + id="path13" /><g + filter="url(#filter7_i_24_248773)" + id="g14"><path + d="m 116.368,51.1126 -0.739,-0.3732 c -1.809,-0.9136 -2.949,-2.7677 -2.949,-4.7943 0,-1.9086 1.013,-3.6739 2.66,-4.637 l 7.968,-4.6569 c 0.324,-0.1893 0.642,-0.386 0.953,-0.5954 1.554,-1.0455 6.557,-4.4854 8.399,-6.6474 2.332,-2.7376 2.55,5.2394 2.566,6.0697 0.001,0.0496 0.001,0.094 0.001,0.1436 0,3.7593 -1.709,7.3147 -4.644,9.6633 l -4.319,3.4556 c -0.423,0.3389 -0.871,0.6468 -1.339,0.9211 l -2.132,1.2499 c -1.968,1.1539 -4.388,1.2296 -6.425,0.201 z" + fill="#fcd1aa" + id="path14" /></g><path + d="m 134.59,33.1572 c -1.544,2.3543 -3.545,4.0083 -5.833,5.3122" + stroke="#bf9278" + stroke-linecap="round" + id="path15" /><path + d="m 134.59,37.3347 c -1.544,2.3543 -3.545,4.0084 -5.833,5.3123" + stroke="#bf9278" + stroke-linecap="round" + id="path16" /><path + d="m 73.9423,102.781 c -0.8517,0.491 -1.9275,0.75 -3.2274,0.776 -1.3,-0.026 -2.3758,-0.285 -3.2274,-0.776 -1.1207,-0.647 -1.5241,-1.45 -1.2103,-2.407 l 5.1101,-14.7517 -26.9624,3.455 c -0.7172,0.1035 -1.4569,0.0906 -2.2189,-0.0388 -0.8068,-0.1553 -1.4568,-0.3753 -1.9499,-0.66 -0.9413,-0.5435 -1.412,-1.1775 -1.412,-1.9022 0,-0.7246 0.4483,-1.3457 1.3448,-1.8633 0.5827,-0.3364 1.3447,-0.5694 2.2861,-0.6988 l 33.8206,-4.309 c 1.6137,-0.207 3.0033,0.0259 4.1688,0.6988 1.2103,0.6987 1.6585,1.501 1.3447,2.4068 l -6.5893,18.7112 c -0.2241,0.543 -0.6499,0.996 -1.2775,1.359 z" + fill="url(#paint1_linear_24_248773)" + id="path17" + style="fill:url(#paint1_linear_24_248773)" /><path + d="m 37.4342,123.859 c -0.8516,0.491 -1.9274,0.75 -3.2274,0.776 -1.2999,-0.026 -2.3757,-0.285 -3.2274,-0.776 -1.1206,-0.647 -1.524,-1.45 -1.2103,-2.407 L 34.8792,106.7 7.91681,110.155 c -0.71721,0.104 -1.45683,0.091 -2.21886,-0.039 -0.80685,-0.155 -1.45682,-0.375 -1.94989,-0.66 -0.94134,-0.543 -1.412,-1.177 -1.412,-1.902 0,-0.724 0.44825,-1.345 1.34476,-1.863 0.58273,-0.336 1.34476,-0.569 2.28609,-0.699 l 33.82069,-4.309 c 1.6137,-0.207 3.0033,0.026 4.1687,0.699 1.2103,0.699 1.6586,1.501 1.3448,2.407 L 38.7118,122.5 c -0.2242,0.543 -0.65,0.996 -1.2776,1.359 z" + fill="url(#paint2_linear_24_248773)" + id="path18" + style="fill:url(#paint2_linear_24_248773)" /></g><g + style="fill:none" + id="g4" + transform="translate(103.31662,408.9601)"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 48.1927,108.009 -17.4291,9.666 c -3.1782,1.763 -5.1498,5.111 -5.1498,8.745 v 4.153 c 0,3.589 1.9228,6.902 5.0386,8.683 l 20.3844,11.648 c 1.511,0.863 3.2211,1.317 4.9614,1.317 h 23.2493 c 1.8037,0 3.5738,-0.487 5.1228,-1.411 l 15.0525,-8.979 5.0392,2.909 c 1.388,0.802 2.949,1.258 4.551,1.33 l 10.56,0.474 -1.035,0.334 c -0.742,-0.03 -1.491,0.031 -2.229,0.186 l -4.254,0.897 c -3.888,0.82 -6.923,3.864 -7.729,7.756 l -0.312,1.506 c -0.57,2.748 -2.268,5.13 -4.6792,6.565 l -19.8269,11.796 c -2.2035,1.311 -3.8193,3.418 -4.5134,5.886 l -1.0255,3.647 c -0.4886,0.512 -1.0608,0.943 -1.6956,1.273 -1.1393,0.591 -0.8071,2.303 0.4706,2.425 l 5.0701,0.485 c 0.89,0.085 1.7874,0.05 2.6681,-0.103 l 10.6452,-1.855 c 1.1431,-0.199 2.2427,-0.596 3.2499,-1.172 l 25.9817,-14.866 4.401,2.541 c 1.958,1.131 4.242,1.564 6.478,1.23 l 10.754,-1.607 c 1.351,-0.202 2.647,-0.679 3.807,-1.402 l 19.046,-11.859 c 1.394,-0.868 2.553,-2.066 3.374,-3.488 l 2.197,-3.806 c 1.038,-1.797 1.491,-3.873 1.296,-5.94 l -0.041,-0.43 c -0.195,-2.067 0.257,-4.143 1.295,-5.94 l 2.724,-4.718 c 1.086,-1.882 1.53,-4.067 1.264,-6.224 l -0.037,-0.303 11.662,-6.64 c 3.123,-1.778 5.052,-5.096 5.052,-8.69 V 90.6765 l 16.592,-9.6272 c 0.624,-0.362 1.004,-1.0316 0.996,-1.7526 -5.552,-3.2309 -18.765,-11.0048 -21.454,-12.5869 -1.693,-1.3175 -3.822,-2.1021 -6.134,-2.1021 h -1.61 c -1.716,0 -3.403,-0.4416 -4.899,-1.2823 L 153.491,50.045 c -1.496,-0.8407 -3.183,-1.2823 -4.9,-1.2823 H 125.91 c -1.745,0 -3.459,0.4567 -4.973,1.3247 L 58.3687,85.9596 c -3.1088,1.7824 -5.0262,5.0919 -5.0262,8.6753 v 4.6286 c 0,3.6345 -1.9716,6.9825 -5.1498,8.7455 z" + fill="url(#paint0_linear_22_86063)" + id="path1-2" + style="fill:url(#paint0_linear_22_86063)" /><path + d="m 11.6496,106.818 17.4291,-9.6662 c 3.1782,-1.7626 5.1498,-5.1108 5.1498,-8.745 v -4.6286 c 0,-3.5834 1.9174,-6.8929 5.0262,-8.6753 L 101.823,39.2307 c 1.514,-0.868 3.228,-1.3247 4.973,-1.3247 h 22.681 c 1.717,0 3.404,0.4416 4.9,1.2823 l 23.631,13.2804 c 1.496,0.8407 3.183,1.2823 4.899,1.2823 h 1.61 c 5.523,0 10,4.4772 10,10 v 39.42 c 0,3.594 -1.929,6.912 -5.052,8.69 l -46.901,26.705 c -3.05,1.736 -6.788,1.747 -9.847,0.027 L 94.5016,128.357 c -3.1227,-1.755 -6.9456,-1.706 -10.022,0.129 l -19.2233,11.467 c -1.5491,0.924 -3.3192,1.412 -5.1228,1.412 H 36.8842 c -1.7403,0 -3.4505,-0.454 -4.9614,-1.318 L 11.5384,128.399 c -3.11579,-1.781 -5.03864,-5.094 -5.03864,-8.683 v -4.153 c 0,-3.634 1.97166,-6.982 5.14984,-8.745 z" + fill="#59727a" + id="path2-7" /><g + mask="url(#mask0_22_86063)" + id="g8-93"><g + filter="url(#filter0_f_22_86063)" + id="g7-60"><path + d="M 12.7338,106.217 32.2925,95.3694 c 1.2046,-0.6681 2.6682,-0.6694 3.8739,-0.0035 l 36.6854,20.2611 c 2.7888,1.54 2.7455,5.564 -0.0757,7.044 l -11.1633,5.856 c -0.5733,0.301 -1.2109,0.458 -1.8582,0.458 H 41.5735 c -0.6922,0 -1.3726,-0.18 -1.9746,-0.522 L 12.6992,113.194 c -2.71589,-1.542 -2.6965,-5.462 0.0346,-6.977 z" + fill="#abb9bd" + id="path4-6" /><path + d="m 117.241,114.507 v 0.976 c 0,5.076 -5.753,8.016 -9.867,5.041 -0.876,-0.634 -0.854,-1.945 0.042,-2.55 l 7.205,-4.86 c 1.116,-0.753 2.62,0.047 2.62,1.393 z" + fill="#abb9bd" + id="path5-2" /><path + d="m 133.006,38.417 27.022,15.1498 c 2.735,1.5336 2.723,5.4749 -0.023,6.9907 L 88.3178,100.142 c -4.8954,2.703 -10.8468,2.655 -15.6971,-0.128 L 40.2775,81.4554 c -2.6796,-1.5375 -2.6789,-5.403 0.0011,-6.9395 l 62.9304,-36.08 c 0.605,-0.3472 1.291,-0.5299 1.989,-0.5299 h 25.852 c 0.685,0 1.359,0.1759 1.956,0.511 z" + fill="#abb9bd" + id="path6-6" /><path + d="m 162.441,81.1442 v 0.9759 c 0,5.0766 5.752,8.016 9.866,5.0413 0.876,-0.6334 0.855,-1.9452 -0.041,-2.5497 l -7.206,-4.8602 c -1.116,-0.7527 -2.619,0.0468 -2.619,1.3927 z" + fill="#abb9bd" + id="path7-1" /></g></g><g + filter="url(#filter1_i_22_86063)" + id="g9"><path + d="M 142.385,66.2008 104.361,87.4237 C 94.9743,92.6629 83.5017,92.4791 74.2875,86.9419 L 60.3822,78.5856 c -1.5173,-0.9118 -2.709,-2.278 -3.4063,-3.905 -0.4498,-1.0494 -0.6816,-2.1792 -0.6816,-3.3209 V 61.2048 c 0,-1.6034 0.3855,-3.1833 1.1241,-4.6064 l 4.8692,-9.3822 -4.6107,4.1649 c -2.088,1.886 -4.8738,2.8051 -7.6742,2.5319 l -5.3126,-0.5183 c -1.6798,-0.1638 -3.3738,0.1001 -4.924,0.7673 L 9.69884,67.1015 c -0.21676,0.0933 -0.45025,0.1414 -0.68623,0.1414 -1.39709,0 -2.22186,-1.5663 -1.43135,-2.7182 L 17.4566,50.1342 c 0.8518,-1.2411 1.9727,-2.274 3.2793,-3.0215 L 41.2377,35.383 v -6.3093 c 0,-2.2611 0.7663,-4.4556 2.1739,-6.2252 l 6.7689,-8.5095 c 0.8507,-1.0695 1.9117,-1.9533 3.1174,-2.5968 L 73.0907,1.17796 C 74.5397,0.404569 76.1569,0 77.7994,0 h 4.3937 c 2.0758,0 4.1,0.645927 5.7921,1.8482 l 0.3525,0.25047 c 1.6921,1.20227 3.7164,1.8482 5.7921,1.8482 h 5.447 c 2.1732,0 4.2872,0.708 6.0222,2.01683 l 1.681,1.26825 c 2.505,1.88965 3.978,4.84545 3.978,7.98315 v 9.3432 l 5.235,-3.1211 c 1.549,-0.9231 3.318,-1.4105 5.121,-1.4105 h 2.669 c 1.715,0 3.402,-0.4414 4.898,-1.2816 l 8.646,-4.8575 c 1.365,-0.767 2.905,-1.1699 4.471,-1.1699 1.596,0 3.163,-0.4183 4.547,-1.2131 L 164.333,1.45838 c 0.625,-0.3592 1.395,-0.35399 2.016,0.01363 l 11.811,6.99955 c 1.323,0.78379 1.303,2.70464 -0.035,3.46144 l -14.857,8.4019 c -2.145,1.2134 -3.767,3.1766 -4.554,5.5126 l -11.725,34.8132 c -0.793,2.3544 -2.434,4.3293 -4.604,5.5401 z" + fill="#bbedfe" + id="path8-8" /></g><path + d="m 123.283,60.8829 c 0,10.3364 -4.455,14.5084 -4.455,14.5084 l 20.653,-11.3275 5.809,-14.8826 5.748,-17.8733 -37.62,19.2387 c 0,0 9.865,0 9.865,10.3363 z" + fill="#59727a" + id="path9-7" /><path + d="m 137.061,65.4834 -33.667,18.7907 c -4.4691,2.4946 -10.2377,4.5335 -13.9041,0.9621 -1.5692,-1.5286 -2.7758,-3.8793 -2.7757,-7.4943 10e-5,-7.6739 3.0145,-12.5069 4.5673,-14.4876 0.5624,-0.7172 1.3104,-1.2466 2.1165,-1.672 l 58.026,-30.6154 -9.76,28.9764 c -0.793,2.3544 -2.434,4.3293 -4.603,5.5401 z" + stroke="#abb9bd" + stroke-width="2" + id="path10-9" /><path + d="M 93.5215,61.5881 106.628,54.315 c 4.454,-2.4715 10.186,-4.4911 13.851,-0.9538 1.583,1.5278 2.804,3.885 2.804,7.5217 0,7.7238 -3.054,12.5696 -4.597,14.5258 -0.545,0.6895 -1.263,1.2043 -2.036,1.6218 l -15.61,8.4347" + stroke="#abb9bd" + stroke-width="2" + id="path11-2" /><path + d="m 104.69,55.2669 c 0,0 9.865,0 9.865,10.3363 0,10.3364 -5.469,15.5186 -5.469,15.5186" + stroke="#abb9bd" + stroke-width="2" + id="path12-0" /><path + d="m 15.3724,49.2231 30.3521,-17.6821 1.1243,0.6245 c 1.2187,0.677 1.9746,1.9615 1.9746,3.3556 0,2.9986 3.2843,4.8393 5.842,3.2741 l 5.3509,-3.2744 4.5569,0.4952 -12.5382,7.8042 -30.9902,16.9569 -10.174,5.6348 c -0.98418,0.5451 -2.09071,0.831 -3.21571,0.831 H 7.59732 c -1.22859,0 -2.43153,0.3515 -3.46687,1.0129 -1.08167,0.6911 -2.398,-0.4525 -1.86493,-1.6201 L 4.38073,62.0025 C 4.75202,61.1892 5.2307,60.4294 5.80396,59.7433 l 6.92864,-8.2917 c 0.744,-0.8903 1.6373,-1.6444 2.6398,-2.2285 z" + fill="#fcd1aa" + id="path13-2" /><path + d="m 62.304,44.8108 h 1.316 c 3.4956,0 6.9301,-0.9162 9.9613,-2.6572 l 12.7673,-7.3333 c 3.0744,-1.7658 5.624,-4.3171 7.3879,-7.3926 l 0.8662,-1.5104" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path14-3" /><path + d="M 46.7203,55.8341 45.2597,55.3513 C 42.5954,54.4706 39.6836,54.7499 37.2352,56.121 L 17.1058,67.3935 c -2.2371,1.2528 -4.8699,1.5984 -7.35459,0.9654 L 5.72485,67.3333 14.3499,64.1954 c 0.4711,-0.1714 0.9286,-0.3779 1.3686,-0.6179 L 38.3037,51.2618 c 0.6077,-0.3313 1.2481,-0.5987 1.9109,-0.7978 l 22.2932,-6.6958 c 0,2.2201 -0.8201,4.3619 -2.3028,6.0143 l -2.9035,3.2356 c -2.6542,2.9578 -6.8079,4.0633 -10.5812,2.816 z" + fill="#bf9278" + id="path15-7" /><path + d="m 57.6018,37.1552 13.1793,-7.8363 c 0,0 -4.9867,-4.2743 -9.9735,-1.0686 -4.6898,3.0149 -3.2058,8.9049 -3.2058,8.9049 z" + fill="#bf9278" + id="path16-5" /><ellipse + cx="62.854099" + cy="33.332001" + rx="3.3487999" + ry="3.3482499" + transform="rotate(-30,62.8541,33.332)" + fill="url(#paint1_radial_22_86063)" + id="ellipse16" + style="fill:url(#paint1_radial_22_86063)" /><path + d="m 37.2437,45.8929 c -2.271,1.5849 -4.8222,1.8522 -5.6982,0.597 -0.8761,-1.2552 0.2547,-3.5577 2.5257,-5.1426" + stroke="#bf9278" + stroke-linecap="round" + id="path17-9" /><path + d="m 111.671,25.318 v 3.4895 m -26.8778,33.4158 2.6896,-3.6187 c 3.5779,-4.8139 8.2178,-8.7378 13.5592,-11.4666 v 0 c 6.524,-3.3329 10.629,-10.0407 10.629,-17.3665 v -0.964 m 0,0 15.615,-8.2392" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path18-2" /><path + d="M 166.882,4.28925 148.299,15.934 M 172.306,7.55933 153.722,19.204" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path19" /><path + d="M 144.453,51.227 123.278,62.6987 M 147.791,41.1207 121.89,55.1093" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path20" /></g><g + style="fill:none" + id="g6" + transform="translate(1530.6871,711.1048)"><g + filter="url(#filter0_i_18_38620)" + id="g1-2"><path + d="M 46.2397,119.898 96.8369,90.947 132.978,55.9906 c 2.844,-2.7511 6.44,-4.5966 10.334,-5.3031 L 168.8,46.0631 c 3.633,-0.6592 4.509,-5.4692 1.342,-7.367 l -29.2,-17.4956 c -1.961,-1.1744 -4.505,-0.4709 -5.583,1.5438 l -8.772,16.391 c -1.76,3.2868 -4.402,6.0166 -7.631,7.8812 L 34.3818,95.8668 c -9.2963,5.3692 -9.2176,18.8152 0.1409,24.0752 3.6417,2.047 8.0911,2.03 11.717,-0.044 z" + fill="#bbedfe" + id="path1-9" /></g><path + d="m 32.3893,106.05 -7.2219,4.04 c -4.4244,2.475 -7.1651,7.149 -7.1651,12.218 v 9.752 l 3.1288,-4.489 c 1.1393,-1.635 2.6677,-2.96 4.4472,-3.856 l 15.9639,-8.04 -2.7617,-0.88 c -3.8067,-1.213 -6.3912,-4.749 -6.3912,-8.745 z" + fill="#fcd1aa" + id="path2-3" /><path + d="m 18.0023,132.06 3.1288,-4.489 c 1.1393,-1.635 2.6677,-2.96 4.4472,-3.856 l 15.9639,-8.04 -1.3262,-0.352 c -2.4421,-0.648 -5.0392,-0.348 -7.2691,0.84 l -7.9431,4.233 c -4.3093,2.296 -7.0015,6.781 -7.0015,11.664 z" + fill="#bf9278" + id="path3-1" /><path + d="m 82.1051,93.2835 v -2.5228 c 0,-3.2336 -0.8225,-6.4142 -2.3901,-9.2425 l -0.349,-0.6297 16.6838,10.5101 -16.6835,9.5254 c 1.7707,-2.1525 2.7388,-4.8532 2.7388,-7.6405 z" + fill="#abb9bd" + id="path4-9" /><path + d="M 31.5083,48.3674 68.7486,27.2086 c -3.3785,1.9195 -3.4326,6.7692 -0.0978,8.7636 L 100.213,54.848 c 1.494,0.8934 1.736,2.9596 0.489,4.1744 L 90.3565,69.1029 111.434,62.2297 c 1.02,-0.3325 2.13,-0.2416 3.082,0.2522 l 39.194,20.33 c 5.229,2.712 11.459,2.668 16.648,-0.1176 l -42.571,22.8507 c -2.419,1.299 -5.335,1.266 -7.725,-0.087 L 31.5136,55.3261 c -2.7034,-1.5305 -2.7064,-5.424 -0.0053,-6.9587 z" + fill="#ffffff" + id="path5-4" /><path + d="m 114.516,62.4819 39.194,20.33 c 5.229,2.712 11.459,2.668 16.648,-0.1176 L 143.276,97.45 90.3564,69.1029 41.8152,42.3641 68.7485,27.2086 c -3.3785,1.9195 -3.4326,6.7692 -0.0978,8.7636 L 100.213,54.848 c 1.494,0.8934 1.736,2.9596 0.489,4.1744 L 90.3564,69.1029 111.434,62.2297 c 1.02,-0.3325 2.13,-0.2416 3.082,0.2522 z" + fill="#59727a" + id="path6-7" /><path + d="m 41.5845,111.454 13.1793,-7.836 c 0,0 -4.9867,-4.2743 -9.9735,-1.069 -4.6899,3.015 -3.2058,8.905 -3.2058,8.905 z" + fill="#59727a" + fill-opacity="0.5" + id="path7-8" /><ellipse + cx="46.8367" + cy="107.631" + rx="3.3487999" + ry="3.3482499" + transform="rotate(-30,46.8367,107.631)" + fill="url(#paint0_radial_18_38620)" + id="ellipse7" + style="fill:url(#paint0_radial_18_38620)" /><path + d="M 139.585,21.7255 127.469,41.939" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path8-4" /><path + d="M 145.641,25.3924 129.807,43.2825" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path9-5" /><path + d="m 150.808,29.1704 -18.55,15.4022" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path10-0" /><path + d="M 158.975,33.5596 134.811,46.0888" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path11-3" /><path + d="M 166.05,37.869 136.641,48.1161" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path12-6" /><ellipse + cx="30.8204" + cy="113.088" + rx="1.80493" + ry="0.91159099" + transform="rotate(-30.2584,30.8204,113.088)" + fill="#bf9278" + id="ellipse12" /><path + d="m 115.945,223.838 c -3.626,2.074 -8.075,2.091 -11.717,0.044 -0.227,-0.127 -0.448,-0.26 -0.665,-0.397 l -8.2793,4.17 c -1.7795,0.896 -3.3078,2.221 -4.4471,3.856 L 87.7078,236 v -9.751 c 0,-5.07 2.7407,-9.744 7.1651,-12.219 l 2.3197,-1.297 c -0.327,-4.963 1.9665,-10.08 6.8944,-12.926 l 34.026,-19.653 -36.894,-20.888 c -2.7033,-1.53 -2.7063,-5.424 -0.005,-6.958 l 10.438,-5.931 -0.131,-0.073 26.915,-15.145 c -0.415,0.238 -0.779,0.52 -1.093,0.836 -2.228,2.241 -1.905,6.172 1.013,7.917 l 31.562,18.876 c 0.837,0.501 1.281,1.369 1.291,2.249 l 17.453,-10.08 c 3.228,-1.865 5.871,-4.595 7.63,-7.882 l 8.772,-16.391 c 1.079,-2.014 3.623,-2.718 5.583,-1.543 l 29.2,17.495 c 3.168,1.898 2.292,6.708 -1.341,7.367 l -25.489,4.625 c -3.893,0.706 -7.49,2.552 -10.334,5.303 l -10.813,10.458 31.546,16.363 c 5.226,2.711 11.453,2.668 16.642,-0.114 l -27.076,14.752 -0.204,-0.109 -15.285,8.204 c -2.42,1.299 -5.336,1.266 -7.725,-0.087 l -24.421,-13.826 z" + fill="url(#paint1_linear_18_38620)" + id="path13-1" + style="fill:url(#paint1_linear_18_38620)" /></g><g + style="fill:none" + id="g13" + transform="translate(1552.3402,321.01251)"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="M 95.2887,121.718 57.2065,98.6769 157.207,40.9676 196.126,65.9725 c 12.64,8.1204 12.148,26.7564 -0.901,34.1995 l -32.521,18.548 35.557,22.371 -41.744,-18.842 -0.442,0.252 c -18.905,10.783 -42.166,10.483 -60.7863,-0.783 z" + fill="url(#paint0_linear_18_19157)" + id="path1-6" + style="fill:url(#paint0_linear_18_19157)" /><path + d="m 34.9345,95.1611 c 0.7503,-0.4298 1.6719,-0.4308 2.4231,-0.0026 l 1.1739,0.6692 c 1.0987,0.6264 1.1152,2.2046 0.0298,2.8538 -1.0827,0.6476 -1.0697,2.2205 0.0235,2.8505 l 26.0738,15.018 c 1.1886,0.684 2.6451,0.712 3.859,0.073 l 1.7187,-0.904 c 0.9845,-0.518 2.1673,-0.488 3.1242,0.08 2.1266,1.26 2.0833,4.353 -0.0777,5.554 l -3.7647,2.091 c -1.2231,0.68 -2.7124,0.671 -3.9273,-0.023 L 31.6176,104.007 c -2.6855,-1.534 -2.6877,-5.4057 -0.0039,-6.9433 z" + fill="url(#paint1_linear_18_19157)" + id="path2-1" + style="fill:url(#paint1_linear_18_19157)" /><path + d="m 18.2561,104.27 c 0.7502,-0.43 1.6719,-0.431 2.423,-0.003 l 1.1739,0.67 c 1.0988,0.626 1.1153,2.204 0.0298,2.853 -1.0826,0.648 -1.0697,2.221 0.0235,2.851 l 26.0738,15.018 c 1.1886,0.684 2.6452,0.712 3.859,0.073 l 1.7187,-0.904 c 0.9845,-0.518 2.1673,-0.488 3.1243,0.08 2.1265,1.26 2.0832,4.353 -0.0778,5.553 l -3.7646,2.092 c -1.2231,0.68 -2.7125,0.671 -3.9273,-0.023 L 14.9391,113.116 c -2.6855,-1.534 -2.6877,-5.406 -0.0039,-6.943 z" + fill="url(#paint2_linear_18_19157)" + id="path3-5" + style="fill:url(#paint2_linear_18_19157)" /><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 206.644,43.271 c 0.751,0.4282 1.673,0.4272 2.423,-0.0026 l 3.321,-1.9026 c 2.683,-1.5376 2.681,-5.4091 -0.004,-6.9437 L 178.41,15.0088 c -1.214,-0.6942 -2.704,-0.7031 -3.927,-0.0235 l -3.764,2.0917 c -2.161,1.2007 -2.205,4.2932 -0.078,5.5539 0.957,0.5674 2.14,0.5974 3.124,0.0794 l 1.719,-0.9043 c 1.214,-0.6387 2.67,-0.6109 3.859,0.0738 l 26.074,15.0181 c 1.093,0.6296 1.106,2.2025 0.023,2.8501 -1.085,0.6492 -1.069,2.2274 0.03,2.8538 z m -16.679,9.1089 c 0.751,0.4283 1.673,0.4273 2.423,-0.0025 l 3.321,-1.9027 c 2.684,-1.5376 2.682,-5.4091 -0.004,-6.9437 L 161.732,24.1178 c -1.215,-0.6943 -2.704,-0.7032 -3.927,-0.0236 l -3.765,2.0917 c -2.161,1.2007 -2.204,4.2933 -0.078,5.554 0.957,0.5673 2.14,0.5974 3.124,0.0794 l 1.719,-0.9043 c 1.214,-0.6387 2.671,-0.6109 3.859,0.0737 l 26.074,15.0181 c 1.093,0.6297 1.106,2.2026 0.023,2.8501 -1.085,0.6493 -1.068,2.2274 0.03,2.8538 z" + fill="url(#paint3_linear_18_19157)" + id="path4-54" + style="fill:url(#paint3_linear_18_19157)" /><g + filter="url(#filter0_i_18_19157)" + id="g5-7"><path + d="m 55.3187,97.6006 4.6846,2.6754 c 18.6388,10.645 41.5447,10.523 60.0677,-0.3212 L 171.31,69.9596 C 177.44,66.3715 181.642,59.606 179.24,52.9221 167.96,21.5314 111.341,7.08145 93.2065,16.9676 c -6,3.2709 -23,13.212 -25.3046,14.7135 -11.6871,7.6142 -16.6751,15.7564 -20.6953,29.1111 -2.0313,6.7474 -1.7844,16.0453 -1.1757,22.9114 0.5229,5.8977 4.1463,10.9606 9.2878,13.897 z" + fill="#59727a" + id="path5-6" /></g><path + d="M 96.2064,88.9676 123.206,73.9979 c 0,0 -9.809,-7.8424 -19.348,-1.905 -12.6516,7.8747 -7.6516,16.8747 -7.6516,16.8747 z" + fill="#59727a" + id="path6-56" /><ellipse + cx="101.953" + cy="86.713501" + rx="6.4031301" + ry="6.40206" + transform="rotate(-30,101.953,86.7135)" + fill="url(#paint4_radial_18_19157)" + id="ellipse6" + style="fill:url(#paint4_radial_18_19157)" /><path + d="m 69.0751,47.0294 c 2.5,-5 6.1818,-3.0288 6.1818,-3.0288 0,0 7.3882,4.3184 16.8743,12.7208 9.0288,7.9975 12.8138,14.1918 12.8138,14.1918 0,0 -3.594,-2.8309 -14.1916,-8.956 -10.6876,-6.177 -20.7262,-9.1339 -20.7262,-9.1339 0,0 -2.9521,-1.7939 -0.9521,-5.7939 z" + fill="url(#paint5_linear_18_19157)" + id="path7-9" + style="fill:url(#paint5_linear_18_19157)" /><path + d="M 3.20654,5.96759 75.2065,43.9676 c 0,0 2,2 0,6 -2.5,5 -8,2 -8,2 z" + fill="url(#paint6_angular_18_19157)" + id="path8-3" + style="fill:url(#paint6_angular_18_19157)" /><path + d="m 95.2319,106.904 c 3.2432,-0.771 10.1781,-3.237 11.9751,-6.9364" + stroke="#59727a" + stroke-width="2" + stroke-linecap="round" + id="path9-74" /></g><g + style="fill:none" + id="g22" + transform="translate(819.49741,904.17038)"><g + clip-path="url(#clip0_24_105152)" + id="g21"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 20.2866,115.183 c 0,0 27.5818,44.365 67.0392,39.216 17.3162,-2.26 35.4202,-2.015 51.3822,-1.799 5.998,0.081 11.693,0.158 16.931,0.097 17.436,5.793 43.307,12.417 58.605,7.105 5.974,-2.074 -3.26,-6.721 -12.7,-11.472 -3.348,-1.685 -6.722,-3.384 -9.453,-4.985 -1.815,-1.064 -3.462,-2.103 -4.957,-3.11 -0.014,-0.358 -0.044,-0.726 -0.091,-1.105 -2.486,-19.961 1.921,-36.96 5.797,-51.9108 4.929,-19.0107 8.999,-34.7116 -3.048,-48.9867 z" + fill="url(#paint0_linear_24_105152)" + id="path1-20" + style="fill:url(#paint0_linear_24_105152)" /><g + filter="url(#filter0_i_24_105152)" + id="g2-6"><path + d="m 67.9096,127.762 c 17.5532,0 42.2374,-8.772 56.8584,-11.697 C 235.886,71.5532 -47.8577,26.5386 8.45204,102.744 23.2765,122.807 43.5417,127.762 67.9096,127.762 Z" + fill="#bbedfe" + id="path2-8" /></g><g + filter="url(#filter1_i_24_105152)" + id="g3-9"><path + d="M 65.3121,56.5095 C 22.6788,61.1089 -12.9353,70.4976 6.11947,92.2553 13.8383,101.069 31.5856,111.217 58.1618,114.116 c 17.8698,1.95 51.9852,4.874 66.6062,1.95 68.157,-28.6374 75.872,-66.9885 65.774,-77.6484 -10.098,-10.6598 -32.798,8.12 -125.2299,18.0919 z" + fill="#346a82" + id="path3-2" /></g><path + d="m 143.341,92.3044 c -7.922,-8.9475 -25.168,-21.6602 -36.81,-29.8195 -3.951,-2.769 -2.419,-9.0899 2.372,-9.6639 l 19.704,-2.3608 c 3.842,-0.4605 8.059,3.6661 9.552,7.2367 0.973,2.3255 2.578,5.1087 5.182,8.3055 5.069,6.2237 4.885,31.8199 0,26.302 z" + fill="#346a82" + id="path4-66" /><g + filter="url(#filter2_i_24_105152)" + id="g5-4"><path + d="M 147.544,3.03361 C 129.88,10.5776 112.506,40.549 104.56,55.8566 c -1.95,3.7553 1.328,7.9014 5.472,7.0473 l 23.159,-4.7729 c 3.438,-0.7086 5.767,-4.8607 5.672,-8.3697 -0.114,-4.2354 0.536,-10.6086 3.359,-19.6489 3.604,-11.5418 13.199,-30.443147 5.322,-27.07879 z" + fill="#346a82" + id="path5-9" /></g><path + d="m 181.218,122.39 c -32.214,13.745 -57.149,-2.622 -67.628,-11.695 -2.747,-2.377 -1.709,-6.548 1.719,-7.75 l 25.149,-8.8185 c 4.068,-1.4267 8.512,2.728 9.222,6.9805 0.817,4.892 3.734,10.125 11.86,12.376 10.773,1.866 27.556,5.545 19.678,8.907 z" + fill="#346a82" + id="path6-50" /><path + d="m 66.4551,106.598 c -0.0787,1.08 -0.7791,2.094 -2.0108,2.83 -1.2292,0.735 -2.926,1.147 -4.7952,1.01 -1.8691,-0.136 -3.4883,-0.79 -4.5979,-1.695 -1.1119,-0.907 -1.6578,-2.011 -1.579,-3.091 0.0787,-1.08 0.7791,-2.094 2.0108,-2.83 1.2292,-0.735 2.926,-1.147 4.7952,-1.01 1.8691,0.136 3.4883,0.789 4.5979,1.695 1.1119,0.907 1.6577,2.011 1.579,3.091 z" + fill="#fcd1aa" + stroke="#313334" + stroke-width="1.60474" + id="path7-4" /><path + d="m 64.2497,106.437 c -0.0349,0.479 -0.395,1.016 -1.2188,1.442 -0.8099,0.419 -1.955,0.657 -3.2363,0.564 -1.2814,-0.093 -2.3798,-0.495 -3.1204,-1.027 -0.7533,-0.541 -1.0316,-1.125 -0.9967,-1.604 0.0348,-0.478 0.3949,-1.016 1.2188,-1.442 0.8099,-0.418 1.9549,-0.657 3.2363,-0.563 1.2814,0.093 2.3798,0.495 3.1203,1.027 0.7534,0.541 1.0316,1.125 0.9968,1.603 z" + fill="#313334" + stroke="#313334" + stroke-width="1.60474" + id="path8-87" /><ellipse + cx="58.443401" + cy="104.84" + rx="2.2207699" + ry="1.3615" + transform="rotate(4.17038,58.4434,104.84)" + fill="#bbedfe" + id="ellipse8" /><path + d="M 36.697,119.972 C 23.1473,114.383 16.2178,109.566 10.064,104.88 c 2.7664,3.895 7.4555,9.686 17.3984,15.092 10.4202,5.667 28.6061,8.394 36.2716,7.634 -0.8469,0 -14.1553,-2.32 -27.037,-7.634 z" + fill="#efa4a4" + id="path9-1" /><g + filter="url(#filter3_i_24_105152)" + id="g10-7"><path + d="m 39.9436,121.18 5.0763,1.282 -0.4701,1.861 c -0.2178,0.863 -1.5308,1.275 -2.9325,0.921 -1.4018,-0.354 -2.3616,-1.34 -2.1438,-2.203 z" + fill="#bbedfe" + id="path10-2" /></g><g + filter="url(#filter4_i_24_105152)" + id="g11-7"><path + d="m 35.6157,118.697 4.3133,1.873 -0.9506,2.189 c -0.4404,1.014 -1.7629,1.417 -2.954,0.9 -1.1911,-0.517 -1.7996,-1.759 -1.3592,-2.773 z" + fill="#bbedfe" + id="path11-22" /></g><g + filter="url(#filter5_i_24_105152)" + id="g12-6"><path + d="m 30.2214,116.796 4.675,0.507 -0.293,2.702 c -0.1358,1.252 -1.2924,2.153 -2.5834,2.013 -1.2909,-0.14 -2.2274,-1.269 -2.0916,-2.52 z" + fill="#bbedfe" + id="path12-1" /></g><g + filter="url(#filter6_i_24_105152)" + id="g13-0"><path + d="m 22.1517,112.903 4.0253,0.979 -0.5135,2.11 c -0.2378,0.978 -1.3318,1.551 -2.4433,1.281 -1.1116,-0.271 -1.8198,-1.283 -1.5819,-2.26 z" + fill="#bbedfe" + id="path13-6" /></g><g + filter="url(#filter7_i_24_105152)" + id="g14-1"><path + d="m 20.6288,110.466 1.1803,2.437 -1.9542,0.947 c -0.9055,0.438 -1.9037,0.248 -2.2297,-0.425 -0.3259,-0.672 0.1439,-1.574 1.0493,-2.012 z" + fill="#bbedfe" + id="path14-5" /></g><g + filter="url(#filter8_i_24_105152)" + id="g15"><path + d="m 26.71,113.384 3.7485,2.839 -1.641,2.167 c -0.7603,1.003 -2.2158,1.182 -3.2509,0.397 -1.0351,-0.784 -1.2579,-2.233 -0.4976,-3.237 z" + fill="#bbedfe" + id="path15-9" /></g><g + filter="url(#filter9_i_24_105152)" + id="g16"><path + d="m 10.4904,104.937 2.0195,1.334 -1.0583,1.602 c -0.4904,0.742 -1.34,1.046 -1.89764,0.677 -0.55769,-0.368 -0.61228,-1.269 -0.12193,-2.011 z" + fill="#bbedfe" + id="path16-4" /></g><g + filter="url(#filter10_i_24_105152)" + id="g17"><path + d="m 12.7424,106.972 2.4099,0.611 -0.472,1.862 c -0.2187,0.862 -0.9355,1.424 -1.6009,1.255 -0.6655,-0.168 -1.0277,-1.004 -0.809,-1.867 z" + fill="#bbedfe" + id="path17-90" /></g><g + filter="url(#filter11_i_24_105152)" + id="g18"><path + d="m 16.7432,108.242 1.9233,2.518 -1.5258,1.165 c -0.7069,0.54 -1.7106,0.414 -2.2417,-0.281 -0.5311,-0.695 -0.3886,-1.697 0.3184,-2.237 z" + fill="#bbedfe" + id="path18-9" /></g><g + filter="url(#filter12_i_24_105152)" + id="g19"><path + d="m 45.0199,122.288 4.7362,0.73 -0.2408,1.561 c -0.1115,0.723 -1.2622,1.146 -2.5701,0.944 -1.3078,-0.201 -2.2776,-0.951 -2.1661,-1.674 z" + fill="#bbedfe" + id="path19-1" /></g><g + filter="url(#filter13_i_24_105152)" + id="g20"><path + d="m 49.9463,124.177 4.6693,0.241 -0.1035,2.002 c -0.0479,0.927 -1.1321,1.625 -2.4215,1.558 -1.2894,-0.066 -2.2958,-0.872 -2.2478,-1.8 z" + fill="#bbedfe" + id="path20-7" /></g></g></g></g></svg> diff --git a/configs/conferences/mrmcd/img/bg.svg b/configs/conferences/mrmcd/img/bg.svg new file mode 100644 index 00000000..cccffcd7 --- /dev/null +++ b/configs/conferences/mrmcd/img/bg.svg @@ -0,0 +1,1776 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + width="1920" + height="1080" + viewBox="0 0 1920 1080" + version="1.1" + id="svg1" + xml:space="preserve" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"><defs + id="defs1"><filter + id="filter0_i_19_47822" + x="63.278599" + y="-8" + width="121.575" + height="100.252" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood8" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend8" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix8" /><feOffset + dy="-12" + id="feOffset8" /><feGaussianBlur + stdDeviation="4" + id="feGaussianBlur8" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite8" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.607843 0 0 0 0 0.796078 0 0 0 0 0.858824 0 0 0 1 0" + id="feColorMatrix9" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_19_47822" + id="feBlend9" /></filter><linearGradient + id="paint0_linear_19_47822" + x1="45.675701" + y1="44.569302" + x2="112.278" + y2="116.535" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop9" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop10" /></linearGradient><linearGradient + id="paint1_linear_19_47822" + x1="108.989" + y1="85.746002" + x2="153.088" + y2="123.715" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop11" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop12" /></linearGradient><linearGradient + id="paint2_linear_19_47822" + x1="66.060799" + y1="80.137497" + x2="101.867" + y2="103.403" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop13" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop14" /></linearGradient><linearGradient + id="paint3_linear_19_47822" + x1="33.895199" + y1="58.845299" + x2="71.798103" + y2="83.905602" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop15" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop16" /></linearGradient><linearGradient + id="paint4_linear_19_47822" + x1="118.563" + y1="103.422" + x2="142.49899" + y2="118.028" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop17" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop18" /></linearGradient><linearGradient + id="paint5_linear_19_47822" + x1="129.871" + y1="111.528" + x2="146.002" + y2="121.371" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop19" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop20" /></linearGradient><linearGradient + id="paint6_linear_19_47822" + x1="116.293" + y1="122.845" + x2="139.786" + y2="165.27" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop21" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop22" /></linearGradient><clipPath + id="clip0_19_47822"><rect + width="212" + height="178" + fill="#ffffff" + transform="translate(0.453369)" + id="rect22" + x="0" + y="0" /></clipPath><filter + id="filter0_i_24_248773" + x="64.712601" + y="14.8708" + width="95.9338" + height="72.122398" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood18" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend18" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix18" /><feOffset + dx="-2" + dy="10" + id="feOffset18" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite18" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.717647 0 0 0 0 0.54902 0 0 0 0 0.45098 0 0 0 1 0" + id="feColorMatrix19" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend19" /></filter><filter + id="filter1_i_24_248773" + x="64.712601" + y="21.2519" + width="95.9338" + height="65.741302" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood19" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend20" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix20" /><feOffset + dy="1" + id="feOffset20" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite20" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.988235 0 0 0 0 0.819608 0 0 0 0 0.666667 0 0 0 1 0" + id="feColorMatrix21" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend21" /></filter><filter + id="filter2_i_24_248773" + x="86.208504" + y="2.58972" + width="62.4534" + height="65.5784" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood21" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend22" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix22" /><feOffset + dx="6" + dy="10" + id="feOffset22" /><feGaussianBlur + stdDeviation="5" + id="feGaussianBlur22" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite22" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix23" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend23" /></filter><filter + id="filter3_di_24_248773" + x="86.208504" + y="8.7463903" + width="33.383099" + height="34.791698" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood23" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix24" /><feOffset + dx="0.5" + dy="1" + id="feOffset24" /><feComposite + in2="hardAlpha" + operator="out" + id="feComposite24" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.74902 0 0 0 0 0.572549 0 0 0 0 0.470588 0 0 0 1 0" + id="feColorMatrix25" /><feBlend + mode="normal" + in2="BackgroundImageFix" + result="effect1_dropShadow_24_248773" + id="feBlend25" /><feBlend + mode="normal" + in="SourceGraphic" + in2="effect1_dropShadow_24_248773" + result="shape" + id="feBlend26" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix26" /><feOffset + dx="2" + dy="4" + id="feOffset26" /><feGaussianBlur + stdDeviation="2" + id="feGaussianBlur26" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite26" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix27" /><feBlend + mode="normal" + in2="shape" + result="effect2_innerShadow_24_248773" + id="feBlend27" /></filter><filter + id="filter4_i_24_248773" + x="81.826401" + y="12.8547" + width="25.7078" + height="13.5456" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood27" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend28" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix28" /><feOffset + dx="2" + id="feOffset28" /><feGaussianBlur + stdDeviation="1" + id="feGaussianBlur28" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite28" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix29" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend29" /></filter><filter + id="filter5_i_24_248773" + x="84.862503" + y="1.84832" + width="31.383101" + height="24.7917" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood29" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend30" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix30" /><feOffset + dy="4" + id="feOffset30" /><feGaussianBlur + stdDeviation="2" + id="feGaussianBlur30" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite30" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix31" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend31" /></filter><filter + id="filter6_i_24_248773" + x="78.858597" + y="28.641899" + width="23.549999" + height="12.4453" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood31" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend32" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix32" /><feOffset + dx="2" + id="feOffset32" /><feGaussianBlur + stdDeviation="1" + id="feGaussianBlur32" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite32" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix33" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend33" /></filter><filter + id="filter7_i_24_248773" + x="112.68" + y="28.8389" + width="22.5474" + height="24.9949" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood33" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend34" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix34" /><feOffset + dy="2" + id="feOffset34" /><feGaussianBlur + stdDeviation="1" + id="feGaussianBlur34" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite34" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix35" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_248773" + id="feBlend35" /></filter><linearGradient + id="paint0_linear_24_248773" + x1="107.599" + y1="39.4212" + x2="141.674" + y2="78.537804" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop35" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop36" /></linearGradient><linearGradient + id="paint1_linear_24_248773" + x1="49.633701" + y1="83.925903" + x2="59.0811" + y2="99.2929" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop37" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop38" /></linearGradient><linearGradient + id="paint2_linear_24_248773" + x1="13.1257" + y1="105.004" + x2="22.573" + y2="120.371" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop39" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop40" /></linearGradient><filter + id="filter0_f_22_86063" + x="6.67383" + y="33.905998" + width="170.27699" + height="99.078796" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood20" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend20-2" /><feGaussianBlur + stdDeviation="2" + result="effect1_foregroundBlur_22_86063" + id="feGaussianBlur20" /></filter><filter + id="filter1_i_22_86063" + x="7.2736802" + y="0" + width="181.867" + height="99.227798" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood21-8" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend21-9" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix21-7" /><feOffset + dx="16" + dy="8" + id="feOffset21" /><feGaussianBlur + stdDeviation="5" + id="feGaussianBlur21" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite21" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix22-3" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_22_86063" + id="feBlend22-6" /></filter><linearGradient + id="paint0_linear_22_86063" + x1="72.119102" + y1="74.472702" + x2="133.07401" + y2="147.505" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop22-1" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop23" /></linearGradient><radialGradient + id="paint1_radial_22_86063" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.78226245,2.9194432,-2.9199262,0.78239186,62.1749,31.7712)"><stop + stop-color="white" + id="stop24" /><stop + offset="0.285" + stop-color="#A7D3E2" + id="stop25" /><stop + offset="0.715" + stop-color="#313333" + id="stop26" /></radialGradient><filter + id="filter0_i_18_38620" + x="27.456499" + y="20.631001" + width="148.632" + height="104.835" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood13" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend13" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix13" /><feOffset + dx="4" + dy="6" + id="feOffset13" /><feGaussianBlur + stdDeviation="2" + id="feGaussianBlur13" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite13" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" + id="feColorMatrix14" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_18_38620" + id="feBlend14" /></filter><radialGradient + id="paint0_radial_18_38620" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.78226245,2.9194432,-2.9199262,0.78239186,46.1576,106.07)"><stop + stop-color="white" + id="stop14-0" /><stop + offset="0.285" + stop-color="#A7D3E2" + id="stop15-6" /><stop + offset="0.715" + stop-color="#313333" + id="stop16-3" /></radialGradient><linearGradient + id="paint1_linear_18_38620" + x1="126.316" + y1="144.94901" + x2="174.18201" + y2="205.01801" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop17-2" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop18-0" /></linearGradient><filter + id="filter0_i_18_19157" + x="45.596699" + y="13.8905" + width="162.33" + height="122.284" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood9" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend9-5" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix9-2" /><feOffset + dx="40" + dy="28" + id="feOffset9" /><feGaussianBlur + stdDeviation="14" + id="feGaussianBlur9" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite9" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.734427 0 0 0 0 0.930482 0 0 0 0 0.995833 0 0 0 1 0" + id="feColorMatrix10" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_18_19157" + id="feBlend10" /></filter><linearGradient + id="paint0_linear_18_19157" + x1="94.316902" + y1="59.2784" + x2="136.59399" + y2="116.033" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop10-5" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop11-4" /></linearGradient><linearGradient + id="paint1_linear_18_19157" + x1="38.730099" + y1="99.967003" + x2="50.682301" + y2="118.943" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop12-7" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop13-4" /></linearGradient><linearGradient + id="paint2_linear_18_19157" + x1="22.0516" + y1="109.076" + x2="34.003799" + y2="128.052" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop14-4" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop15-3" /></linearGradient><linearGradient + id="paint3_linear_18_19157" + x1="167.929" + y1="21.4713" + x2="183.586" + y2="44.5228" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5384AB" + id="stop16-0" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop17-7" /></linearGradient><radialGradient + id="paint4_radial_18_19157" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.495736,5.5821626,-5.5830899,1.4959844,100.654,83.7292)"><stop + stop-color="white" + id="stop18-8" /><stop + offset="0.285" + stop-color="#A7D3E2" + id="stop19-6" /><stop + offset="0.715" + stop-color="#313333" + id="stop20-8" /></radialGradient><linearGradient + id="paint5_linear_18_19157" + x1="74.812897" + y1="48.096298" + x2="119.19" + y2="70.213501" + gradientUnits="userSpaceOnUse"><stop + stop-color="#5E7881" + id="stop21-8" /><stop + offset="1" + stop-color="#5E7881" + stop-opacity="0" + id="stop22-4" /></linearGradient><radialGradient + id="paint6_angular_18_19157" + cx="0" + cy="0" + r="1" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(75.999983,38.000072,-15.823473,31.646878,5.20654,6.96759)"><stop + stop-color="#FCD1AA" + id="stop23-3" /><stop + offset="0.03" + stop-color="#BF9278" + id="stop24-1" /><stop + offset="0.04" + stop-color="#BF9278" + id="stop25-4" /><stop + offset="0.0632378" + stop-color="#FCD1AA" + id="stop26-9" /></radialGradient><filter + id="filter0_i_24_105152" + x="0.97289997" + y="61.675701" + width="155.026" + height="71.261101" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood21-7" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend21-1" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix21-1" /><feOffset + dx="5.17473" + dy="5.17473" + id="feOffset21-5" /><feGaussianBlur + stdDeviation="10.3495" + id="feGaussianBlur21-9" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite21-7" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix22-7" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend22-67" /></filter><filter + id="filter1_i_24_105152" + x="0.85205102" + y="35.242599" + width="198.49001" + height="87.234802" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood22" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend23-3" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix23-6" /><feOffset + dx="5.17473" + dy="5.17473" + id="feOffset23" /><feGaussianBlur + stdDeviation="10.3495" + id="feGaussianBlur23" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite23" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.734427 0 0 0 0 0.930482 0 0 0 0 0.995833 0 0 0 1 0" + id="feColorMatrix24-5" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend24" /></filter><filter + id="filter2_i_24_105152" + x="103.982" + y="2.6385" + width="46.584702" + height="65.553101" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood24" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend25-6" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix25-3" /><feOffset + dy="5.17473" + id="feOffset25" /><feGaussianBlur + stdDeviation="2.58736" + id="feGaussianBlur25" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite25" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix26-9" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend26-4" /></filter><filter + id="filter3_i_24_105152" + x="39.4426" + y="121.18" + width="6.8709502" + height="4.1912198" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood26" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend27-8" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix27-1" /><feOffset + dx="1.29368" + id="feOffset27" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur27" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite27" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix28-2" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend28-9" /></filter><filter + id="filter4_i_24_105152" + x="34.5219" + y="118.697" + width="6.7007899" + height="5.1872101" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood28" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend29-3" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix29-9" /><feOffset + dx="1.29368" + id="feOffset29" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur29" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite29" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix30-0" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend30-8" /></filter><filter + id="filter5_i_24_105152" + x="29.9153" + y="116.796" + width="6.2747598" + height="5.2364898" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood30" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend31-8" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix31-5" /><feOffset + dx="1.29368" + id="feOffset31" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur31" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite31" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix32-0" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend32-9" /></filter><filter + id="filter6_i_24_105152" + x="21.5923" + y="112.903" + width="5.8783998" + height="4.4366598" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood32" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend33-6" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix33-3" /><feOffset + dx="1.29368" + id="feOffset33" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur33" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite33" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix34-8" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend34-5" /></filter><filter + id="filter7_i_24_105152" + x="17.5217" + y="110.466" + width="5.5810399" + height="3.6195199" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood34" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend35-6" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix35-1" /><feOffset + dx="1.29368" + id="feOffset35" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur35" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite35" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix36" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend36" /></filter><filter + id="filter8_i_24_105152" + x="24.617599" + y="113.384" + width="7.1346202" + height="5.8923998" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood36" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend37" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix37" /><feOffset + dx="1.29368" + id="feOffset37" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur37" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite37" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix38" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend38" /></filter><filter + id="filter9_i_24_105152" + x="9.0971699" + y="104.937" + width="4.7063999" + height="3.7699101" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood38" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend39" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix39" /><feOffset + dx="1.29368" + id="feOffset39" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur39" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite39" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix40" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend40" /></filter><filter + id="filter10_i_24_105152" + x="12.2067" + y="106.972" + width="4.2393599" + height="3.7580299" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood40" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend41" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix41" /><feOffset + dx="1.29368" + id="feOffset41" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur41" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite41" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix42" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend42" /></filter><filter + id="filter11_i_24_105152" + x="14.5779" + y="108.242" + width="5.3822999" + height="4.01861" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood42" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend43" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix43" /><feOffset + dx="1.29368" + id="feOffset43" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur43" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite43" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix44" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend44" /></filter><filter + id="filter12_i_24_105152" + x="44.770401" + y="122.288" + width="6.2793999" + height="3.2858701" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood44" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend45" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix45" /><feOffset + dx="1.29368" + id="feOffset45" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur45" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite45" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix46" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend46" /></filter><filter + id="filter13_i_24_105152" + x="49.841202" + y="124.177" + width="6.0681" + height="3.8060701" + filterUnits="userSpaceOnUse" + color-interpolation-filters="sRGB"><feFlood + flood-opacity="0" + result="BackgroundImageFix" + id="feFlood46" /><feBlend + mode="normal" + in="SourceGraphic" + in2="BackgroundImageFix" + result="shape" + id="feBlend47" /><feColorMatrix + in="SourceAlpha" + type="matrix" + values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" + result="hardAlpha" + id="feColorMatrix47" /><feOffset + dx="1.29368" + id="feOffset47" /><feGaussianBlur + stdDeviation="0.646841" + id="feGaussianBlur47" /><feComposite + in2="hardAlpha" + operator="arithmetic" + k2="-1" + k3="1" + id="feComposite47" + k1="0" + k4="0" /><feColorMatrix + type="matrix" + values="0 0 0 0 0.733333 0 0 0 0 0.929412 0 0 0 0 0.996078 0 0 0 1 0" + id="feColorMatrix48" /><feBlend + mode="normal" + in2="shape" + result="effect1_innerShadow_24_105152" + id="feBlend48" /></filter><linearGradient + id="paint0_linear_24_105152" + x1="69.359299" + y1="60.8214" + x2="120.376" + y2="134.233" + gradientUnits="userSpaceOnUse"><stop + stop-color="#405785" + id="stop48" /><stop + offset="1" + stop-color="#6AB9DA" + id="stop49" /></linearGradient><clipPath + id="clip0_24_105152"><rect + width="217.339" + height="165.591" + fill="#ffffff" + transform="translate(0.852051)" + id="rect49" + x="0" + y="0" /></clipPath></defs><g + id="layer1"><g + style="fill:none" + id="g1" + transform="translate(160.14649,793.50076)"><g + clip-path="url(#clip0_19_47822)" + id="g8"><path + d="M 167.563,71.2395 70.6672,16.847 c 0,0 -33.5868,16.0502 -50.5288,41.6117 C 4.89993,81.4502 0.453369,120.607 0.453369,120.607 L 84.9339,168.433 180.938,111.365 c 0,0 -21.122,9.809 -23.778,-1.783 -3.269,-14.2671 10.403,-20.8061 10.403,-20.8061 z" + fill="url(#paint0_linear_19_47822)" + id="path1" + style="fill:url(#paint0_linear_19_47822)" /><path + d="M 167.563,88.7759 V 67.2396 c 0,0 -42.285,18.564 -59.227,44.1254 -15.238,22.992 -23.4022,57.068 -23.4022,57.068 l 96.0042,-57.068 c 0,0 -21.122,9.809 -23.778,-1.783 -3.27,-14.2671 10.403,-20.8061 10.403,-20.8061 z" + fill="url(#paint1_linear_19_47822)" + id="path2" + style="fill:url(#paint1_linear_19_47822)" /><path + d="M 74.7986,93.5241 C 59.6581,112.071 52.7224,137.471 50.736,145.91 c -0.4008,1.703 0.4216,3.419 1.9624,4.247 l 0.5183,0.278 c 2.2541,1.211 5.0625,0.032 5.8186,-2.413 3.3397,-10.798 12.1881,-37.318 22.7389,-52.1365 6.629,-9.3107 13.1489,-16.3367 18.5558,-21.3988 1.733,-1.6224 0.027,-4.4943 -1.9511,-3.1826 -9.7923,6.4919 -17.8552,15.2069 -23.5803,22.22 z" + fill="url(#paint2_linear_19_47822)" + id="path3" + style="fill:url(#paint2_linear_19_47822)" /><path + d="m 42.1042,69.787 c -16.6486,18.3115 -22.894,46.084 -24.6774,56.065 -0.4026,2.253 0.7234,4.459 2.7306,5.56 3.3864,1.857 7.6346,-0.188 8.4143,-3.971 2.5953,-12.59 8.7274,-37.4253 18.994,-51.4765 6.0957,-8.3427 12.3692,-14.9692 17.9939,-20.0814 1.816,-1.6505 -0.2671,-5.2945 -2.3342,-3.9719 C 54.6621,57.3906 47.524,63.8258 42.1042,69.787 Z" + fill="url(#paint3_linear_19_47822)" + id="path4" + style="fill:url(#paint3_linear_19_47822)" /><path + d="m 149.341,92.2523 c -12.773,6.5673 -38.868,27.9767 -41.068,61.0757" + stroke="url(#paint4_linear_19_47822)" + stroke-width="2" + stroke-linecap="round" + id="path5" + style="stroke:url(#paint4_linear_19_47822)" /><path + d="m 150.613,104 c -8.608,4.426 -26.194,18.855 -27.677,41.162" + stroke="url(#paint5_linear_19_47822)" + stroke-width="2" + stroke-linecap="round" + id="path6" + style="stroke:url(#paint5_linear_19_47822)" /><g + filter="url(#filter0_i_19_47822)" + id="g7"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 173.066,68.6773 c 6.51,0 11.788,5.2774 11.788,11.7875 0,6.51 -5.278,11.7874 -11.788,11.7874 -6.51,0 -11.787,-5.2774 -11.787,-11.7874 0,-2.409 0.722,-4.6492 1.963,-6.5157 -0.317,0.0336 -0.638,0.0509 -0.963,0.0509 -3.281,0 -6.152,-1.7553 -7.725,-4.378 -2.714,3.8575 -7.2,6.378 -12.275,6.378 -8.285,0 -15,-6.7157 -15,-15 0,-1.4421 0.203,-2.8366 0.583,-4.1564 -2.736,-1.544 -4.583,-4.4781 -4.583,-7.8436 0,-0.348 0.019,-0.6914 0.058,-1.0291 -1.415,-0.0877 -2.778,-0.3716 -4.06,-0.8249 C 119.199,52.0492 115.2,56 110.279,56 106.017,56 102.447,53.038 101.516,49.0604 99.8851,49.6679 98.1206,50 96.2786,50 c -8.2843,0 -15,-6.7157 -15,-15 0,-1.9632 0.3771,-3.8383 1.0629,-5.5568 C 81.0493,29.806 79.6866,30 78.2786,30 c -8.2843,0 -15,-6.7157 -15,-15 0,-8.28428 6.7157,-15.00000762939 15,-15.00000762939 4.9861,0 9.404,2.43285762939 12.1315,6.17625762939 1.5757,-1.35635 3.6263,-2.17626 5.8685,-2.17626 4.9704,0 9.0004,4.02944 9.0004,9.00001 0,0.5324 -0.047,1.054 -0.135,1.561 0.976,-0.3628 2.032,-0.561 3.135,-0.561 3.922,0 7.259,2.5099 8.491,6.0114 2.209,-1.2792 4.773,-2.0114 7.509,-2.0114 8.284,0 15,6.7157 15,15 0,3.0388 -0.904,5.8665 -2.457,8.2292 1.841,1.079 3.265,2.794 3.97,4.8435 0.489,-0.0481 0.985,-0.0727 1.487,-0.0727 7.172,0 13.169,5.0343 14.649,11.7623 1.496,-1.1074 3.347,-1.7623 5.351,-1.7623 4.97,0 9,4.0294 9,9 0,1.4338 -0.336,2.7894 -0.932,3.9925 0.873,-0.2061 1.783,-0.3152 2.719,-0.3152 z" + fill="#ffffff" + id="path7" /></g><path + d="m 182.091,135.617 c 0,0.698 0.184,1.367 0.522,1.99 -3.593,-0.005 -7.616,-1.113 -11.478,-4.522 -8.916,-7.87 9.79,-21.743 9.79,-21.743 l -95.9912,57.091 c 0,0 34.5742,7.748 62.0512,5.341 30.549,-2.676 62.441,-31.714 62.441,-31.714 0.426,-0.584 0.665,-1.236 0.665,-1.924 0,-2.496 -3.134,-4.519 -7,-4.519 -0.837,0 -1.639,0.095 -2.383,0.269 0.006,-0.089 0.009,-0.179 0.009,-0.269 0,-3.32 -4.17,-6.011 -9.313,-6.011 -5.144,0 -9.313,2.691 -9.313,6.011 z" + fill="url(#paint6_linear_19_47822)" + id="path8" + style="fill:url(#paint6_linear_19_47822)" /></g></g><g + style="fill:none" + id="g2" + transform="translate(213.2557,108.22213)"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 161.148,75.7161 c 1.049,0.0667 2.087,0.3652 3.035,0.8964 2.267,1.27 3.664,3.6714 3.648,6.2696 l -0.018,2.9844 c -0.026,4.3171 -2.333,8.2987 -6.065,10.4688 l -10.719,6.2327 c -1.437,0.836 -3.209,0.85 -4.659,0.037 -1.131,-0.634 -1.933,-1.695 -2.251,-2.9157 l -3.662,2.1297 c -0.518,0.301 -1.156,0.306 -1.678,0.013 -0.539,-0.302 -0.871,-0.874 -0.865,-1.493 l 0.04,-4.0727 c -0.416,-0.1797 -0.825,-0.3816 -1.225,-0.6057 -1.219,-0.6833 -2.304,-1.5423 -3.228,-2.5351 -0.116,0.073 -0.234,0.1436 -0.353,0.2118 l -6.899,3.9307 c -0.519,0.2959 -1.155,0.2982 -1.676,0.0061 -0.131,-0.073 -0.249,-0.1617 -0.353,-0.2629 l -41.3614,-23.9967 1e-4,-14.869 42.4133,-24.863 c 0,0 26.325,-15.9659 50.091,-3.1688 3.777,6.085 4.504,16.2642 1.834,25.585 3.868,3.603 6.368,7.3799 2.378,9.0247 -2.059,0.8489 -4.279,2.123 -5.852,3.092 -0.533,0.3283 -1.063,0.6612 -1.593,0.994 v 4e-4 1e-4 h -0.001 v 2e-4 10e-5 3e-4 c -0.894,0.5609 -1.787,1.1218 -2.694,1.6609 l -2.478,1.4733 c -0.474,0.3742 -0.962,0.7312 -1.466,1.0698 -0.73,0.4912 -2.271,1.4453 -4.343,2.7016 z" + fill="url(#paint0_linear_24_248773)" + id="path1-3" + style="fill:url(#paint0_linear_24_248773)" /><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 100.799,30.2393 c 0.535,-0.1358 0.859,-0.6799 0.723,-1.2152 -0.136,-0.5353 -0.68,-0.8592 -1.215,-0.7233 L 88.1217,31.3931 76.5178,34.338 c -0.0313,-0.0358 -0.064,-0.0707 -0.0981,-0.1045 l -2.9028,-2.8778 c -0.4805,-0.4764 -1.1692,-0.6775 -1.8305,-0.5346 l -7.327,1.5833 c -1.022,0.2208 -1.7014,1.1917 -1.5589,2.2275 l 1.0223,7.4295 c 0.1717,1.2478 1.4401,2.0281 2.6312,1.6189 l 7.348,-2.5246 c 0.4878,-0.1676 0.892,-0.5172 1.1282,-0.9758 l 1.8594,-3.6104 c 0.0447,-0.0867 0.0825,-0.1756 0.1136,-0.2659 l 11.7105,-2.9719 z" + fill="#59727a" + id="path2-6" /><g + filter="url(#filter0_i_24_248773)" + id="g3"><path + d="m 106.516,86.9932 -41.8034,-24.2535 1e-4,-14.869 42.4133,-24.8629 c 0,0 26.325,-15.96592 50.091,-3.1688 6.582,10.6033 3.9,33.6381 -9.872,42.9007 -4.569,3.0729 -40.829,24.2535 -40.829,24.2535 z" + fill="#bf9278" + id="path3-7" /></g><path + d="M 112.692,63.4458 95.3854,53.9686 c -1.9589,-1.0728 -3.1769,-3.1284 -3.1769,-5.3618 0,-3.0001 2.1771,-5.5569 5.1388,-6.035 l 44.8537,-7.2411 c 8.731,-1.4095 13.52,9.8128 6.461,15.1413 l -9.313,9.2235 c -3.585,3.5499 -8.258,5.7932 -13.27,6.3698 -4.626,0.5323 -9.303,-0.3829 -13.387,-2.6195 z" + fill="#876151" + id="path4-5" /><g + filter="url(#filter1_i_24_248773)" + id="g5"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 64.7126,62.7397 41.8034,24.2535 c 0,0 36.26,-21.1806 40.829,-24.2535 10.676,-7.1803 14.688,-22.6365 12.886,-34.1624 0.684,6.557 -3.119,11.7763 -12.886,18.3453 -4.569,3.0729 -40.829,24.2535 -40.829,24.2535 L 65.0349,47.6818 64.7127,47.8707 Z M 158.004,21.2519 c 0.439,0.9525 0.818,1.8713 1.135,2.7612 -0.327,-0.9756 -0.705,-1.8996 -1.135,-2.7612 z" + fill="#bf9278" + id="path5-3" /></g><path + d="m 147.345,62.7397 c -4.569,3.0729 -40.829,24.2535 -40.829,24.2535 V 72.0159 l 39.442,-23.105 c 9.171,-6.4814 15.346,-11.0599 14.166,-20.099 -0.157,-0.9891 -0.354,-1.9569 -0.591,-2.8969 -0.5,-1.8397 -1.262,-3.8519 -2.316,-6.076 0.985,1.819 1.76,3.8713 2.316,6.076 0.276,1.016 0.471,1.9794 0.591,2.8969 1.874,11.8171 -2.019,26.6915 -12.779,33.9278 z" + fill="#876151" + id="path6-5" /><g + filter="url(#filter2_i_24_248773)" + id="g7-6"><path + d="m 100.617,55.1142 -7.3793,-4.041 c -4.3343,-2.3736 -7.0292,-6.9219 -7.0292,-11.8636 0,-4.8318 2.5775,-9.2967 6.7617,-11.713 L 124.17,9.47875 c 1.457,-0.84094 2.944,-1.62442 4.413,-2.44224 1.615,-0.8985 3.811,-2.21252 5.558,-3.59397 6.621,-5.23479 8.223,15.17016 8.48,19.36796 0.031,0.5016 0.041,0.9932 0.041,1.4957 0,9.0655 -3.624,17.7548 -10.065,24.1339 l -2.56,2.5351 c -1.475,1.4609 -3.128,2.7312 -4.919,3.7811 -7.536,4.418 -16.839,4.5539 -24.501,0.3579 z" + fill="#fcd1aa" + id="path7-2" /></g><g + filter="url(#filter3_di_24_248773)" + id="g8-9"><path + d="m 93.812,37.7399 -0.6942,-0.3801 c -4.2604,-2.3331 -6.9093,-6.8038 -6.9093,-11.6612 0,-4.7033 2.485,-9.0567 6.535,-11.4482 l 6.4519,-3.8098 c 3.7176,-2.19522 8.3186,-2.26134 12.0976,-0.1739 3.886,2.1466 6.299,6.2354 6.299,10.6749 v 2.0891 c 0,5.5846 -2.96,10.7508 -7.778,13.5751 l -1.575,0.9234 c -4.438,2.6013 -9.9155,2.6813 -14.427,0.2107 z" + fill="#fcd1aa" + id="path8-1" /></g><path + d="m 101.115,22.4301 12.183,10.7271" + stroke="#313334" + stroke-linecap="round" + id="path9" /><g + filter="url(#filter4_i_24_248773)" + id="g10"><path + d="M 87.5703,25.0419 82.7059,22.378 c -0.5423,-0.2969 -0.8795,-0.866 -0.8795,-1.4842 0,-0.5987 0.3163,-1.1528 0.8318,-1.4572 l 8.9789,-5.3021 c 2.8083,-1.6583 6.2841,-1.7082 9.1389,-0.1313 l 2.933,1.6203 c 1.126,0.6219 1.825,1.8066 1.825,3.0929 0,1.254 -0.664,2.414 -1.746,3.0482 l -5.3193,3.1181 c -3.3523,1.9652 -7.4902,2.0256 -10.8984,0.1592 z" + fill="#313334" + id="path10" /></g><g + filter="url(#filter5_i_24_248773)" + id="g11"><path + d="m 92.466,20.8418 -5.1613,-2.8264 c -1.5059,-0.8246 -2.4422,-2.4048 -2.4422,-4.1217 0,-1.6624 0.8784,-3.2011 2.3099,-4.04639 L 97.8494,3.54248 C 101.567,1.34731 106.168,1.28119 109.947,3.36864 l 2.612,1.44305 c 2.275,1.25627 3.687,3.64921 3.687,6.24741 0,2.533 -1.343,4.8762 -3.528,6.1572 l -5.825,3.4148 c -4.438,2.6013 -9.9154,2.6814 -14.427,0.2107 z" + fill="#ffffff" + id="path11" /></g><g + filter="url(#filter6_i_24_248773)" + id="g12"><path + d="m 84.8278,39.7936 -5.0835,-2.7838 c -0.5461,-0.2991 -0.8856,-0.8721 -0.8856,-1.4947 0,-0.5975 0.313,-1.1514 0.8248,-1.4597 l 6.8011,-4.0964 c 2.8098,-1.6925 6.309,-1.7581 9.1802,-0.172 l 2.9053,1.6048 c 1.1344,0.6266 1.8389,1.8202 1.8389,3.1161 0,1.2512 -0.6571,2.4105 -1.7303,3.0537 l -3.3848,2.0285 c -3.2053,1.9208 -7.1886,1.9983 -10.4661,0.2035 z" + fill="#efa4a4" + id="path12" /></g><circle + cx="106.559" + cy="26.867901" + r="2.9108901" + fill="#313334" + id="circle12" /><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 126.14,46.277 c -0.366,-0.4137 -0.998,-0.4524 -1.412,-0.0866 -0.414,0.3659 -0.452,0.9979 -0.086,1.4116 l 8.328,9.4171 7.931,8.9678 c -0.018,0.0442 -0.034,0.0893 -0.048,0.1352 l -1.229,3.8982 c -0.204,0.6453 -0.067,1.3496 0.362,1.8721 l 4.763,5.789 c 0.664,0.8074 1.838,0.967 2.694,0.366 l 6.137,-4.3106 c 1.03,-0.7239 1.143,-2.2088 0.234,-3.0804 l -5.609,-5.3766 c -0.372,-0.3569 -0.868,-0.5562 -1.384,-0.5562 h -4.061 c -0.097,0 -0.194,0.0071 -0.288,0.0208 l -8.004,-9.0502 z" + fill="#313334" + id="path13" /><g + filter="url(#filter7_i_24_248773)" + id="g14"><path + d="m 116.368,51.1126 -0.739,-0.3732 c -1.809,-0.9136 -2.949,-2.7677 -2.949,-4.7943 0,-1.9086 1.013,-3.6739 2.66,-4.637 l 7.968,-4.6569 c 0.324,-0.1893 0.642,-0.386 0.953,-0.5954 1.554,-1.0455 6.557,-4.4854 8.399,-6.6474 2.332,-2.7376 2.55,5.2394 2.566,6.0697 0.001,0.0496 0.001,0.094 0.001,0.1436 0,3.7593 -1.709,7.3147 -4.644,9.6633 l -4.319,3.4556 c -0.423,0.3389 -0.871,0.6468 -1.339,0.9211 l -2.132,1.2499 c -1.968,1.1539 -4.388,1.2296 -6.425,0.201 z" + fill="#fcd1aa" + id="path14" /></g><path + d="m 134.59,33.1572 c -1.544,2.3543 -3.545,4.0083 -5.833,5.3122" + stroke="#bf9278" + stroke-linecap="round" + id="path15" /><path + d="m 134.59,37.3347 c -1.544,2.3543 -3.545,4.0084 -5.833,5.3123" + stroke="#bf9278" + stroke-linecap="round" + id="path16" /><path + d="m 73.9423,102.781 c -0.8517,0.491 -1.9275,0.75 -3.2274,0.776 -1.3,-0.026 -2.3758,-0.285 -3.2274,-0.776 -1.1207,-0.647 -1.5241,-1.45 -1.2103,-2.407 l 5.1101,-14.7517 -26.9624,3.455 c -0.7172,0.1035 -1.4569,0.0906 -2.2189,-0.0388 -0.8068,-0.1553 -1.4568,-0.3753 -1.9499,-0.66 -0.9413,-0.5435 -1.412,-1.1775 -1.412,-1.9022 0,-0.7246 0.4483,-1.3457 1.3448,-1.8633 0.5827,-0.3364 1.3447,-0.5694 2.2861,-0.6988 l 33.8206,-4.309 c 1.6137,-0.207 3.0033,0.0259 4.1688,0.6988 1.2103,0.6987 1.6585,1.501 1.3447,2.4068 l -6.5893,18.7112 c -0.2241,0.543 -0.6499,0.996 -1.2775,1.359 z" + fill="url(#paint1_linear_24_248773)" + id="path17" + style="fill:url(#paint1_linear_24_248773)" /><path + d="m 37.4342,123.859 c -0.8516,0.491 -1.9274,0.75 -3.2274,0.776 -1.2999,-0.026 -2.3757,-0.285 -3.2274,-0.776 -1.1206,-0.647 -1.524,-1.45 -1.2103,-2.407 L 34.8792,106.7 7.91681,110.155 c -0.71721,0.104 -1.45683,0.091 -2.21886,-0.039 -0.80685,-0.155 -1.45682,-0.375 -1.94989,-0.66 -0.94134,-0.543 -1.412,-1.177 -1.412,-1.902 0,-0.724 0.44825,-1.345 1.34476,-1.863 0.58273,-0.336 1.34476,-0.569 2.28609,-0.699 l 33.82069,-4.309 c 1.6137,-0.207 3.0033,0.026 4.1687,0.699 1.2103,0.699 1.6586,1.501 1.3448,2.407 L 38.7118,122.5 c -0.2242,0.543 -0.65,0.996 -1.2776,1.359 z" + fill="url(#paint2_linear_24_248773)" + id="path18" + style="fill:url(#paint2_linear_24_248773)" /></g><g + style="fill:none" + id="g4" + transform="translate(103.31662,408.9601)"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 48.1927,108.009 -17.4291,9.666 c -3.1782,1.763 -5.1498,5.111 -5.1498,8.745 v 4.153 c 0,3.589 1.9228,6.902 5.0386,8.683 l 20.3844,11.648 c 1.511,0.863 3.2211,1.317 4.9614,1.317 h 23.2493 c 1.8037,0 3.5738,-0.487 5.1228,-1.411 l 15.0525,-8.979 5.0392,2.909 c 1.388,0.802 2.949,1.258 4.551,1.33 l 10.56,0.474 -1.035,0.334 c -0.742,-0.03 -1.491,0.031 -2.229,0.186 l -4.254,0.897 c -3.888,0.82 -6.923,3.864 -7.729,7.756 l -0.312,1.506 c -0.57,2.748 -2.268,5.13 -4.6792,6.565 l -19.8269,11.796 c -2.2035,1.311 -3.8193,3.418 -4.5134,5.886 l -1.0255,3.647 c -0.4886,0.512 -1.0608,0.943 -1.6956,1.273 -1.1393,0.591 -0.8071,2.303 0.4706,2.425 l 5.0701,0.485 c 0.89,0.085 1.7874,0.05 2.6681,-0.103 l 10.6452,-1.855 c 1.1431,-0.199 2.2427,-0.596 3.2499,-1.172 l 25.9817,-14.866 4.401,2.541 c 1.958,1.131 4.242,1.564 6.478,1.23 l 10.754,-1.607 c 1.351,-0.202 2.647,-0.679 3.807,-1.402 l 19.046,-11.859 c 1.394,-0.868 2.553,-2.066 3.374,-3.488 l 2.197,-3.806 c 1.038,-1.797 1.491,-3.873 1.296,-5.94 l -0.041,-0.43 c -0.195,-2.067 0.257,-4.143 1.295,-5.94 l 2.724,-4.718 c 1.086,-1.882 1.53,-4.067 1.264,-6.224 l -0.037,-0.303 11.662,-6.64 c 3.123,-1.778 5.052,-5.096 5.052,-8.69 V 90.6765 l 16.592,-9.6272 c 0.624,-0.362 1.004,-1.0316 0.996,-1.7526 -5.552,-3.2309 -18.765,-11.0048 -21.454,-12.5869 -1.693,-1.3175 -3.822,-2.1021 -6.134,-2.1021 h -1.61 c -1.716,0 -3.403,-0.4416 -4.899,-1.2823 L 153.491,50.045 c -1.496,-0.8407 -3.183,-1.2823 -4.9,-1.2823 H 125.91 c -1.745,0 -3.459,0.4567 -4.973,1.3247 L 58.3687,85.9596 c -3.1088,1.7824 -5.0262,5.0919 -5.0262,8.6753 v 4.6286 c 0,3.6345 -1.9716,6.9825 -5.1498,8.7455 z" + fill="url(#paint0_linear_22_86063)" + id="path1-2" + style="fill:url(#paint0_linear_22_86063)" /><path + d="m 11.6496,106.818 17.4291,-9.6662 c 3.1782,-1.7626 5.1498,-5.1108 5.1498,-8.745 v -4.6286 c 0,-3.5834 1.9174,-6.8929 5.0262,-8.6753 L 101.823,39.2307 c 1.514,-0.868 3.228,-1.3247 4.973,-1.3247 h 22.681 c 1.717,0 3.404,0.4416 4.9,1.2823 l 23.631,13.2804 c 1.496,0.8407 3.183,1.2823 4.899,1.2823 h 1.61 c 5.523,0 10,4.4772 10,10 v 39.42 c 0,3.594 -1.929,6.912 -5.052,8.69 l -46.901,26.705 c -3.05,1.736 -6.788,1.747 -9.847,0.027 L 94.5016,128.357 c -3.1227,-1.755 -6.9456,-1.706 -10.022,0.129 l -19.2233,11.467 c -1.5491,0.924 -3.3192,1.412 -5.1228,1.412 H 36.8842 c -1.7403,0 -3.4505,-0.454 -4.9614,-1.318 L 11.5384,128.399 c -3.11579,-1.781 -5.03864,-5.094 -5.03864,-8.683 v -4.153 c 0,-3.634 1.97166,-6.982 5.14984,-8.745 z" + fill="#59727a" + id="path2-7" /><g + mask="url(#mask0_22_86063)" + id="g8-93"><g + filter="url(#filter0_f_22_86063)" + id="g7-60"><path + d="M 12.7338,106.217 32.2925,95.3694 c 1.2046,-0.6681 2.6682,-0.6694 3.8739,-0.0035 l 36.6854,20.2611 c 2.7888,1.54 2.7455,5.564 -0.0757,7.044 l -11.1633,5.856 c -0.5733,0.301 -1.2109,0.458 -1.8582,0.458 H 41.5735 c -0.6922,0 -1.3726,-0.18 -1.9746,-0.522 L 12.6992,113.194 c -2.71589,-1.542 -2.6965,-5.462 0.0346,-6.977 z" + fill="#abb9bd" + id="path4-6" /><path + d="m 117.241,114.507 v 0.976 c 0,5.076 -5.753,8.016 -9.867,5.041 -0.876,-0.634 -0.854,-1.945 0.042,-2.55 l 7.205,-4.86 c 1.116,-0.753 2.62,0.047 2.62,1.393 z" + fill="#abb9bd" + id="path5-2" /><path + d="m 133.006,38.417 27.022,15.1498 c 2.735,1.5336 2.723,5.4749 -0.023,6.9907 L 88.3178,100.142 c -4.8954,2.703 -10.8468,2.655 -15.6971,-0.128 L 40.2775,81.4554 c -2.6796,-1.5375 -2.6789,-5.403 0.0011,-6.9395 l 62.9304,-36.08 c 0.605,-0.3472 1.291,-0.5299 1.989,-0.5299 h 25.852 c 0.685,0 1.359,0.1759 1.956,0.511 z" + fill="#abb9bd" + id="path6-6" /><path + d="m 162.441,81.1442 v 0.9759 c 0,5.0766 5.752,8.016 9.866,5.0413 0.876,-0.6334 0.855,-1.9452 -0.041,-2.5497 l -7.206,-4.8602 c -1.116,-0.7527 -2.619,0.0468 -2.619,1.3927 z" + fill="#abb9bd" + id="path7-1" /></g></g><g + filter="url(#filter1_i_22_86063)" + id="g9"><path + d="M 142.385,66.2008 104.361,87.4237 C 94.9743,92.6629 83.5017,92.4791 74.2875,86.9419 L 60.3822,78.5856 c -1.5173,-0.9118 -2.709,-2.278 -3.4063,-3.905 -0.4498,-1.0494 -0.6816,-2.1792 -0.6816,-3.3209 V 61.2048 c 0,-1.6034 0.3855,-3.1833 1.1241,-4.6064 l 4.8692,-9.3822 -4.6107,4.1649 c -2.088,1.886 -4.8738,2.8051 -7.6742,2.5319 l -5.3126,-0.5183 c -1.6798,-0.1638 -3.3738,0.1001 -4.924,0.7673 L 9.69884,67.1015 c -0.21676,0.0933 -0.45025,0.1414 -0.68623,0.1414 -1.39709,0 -2.22186,-1.5663 -1.43135,-2.7182 L 17.4566,50.1342 c 0.8518,-1.2411 1.9727,-2.274 3.2793,-3.0215 L 41.2377,35.383 v -6.3093 c 0,-2.2611 0.7663,-4.4556 2.1739,-6.2252 l 6.7689,-8.5095 c 0.8507,-1.0695 1.9117,-1.9533 3.1174,-2.5968 L 73.0907,1.17796 C 74.5397,0.404569 76.1569,0 77.7994,0 h 4.3937 c 2.0758,0 4.1,0.645927 5.7921,1.8482 l 0.3525,0.25047 c 1.6921,1.20227 3.7164,1.8482 5.7921,1.8482 h 5.447 c 2.1732,0 4.2872,0.708 6.0222,2.01683 l 1.681,1.26825 c 2.505,1.88965 3.978,4.84545 3.978,7.98315 v 9.3432 l 5.235,-3.1211 c 1.549,-0.9231 3.318,-1.4105 5.121,-1.4105 h 2.669 c 1.715,0 3.402,-0.4414 4.898,-1.2816 l 8.646,-4.8575 c 1.365,-0.767 2.905,-1.1699 4.471,-1.1699 1.596,0 3.163,-0.4183 4.547,-1.2131 L 164.333,1.45838 c 0.625,-0.3592 1.395,-0.35399 2.016,0.01363 l 11.811,6.99955 c 1.323,0.78379 1.303,2.70464 -0.035,3.46144 l -14.857,8.4019 c -2.145,1.2134 -3.767,3.1766 -4.554,5.5126 l -11.725,34.8132 c -0.793,2.3544 -2.434,4.3293 -4.604,5.5401 z" + fill="#bbedfe" + id="path8-8" /></g><path + d="m 123.283,60.8829 c 0,10.3364 -4.455,14.5084 -4.455,14.5084 l 20.653,-11.3275 5.809,-14.8826 5.748,-17.8733 -37.62,19.2387 c 0,0 9.865,0 9.865,10.3363 z" + fill="#59727a" + id="path9-7" /><path + d="m 137.061,65.4834 -33.667,18.7907 c -4.4691,2.4946 -10.2377,4.5335 -13.9041,0.9621 -1.5692,-1.5286 -2.7758,-3.8793 -2.7757,-7.4943 10e-5,-7.6739 3.0145,-12.5069 4.5673,-14.4876 0.5624,-0.7172 1.3104,-1.2466 2.1165,-1.672 l 58.026,-30.6154 -9.76,28.9764 c -0.793,2.3544 -2.434,4.3293 -4.603,5.5401 z" + stroke="#abb9bd" + stroke-width="2" + id="path10-9" /><path + d="M 93.5215,61.5881 106.628,54.315 c 4.454,-2.4715 10.186,-4.4911 13.851,-0.9538 1.583,1.5278 2.804,3.885 2.804,7.5217 0,7.7238 -3.054,12.5696 -4.597,14.5258 -0.545,0.6895 -1.263,1.2043 -2.036,1.6218 l -15.61,8.4347" + stroke="#abb9bd" + stroke-width="2" + id="path11-2" /><path + d="m 104.69,55.2669 c 0,0 9.865,0 9.865,10.3363 0,10.3364 -5.469,15.5186 -5.469,15.5186" + stroke="#abb9bd" + stroke-width="2" + id="path12-0" /><path + d="m 15.3724,49.2231 30.3521,-17.6821 1.1243,0.6245 c 1.2187,0.677 1.9746,1.9615 1.9746,3.3556 0,2.9986 3.2843,4.8393 5.842,3.2741 l 5.3509,-3.2744 4.5569,0.4952 -12.5382,7.8042 -30.9902,16.9569 -10.174,5.6348 c -0.98418,0.5451 -2.09071,0.831 -3.21571,0.831 H 7.59732 c -1.22859,0 -2.43153,0.3515 -3.46687,1.0129 -1.08167,0.6911 -2.398,-0.4525 -1.86493,-1.6201 L 4.38073,62.0025 C 4.75202,61.1892 5.2307,60.4294 5.80396,59.7433 l 6.92864,-8.2917 c 0.744,-0.8903 1.6373,-1.6444 2.6398,-2.2285 z" + fill="#fcd1aa" + id="path13-2" /><path + d="m 62.304,44.8108 h 1.316 c 3.4956,0 6.9301,-0.9162 9.9613,-2.6572 l 12.7673,-7.3333 c 3.0744,-1.7658 5.624,-4.3171 7.3879,-7.3926 l 0.8662,-1.5104" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path14-3" /><path + d="M 46.7203,55.8341 45.2597,55.3513 C 42.5954,54.4706 39.6836,54.7499 37.2352,56.121 L 17.1058,67.3935 c -2.2371,1.2528 -4.8699,1.5984 -7.35459,0.9654 L 5.72485,67.3333 14.3499,64.1954 c 0.4711,-0.1714 0.9286,-0.3779 1.3686,-0.6179 L 38.3037,51.2618 c 0.6077,-0.3313 1.2481,-0.5987 1.9109,-0.7978 l 22.2932,-6.6958 c 0,2.2201 -0.8201,4.3619 -2.3028,6.0143 l -2.9035,3.2356 c -2.6542,2.9578 -6.8079,4.0633 -10.5812,2.816 z" + fill="#bf9278" + id="path15-7" /><path + d="m 57.6018,37.1552 13.1793,-7.8363 c 0,0 -4.9867,-4.2743 -9.9735,-1.0686 -4.6898,3.0149 -3.2058,8.9049 -3.2058,8.9049 z" + fill="#bf9278" + id="path16-5" /><ellipse + cx="62.854099" + cy="33.332001" + rx="3.3487999" + ry="3.3482499" + transform="rotate(-30,62.8541,33.332)" + fill="url(#paint1_radial_22_86063)" + id="ellipse16" + style="fill:url(#paint1_radial_22_86063)" /><path + d="m 37.2437,45.8929 c -2.271,1.5849 -4.8222,1.8522 -5.6982,0.597 -0.8761,-1.2552 0.2547,-3.5577 2.5257,-5.1426" + stroke="#bf9278" + stroke-linecap="round" + id="path17-9" /><path + d="m 111.671,25.318 v 3.4895 m -26.8778,33.4158 2.6896,-3.6187 c 3.5779,-4.8139 8.2178,-8.7378 13.5592,-11.4666 v 0 c 6.524,-3.3329 10.629,-10.0407 10.629,-17.3665 v -0.964 m 0,0 15.615,-8.2392" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path18-2" /><path + d="M 166.882,4.28925 148.299,15.934 M 172.306,7.55933 153.722,19.204" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path19" /><path + d="M 144.453,51.227 123.278,62.6987 M 147.791,41.1207 121.89,55.1093" + stroke="#abb9bd" + stroke-width="2" + stroke-linecap="round" + id="path20" /></g><g + style="fill:none" + id="g6" + transform="translate(1530.6871,711.1048)"><g + filter="url(#filter0_i_18_38620)" + id="g1-2"><path + d="M 46.2397,119.898 96.8369,90.947 132.978,55.9906 c 2.844,-2.7511 6.44,-4.5966 10.334,-5.3031 L 168.8,46.0631 c 3.633,-0.6592 4.509,-5.4692 1.342,-7.367 l -29.2,-17.4956 c -1.961,-1.1744 -4.505,-0.4709 -5.583,1.5438 l -8.772,16.391 c -1.76,3.2868 -4.402,6.0166 -7.631,7.8812 L 34.3818,95.8668 c -9.2963,5.3692 -9.2176,18.8152 0.1409,24.0752 3.6417,2.047 8.0911,2.03 11.717,-0.044 z" + fill="#bbedfe" + id="path1-9" /></g><path + d="m 32.3893,106.05 -7.2219,4.04 c -4.4244,2.475 -7.1651,7.149 -7.1651,12.218 v 9.752 l 3.1288,-4.489 c 1.1393,-1.635 2.6677,-2.96 4.4472,-3.856 l 15.9639,-8.04 -2.7617,-0.88 c -3.8067,-1.213 -6.3912,-4.749 -6.3912,-8.745 z" + fill="#fcd1aa" + id="path2-3" /><path + d="m 18.0023,132.06 3.1288,-4.489 c 1.1393,-1.635 2.6677,-2.96 4.4472,-3.856 l 15.9639,-8.04 -1.3262,-0.352 c -2.4421,-0.648 -5.0392,-0.348 -7.2691,0.84 l -7.9431,4.233 c -4.3093,2.296 -7.0015,6.781 -7.0015,11.664 z" + fill="#bf9278" + id="path3-1" /><path + d="m 82.1051,93.2835 v -2.5228 c 0,-3.2336 -0.8225,-6.4142 -2.3901,-9.2425 l -0.349,-0.6297 16.6838,10.5101 -16.6835,9.5254 c 1.7707,-2.1525 2.7388,-4.8532 2.7388,-7.6405 z" + fill="#abb9bd" + id="path4-9" /><path + d="M 31.5083,48.3674 68.7486,27.2086 c -3.3785,1.9195 -3.4326,6.7692 -0.0978,8.7636 L 100.213,54.848 c 1.494,0.8934 1.736,2.9596 0.489,4.1744 L 90.3565,69.1029 111.434,62.2297 c 1.02,-0.3325 2.13,-0.2416 3.082,0.2522 l 39.194,20.33 c 5.229,2.712 11.459,2.668 16.648,-0.1176 l -42.571,22.8507 c -2.419,1.299 -5.335,1.266 -7.725,-0.087 L 31.5136,55.3261 c -2.7034,-1.5305 -2.7064,-5.424 -0.0053,-6.9587 z" + fill="#ffffff" + id="path5-4" /><path + d="m 114.516,62.4819 39.194,20.33 c 5.229,2.712 11.459,2.668 16.648,-0.1176 L 143.276,97.45 90.3564,69.1029 41.8152,42.3641 68.7485,27.2086 c -3.3785,1.9195 -3.4326,6.7692 -0.0978,8.7636 L 100.213,54.848 c 1.494,0.8934 1.736,2.9596 0.489,4.1744 L 90.3564,69.1029 111.434,62.2297 c 1.02,-0.3325 2.13,-0.2416 3.082,0.2522 z" + fill="#59727a" + id="path6-7" /><path + d="m 41.5845,111.454 13.1793,-7.836 c 0,0 -4.9867,-4.2743 -9.9735,-1.069 -4.6899,3.015 -3.2058,8.905 -3.2058,8.905 z" + fill="#59727a" + fill-opacity="0.5" + id="path7-8" /><ellipse + cx="46.8367" + cy="107.631" + rx="3.3487999" + ry="3.3482499" + transform="rotate(-30,46.8367,107.631)" + fill="url(#paint0_radial_18_38620)" + id="ellipse7" + style="fill:url(#paint0_radial_18_38620)" /><path + d="M 139.585,21.7255 127.469,41.939" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path8-4" /><path + d="M 145.641,25.3924 129.807,43.2825" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path9-5" /><path + d="m 150.808,29.1704 -18.55,15.4022" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path10-0" /><path + d="M 158.975,33.5596 134.811,46.0888" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path11-3" /><path + d="M 166.05,37.869 136.641,48.1161" + stroke="#59727a" + stroke-opacity="0.5" + stroke-width="2" + stroke-linecap="round" + id="path12-6" /><ellipse + cx="30.8204" + cy="113.088" + rx="1.80493" + ry="0.91159099" + transform="rotate(-30.2584,30.8204,113.088)" + fill="#bf9278" + id="ellipse12" /><path + d="m 115.945,223.838 c -3.626,2.074 -8.075,2.091 -11.717,0.044 -0.227,-0.127 -0.448,-0.26 -0.665,-0.397 l -8.2793,4.17 c -1.7795,0.896 -3.3078,2.221 -4.4471,3.856 L 87.7078,236 v -9.751 c 0,-5.07 2.7407,-9.744 7.1651,-12.219 l 2.3197,-1.297 c -0.327,-4.963 1.9665,-10.08 6.8944,-12.926 l 34.026,-19.653 -36.894,-20.888 c -2.7033,-1.53 -2.7063,-5.424 -0.005,-6.958 l 10.438,-5.931 -0.131,-0.073 26.915,-15.145 c -0.415,0.238 -0.779,0.52 -1.093,0.836 -2.228,2.241 -1.905,6.172 1.013,7.917 l 31.562,18.876 c 0.837,0.501 1.281,1.369 1.291,2.249 l 17.453,-10.08 c 3.228,-1.865 5.871,-4.595 7.63,-7.882 l 8.772,-16.391 c 1.079,-2.014 3.623,-2.718 5.583,-1.543 l 29.2,17.495 c 3.168,1.898 2.292,6.708 -1.341,7.367 l -25.489,4.625 c -3.893,0.706 -7.49,2.552 -10.334,5.303 l -10.813,10.458 31.546,16.363 c 5.226,2.711 11.453,2.668 16.642,-0.114 l -27.076,14.752 -0.204,-0.109 -15.285,8.204 c -2.42,1.299 -5.336,1.266 -7.725,-0.087 l -24.421,-13.826 z" + fill="url(#paint1_linear_18_38620)" + id="path13-1" + style="fill:url(#paint1_linear_18_38620)" /></g><g + style="fill:none" + id="g13" + transform="translate(1552.3402,321.01251)"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="M 95.2887,121.718 57.2065,98.6769 157.207,40.9676 196.126,65.9725 c 12.64,8.1204 12.148,26.7564 -0.901,34.1995 l -32.521,18.548 35.557,22.371 -41.744,-18.842 -0.442,0.252 c -18.905,10.783 -42.166,10.483 -60.7863,-0.783 z" + fill="url(#paint0_linear_18_19157)" + id="path1-6" + style="fill:url(#paint0_linear_18_19157)" /><path + d="m 34.9345,95.1611 c 0.7503,-0.4298 1.6719,-0.4308 2.4231,-0.0026 l 1.1739,0.6692 c 1.0987,0.6264 1.1152,2.2046 0.0298,2.8538 -1.0827,0.6476 -1.0697,2.2205 0.0235,2.8505 l 26.0738,15.018 c 1.1886,0.684 2.6451,0.712 3.859,0.073 l 1.7187,-0.904 c 0.9845,-0.518 2.1673,-0.488 3.1242,0.08 2.1266,1.26 2.0833,4.353 -0.0777,5.554 l -3.7647,2.091 c -1.2231,0.68 -2.7124,0.671 -3.9273,-0.023 L 31.6176,104.007 c -2.6855,-1.534 -2.6877,-5.4057 -0.0039,-6.9433 z" + fill="url(#paint1_linear_18_19157)" + id="path2-1" + style="fill:url(#paint1_linear_18_19157)" /><path + d="m 18.2561,104.27 c 0.7502,-0.43 1.6719,-0.431 2.423,-0.003 l 1.1739,0.67 c 1.0988,0.626 1.1153,2.204 0.0298,2.853 -1.0826,0.648 -1.0697,2.221 0.0235,2.851 l 26.0738,15.018 c 1.1886,0.684 2.6452,0.712 3.859,0.073 l 1.7187,-0.904 c 0.9845,-0.518 2.1673,-0.488 3.1243,0.08 2.1265,1.26 2.0832,4.353 -0.0778,5.553 l -3.7646,2.092 c -1.2231,0.68 -2.7125,0.671 -3.9273,-0.023 L 14.9391,113.116 c -2.6855,-1.534 -2.6877,-5.406 -0.0039,-6.943 z" + fill="url(#paint2_linear_18_19157)" + id="path3-5" + style="fill:url(#paint2_linear_18_19157)" /><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 206.644,43.271 c 0.751,0.4282 1.673,0.4272 2.423,-0.0026 l 3.321,-1.9026 c 2.683,-1.5376 2.681,-5.4091 -0.004,-6.9437 L 178.41,15.0088 c -1.214,-0.6942 -2.704,-0.7031 -3.927,-0.0235 l -3.764,2.0917 c -2.161,1.2007 -2.205,4.2932 -0.078,5.5539 0.957,0.5674 2.14,0.5974 3.124,0.0794 l 1.719,-0.9043 c 1.214,-0.6387 2.67,-0.6109 3.859,0.0738 l 26.074,15.0181 c 1.093,0.6296 1.106,2.2025 0.023,2.8501 -1.085,0.6492 -1.069,2.2274 0.03,2.8538 z m -16.679,9.1089 c 0.751,0.4283 1.673,0.4273 2.423,-0.0025 l 3.321,-1.9027 c 2.684,-1.5376 2.682,-5.4091 -0.004,-6.9437 L 161.732,24.1178 c -1.215,-0.6943 -2.704,-0.7032 -3.927,-0.0236 l -3.765,2.0917 c -2.161,1.2007 -2.204,4.2933 -0.078,5.554 0.957,0.5673 2.14,0.5974 3.124,0.0794 l 1.719,-0.9043 c 1.214,-0.6387 2.671,-0.6109 3.859,0.0737 l 26.074,15.0181 c 1.093,0.6297 1.106,2.2026 0.023,2.8501 -1.085,0.6493 -1.068,2.2274 0.03,2.8538 z" + fill="url(#paint3_linear_18_19157)" + id="path4-54" + style="fill:url(#paint3_linear_18_19157)" /><g + filter="url(#filter0_i_18_19157)" + id="g5-7"><path + d="m 55.3187,97.6006 4.6846,2.6754 c 18.6388,10.645 41.5447,10.523 60.0677,-0.3212 L 171.31,69.9596 C 177.44,66.3715 181.642,59.606 179.24,52.9221 167.96,21.5314 111.341,7.08145 93.2065,16.9676 c -6,3.2709 -23,13.212 -25.3046,14.7135 -11.6871,7.6142 -16.6751,15.7564 -20.6953,29.1111 -2.0313,6.7474 -1.7844,16.0453 -1.1757,22.9114 0.5229,5.8977 4.1463,10.9606 9.2878,13.897 z" + fill="#59727a" + id="path5-6" /></g><path + d="M 96.2064,88.9676 123.206,73.9979 c 0,0 -9.809,-7.8424 -19.348,-1.905 -12.6516,7.8747 -7.6516,16.8747 -7.6516,16.8747 z" + fill="#59727a" + id="path6-56" /><ellipse + cx="101.953" + cy="86.713501" + rx="6.4031301" + ry="6.40206" + transform="rotate(-30,101.953,86.7135)" + fill="url(#paint4_radial_18_19157)" + id="ellipse6" + style="fill:url(#paint4_radial_18_19157)" /><path + d="m 69.0751,47.0294 c 2.5,-5 6.1818,-3.0288 6.1818,-3.0288 0,0 7.3882,4.3184 16.8743,12.7208 9.0288,7.9975 12.8138,14.1918 12.8138,14.1918 0,0 -3.594,-2.8309 -14.1916,-8.956 -10.6876,-6.177 -20.7262,-9.1339 -20.7262,-9.1339 0,0 -2.9521,-1.7939 -0.9521,-5.7939 z" + fill="url(#paint5_linear_18_19157)" + id="path7-9" + style="fill:url(#paint5_linear_18_19157)" /><path + d="M 3.20654,5.96759 75.2065,43.9676 c 0,0 2,2 0,6 -2.5,5 -8,2 -8,2 z" + fill="url(#paint6_angular_18_19157)" + id="path8-3" + style="fill:url(#paint6_angular_18_19157)" /><path + d="m 95.2319,106.904 c 3.2432,-0.771 10.1781,-3.237 11.9751,-6.9364" + stroke="#59727a" + stroke-width="2" + stroke-linecap="round" + id="path9-74" /></g><g + style="fill:none" + id="g22" + transform="translate(819.49741,904.17038)"><g + clip-path="url(#clip0_24_105152)" + id="g21"><path + fill-rule="evenodd" + clip-rule="evenodd" + d="m 20.2866,115.183 c 0,0 27.5818,44.365 67.0392,39.216 17.3162,-2.26 35.4202,-2.015 51.3822,-1.799 5.998,0.081 11.693,0.158 16.931,0.097 17.436,5.793 43.307,12.417 58.605,7.105 5.974,-2.074 -3.26,-6.721 -12.7,-11.472 -3.348,-1.685 -6.722,-3.384 -9.453,-4.985 -1.815,-1.064 -3.462,-2.103 -4.957,-3.11 -0.014,-0.358 -0.044,-0.726 -0.091,-1.105 -2.486,-19.961 1.921,-36.96 5.797,-51.9108 4.929,-19.0107 8.999,-34.7116 -3.048,-48.9867 z" + fill="url(#paint0_linear_24_105152)" + id="path1-20" + style="fill:url(#paint0_linear_24_105152)" /><g + filter="url(#filter0_i_24_105152)" + id="g2-6"><path + d="m 67.9096,127.762 c 17.5532,0 42.2374,-8.772 56.8584,-11.697 C 235.886,71.5532 -47.8577,26.5386 8.45204,102.744 23.2765,122.807 43.5417,127.762 67.9096,127.762 Z" + fill="#bbedfe" + id="path2-8" /></g><g + filter="url(#filter1_i_24_105152)" + id="g3-9"><path + d="M 65.3121,56.5095 C 22.6788,61.1089 -12.9353,70.4976 6.11947,92.2553 13.8383,101.069 31.5856,111.217 58.1618,114.116 c 17.8698,1.95 51.9852,4.874 66.6062,1.95 68.157,-28.6374 75.872,-66.9885 65.774,-77.6484 -10.098,-10.6598 -32.798,8.12 -125.2299,18.0919 z" + fill="#346a82" + id="path3-2" /></g><path + d="m 143.341,92.3044 c -7.922,-8.9475 -25.168,-21.6602 -36.81,-29.8195 -3.951,-2.769 -2.419,-9.0899 2.372,-9.6639 l 19.704,-2.3608 c 3.842,-0.4605 8.059,3.6661 9.552,7.2367 0.973,2.3255 2.578,5.1087 5.182,8.3055 5.069,6.2237 4.885,31.8199 0,26.302 z" + fill="#346a82" + id="path4-66" /><g + filter="url(#filter2_i_24_105152)" + id="g5-4"><path + d="M 147.544,3.03361 C 129.88,10.5776 112.506,40.549 104.56,55.8566 c -1.95,3.7553 1.328,7.9014 5.472,7.0473 l 23.159,-4.7729 c 3.438,-0.7086 5.767,-4.8607 5.672,-8.3697 -0.114,-4.2354 0.536,-10.6086 3.359,-19.6489 3.604,-11.5418 13.199,-30.443147 5.322,-27.07879 z" + fill="#346a82" + id="path5-9" /></g><path + d="m 181.218,122.39 c -32.214,13.745 -57.149,-2.622 -67.628,-11.695 -2.747,-2.377 -1.709,-6.548 1.719,-7.75 l 25.149,-8.8185 c 4.068,-1.4267 8.512,2.728 9.222,6.9805 0.817,4.892 3.734,10.125 11.86,12.376 10.773,1.866 27.556,5.545 19.678,8.907 z" + fill="#346a82" + id="path6-50" /><path + d="m 66.4551,106.598 c -0.0787,1.08 -0.7791,2.094 -2.0108,2.83 -1.2292,0.735 -2.926,1.147 -4.7952,1.01 -1.8691,-0.136 -3.4883,-0.79 -4.5979,-1.695 -1.1119,-0.907 -1.6578,-2.011 -1.579,-3.091 0.0787,-1.08 0.7791,-2.094 2.0108,-2.83 1.2292,-0.735 2.926,-1.147 4.7952,-1.01 1.8691,0.136 3.4883,0.789 4.5979,1.695 1.1119,0.907 1.6577,2.011 1.579,3.091 z" + fill="#fcd1aa" + stroke="#313334" + stroke-width="1.60474" + id="path7-4" /><path + d="m 64.2497,106.437 c -0.0349,0.479 -0.395,1.016 -1.2188,1.442 -0.8099,0.419 -1.955,0.657 -3.2363,0.564 -1.2814,-0.093 -2.3798,-0.495 -3.1204,-1.027 -0.7533,-0.541 -1.0316,-1.125 -0.9967,-1.604 0.0348,-0.478 0.3949,-1.016 1.2188,-1.442 0.8099,-0.418 1.9549,-0.657 3.2363,-0.563 1.2814,0.093 2.3798,0.495 3.1203,1.027 0.7534,0.541 1.0316,1.125 0.9968,1.603 z" + fill="#313334" + stroke="#313334" + stroke-width="1.60474" + id="path8-87" /><ellipse + cx="58.443401" + cy="104.84" + rx="2.2207699" + ry="1.3615" + transform="rotate(4.17038,58.4434,104.84)" + fill="#bbedfe" + id="ellipse8" /><path + d="M 36.697,119.972 C 23.1473,114.383 16.2178,109.566 10.064,104.88 c 2.7664,3.895 7.4555,9.686 17.3984,15.092 10.4202,5.667 28.6061,8.394 36.2716,7.634 -0.8469,0 -14.1553,-2.32 -27.037,-7.634 z" + fill="#efa4a4" + id="path9-1" /><g + filter="url(#filter3_i_24_105152)" + id="g10-7"><path + d="m 39.9436,121.18 5.0763,1.282 -0.4701,1.861 c -0.2178,0.863 -1.5308,1.275 -2.9325,0.921 -1.4018,-0.354 -2.3616,-1.34 -2.1438,-2.203 z" + fill="#bbedfe" + id="path10-2" /></g><g + filter="url(#filter4_i_24_105152)" + id="g11-7"><path + d="m 35.6157,118.697 4.3133,1.873 -0.9506,2.189 c -0.4404,1.014 -1.7629,1.417 -2.954,0.9 -1.1911,-0.517 -1.7996,-1.759 -1.3592,-2.773 z" + fill="#bbedfe" + id="path11-22" /></g><g + filter="url(#filter5_i_24_105152)" + id="g12-6"><path + d="m 30.2214,116.796 4.675,0.507 -0.293,2.702 c -0.1358,1.252 -1.2924,2.153 -2.5834,2.013 -1.2909,-0.14 -2.2274,-1.269 -2.0916,-2.52 z" + fill="#bbedfe" + id="path12-1" /></g><g + filter="url(#filter6_i_24_105152)" + id="g13-0"><path + d="m 22.1517,112.903 4.0253,0.979 -0.5135,2.11 c -0.2378,0.978 -1.3318,1.551 -2.4433,1.281 -1.1116,-0.271 -1.8198,-1.283 -1.5819,-2.26 z" + fill="#bbedfe" + id="path13-6" /></g><g + filter="url(#filter7_i_24_105152)" + id="g14-1"><path + d="m 20.6288,110.466 1.1803,2.437 -1.9542,0.947 c -0.9055,0.438 -1.9037,0.248 -2.2297,-0.425 -0.3259,-0.672 0.1439,-1.574 1.0493,-2.012 z" + fill="#bbedfe" + id="path14-5" /></g><g + filter="url(#filter8_i_24_105152)" + id="g15"><path + d="m 26.71,113.384 3.7485,2.839 -1.641,2.167 c -0.7603,1.003 -2.2158,1.182 -3.2509,0.397 -1.0351,-0.784 -1.2579,-2.233 -0.4976,-3.237 z" + fill="#bbedfe" + id="path15-9" /></g><g + filter="url(#filter9_i_24_105152)" + id="g16"><path + d="m 10.4904,104.937 2.0195,1.334 -1.0583,1.602 c -0.4904,0.742 -1.34,1.046 -1.89764,0.677 -0.55769,-0.368 -0.61228,-1.269 -0.12193,-2.011 z" + fill="#bbedfe" + id="path16-4" /></g><g + filter="url(#filter10_i_24_105152)" + id="g17"><path + d="m 12.7424,106.972 2.4099,0.611 -0.472,1.862 c -0.2187,0.862 -0.9355,1.424 -1.6009,1.255 -0.6655,-0.168 -1.0277,-1.004 -0.809,-1.867 z" + fill="#bbedfe" + id="path17-90" /></g><g + filter="url(#filter11_i_24_105152)" + id="g18"><path + d="m 16.7432,108.242 1.9233,2.518 -1.5258,1.165 c -0.7069,0.54 -1.7106,0.414 -2.2417,-0.281 -0.5311,-0.695 -0.3886,-1.697 0.3184,-2.237 z" + fill="#bbedfe" + id="path18-9" /></g><g + filter="url(#filter12_i_24_105152)" + id="g19"><path + d="m 45.0199,122.288 4.7362,0.73 -0.2408,1.561 c -0.1115,0.723 -1.2622,1.146 -2.5701,0.944 -1.3078,-0.201 -2.2776,-0.951 -2.1661,-1.674 z" + fill="#bbedfe" + id="path19-1" /></g><g + filter="url(#filter13_i_24_105152)" + id="g20"><path + d="m 49.9463,124.177 4.6693,0.241 -0.1035,2.002 c -0.0479,0.927 -1.1321,1.625 -2.4215,1.558 -1.2894,-0.066 -2.2958,-0.872 -2.2478,-1.8 z" + fill="#bbedfe" + id="path20-7" /></g></g></g></g></svg> diff --git a/configs/conferences/mrmcd/img/insel.svg b/configs/conferences/mrmcd/img/insel.svg new file mode 100644 index 00000000..3daa2bb8 --- /dev/null +++ b/configs/conferences/mrmcd/img/insel.svg @@ -0,0 +1,32 @@ +<svg width="1678" height="1801" viewBox="0 0 1678 1801" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M290.659 332.335L159.339 257.346C132.306 241.909 132.491 202.868 159.67 187.688L179.629 176.541L170.829 171.326C155.717 162.371 156.21 140.334 171.708 132.063L172.222 131.789C178.619 128.376 186.308 128.424 192.661 131.917C207.56 140.109 207.467 161.548 192.498 169.61L179.629 176.541L246.771 215.347C259.439 222.669 275.093 222.49 287.59 214.88L291.68 212.39C303.996 204.891 319.394 204.6 331.983 211.63L416.743 258.954C428.298 265.405 442.295 265.724 454.132 259.806L467.162 253.291C474.094 249.825 478.473 242.739 478.473 234.989C478.473 219.396 495.216 209.533 508.854 217.092L543.503 236.295C556.096 243.274 571.511 242.736 583.586 234.897C595.607 227.092 610.944 226.521 623.512 233.412L629.437 236.66C641.844 243.462 656.921 243.203 669.088 235.979L1068.1 -0.934355C1074.53 -4.75445 1081.91 -6.69333 1089.39 -6.53071L1377.27 -0.272456C1396.13 0.13756 1412.14 13.67 1415.69 32.1991L1440.3 160.799C1445.46 187.729 1475.56 201.607 1499.39 188.038L1640.09 107.9C1663.64 94.4859 1693.43 107.885 1699.02 134.407L2018.09 1647.96C2022.23 1667.61 2011.16 1687.29 1992.2 1693.95L1705.13 1794.77C1694.08 1798.65 1681.88 1797.49 1671.76 1791.6L1552.48 1722.2C1542.87 1716.61 1542.32 1702.94 1551.44 1696.6C1560.8 1690.09 1559.92 1675.98 1549.83 1670.68L1420.75 1602.88C1407.6 1595.97 1399.35 1582.33 1399.35 1567.47V1525.51C1399.35 1510.46 1407.81 1496.68 1421.23 1489.85L1433.79 1483.47C1444.51 1478.02 1457.17 1477.92 1467.97 1483.19C1479.56 1488.85 1493.22 1488.3 1504.32 1481.73L1512.54 1476.86C1539 1461.2 1538.64 1422.8 1511.89 1407.64L1161.96 1209.34C1156.68 1206.36 1150.25 1206.25 1144.88 1209.06C1132.58 1215.51 1132.03 1232.92 1143.9 1240.13L1303.71 1337.1C1314.38 1343.58 1320.89 1355.15 1320.89 1367.63C1320.89 1387.34 1304.91 1403.33 1285.19 1403.33H1247.72C1240.82 1403.33 1234.04 1401.54 1228.03 1398.14L740.44 1122.34C727.463 1114.99 711.48 1115.48 698.973 1123.6L669.754 1142.56C657.275 1150.65 641.333 1151.16 628.368 1143.86L149.91 874.682C141.554 869.981 136.383 861.139 136.383 851.551C136.383 841.78 141.751 832.8 150.358 828.174L208.506 796.917C220.203 790.63 234.258 790.557 246.019 796.724L415.235 885.445C427.635 891.947 442.533 891.491 454.513 884.244L484.72 865.971C503.566 854.57 509.649 830.079 498.328 811.185L455.699 740.048C444.373 721.147 419.893 714.966 400.951 726.224L381.5 737.785C369.336 745.015 354.257 745.28 341.847 738.483L76.6496 593.224C49.4227 578.311 48.8224 539.416 75.576 523.669L88.4425 516.097C94.5916 512.478 101.597 510.569 108.732 510.569H139.629C161.72 510.569 179.629 492.66 179.629 470.569V456.411C179.629 434.32 197.538 416.411 219.629 416.411H255.859C263.349 416.411 270.687 414.308 277.04 410.343L292.004 401.002C317.679 384.975 316.942 347.343 290.659 332.335Z" fill="url(#paint0_linear_31_226976)"/> +<path d="M1091.75 399.033L1091.75 470.428C1091.75 474.099 1089.74 477.476 1086.51 479.223L1028.87 510.409C1025.87 512.033 1022.25 512.015 1019.27 510.362L901.187 444.95C892.708 440.253 895.202 427.448 904.825 426.276L1041.86 409.594C1043.2 409.431 1044.49 409 1045.65 408.327L1076.75 390.373C1083.42 386.524 1091.75 391.335 1091.75 399.033Z" fill="#6AB9DA"/> +<path d="M1297.87 -30.6176L955.677 164.395C945.882 169.977 935.776 157.607 943.2 149.122L986.953 99.1189C988.548 97.296 989.427 94.9561 989.427 92.5339V50.8833C989.427 47.3507 991.291 44.0803 994.33 42.2798L1152.3 -51.3031C1153.91 -52.2605 1155.76 -52.7434 1157.64 -52.6964L1293.17 -49.3027C1303.29 -49.0492 1306.67 -35.6326 1297.87 -30.6176Z" fill="#6AB9DA"/> +<path d="M1507.99 286.321L1165.8 481.334C1156 486.916 1145.9 474.545 1153.32 466.06L1197.07 416.057C1198.67 414.234 1199.55 411.894 1199.55 409.472V367.822C1199.55 364.289 1201.41 361.019 1204.45 359.218L1362.42 265.635C1364.03 264.678 1365.89 264.195 1367.76 264.242L1503.29 267.636C1513.42 267.889 1516.79 281.306 1507.99 286.321Z" fill="#6AB9DA"/> +<path d="M953.414 169.166L566.515 391.738C564.998 392.611 563.279 393.07 561.529 393.07H486.798C481.275 393.07 476.798 388.593 476.798 383.07V350.126C476.798 346.542 478.716 343.232 481.825 341.45L812.664 151.822C814.178 150.955 815.893 150.498 817.637 150.498H948.428C958.667 150.498 962.289 164.061 953.414 169.166Z" fill="#6AB9DA"/> +<path d="M1222.65 642.942L1609.55 420.37C1611.07 419.497 1612.79 419.038 1614.54 419.038L1689.27 419.038C1694.79 419.038 1699.27 423.515 1699.27 429.038L1699.27 461.982C1699.27 465.566 1697.35 468.876 1694.24 470.658L1363.4 660.286C1361.89 661.153 1360.17 661.61 1358.43 661.61L1227.64 661.61C1217.4 661.61 1213.78 648.047 1222.65 642.942Z" fill="#6AB9DA"/> +<path d="M1163.54 142.594L776.636 365.166C775.119 366.039 773.4 366.498 771.65 366.498H696.919C691.396 366.498 686.919 362.021 686.919 356.498V323.554C686.919 319.97 688.837 316.66 691.946 314.878L1022.79 125.25C1024.3 124.383 1026.01 123.926 1027.76 123.926H1158.55C1168.79 123.926 1172.41 137.489 1163.54 142.594Z" fill="#6AB9DA"/> +<path d="M1358.61 463.103L904.015 723.783C900.988 725.518 897.275 725.551 894.218 723.868L784.554 663.491C777.423 659.565 777.721 649.218 785.066 645.708L809.463 634.052C811.042 633.298 812.791 632.971 814.535 633.104L879.048 638.027C881.045 638.179 883.043 637.728 884.781 636.732L1217.98 445.752C1219.49 444.884 1221.21 444.428 1222.95 444.428H1353.64C1363.89 444.428 1367.5 458.006 1358.61 463.103Z" fill="#6AB9DA"/> +<path d="M1789.38 121.186L1448.77 315.297C1438.98 320.879 1428.87 308.508 1436.29 300.024L1480.05 250.021C1481.64 248.198 1482.52 245.858 1482.52 243.436V204.302C1482.52 200.689 1484.47 197.358 1487.62 195.586L1650.83 103.783C1652.32 102.941 1654.01 102.498 1655.73 102.498L1784.43 102.498C1794.69 102.498 1798.3 116.106 1789.38 121.186Z" fill="#6AB9DA"/> +<path d="M1999.5 438.125L1658.89 632.235C1649.1 637.817 1638.99 625.447 1646.42 616.962L1690.17 566.959C1691.76 565.136 1692.64 562.796 1692.64 560.374V521.24C1692.64 517.628 1694.59 514.296 1697.74 512.525L1860.95 420.721C1862.44 419.879 1864.13 419.437 1865.85 419.437H1994.55C2004.81 419.437 2008.42 433.044 1999.5 438.125Z" fill="#6AB9DA"/> +<path d="M422.327 356.691L154.381 207.378C147.483 203.534 147.552 193.588 154.502 189.84L174.5 179.057C177.481 177.45 181.072 177.46 184.043 179.085L260.582 220.93C263.643 222.604 267.357 222.561 270.379 220.816L302.919 202.028C305.907 200.304 309.572 200.24 312.617 201.86L431.892 265.323C435.156 267.06 437.195 270.455 437.195 274.151L437.195 347.955C437.195 355.586 428.993 360.405 422.327 356.691Z" fill="#6AB9DA"/> +<path d="M156.079 824.914L218.397 787.913C221.385 786.138 225.08 786.043 228.156 787.66L426.819 892.119L570.589 954.098C580.565 958.398 577.493 973.281 566.631 973.281L511.313 973.281C509.566 973.281 507.849 973.739 506.333 974.609L448.707 1007.7C445.596 1009.49 441.767 1009.47 438.672 1007.66L156.129 842.141C149.558 838.291 149.53 828.802 156.079 824.914Z" fill="#6AB9DA"/> +<path d="M357.923 426.811L421.331 536.637C426.519 545.623 416.279 555.588 407.438 550.158L309.161 489.797C305.998 487.854 302.02 487.823 298.827 489.716L191.686 553.239C185.02 557.191 176.586 552.386 176.586 544.637L176.586 426.712C176.586 421.189 181.063 416.712 186.586 416.712L253.401 416.712C255.156 416.712 256.88 416.25 258.401 415.372L293.407 395.161C296.438 393.412 300.163 393.374 303.229 395.061L354.085 423.05C355.684 423.93 357.011 425.231 357.923 426.811Z" fill="#6AB9DA"/> +<path d="M708.055 939.098L771.73 1049.39C776.905 1058.35 766.722 1068.31 757.877 1062.93L613.995 975.5C612.43 974.549 610.634 974.046 608.802 974.046L530.867 974.046C528.943 974.046 527.061 973.492 525.445 972.449L425.144 907.739C418.846 903.675 419.092 894.382 425.597 890.658L522.895 834.947C526.003 833.167 529.827 833.186 532.918 834.996L704.449 935.469C705.945 936.346 707.188 937.596 708.055 939.098Z" fill="#6AB9DA"/> +<path d="M846.219 810.634L737.129 810.634C735.493 810.634 733.883 810.233 732.438 809.466L615.424 747.322C613.979 746.555 612.369 746.154 610.734 746.154L532.488 746.154C530.565 746.154 528.683 745.6 527.067 744.557L426.766 679.847C420.467 675.783 420.713 666.49 427.218 662.766L524.335 607.159C527.54 605.324 531.496 605.405 534.624 607.37L601.311 649.268C604.527 651.289 608.611 651.313 611.851 649.329L678.396 608.599C682.566 606.048 687.969 606.884 691.171 610.577L767.838 698.981C768.623 699.887 769.564 700.643 770.617 701.216L848.388 743.486C851.439 745.144 853.411 748.266 853.598 751.734L856.205 800.096C856.513 805.822 851.954 810.634 846.219 810.634Z" fill="#6AB9DA"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M1047.03 316.695H1186.41C1188.13 316.695 1189.82 316.253 1191.31 315.411L1354.52 223.607C1357.67 221.836 1359.62 218.504 1359.62 214.891V174.192C1359.62 172.748 1359.93 171.322 1360.53 170.01L1405.13 73.1593C1409.23 64.2624 1399.42 55.3903 1390.97 60.3587L1359.62 78.8152L1233.93 147.471C1232.46 148.274 1230.82 148.695 1229.14 148.695H1147.52C1145.8 148.695 1144.12 149.138 1142.62 149.98L979.411 241.784C976.262 243.555 974.314 246.887 974.314 250.499V287.472C974.314 291.122 976.302 294.482 979.501 296.238L1016.96 316.801C1020.03 318.486 1023.75 318.443 1026.78 316.687L1027.64 316.191C1032.94 313.118 1040.56 316.501 1046.69 316.69C1046.8 316.694 1046.91 316.695 1047.03 316.695Z" fill="#6AB9DA"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M857.539 356.948L776.66 356.948C774.942 356.948 773.254 357.39 771.757 358.232L667.579 416.832C664.431 418.603 662.482 421.935 662.482 425.548L662.482 449.382C662.482 450.826 662.169 452.253 661.565 453.564L637.337 506.181C633.24 515.078 643.052 523.95 651.493 518.982L662.482 512.514L743.899 468.038C745.37 467.235 747.018 466.814 748.693 466.814L800.279 466.814C801.997 466.814 803.685 466.372 805.182 465.53L909.36 406.93C912.509 405.159 914.458 401.827 914.458 398.214L914.458 378.107C914.458 374.457 912.469 371.097 909.27 369.341L888.282 357.819C885.213 356.133 881.485 356.177 878.455 357.933C872.803 361.209 864.289 357.079 857.758 356.95C857.686 356.949 857.613 356.948 857.539 356.948Z" fill="#6AB9DA"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M1155 1029.77L953.997 900.482C947.719 896.444 947.917 887.202 954.362 883.437L1103.18 796.506C1106.25 794.713 1108.13 791.426 1108.13 787.871L1108.13 721.431C1108.13 713.8 1099.93 708.981 1093.26 712.695L894.263 823.593C893.046 824.271 891.701 824.688 890.315 824.816L765.286 836.361C755.532 837.261 752.755 850.194 761.278 855.02L800.904 877.457L939.882 962.137C941.313 963.008 942.502 964.226 943.34 965.676L989.964 1046.43C990.822 1047.92 992.05 1049.16 993.527 1050.04L1177.2 1158.84C1180.31 1160.68 1184.17 1160.7 1187.29 1158.9L1224.97 1137.15C1228.13 1135.32 1230.05 1131.92 1229.97 1128.27L1228.89 1078.28C1228.82 1074.78 1226.91 1071.57 1223.88 1069.83L1158.13 1032.02C1157.34 1031.57 1156.64 1030.99 1155.92 1030.42C1155.63 1030.2 1155.33 1029.98 1155 1029.77Z" fill="#6AB9DA"/> +<path d="M98.7153 510.645C69.2036 512.932 60.4848 552.046 86.2315 566.65L172.804 615.756C175.888 617.505 179.668 617.491 182.738 615.718L266.932 567.109C273.58 563.271 273.603 553.684 266.975 549.813L190.755 505.299C188.997 504.273 186.968 503.807 184.939 503.964L98.7153 510.645Z" fill="#6AB9DA"/> +<path d="M587.979 1059.19C581.331 1063.03 581.307 1072.62 587.935 1076.49L661.841 1119.65C664.941 1121.46 668.775 1121.47 671.884 1119.68L756.005 1071.11C762.653 1067.27 762.676 1057.68 756.048 1053.81L682.143 1010.65C679.042 1008.84 675.209 1008.83 672.1 1010.63L587.979 1059.19Z" fill="#6AB9DA"/> +<path d="M565.782 804.194C559.134 808.032 559.111 817.618 565.739 821.489L639.644 864.651C642.745 866.462 646.578 866.471 649.687 864.676L733.808 816.109C740.456 812.271 740.48 802.684 733.852 798.813L659.946 755.651C656.846 753.841 653.012 753.831 649.903 755.626L565.782 804.194Z" fill="#6AB9DA"/> +<path d="M172.301 135.789C165.653 139.627 165.629 149.213 172.258 153.084L175.68 155.083C178.781 156.894 182.614 156.903 185.723 155.108L191.641 151.691C198.288 147.853 198.312 138.267 191.684 134.396L188.262 132.397C185.161 130.586 181.328 130.577 178.218 132.372L172.301 135.789Z" fill="#6AB9DA"/> +<path d="M186.615 607.267C180.064 611.16 180.1 620.656 186.68 624.499L349.063 719.333C352.202 721.167 356.089 721.152 359.214 719.295L526.624 619.824C533.175 615.931 533.139 606.435 526.559 602.592L364.176 507.757C361.037 505.924 357.15 505.939 354.025 507.796L186.615 607.267Z" fill="#6AB9DA"/> +<path d="M671.613 1028.65C664.313 1032.08 663.865 1042.29 670.836 1046.35L1208.48 1359C1211.32 1360.65 1214.79 1360.8 1217.76 1359.41L1259.81 1339.66C1267.11 1336.23 1267.56 1326.02 1260.59 1321.96L722.942 1009.31C720.104 1007.66 716.637 1007.51 713.665 1008.9L671.613 1028.65Z" fill="#6AB9DA"/> +<defs> +<linearGradient id="paint0_linear_31_226976" x1="518.621" y1="323.809" x2="1315.21" y2="1127.81" gradientUnits="userSpaceOnUse"> +<stop stop-color="#5384AB"/> +<stop offset="1" stop-color="#6AB9DA"/> +</linearGradient> +</defs> +</svg> diff --git a/configs/conferences/mrmcd/main.less b/configs/conferences/mrmcd/main.less index 7c908f8d..746f627f 100644 --- a/configs/conferences/mrmcd/main.less +++ b/configs/conferences/mrmcd/main.less @@ -1,4 +1,5 @@ @import "../../../assets/css/_structure.less"; +@import "fonts.less"; @gelb: #f9cd00; @white: #ffffff; @@ -9,32 +10,368 @@ @grey-light: #c1c1c1; @dark: #242424; +@meer: #95D1EA; +@meerSchattenDunkel: #5384AB; +@meerSchattenHell: #6AB9DA; +@shadowDark: #405785; +@shadowDarkContrastLight: #373E72; +@shadowDarkContrast: #2D365D; +@grau: #59727; -@brand-primary: @light-blue; -@well-bg: @dark; +@brand-primary: @meerSchattenDunkel; +@well-bg: @meerSchattenHell; @navbar-default-bg: @grey-lighter; @btn-default-bg: @grey-light; -@panel-default-heading-bg: @dark; +@panel-default-heading-bg: @meerSchattenHell; @panel-default-text: @light-blue; -@panel-bg: @dark; +@panel-bg: @meerSchattenHell; +@font-family-heading: Rubik Mono One, sans-serif; +@font-family-body: Rubik, sans-serif; body { - background-color: @dark; - color: @grey-light; + font-size: 16px; } -.overview .panel-title { - font-weight: bold; +body::before { + position: fixed; + content: ""; + top: 0; + left: 0; + bottom: 0; + right: 0; + z-index: 1; + background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuZGV2L3N2Z2pzIiB2aWV3Qm94PSIwIDAgNzAwIDcwMCIgd2lkdGg9IjcwMCIgaGVpZ2h0PSI3MDAiIG9wYWNpdHk9IjAuNzkiPjxkZWZzPjxmaWx0ZXIgaWQ9Im5ubm9pc2UtZmlsdGVyIiB4PSItMjAlIiB5PSItMjAlIiB3aWR0aD0iMTQwJSIgaGVpZ2h0PSIxNDAlIiBmaWx0ZXJVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHByaW1pdGl2ZVVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJsaW5lYXJSR0IiPgoJPGZlVHVyYnVsZW5jZSB0eXBlPSJ0dXJidWxlbmNlIiBiYXNlRnJlcXVlbmN5PSIwLjIiIG51bU9jdGF2ZXM9IjQiIHNlZWQ9IjE1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIiB4PSIwJSIgeT0iMCUiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHJlc3VsdD0idHVyYnVsZW5jZSI+PC9mZVR1cmJ1bGVuY2U+Cgk8ZmVTcGVjdWxhckxpZ2h0aW5nIHN1cmZhY2VTY2FsZT0iOSIgc3BlY3VsYXJDb25zdGFudD0iMyIgc3BlY3VsYXJFeHBvbmVudD0iMjAiIGxpZ2h0aW5nLWNvbG9yPSIjYzRkYWUyIiB4PSIwJSIgeT0iMCUiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGluPSJ0dXJidWxlbmNlIiByZXN1bHQ9InNwZWN1bGFyTGlnaHRpbmciPgogICAgCQk8ZmVEaXN0YW50TGlnaHQgYXppbXV0aD0iMyIgZWxldmF0aW9uPSI5MSI+PC9mZURpc3RhbnRMaWdodD4KICAJPC9mZVNwZWN1bGFyTGlnaHRpbmc+CiAgCjwvZmlsdGVyPjwvZGVmcz48cmVjdCB3aWR0aD0iNzAwIiBoZWlnaHQ9IjcwMCIgZmlsbD0iIzk1ZDFlYTAwIj48L3JlY3Q+PHJlY3Qgd2lkdGg9IjcwMCIgaGVpZ2h0PSI3MDAiIGZpbGw9IiNjNGRhZTIiIGZpbHRlcj0idXJsKCNubm5vaXNlLWZpbHRlcikiPjwvcmVjdD48L3N2Zz4="); + pointer-events: none; } -.outer-div { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; - @media (max-width: @screen-sm-min) { - display: none; - } +.overview, .room { + background-image: url('/configs/conferences/mrmcd/img/bg.svg'); + background-size:auto; + background-repeat: no-repeat; + background-attachment: fixed; + background-position: center; + &::after { + position: fixed; + content: ""; + top: 0; + left: 0; + bottom: 0; + right: 0; + z-index: -5; + background-image: url('/configs/conferences/mrmcd/img/insel.svg'); + background-size: auto 100%; + background-repeat: no-repeat; + background-position: right -400px top -300px; + background-attachment: fixed; + } } +h1, h2, h3, h4, h5, h6 { + color: @shadowDark; + font-family: @font-family-heading; +} + +body { + font-family: @font-family-body; + background-color: @meer; + color: @grau; +} + +body > div.container { + position: relative; + z-index: 2; +} + +.panel-default > .panel-heading { + font-family: @font-family-heading; + color: @shadowDarkContrastLight; +} + +.panel-title { + font-size: 1.25em; +} + +.panel { + border-radius: 10px; +} + +.banner-content { + margin-top: calc(4 * 16px); + margin-bottom: calc(2 * 16px); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + z-index: -10; + background: radial-gradient( + ellipse at center, + @meer 0%, + transparent 80% + ); + h1 { + font-size: 3em; + margin: 0; + line-height: 1em; + margin-bottom: .3em; + text-align: center; + } + .banner-content-name { + font-weight: 600; + font-size: 1.875em; + line-height: 1em; + margin-bottom: .3em; + color: rgb(89, 114, 122); + margin-bottom: 24px; + } + .banner-content-date { + margin-top: 10px; + font-weight: bold; + font-size: 1.5em; + line-height: 1em; + color: rgb(89, 114, 122); + } +} + +.nav-tabs.nav-justified { + li:first-child a { + border-top-left-radius: 8px; + &:hover { + border-top-left-radius: 8px; + } + } + li:last-child a { + border-top-right-radius: 8px; + &:hover { + border-top-right-radius: 8px; + } + } + li.active:first-child a { + border-top-left-radius: 8px; + } + li.active:last-child a { + border-top-right-radius: 8px; + } + + li a { + color: white; + font-size: 1.125em; + font-weight: bold; + background: linear-gradient( + to bottom, + darken(@meerSchattenDunkel, 20%), + darken(@meerSchattenHell, 20%) + ); + border-radius: 0; + border: none; + &:hover { + color: white; + background: linear-gradient( + to bottom, + darken(@meerSchattenDunkel, 10%), + darken(@meerSchattenHell, 10%) + ); + border: none; + } + } + li.active a { + color: white; + border-radius: 0; + background: linear-gradient( + to bottom, + @meerSchattenDunkel, + @meerSchattenHell + ); + border: none; + &:hover { + border: none; + background: linear-gradient( + to bottom, + lighten(@meerSchattenDunkel, 10%), + @meerSchattenHell + ); + } + } +} + +body .schedule .block { + background-color: @shadowDark; + border-radius: 10px; + margin-bottom: 1em; + font-size: 1rem; + padding: 0.05em; + border: 1px solid @meer; + &.pause, &.daychange { + background-color: @shadowDarkContrast; + } + &.optout { + background-color: @shadowDark; + background-image: linear-gradient(45deg, + rgba(255, 0, 0, 0.3) 25%, transparent 25%, transparent 50%, + rgba(255, 0, 0, 0.3) 50%, + rgba(255, 0, 0, 0.3) 75%, transparent 75%, transparent); + h1, h2, h3, h4, h5, h6 { + color: fade(white, 80%); + }; + } + h1, h2, h3, h4, h5, h6 { + color: white; + } + h4, h5 { + font-size: 1.25em; + font-family: @font-family-body; + } + h5 { + margin-top: 0.1em; + } + h3 { + font-size: 1.25em; + } + &.pause .inner, &.daychange .inner { + display: flex; + justify-content: center; + align-items: center; + h3 { + font-family: @font-family-body; + font-weight: bold; + font-size: 1.5em; + text-wrap: none; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + } + } + &.event { + h4 { + text-wrap: none; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + } + h3 { + display: -webkit-box; + text-overflow: ellipsis; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + line-clamp: 2; + } + } +} + +body .schedule .now .overlay { + background-color: fade(@shadowDarkContrast, 50%); + border-right: 2px solid white; +} + +body .schedule .now .label { + // make text vertical + color: white; + width: max-content; + font-weight: bold; + text-align: right; + padding-right: 1em; + font-family: @font-family-body; + transform: translateX(-100%); +} + +.tab-pane { + background-color: @meerSchattenHell; + h1, h2, h3, h4, h5, h6 { + color: @shadowDarkContrastLight; + } +} + +.nav-tabs.nav-justified > li > a { + border: none; +} + +.tab-pane, .tab-pane.active { + border: none; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +body.room .tab-content { + border-left: none; + border-right: none; + border-bottom: none; +} + +.panel-heading { + background-color: transparent; + color: @light-blue; + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border: none; +} + +.panel-body a { + color: @shadowDarkContrastLight; +} + +.panel-default > .panel-heading { + background-color: transparent; +} + +.panel { + background-color: @meerSchattenHell; + border: none; + transition: all 0.3s; + &:hover { + transition: all 0.3s; + background-color: @meerSchattenDunkel; + .panel-heading { + color: white; + } + a { + color: white; + } + } +} + +body.room .functions-wrap #switcher .btn-group { + background: linear-gradient( + to bottom right, + darken(@meerSchattenDunkel, 10%), + darken(@meerSchattenHell, 10%) + ); + border-radius: 4px; + .btn, .btn-default { + background: none; + border: none; + color: white; + } + .btn-default:hover { + background-color: fade(white, 20%); + } + .btn.btn-primary { + background-color: fade(black, 20%); + font-weight: bold; + color: white; + } +} + +.form-control { + background-color: @shadowDark; + border-radius: 4px; + color: white; + border: 1px solid white; + border-radius: 4px; +} + +.form-control[readonly] { + background-color: @shadowDarkContrast; +} + +.form-group label { + color: @shadowDarkContrast; +} + +.headline { + margin-top: 1.5rem; + margin-bottom: 1.5rem; +} + +body.room .player-wrap { + margin-bottom: 5rem; +} \ No newline at end of file