aboutsummaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorMaZderMind2016-06-21 18:42:32 +0200
committerMaZderMind2016-06-21 18:42:32 +0200
commit68132a6678201c41e462b2e1072e6f162a52b175 (patch)
tree147ee8d48a4e98e0297e9f58c21defa27814b9c6 /configs
parentac5dc5df88bfa82a61c0050addd792b533d0f384 (diff)
foss4g-2016 ws
Diffstat (limited to 'configs')
-rw-r--r--configs/conferences/foss4g-2016/config.php549
-rwxr-xr-xconfigs/conferences/foss4g-2016/download.sh9
-rw-r--r--configs/conferences/foss4g-2016/foss4g-logo_slogan.svg484
-rw-r--r--configs/conferences/foss4g-2016/main.less35
4 files changed, 1077 insertions, 0 deletions
diff --git a/configs/conferences/foss4g-2016/config.php b/configs/conferences/foss4g-2016/config.php
new file mode 100644
index 0000000..518a923
--- /dev/null
+++ b/configs/conferences/foss4g-2016/config.php
@@ -0,0 +1,549 @@
+<?php
+
+$GLOBALS['CONFIG']['CONFERENCE'] = array(
+ /**
+ * 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("2016-08-24 08: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("2016-08-26 18:15"),
+
+ /**
+ * 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' => false,
+
+ /**
+ * 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' => 'FOSS4G 2016',
+
+ /**
+ * Veranstalter
+ * Wird für den <meta name="author">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher
+ * <meta>-Tag generiert.
+ */
+ 'AUTHOR' => 'OSGeo',
+
+ /**
+ * Beschreibungstext
+ * Wird für den <meta name="description">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher
+ * <meta>-Tag generiert.
+ */
+ 'DESCRIPTION' => 'FOSS4G is the annual global event of the Open Source Geospatial Foundation (OSGeo). Although widely recognized as the largest technical geospatial Open Source conference we call FOSS4G an "event" because it is far more than "just" a conference. A typical FOSS4G will include regular presentations and talks, but also code sprints, birds of a feather sessions, workshops, topic talks and of course social events spanning all nine days.',
+
+ /**
+ * Schlüsselwortliste, Kommasepariert
+ * Wird für den <meta name="keywords">-Tag verdet. Wird diese Zeile auskommentiert, wird kein solcher
+ * <meta>-Tag generiert.
+ */
+ 'KEYWORDS' => 'FOSS4G, Open Source, Geospatial Foundation, OSGeo, 2016, WCCB, Bonn, Video, Streaming, Live, Livestream',
+
+ /**
+ * 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="http://www.osgeo.org">OSGeo</a> &amp;
+ <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' => '<div class="logo"></div>',
+
+ /**
+ * Link zu den Recordings
+ * Wird diese Zeile auskommentiert, wird der Link nicht angezeigt
+ */
+ //'RELEASES' => '',
+
+ /**
+ * 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/foss4g-2016/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
+ */
+$GLOBALS['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 $GLOBALS['CONFIG']['ROOMS'] konfiguriert werden,
+ * sonst werden sie nicht angezeigt.
+ */
+ 'GROUPS' => array(
+ 'Lecture Rooms' => array(
+ 'plenary-chamber',
+ 'room-bonn',
+ 'room-berlin',
+ 'kaminzimmer',
+ 'rheinlobby',
+ 'tunnel',
+ 'plenargeb-p27',
+ ),
+ ),
+);
+
+
+
+/**
+ * Liste der Räume (= Audio & Video Produktionen, also auch DJ-Sets oä.)
+ */
+$GLOBALS['CONFIG']['ROOMS'] = array(
+ /**
+ * Array-Key ist der Raum-Slug, der z.B. auch zum erstellen der URLs,
+ * in $GLOBALS['CONFIG']['OVERVIEW'] oder im Feedback verwendet wird.
+ */
+ 'plenary-chamber' => array(
+ /**
+ * Angezeige-Name
+ */
+ 'DISPLAY' => 'Plenary Chamber',
+ 'WIDE' => true,
+
+ /**
+ * ID des Video/Audio-Streams. Die Stream-ID ist davon abhängig, welches
+ * Event-Case in welchem Raum aufgebaut wird und wird üblicherweise von
+ * s1 bis s5 durchnummeriert.
+ */
+ 'STREAM' => 's8',
+
+ /**
+ * Stream-Vorschaubildchen auf der Übersichtsseite anzeigen
+ * Damit das funktioniert muss der entsprechende runit-Task auf dem
+ * CDN-Quell-Host (live.ber) laufen.
+ */
+ 'PREVIEW' => true,
+
+ /**
+ * Übersetzungstonspur aktivieren
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist werden nur
+ * die native-Streams verwendet, andernfalls wird native und translated
+ * angeboten und auch für beide Tonspuren eine Player-Seite angezeigt.
+ */
+ 'TRANSLATION' => false,
+
+ /**
+ * stereo-Tonspur statt native-Tonspur benutzen
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist werden
+ * die "native"-Mono-Streams verwendet, andernfalls wird statt "native"
+ * der Streamname "stereo" eingesetzt. Im normalen Konferenz-Setup
+ * müssen dann beide Kanäle der Kamera mit einem Signal bespielt werden.
+ */
+ 'STEREO' => false,
+
+ /**
+ * SD-Video-Stream (1024×576) verfügbar
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist ẃird kein SD-Video
+ * angeboten. Wird auch HD_VIDEO auf false gesetzt oder auskommentiert ist, wird
+ * für diesen Raum überhaupt kein Video angeboten.
+ *
+ * In diesem Fall wird, sofern jeweils aktiviert, Slides, Audio und zuletzt Musik
+ * als Default-Stream angenommen.
+ */
+ 'SD_VIDEO' => true,
+
+ /**
+ * HD-Video-Stream (1920×1080) verfügbar
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist ẃird kein HD-Video
+ * angeboten. Wird auch SD_VIDEO auf false gesetzt oder auskommentiert ist, wird
+ * für diesen Raum überhaupt kein Video angeboten.
+ *
+ * In diesem Fall wird, sofern jeweils aktiviert, Slides, Audio und zuletzt Musik
+ * als Default-Stream angenommen.
+ */
+ 'HD_VIDEO' => true,
+
+ /**
+ * Slide-Only-Stream (1024×576) verfügbar
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist ẃird kein Slide-Only-
+ * Stream angeboten. Für diesen Raum wird dann keim Slides-Tab angeboten.
+ *
+ * In diesem Fall wird, sofern jeweils aktiviert, Audio und zuletzt Musik als
+ * Default-Stream angenommen.
+ */
+ 'SLIDES' => false,
+
+ /**
+ * Audio-Only-Stream verfügbar
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist ẃird kein Audio-Only-
+ * Stream angeboten. Für diesen Raum wird dann keim Audio-Tab angeboten.
+ *
+ * In diesem Fall wird, sofern aktiviert, Musik als Default-Stream angenommen.
+ */
+ 'AUDIO' => true,
+
+ /**
+ * Musik-Stream verfügbar
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist ẃird kein Musik-Stream
+ * angeboten. Für diesen Raum wird dann keim Musik-Tab angeboten.
+ *
+ * Ist kein einziger Stream angebote, wird statt der Stream-Seite ein 404-Fehler
+ * angezeigt.
+ */
+ 'MUSIC' => false,
+
+ /**
+ * Fahrplan-Ansicht auf der Raum-Seite aktivieren (boolean)
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist,
+ * wird der Raum nicht im Fahrplan gesucht und auch auf der Startseite
+ * findet keine Darstellung statt.
+ *
+ * Ebenso können alle Fahrplan-Funktionialitäten durch auskommentieren
+ * des globalen $GLOBALS['CONFIG']['SCHEDULE']-Blocks deaktiviert werden
+ */
+ 'SCHEDULE' => true,
+
+ /**
+ * Name des Raums im Fahrplan
+ * Wenn diese Zeile auskommentiert ist wird der Raum-Slug verwendet
+ */
+ 'SCHEDULE_NAME' => 'Plenary Chamber',
+
+ /**
+ * Feedback anzeigen (boolean)
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist,
+ * taucht der Raum auch im globalen Feedback-Formular nicht auf.
+ *
+ * Ebenso können alle Feedback-Funktionialitäten durch auskommentieren
+ * des globalen $GLOBALS['CONFIG']['FEEDBACK']-Blocks deaktiviert werden
+ */
+ 'FEEDBACK' => false,
+
+ /**
+ * Subtitles-Player aktivieren (boolean)
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist,
+ * wird der Subtitles-Button und die damit verbundenen Funktionen deaktiviert.
+ *
+ * Ebenso können alle Subtitles-Funktionialitäten durch auskommentieren
+ * des globalen $GLOBALS['CONFIG']['SUBTITLES']-Blocks deaktiviert werden
+ */
+ 'SUBTITLES' => false,
+
+ /**
+ * Embed-Form aktivieren (boolean)
+ *
+ * Ist dieses Feld auf true gesetzt, wird ein Embed-Tab unter dem Video
+ * angezeigt. Darüber kann der Player als iframe eingebunden werden.
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist,
+ * wird kein Embed-Tab angeboten und die URL zum Einbetten existiert nicht.
+ *
+ * Ebenso können alle Embedding-Funktionialitäten durch auskommentieren
+ * des globalen $GLOBALS['CONFIG']['EMBED']-Blocks deaktiviert werden
+ */
+ 'EMBED' => true,
+
+ /**
+ * IRC-Link aktivieren (boolean)
+ *
+ * Solange Twitter oder IRC aktiviert ist, wird ein "Chat"-Tab mit den
+ * jeweiligen Links angezeigt.
+ *
+ * Ist dieses Feld auf true gesetzt, wird ein irc://-Link angezeigt.
+ * WebIrc wird nach dem Congress nicht mehr unterstützt ;)
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist,
+ * wird kein IRC-Link angezeigt
+ *
+ * Ebenso können alle IRC-Links durch auskommentieren
+ * des globalen $GLOBALS['CONFIG']['IRC']-Blocks deaktiviert werden
+ */
+ 'IRC' => false,
+
+ /**
+ * Mit dem Angaben in diesem Block können die Vorgaben aus dem
+ * globalen $GLOBALS['CONFIG']['IRC'] Block überschrieben werden.
+ *
+ * Der globale $GLOBALS['CONFIG']['IRC']-Block muss trotzdem existieren,
+ * da sonst überhaupt kein IRC-Link erzeugt wird. (ggf. einfach `= true` setzen)
+ */
+ // 'IRC_CONFIG' => array(
+ // 'DISPLAY' => '#31C3-hall-1 @ hackint',
+ // 'URL' => 'irc://irc.hackint.eu:6667/31C3-hall-1',
+ // ),
+
+ /**
+ * Twitter-Link aktivieren (boolean)
+ *
+ * Ist dieses Feld auf true gesetzt, wird ein Link zu Twitter angezeigt.
+ *
+ * Solange Twitter oder IRC aktiviert ist, wird ein "Chat"-Tab mit den
+ * jeweiligen Links angezeigt.
+ *
+ * Wenn diese Zeile auskommentiert oder auf false gesetzt ist,
+ * wird kein Twitter-Link angezeigt
+ *
+ * Ebenso können alle Twitter-Links durch auskommentieren
+ * des globalen $GLOBALS['CONFIG']['TWITTER']-Blocks deaktiviert werden
+ **/
+ 'TWITTER' => true,
+
+ /**
+ * Mit dem Angaben in diesem Block können die Vorgaben aus dem
+ * globalen $GLOBALS['CONFIG']['TWITTER'] Block überschrieben werden.
+ *
+ * Der globale $GLOBALS['CONFIG']['TWITTER']-Block muss trotzdem existieren,
+ * da sonst überhaupt kein IRC-Link erzeugt wird. (ggf. einfach `= true` setzen)
+ */
+ // 'TWITTER_CONFIG' => array(
+ // 'DISPLAY' => '#fossgis2016 @ twitter',
+ // 'TEXT' => '#fossgis2016',
+ // ),
+ ),
+
+ 'room-bonn' => array(
+ 'DISPLAY' => 'Room Bonn',
+ 'STREAM' => 's1',
+ 'PREVIEW' => true,
+
+ 'TRANSLATION' => false,
+ 'SD_VIDEO' => true,
+ 'HD_VIDEO' => true,
+ 'AUDIO' => true,
+ 'SLIDES' => false,
+ 'MUSIC' => false,
+
+ 'SCHEDULE' => true,
+ 'SCHEDULE_NAME' => ' Room Bonn',
+ 'FEEDBACK' => false,
+ 'SUBTITLES' => false,
+ 'EMBED' => true,
+ 'IRC' => false,
+ 'TWITTER' => true,
+ ),
+
+ 'room-berlin' => array(
+ 'DISPLAY' => 'Room Berlin',
+ 'STREAM' => 's3',
+ 'PREVIEW' => true,
+
+ 'TRANSLATION' => false,
+ 'SD_VIDEO' => true,
+ 'HD_VIDEO' => true,
+ 'AUDIO' => true,
+ 'SLIDES' => false,
+ 'MUSIC' => false,
+
+ 'SCHEDULE' => true,
+ 'SCHEDULE_NAME' => ' Room Berlin',
+ 'FEEDBACK' => false,
+ 'SUBTITLES' => false,
+ 'EMBED' => true,
+ 'IRC' => false,
+ 'TWITTER' => true,
+ ),
+
+ 'kaminzimmer' => array(
+ 'DISPLAY' => 'Kaminzimmer',
+ 'STREAM' => 's4',
+ 'PREVIEW' => true,
+
+ 'TRANSLATION' => false,
+ 'SD_VIDEO' => true,
+ 'HD_VIDEO' => true,
+ 'AUDIO' => true,
+ 'SLIDES' => false,
+ 'MUSIC' => false,
+
+ 'SCHEDULE' => true,
+ 'SCHEDULE_NAME' => 'Kaminzimmer',
+ 'FEEDBACK' => false,
+ 'SUBTITLES' => false,
+ 'EMBED' => true,
+ 'IRC' => false,
+ 'TWITTER' => true,
+ ),
+
+ 'rheinlobby' => array(
+ 'DISPLAY' => 'Rheinlobby',
+ 'STREAM' => 's5',
+ 'PREVIEW' => true,
+
+ 'TRANSLATION' => false,
+ 'SD_VIDEO' => true,
+ 'HD_VIDEO' => true,
+ 'AUDIO' => true,
+ 'SLIDES' => false,
+ 'MUSIC' => false,
+
+ 'SCHEDULE' => true,
+ 'SCHEDULE_NAME' => 'Rheinlobby',
+ 'FEEDBACK' => false,
+ 'SUBTITLES' => false,
+ 'EMBED' => true,
+ 'IRC' => false,
+ 'TWITTER' => true,
+ ),
+
+ 'tunnel' => array(
+ 'DISPLAY' => 'Tunnel',
+ 'STREAM' => 's2',
+ 'PREVIEW' => true,
+
+ 'TRANSLATION' => false,
+ 'SD_VIDEO' => true,
+ 'HD_VIDEO' => true,
+ 'AUDIO' => true,
+ 'SLIDES' => false,
+ 'MUSIC' => false,
+
+ 'SCHEDULE' => true,
+ 'SCHEDULE_NAME' => 'Tunnel',
+ 'FEEDBACK' => false,
+ 'SUBTITLES' => false,
+ 'EMBED' => true,
+ 'IRC' => false,
+ 'TWITTER' => true,
+ ),
+
+ 'plenargeb-p27' => array(
+ 'DISPLAY' => 'Plenargeb. P2.7',
+ 'STREAM' => 's6',
+ 'PREVIEW' => true,
+
+ 'TRANSLATION' => false,
+ 'SD_VIDEO' => true,
+ 'HD_VIDEO' => true,
+ 'AUDIO' => true,
+ 'SLIDES' => false,
+ 'MUSIC' => false,
+
+ 'SCHEDULE' => true,
+ 'SCHEDULE_NAME' => 'Plenargeb. P2.7',
+ 'FEEDBACK' => false,
+ 'SUBTITLES' => false,
+ 'EMBED' => true,
+ 'IRC' => false,
+ 'TWITTER' => true,
+ ),
+);
+
+/**
+ * Globaler Schalter für die Embedding-Funktionalitäten
+ *
+ * Wird diese Zeile auskommentiert oder auf False gesetzt, werden alle
+ * Embedding-Funktionen deaktiviert.
+ */
+$GLOBALS['CONFIG']['EMBED'] = true;
+
+/**
+ * Konfigurationen zum Konferenz-Fahrplan
+ * Wird dieser Block auskommentiert, werden alle Fahrplan-Bezogenen Features deaktiviert
+ */
+$GLOBALS['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' => 'configs/conferences/foss4g-2016/schedule.xml',
+
+ /**
+ * Nur die angegebenen Räume aus dem Fahrplan beachten
+ *
+ * Wird diese Zeile auskommentiert, werden alle Räume angezeigt
+ */
+ 'ROOMFILTER' => ['Plenary Chamber', ' Room Bonn', ' Room Berlin', 'Kaminzimmer', 'Rheinlobby', 'Tunnel', 'Plenargeb. P2.7'],
+
+ /**
+ * Skalierung der Programm-Vorschau in Sekunden pro Pixel
+ */
+ 'SCALE' => 4,
+
+ /**
+ * 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 */ '2016-05-21') - strtotime(/* Today */ '2016-05-19'),
+ 'SIMULATE_OFFSET' => 0,
+);
+
+/**
+ * Globale Konfiguration der Twitter-Links.
+ *
+ * Wird dieser Block auskommentiert, werden keine Twitter-Links mehr erzeugt. Sollen die
+ * Twitter-Links für jeden Raum einzeln konfiguriert werden, muss dieser Block trotzdem
+ * existieren sein. ggf. einfach auf true setzen:
+ *
+ * $GLOBALS['CONFIG']['TWITTER'] = true
+ */
+$GLOBALS['CONFIG']['TWITTER'] = array(
+ /**
+ * Anzeigetext für die Twitter-Links.
+ *
+ * %s wird durch den Raum-Slug ersetzt.
+ * Ist eine weitere Anpassung erfoderlich, kann ein TWITTER_CONFIG-Block in der
+ * Raum-Konfiguration zum Überschreiben dieser Angaben verwendet werden.
+ */
+ 'DISPLAY' => '#foss4g @ twitter',
+
+ /**
+ * Vorgabe-Tweet-Text für die Twitter-Links.
+ *
+ * %s wird durch den Raum-Slug ersetzt.
+ * Eine Anpassung kann ebenfalls in der Raum-Konfiguration vorgenommen werden.
+ */
+ 'TEXT' => '#foss4g #foss4g2016',
+);
diff --git a/configs/conferences/foss4g-2016/download.sh b/configs/conferences/foss4g-2016/download.sh
new file mode 100755
index 0000000..6d0d474
--- /dev/null
+++ b/configs/conferences/foss4g-2016/download.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# fahrplan
+wget --no-check-certificate -q "http://frab.fossgis-konferenz.de/en/foss4g-2016/public/schedule.xml" -O /tmp/foss4g-2016-schedule.xml && mv /tmp/foss4g-2016-schedule.xml schedule.xml
+rm -f /tmp/foss4g-2016-schedule.xml
+
+# relive
+wget -q "http://live.dus.c3voc.de/relive/foss4g-2016/index.json" -O /tmp/foss4g-2016-vod.json && mv /tmp/foss4g-2016-vod.json vod.json
+rm -f /tmp/foss4g-2016-vod.json
diff --git a/configs/conferences/foss4g-2016/foss4g-logo_slogan.svg b/configs/conferences/foss4g-2016/foss4g-logo_slogan.svg
new file mode 100644
index 0000000..ea49afb
--- /dev/null
+++ b/configs/conferences/foss4g-2016/foss4g-logo_slogan.svg
@@ -0,0 +1,484 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.1"
+ id="Ebene_1"
+ x="0px"
+ y="0px"
+ width="2029.7526"
+ height="705.89624"
+ viewBox="0 0 2029.7525 705.89624"
+ enable-background="new 0 0 2000 600"
+ xml:space="preserve"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="foss4g-logo_date_slogan.svg"><metadata
+ id="metadata497"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ id="defs495" /><sodipodi:namedview
+ pagecolor="#989898"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0.47843137"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1364"
+ inkscape:window-height="725"
+ id="namedview493"
+ showgrid="false"
+ inkscape:zoom="0.351"
+ inkscape:cx="1352.6931"
+ inkscape:cy="397.22075"
+ inkscape:window-x="-1"
+ inkscape:window-y="0"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="Ebene_1"
+ inkscape:snap-bbox="true"
+ inkscape:object-paths="false"
+ inkscape:object-nodes="true"
+ fit-margin-left="20"
+ fit-margin-right="20"
+ fit-margin-top="20"
+ fit-margin-bottom="20"><inkscape:grid
+ type="xygrid"
+ id="grid3072"
+ empspacing="5"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true"
+ originx="8.8715027px"
+ originy="1.90998px" /></sodipodi:namedview>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<g
+ id="g411"
+ transform="translate(8.8715028,103.98623)">
+ <g
+ id="g413">
+ <path
+ d="m 296.715,466.447 -11.771,-114.42 c 0,0 -46.309,-25.959 -87.441,45.014 v 117.418 c 0,0 25.63,-33.66 99.212,-48.012 z"
+ id="path415"
+ inkscape:connector-curvature="0"
+ style="fill:#7f8c8d" />
+ <path
+ d="m 191.764,395.128 c 7.894,-13.619 15.976,-23.658 23.887,-31.007 -4.496,0 -14.917,0 -33.013,0 -24.254,0 -82.276,-27.383 -87.415,-29.829 l 74.497,91.081 22.044,26.871 v -57.116 z"
+ id="path417"
+ inkscape:connector-curvature="0"
+ style="fill:#b0c2c2" />
+ <path
+ d="m 277.038,476.591 c -0.075,-0.102 -0.156,-0.218 -0.237,-0.335 -41.769,12.262 -64.049,30.061 -73.009,38.748 0.442,0.891 1.005,1.924 1.757,3.159 25.831,54.17 70.903,67.29 114.451,62.987 v -92.113 c -22.866,0.063 -39.892,-8.303 -42.962,-12.446 z"
+ id="path419"
+ inkscape:connector-curvature="0"
+ style="fill:#b0c2c2" />
+ <path
+ d="M 191.764,461.891 86.954,333.745 15.345,422.551 c 0,0 -9.688,14.688 0.306,29.412 9.994,14.728 100.604,113.063 100.604,113.063 l 75.509,-66.905 v -36.23 z"
+ id="path421"
+ inkscape:connector-curvature="0"
+ style="fill:#7f8c8d" />
+ </g>
+ <path
+ d="m 1004.665,376.027 3.136,-1.042 c 6.218,-2.55 9.115,-6.723 9.115,-13.126 v -21.255 c 0,-5.627 -2.215,-8.985 -7.071,-10.535 -29.108,15.9 -68.045,31.083 -112.713,45.313 v 0.645 h 107.533 z"
+ id="path423"
+ inkscape:connector-curvature="0"
+ style="fill:#b0c2c2" />
+ <polygon
+ points="1177.949,294.686 1177.949,147.354 1117.568,294.686 "
+ id="polygon425"
+ style="fill:#b0c2c2" />
+ <path
+ d="m 1086.273,188.662 17.861,-43.582 h 93.854 c 22.704,-24.965 87.293,-27.973 87.293,-27.973 l 715.6,-59.742 -46.754,1.3 c 0,0 -375.052,2.399 -732.113,30.675 -165.79,13.129 -231.044,35.459 -253.188,55.74 h 117.448 v 43.582 z"
+ id="path427"
+ inkscape:connector-curvature="0"
+ style="fill:#b0c2c2" />
+ <path
+ d="m 1038.521,231.395 c 10.014,7.32 17.018,14.596 21.301,21.809 l 15.887,-38.766 h -62.624 l 25.436,16.957 z"
+ id="path429"
+ inkscape:connector-curvature="0"
+ style="fill:#b0c2c2" />
+ <path
+ d="m 1177.949,364.043 h -79.734 c -4.347,0 -8.317,-0.131 -11.941,-0.393 v 17.141 c 0,37.988 -18.657,59.712 -55.452,64.568 l -0.195,0.025 H 891.428 v -33.197 c -8.076,18.74 -24.707,29.867 -49.749,33.172 l -0.195,0.025 H 702.287 v -19.693 c -4.502,0.972 -9.006,1.936 -13.511,2.889 -11.563,11.174 -28.91,16.805 -51.967,16.805 H 604.63 c -147.502,27.817 -276.849,44.129 -291.001,43.452 l -6.892,93.073 c 379.576,-14.222 760.487,-119.55 871.212,-152.424 v -65.443 z"
+ id="path431"
+ inkscape:connector-curvature="0"
+ style="fill:#b0c2c2" />
+ <path
+ d="m 1419.05,250.877 c -43.275,-12.27 -78.216,-22.396 -106.442,-30.76 -0.46,1.104 -0.801,2.371 -1.026,3.81 v 142.31 l 1.407,3.868 c 1.477,3.063 4.541,5.003 9.358,5.923 h 24.899 l 42.13,-13.404 V 270.16 h 69.357 v 67.802 c 117.827,-52.696 -27.07,-83.847 -39.683,-87.085 z"
+ id="path433"
+ inkscape:connector-curvature="0"
+ style="fill:#b0c2c2" />
+</g>
+<g
+ id="g435"
+ transform="translate(8.8715028,103.98623)">
+ <path
+ d="m 636.912,150 h -74.655 c -18.823,0 -33.181,3.702 -42.674,10.768 -9.408,7.009 -15.887,18.775 -19.254,34.852 l 0.093,0.14 c -1.384,5.561 -1.422,6.849 -1.422,7.103 v 175.735 c 0,3.147 0.012,5.771 0.268,7.8 0.255,2.077 0.592,4.318 1.119,6.669 3.129,16.424 9.315,28.409 18.462,35.27 9.233,6.926 23.726,10.665 43.134,10.665 h 74.394 c 42.54,0 63.624,-20.198 63.624,-60.813 V 210.599 C 700,169.983 679.091,150 636.912,150 z M 642,359.794 c 0,8.047 -1.601,13.426 -5.138,16.638 -3.445,3.137 -9.373,4.568 -18.363,4.568 h -38.64 c -8.78,0 -14.858,-1.667 -18.456,-5.288 C 557.808,372.102 556,366.289 556,357.75 V 231.035 c 0,-9.091 1.693,-14.933 5.051,-18.274 3.363,-3.34 9.357,-4.761 18.202,-4.761 h 39.03 c 8.845,0 14.794,1.555 18.429,5.167 3.64,3.624 5.289,9.333 5.289,17.868 v 128.759 z"
+ id="path437"
+ inkscape:connector-curvature="0"
+ style="fill:#49a942" />
+ <path
+ d="m 891,379.951 v -59.39 l -1.354,-12.028 C 883.862,279.31 865.71,265.101 834.313,265.101 l -50.426,-0.021 c -13.341,-1.586 -17.598,-9.205 -18.715,-15.317 L 765,249.225 v -24.383 l 1.472,-6.938 0.252,-0.383 c 2.917,-5.6 7.964,-8.728 14.948,-9.694 L 782.11,208 H 891 V 150 H 764.941 c -16.151,0 -28.681,3.358 -37.243,9.743 -8.519,6.357 -14.603,16.993 -18.226,31.493 -1.025,4.098 -1.473,8.863 -1.473,14.048 v 62.54 c 0,10.265 3.065,20.305 9.253,29.841 11.454,16.662 26.787,24.794 46.907,24.794 l 52.902,0.021 c 10.55,1.281 15.938,7.258 15.938,17.284 v 21.255 c 0,8.813 -4.306,15.286 -12.776,18.722 l -0.096,-0.027 -4.066,1.286 H 708 v 58 H 840.656 C 874.33,434 891,414.869 891,379.951 z"
+ id="path439"
+ inkscape:connector-curvature="0"
+ style="fill:#49a942" />
+ <path
+ d="m 1240.877,439 0.401,-289 H 1184 v 150 h -75.808 l 61.313,-150 h -61.777 l -60.55,147.863 c -2.573,5.883 -3.864,11.824 -3.864,17.604 0,9.006 3.07,17.421 9.124,24.956 5.326,6.574 11.065,10.962 17.048,13.2 6.143,2.299 15.663,3.377 28.296,3.377 H 1184 v 82 h 56.877 z"
+ id="path441"
+ inkscape:connector-curvature="0"
+ style="fill:#2980b9" />
+ <path
+ d="m 1263.163,165.388 c -10.13,10.13 -15.163,28.583 -15.163,54.611 v 138.159 c 0,19.576 0.831,33.366 2.674,40.988 1.771,7.36 5.743,14.476 11.907,21.152 6.161,6.679 13.28,11.654 21.214,14.34 8.094,2.743 19.434,4.361 33.756,4.361 h 72.759 c 14.934,0 26.807,-2.706 35.29,-7.594 8.406,-4.835 15.408,-13.578 21.111,-25.764 3.615,-7.488 5.289,-20.642 5.289,-38.9 V 275 h -57 v 90.274 l -0.047,0.167 c -0.652,5.836 -2.916,9.92 -6.7,12.323 -3.52,2.239 -8.873,3.235 -16.337,3.235 h -50.547 l -0.265,0.046 c -6.984,-1.265 -11.707,-4.397 -14.039,-9.404 l -0.1,-0.218 -1.816,-4.981 0.032,-144.026 c 1.621,-10.983 8.53,-13.907 14.041,-14.597 l 0.372,0.181 H 1433 v -58 h -115.857 c -25.757,0 -43.85,5.257 -53.98,15.388 z"
+ id="path443"
+ inkscape:connector-curvature="0"
+ style="fill:#49a942" />
+ <g
+ id="g445">
+ <path
+ d="m 492,265 h -99.086 l 0.043,-40.452 C 394.271,216.884 399.55,208 417.239,208 H 492 v -5.168 c 0,-0.823 0.089,-2.417 1.586,-8.438 3.681,-17.525 10.866,-30.417 21.474,-38.319 1.844,-1.372 3.792,-2.62 5.94,-3.755 V 150 H 399.183 c -13.849,0 -23.908,0.913 -29.899,2.476 -5.774,1.506 -11.48,4.784 -16.961,9.624 -5.47,4.834 -9.443,11.002 -12.249,18.277 -2.852,7.375 -4.074,16.462 -4.074,26.951 V 439 h 57 V 322 h 99 v -57 z"
+ id="path447"
+ inkscape:connector-curvature="0"
+ style="fill:#49a942" />
+ </g>
+ <g
+ id="g449">
+ <path
+ d="m 1067.382,359.358 c -6.999,-2.618 -13.598,-7.711 -19.615,-15.138 -6.939,-8.637 -10.454,-18.288 -10.454,-28.693 0,-6.613 1.46,-13.304 4.339,-19.884 l 10.284,-25.093 c -7.854,-3.639 -17.339,-5.449 -28.517,-5.449 l -50.408,-0.021 c -13.341,-1.586 -17.66,-9.205 -18.777,-15.317 L 954,249.225 v -24.383 l 1.543,-6.938 0.287,-0.383 c 2.917,-5.6 7.982,-8.728 14.966,-9.694 L 971.25,208 h 106.321 l 2.428,-5.926 V 150 H 954.083 c -16.151,0 -28.681,3.358 -37.243,9.743 -8.519,6.357 -14.674,16.993 -18.297,31.493 -1.025,4.098 -1.543,8.863 -1.543,14.048 v 62.54 c 0,10.265 3.136,20.305 9.324,29.841 11.454,16.662 26.822,24.794 46.942,24.794 l 52.849,0.021 c 10.55,1.281 15.884,7.258 15.884,17.284 v 21.255 c 0,8.813 -4.235,15.286 -12.705,18.722 l -0.061,-0.027 -4.031,1.286 H 897 v 58 h 132.797 C 1063.472,434 1080,414.869 1080,379.951 v -17.714 c -5,-0.637 -9.183,-1.593 -12.618,-2.879 z"
+ id="path451"
+ inkscape:connector-curvature="0"
+ style="fill:#49a942" />
+ </g>
+</g>
+<g
+ id="g453"
+ style="stroke:none"
+ transform="translate(8.8715028,103.98623)">
+ <g
+ transform="translate(1512.5815,439.8809)"
+ style="font-size:186.2592926px;letter-spacing:0px;fill:#2c3e50;stroke:none;font-family:DicotMedium"
+ id="text455"><path
+ d="m 17.322114,0 0,-41.535822 0.372519,-5.40152 c 1.241709,-9.064563 4.718546,-15.894063 10.43052,-20.488522 5.836091,-4.594324 11.982641,-6.891519 18.43967,-6.891594 l 27.938894,0 c 1.862517,7.5e-5 3.538849,-0.558703 5.029001,-1.676333 1.614166,-1.241652 2.731721,-2.793811 3.352667,-4.656483 0.620781,-1.241646 0.931213,-2.421287 0.931297,-3.538926 l 0,-18.99845 -0.18626,-2.42137 c -0.74512,-4.9668 -3.228574,-7.88486 -7.450371,-8.75419 l -2.235112,-0.37251 -56.622825,0 0,-19.37097 55.31901,0 c 8.940365,1.3e-4 16.20447,2.60776 21.792337,7.82289 l 3.538927,4.0977 c 3.476742,4.96704 5.215152,10.18229 5.215262,15.64578 l 0,22.537379 c -1.1e-4,10.306421 -4.097805,18.253476 -12.293115,23.841189 -5.339519,3.60107 -10.803119,5.401575 -16.390818,5.40152 l -25.703782,0 -2.048853,0.186259 c -3.725228,0.745091 -6.27077,1.924732 -7.636631,3.538927 -1.365939,1.614296 -2.048889,4.221924 -2.048852,7.82289 l 0,23.84119 66.308311,-0.18626 0,19.557226 -86.051796,0"
+ style="letter-spacing:20.35000038px;stroke:none"
+ id="path3486"
+ inkscape:connector-curvature="0" /><path
+ d="m 135.42063,-37.62438 0,-58.85793 c -10e-6,-6.70523 0.68294,-12.04466 2.04885,-16.0183 1.36589,-4.09759 3.78726,-8.00903 7.26412,-11.73434 3.60098,-3.84923 7.51242,-6.45686 11.73433,-7.82289 4.22184,-1.36577 10.803,-2.04872 19.74349,-2.04885 l 14.71448,0 c 9.06454,1.3e-4 15.6457,0.68308 19.74349,2.04885 4.09761,1.24186 8.07114,3.91157 11.92059,8.00915 6.08436,6.45711 9.1266,15.64589 9.12671,27.56638 l 0,58.85793 c -1.1e-4,6.5812 -0.68306,11.98271 -2.04886,16.20456 -1.366,4.09772 -3.72529,7.88499 -7.07785,11.36182 -3.84945,3.97354 -7.88507,6.64325 -12.10685,8.00915 C 206.38534,-0.68295 199.86627,0 190.9259,0 l -14.71448,0 c -12.5415,0 -22.28906,-3.22849 -29.24271,-9.68548 -5.09111,-4.59439 -8.50586,-10.61676 -10.24426,-18.06715 -0.49671,-3.22847 -0.93131,-6.51905 -1.30382,-9.87175 m 35.57553,18.06715 2.23511,0.18626 20.86104,0 2.42137,-0.18626 c 6.08439,2e-5 10.18209,-1.17962 12.29311,-3.53892 2.23503,-2.48343 3.35258,-7.01574 3.35267,-13.59693 l 0,-60.72053 c -9e-5,-6.58106 -1.11764,-11.05128 -3.35267,-13.41067 -2.11102,-2.48334 -6.20872,-3.72507 -12.29311,-3.72518 l -2.42137,-0.18626 -20.86104,0 -2.23511,0.18626 c -6.20869,1.1e-4 -10.49265,1.24184 -12.8519,3.72518 -2.23514,2.35939 -3.35269,6.82961 -3.35266,13.41067 l 0,60.72053 c -3e-5,6.45702 1.11752,10.92724 3.35266,13.41067 2.23508,2.48348 6.51904,3.7252 12.8519,3.72518"
+ style="letter-spacing:20.35000038px;stroke:none"
+ id="path3488"
+ inkscape:connector-curvature="0" /><path
+ d="m 291.81287,0 0,-134.10669 19.37097,0 0,134.10669 -19.37097,0"
+ style="letter-spacing:20.35000038px;stroke:none"
+ id="path3490"
+ inkscape:connector-curvature="0" /><path
+ d="m 369.63509,-30.174005 0,-73.013645 c -10e-6,-9.0645 2.11093,-16.14235 6.33282,-21.23356 4.34603,-5.21513 10.67884,-8.31945 18.99845,-9.31296 0.99334,-0.24821 2.5455,-0.37239 4.65648,-0.37252 l 67.05334,0 0,19.37097 -65.00449,0 c -7.07789,1.1e-4 -11.17559,3.16652 -12.29311,9.49922 l -0.37252,2.23511 0,16.763338 45.44727,0 c 8.31949,8.6e-5 15.14899,1.98685 20.48852,5.960297 5.4635,3.849435 9.06451,9.437208 10.80304,16.763336 0.49658,1.986828 0.74493,4.15985 0.74503,6.519075 l 0,26.821339 c -10e-5,9.561331 -3.78737,17.384213 -11.36181,23.4686705 C 449.54024,-2.2351093 443.82829,0 437.99225,0 l -37.62437,0 c -6.45703,0 -12.0448,-1.6142456 -16.76334,-4.8427416 -9.31298,-6.2086324 -13.96946,-14.6523784 -13.96945,-25.3312634 m 22.16486,5.401519 c 1.24169,1.738443 3.4768,3.16643 6.70533,4.283964 2.23507,0.745057 3.78723,1.117575 4.65648,1.117556 l 32.9679,0 4.0977,-0.931297 c 3.47676,-1.36588 5.71187,-4.159766 6.70534,-8.381668 l 0.18626,-1.676334 0,-24.958745 c -9e-5,-3.725127 -0.74513,-6.332754 -2.23511,-7.82289 -1.36599,-1.614183 -4.09779,-2.793824 -8.19541,-3.538927 l -2.23511,-0.186259 -32.40912,0 -2.04885,0.186259 c -7.32624,0.869276 -10.98933,4.408199 -10.9893,10.61678 l 0,24.027449 c -3e-5,2.607659 0.93126,5.029028 2.79389,7.264112"
+ style="letter-spacing:20.35000038px;stroke:none"
+ id="path3492"
+ inkscape:connector-curvature="0" /></g>
+ <g
+ transform="translate(1517.7573,287.252)"
+ style="font-size:186.2592926px;fill:#2c3e50;stroke:none;font-family:DicotMedium"
+ id="text457"><path
+ d="m 11.734335,0 0,-134.10669 67.984642,0 c 12.789712,1.3e-4 21.668063,6.27086 26.635083,18.81219 1.24162,3.2286 1.86248,6.39501 1.86259,9.49922 l 0,16.20456 c -1.1e-4,1.738508 -0.12428,3.104408 -0.37252,4.097705 -0.62097,4.097786 -1.92478,7.636709 -3.91144,10.616779 -1.8627,2.980221 -4.284068,5.401589 -7.264117,7.264113 5.960197,2.731868 9.685377,8.133382 11.175557,16.204558 0.24824,0.993434 0.37241,2.42142 0.37252,4.283964 l 0,12.479373 c -1.1e-4,11.175581 -2.11105,19.495154 -6.33282,24.9587448 C 96.916822,-3.2284912 88.783507,0 77.483866,0 L 11.734335,0 m 18.998448,-19.370966 43.957193,0 c 5.215181,1.9e-5 9.126622,-2.421349 11.734336,-7.264113 1.365813,-2.359255 2.048764,-4.656451 2.048852,-6.891594 l 0,-12.665632 c -8.8e-5,-3.725135 -2.421457,-6.829454 -7.264112,-9.312964 -2.359364,-0.993327 -4.408214,-1.490018 -6.146557,-1.490075 l -44.329712,0 0,37.624378 m 44.88849,-56.995344 c 2.855897,7.6e-5 5.339352,-0.682874 7.450372,-2.048852 3.849271,-2.607549 5.773949,-6.270645 5.774038,-10.989298 l 0,-12.85189 c -8.9e-5,-6.58105 -3.725271,-10.61667 -11.175558,-12.10686 l -2.421371,-0.37251 -44.143452,0 0,38.36941 44.515971,0"
+ style="font-size:186.2592926px;fill:#2c3e50;stroke:none;font-family:DicotMedium"
+ id="path3477"
+ inkscape:connector-curvature="0" /><path
+ d="m 130.32912,-37.624377 0,-58.857937 c -1e-5,-13.162216 3.22848,-22.723516 9.68549,-28.683926 6.45696,-5.96017 16.82538,-8.94032 31.1053,-8.94045 l 14.71448,0 c 14.2798,1.3e-4 24.64822,2.98028 31.1053,8.94045 6.45689,5.96041 9.68538,15.52171 9.68549,28.683926 l 0,58.857937 c -1.1e-4,13.162348 -3.2286,22.723648 -9.68549,28.683931 C 210.48261,-2.9801457 200.11419,0 185.83439,0 l -14.71448,0 c -12.66567,0 -22.47532,-3.2284912 -29.42897,-9.6854832 -5.09111,-4.7185548 -8.50586,-10.7409318 -10.24426,-18.0671518 -0.37253,-3.228463 -0.74505,-6.519041 -1.11756,-9.871742 m 35.01675,18.067151 2.79389,0.18626 20.86104,0 2.60763,-0.18626 c 5.83605,2e-5 9.87166,-1.241708 12.10685,-3.725186 2.23503,-2.483431 3.35258,-6.829477 3.35267,-13.03815 l 0,-61.093048 c -9e-5,-6.33271 -1.11764,-10.74084 -3.35267,-13.22441 -2.11102,-2.60752 -6.08454,-3.91133 -11.92059,-3.91144 l -2.79389,-0.18626 -20.86104,0 -2.79389,0.18626 c -5.96034,1.1e-4 -10.05804,1.24184 -12.29311,3.72518 -2.23515,2.48357 -3.3527,6.95379 -3.35267,13.41067 l 0,60.720529 c -3e-5,6.332847 1.11752,10.803065 3.35267,13.410669 2.35924,2.483478 6.45694,3.725206 12.29311,3.725186"
+ style="font-size:186.2592926px;fill:#2c3e50;stroke:none;font-family:DicotMedium"
+ id="path3479"
+ inkscape:connector-curvature="0" /><path
+ d="m 250.01528,0 0,-115.2945 c -1e-5,-13.28637 5.33942,-19.92961 16.0183,-19.92975 0.86918,1.4e-4 1.80048,1.4e-4 2.79389,0 0.37249,1.4e-4 1.6763,0.31057 3.91144,0.9313 2.35925,0.49683 4.47019,1.73855 6.33282,3.72519 1.86255,1.86272 3.60097,4.78078 5.21526,8.75418 l 40.41827,98.344909 0,-110.638019 19.55722,0 0,118.088391 c -10e-5,4.71858 -1.42809,8.7541939 -4.28396,12.1068539 -2.85608,3.22849504 -6.51917,5.0910861 -10.9893,5.5877787 -0.49678,0.1241711 -0.93139,0.1862575 -1.30381,0.1862593 -0.62096,-1.8e-6 -1.05556,-1.8e-6 -1.30382,0 -7.20211,-1.8e-6 -12.72779,-4.5323068 -16.57708,-13.5969279 l -40.41826,-96.668575 0,108.40291 -19.37097,0"
+ style="font-size:186.2592926px;fill:#2c3e50;stroke:none;font-family:DicotMedium"
+ id="path3481"
+ inkscape:connector-curvature="0" /><path
+ d="m 367.88247,0 0,-115.2945 c -1e-5,-13.28637 5.33941,-19.92961 16.0183,-19.92975 0.86918,1.4e-4 1.80047,1.4e-4 2.79389,0 0.37248,1.4e-4 1.6763,0.31057 3.91144,0.9313 2.35925,0.49683 4.47019,1.73855 6.33282,3.72519 1.86255,1.86272 3.60097,4.78078 5.21526,8.75418 l 40.41826,98.344909 0,-110.638019 19.55723,0 0,118.088391 c -1.1e-4,4.71858 -1.42809,8.7541939 -4.28396,12.1068539 -2.85608,3.22849504 -6.51917,5.0910861 -10.9893,5.5877787 -0.49678,0.1241711 -0.93139,0.1862575 -1.30382,0.1862593 -0.62095,-1.8e-6 -1.05555,-1.8e-6 -1.30381,0 -7.20211,-1.8e-6 -12.7278,-4.5323068 -16.57708,-13.5969279 l -40.41827,-96.668575 0,108.40291 -19.37096,0"
+ style="font-size:186.2592926px;fill:#2c3e50;stroke:none;font-family:DicotMedium"
+ id="path3483"
+ inkscape:connector-curvature="0" /></g>
+</g>
+<g
+ id="g459"
+ transform="translate(8.8715028,103.98623)">
+ <text
+ transform="translate(-390.5454,66.7334)"
+ id="text461"><tspan
+ x="0"
+ y="0"
+ font-size="72"
+ id="tspan463"
+ style="font-size:72px;fill:#2c3e50;font-family:MyriadPro-Regular">#</tspan><tspan
+ x="35.784"
+ y="0"
+ font-size="72"
+ id="tspan465"
+ style="font-size:72px;fill:#2c3e50;font-family:DicotBold">2C3E50</tspan></text>
+
+
+
+
+
+
+
+
+ <text
+ transform="translate(-390.5454,123.9629)"
+ id="text467"
+ style="fill:#7f8c8d;fill-opacity:1"><tspan
+ x="0"
+ y="0"
+ font-size="72"
+ id="tspan469"
+ style="font-size:72px;fill:#7f8c8d;fill-opacity:1;font-family:MyriadPro-Regular">#</tspan><tspan
+ x="35.784"
+ y="0"
+ font-size="72"
+ id="tspan471"
+ style="font-size:72px;fill:#7f8c8d;fill-opacity:1;font-family:DicotBold">7F8C8D</tspan></text>
+
+
+
+
+
+
+
+
+ <text
+ transform="translate(-390.5454,181.1924)"
+ id="text473"><tspan
+ x="0"
+ y="0"
+ font-size="72"
+ id="tspan475"
+ style="font-size:72px;fill:#b0c2c2;font-family:MyriadPro-Regular">#</tspan><tspan
+ x="35.784"
+ y="0"
+ font-size="72"
+ id="tspan477"
+ style="font-size:72px;fill:#b0c2c2;font-family:DicotBold">B0C2C2</tspan></text>
+
+
+
+
+
+
+
+
+ <text
+ transform="translate(-390.5454,238.4219)"
+ id="text479"><tspan
+ x="0"
+ y="0"
+ font-size="72"
+ id="tspan481"
+ style="font-size:72px;fill:#49a942;font-family:MyriadPro-Regular">#</tspan><tspan
+ x="35.784"
+ y="0"
+ font-size="72"
+ id="tspan483"
+ style="font-size:72px;fill:#49a942;font-family:DicotBold">49A942</tspan></text>
+
+
+
+
+
+
+
+
+ <text
+ transform="translate(-390.5454,295.6514)"
+ id="text485"
+ style="fill:#2980b9;fill-opacity:1"><tspan
+ x="0"
+ y="0"
+ font-size="72"
+ id="tspan487"
+ style="font-size:72px;fill:#2980b9;fill-opacity:1;font-family:MyriadPro-Regular">#</tspan><tspan
+ x="35.784"
+ y="0"
+ font-size="72"
+ id="tspan489"
+ style="font-size:72px;fill:#2980b9;fill-opacity:1;font-family:DicotBold">2980B9</tspan></text>
+
+
+
+
+
+
+
+
+</g>
+<text
+ display="none"
+ font-size="100"
+ id="text491"
+ style="font-size:100px;fill:#2c3e50;display:none;font-family:DicotMedium"
+ x="1106.8711"
+ y="669.24213">24th - 26th AUGUST</text>
+
+
+
+
+
+
+
+
+<g
+ transform="translate(-13.128497,99.986231)"
+ style="font-size:120px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:-4.5px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Pecita;-inkscape-font-specification:Pecita Bold"
+ id="text3047"><path
+ d="m 132.64189,-18.373824 c -1.17122,-0.261206 -2.49917,0.180325 -3.43699,1.077704 -11.93214,12.7073962 -22.13779,31.455485 -28.26352,42.384122 -2.671895,4.813824 -3.856605,5.164357 -4.325095,5.059874 -0.351368,-0.07836 -1.236108,-0.521577 -1.140907,-5.910053 C 95.611021,17.014147 96.359238,8.6975843 97.197615,1.6306315 97.944151,-4.4732205 96.830199,-11.606749 90.271337,-13.0695 83.00974,-14.688975 78.761315,-7.7677755 76.20738,-4.0341746 73.379599,0.37604102 71.398622,3.7456581 61.624413,20.00801 c -2.906143,4.761584 -4.325098,5.059875 -5.027834,4.903152 -0.819857,-0.182844 -2.289373,-1.863008 -3.651883,-7.330686 -2.426733,-9.516405 -1.739198,-23.6250696 1.839318,-39.670857 0.417929,-1.87396 -0.856102,-3.879368 -2.730062,-4.297297 -1.873961,-0.417928 -3.879368,0.856102 -4.297297,2.730063 -3.735239,16.7485218 -4.579498,31.5599249 -1.815717,42.872769 1.232747,4.946947 2.880912,11.338978 9.088407,12.723367 6.324617,1.41051 10.116351,-4.014216 12.683766,-8.35955 C 77.48732,7.3166182 79.416056,4.1812467 82.191596,0.00527619 85.18874,-4.6130639 87.532877,-6.3033467 88.704102,-6.0421412 89.172593,-5.937659 90.707827,-5.1034743 90.013533,0.76613263 89.122914,8.0673305 88.556701,16.67038 88.368818,24.128301 c -0.120482,4.399255 0.0042,11.558063 6.680232,13.046934 6.55886,1.462751 9.98659,-4.534947 12.21528,-8.464032 6.12573,-10.928637 16.27913,-29.4424792 27.24733,-41.135373 0.48197,-0.507251 0.72969,-1.066745 0.8603,-1.652357 0.39181,-1.756838 -0.62186,-3.827127 -2.73007,-4.297297"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3052"
+ inkscape:connector-curvature="0" /><path
+ d="m 145.82129,50.954164 c 5.07151,0.951507 9.59028,0.944651 16.41653,-0.949054 1.29006,-0.368429 2.35907,-1.510897 2.60248,-2.80826 0.3983,-2.122956 -1.10529,-3.870185 -2.87442,-4.202107 -0.47177,-0.08851 -1.08361,-0.08121 -1.59964,0.06616 -6.07434,1.790589 -8.85341,1.63547 -13.21726,0.816731 -1.88708,-0.354049 -3.47188,-1.01767 -4.77655,-1.872917 8.38894,-1.112143 17.49351,-7.340066 19.15312,-16.185717 1.23917,-6.604753 -2.97666,-12.767851 -9.58141,-14.007023 -10.49684,-1.9693989 -19.37306,5.644398 -21.23181,15.551527 -2.10217,11.204492 3.78653,21.466363 15.10896,23.590658 m 8.62773,-26.462848 c -1.10641,5.897101 -10.21828,11.513179 -16.70509,10.296135 -0.39786,-1.783956 -0.37551,-3.855361 0.0449,-6.096259 1.23918,-6.604753 6.81256,-10.931217 12.82761,-9.802685 2.8306,0.531073 4.36363,2.7722 3.83256,5.602809"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3054"
+ inkscape:connector-curvature="0" /><path
+ d="m 185.77295,32.499287 c 0.94691,0.157975 1.8347,-0.05889 2.66337,-0.650591 11.73943,-8.382446 17.69902,-19.310749 19.43676,-29.7267781 1.28355,-7.6936579 -1.02309,-17.2028769 -9.07184,-18.5456689 -7.10184,-1.184817 -11.60062,3.904254 -14.975,9.5458778 -4.51887,7.39721826 -8.26927,20.3973072 -10.6784,34.8377112 -1.97469,11.836397 -0.8725,27.835899 14.39645,30.383256 7.10184,1.184817 13.29675,-0.944799 20.61663,-6.171501 0.82867,-0.591702 1.32199,-1.361012 1.47996,-2.307923 0.31596,-1.893824 -1.06469,-3.827381 -2.95851,-4.143332 -0.94691,-0.157976 -1.8347,0.05889 -2.66337,0.65059 -6.49121,4.635 -10.55533,5.660198 -15.28989,4.87032 -8.40384,-1.402033 -10.45412,-10.260195 -8.47942,-22.096592 2.33014,-13.966948 6.23828,-26.4540846 9.77051,-32.312689 3.33488,-5.4048955 5.22895,-6.548812 7.59622,-6.153873 1.42037,0.2369634 4.24089,3.7489875 3.15481,10.25900577 -1.42178,8.52220573 -6.11851,17.71465523 -16.47683,25.11093223 -0.82866,0.591702 -1.32199,1.361011 -1.47996,2.307923 -0.31595,1.893823 1.06469,3.827381 2.95851,4.143332"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3056"
+ inkscape:connector-curvature="0" /><path
+ d="m 248.64483,32.578918 c 0.59196,-4.036825 -5.35883,-5.637146 -8.802,-6.142049 -11.87302,-1.741045 -23.02544,8.145501 -24.67944,19.424865 -1.41025,9.617142 4.56763,17.649456 14.18477,19.059703 6.53016,0.957575 12.57429,0.267192 20.78553,-3.622615 1.17304,-0.555687 1.80465,-1.554619 1.97876,-2.741921 0.29598,-2.018412 -1.25864,-3.823065 -3.0396,-4.084222 -0.71238,-0.104463 -1.45958,0.02853 -2.10546,0.297673 -7.42922,3.51935 -11.23174,3.81074 -16.5746,3.027269 -5.81778,-0.853112 -8.95869,-5.073482 -8.10558,-10.891259 1.13168,-7.717459 9.38718,-14.390304 16.51099,-13.345677 2.13714,0.313388 3.06958,0.571403 4.27115,1.475299 0.4401,0.307102 1.01634,0.512885 1.49126,0.582527 1.78095,0.261157 3.77083,-0.902451 4.08422,-3.039593"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3058"
+ inkscape:connector-curvature="0" /><path
+ d="m 267.17886,36.336875 c -1.19051,-0.150606 -2.32221,0.190053 -3.17206,1.171148 -3.2653,3.820392 -5.3114,8.520769 -5.92889,13.401862 -1.29522,10.238388 5.36018,18.821556 15.59857,20.116772 12.50036,1.581368 25.03015,-6.631023 26.67176,-19.607586 1.21991,-9.643133 -4.91554,-17.555741 -14.55867,-18.775654 -3.45248,-0.436759 -12.07078,-0.196499 -12.65815,4.446491 -0.25603,2.023868 1.33395,3.797445 3.11972,4.023355 0.7143,0.09036 1.44367,0.06168 2.09917,-0.339225 1.81732,-0.979661 4.1546,-1.288765 6.53562,-0.987552 5.8335,0.737972 9.05721,4.895445 8.31924,10.728946 -1.06931,8.452623 -9.69622,14.497705 -18.62505,13.368156 -6.42875,-0.813275 -10.17242,-5.641308 -9.35914,-12.070063 0.43676,-3.45248 1.82593,-6.784485 4.22631,-9.504729 0.43246,-0.550073 0.76092,-1.23426 0.85129,-1.948566 0.22591,-1.785766 -1.09585,-3.767324 -3.11972,-4.023355"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3060"
+ inkscape:connector-curvature="0" /><path
+ d="m 421.7427,75.062047 c -0.95624,-0.0849 -1.82478,0.199397 -2.60564,0.852899 -2.21242,1.851586 -3.80876,2.19174 -4.88453,2.096225 -2.032,-0.180418 -3.53283,-0.91604 -2.94912,-7.490171 0.77473,-8.725665 0.7552,-18.003757 -7.97046,-18.778492 -7.53037,-0.668607 -12.37192,6.370796 -17.38884,12.671784 -5.81899,7.193547 -9.1044,10.275068 -11.13641,10.09465 -0.8367,-0.07429 -2.35875,-0.570856 -1.43544,-10.969936 0.77474,-8.725666 0.75521,-18.003758 -7.97046,-18.778493 -7.53037,-0.668606 -12.37192,6.370797 -17.38883,12.671784 -5.819,7.193548 -9.10441,10.275068 -11.13641,10.094651 -0.83671,-0.07429 -2.35876,-0.570856 -1.43544,-10.969937 0.81718,-9.203784 -0.20104,-18.08866 -9.16576,-18.88462 -7.41084,-0.657994 -11.69998,5.587154 -16.47505,13.234805 -1.2668,2.056019 -2.35039,3.405478 -4.56281,5.257064 -0.78086,0.653502 -1.21374,1.458373 -1.29864,2.41461 -0.1698,1.912475 1.35503,3.734473 3.26751,3.904278 0.95624,0.0849 1.82479,-0.199397 2.60564,-0.852899 2.73299,-2.287254 4.61867,-4.529275 6.16698,-7.042186 5.0778,-8.343604 7.50806,-9.934916 9.6596,-9.743885 2.032,0.180417 3.5116,1.155103 2.63074,11.076064 -0.77474,8.725666 -0.75521,18.003758 7.97046,18.778492 7.53037,0.668607 12.37192,-6.370796 17.38883,-12.671783 5.819,-7.193548 9.10441,-10.275068 11.13641,-10.094651 0.83671,0.07429 2.35876,0.570856 1.43544,10.969937 -0.77473,8.725665 -0.7552,18.003757 7.97046,18.778492 7.53037,0.668607 12.37192,-6.370797 17.38884,-12.671784 5.81899,-7.193548 9.1044,-10.275068 11.13641,-10.09465 0.8367,0.07429 2.35875,0.570856 1.43544,10.969936 -0.68983,7.769428 1.95377,14.63012 9.48414,15.298727 3.70542,0.328997 7.10254,-1.296936 10.09581,-3.802023 0.78086,-0.653502 1.21374,-1.458373 1.29864,-2.41461 0.1698,-1.912475 -1.35503,-3.734473 -3.26751,-3.904278"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3062"
+ inkscape:connector-curvature="0" /><path
+ d="m 447.48206,86.634156 c 5.15298,0.269045 9.63075,-0.338311 16.14477,-3.12245 1.22965,-0.536615 2.13734,-1.811023 2.20616,-3.129226 0.11262,-2.15706 -1.60985,-3.688956 -3.4074,-3.782809 -0.47934,-0.02503 -1.08478,0.06352 -1.57664,0.278171 -5.78249,2.582007 -8.55752,2.797611 -12.99147,2.566107 -1.91739,-0.100109 -3.57634,-0.547217 -4.98309,-1.221482 8.1667,-2.217197 16.3628,-9.599902 16.83206,-18.58765 0.35039,-6.710853 -4.64713,-12.25898 -11.35799,-12.609364 -10.66546,-0.556861 -18.45104,8.169074 -18.97661,18.235353 -0.5944,11.384482 6.6059,20.772691 18.11021,21.37335 m 5.03419,-27.374751 c -0.31285,5.991832 -8.59749,12.769091 -15.18851,12.424963 -0.63142,-1.715254 -0.88457,-3.771254 -0.76569,-6.04815 0.35039,-6.710853 5.29933,-11.739659 11.411,-11.420559 2.87608,0.150165 4.69336,2.167666 4.5432,5.043746"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3064"
+ inkscape:connector-curvature="0" /><path
+ d="m 557.49703,78.931455 c -0.71996,-0.0073 -1.44235,0.225445 -2.04596,0.579367 -3.38164,2.125955 -5.55001,2.9441 -7.58991,2.923498 -5.6397,-0.05696 -8.31958,-8.004439 -8.21779,-18.083915 10e-4,-0.119994 0.16605,-4.558559 0.43634,-7.555979 7.80444,-0.401202 12.25271,-1.19632 15.14225,-2.127185 1.44477,-0.465432 2.53805,-1.774459 2.55381,-3.334378 0.0218,-2.159888 -1.76356,-3.617995 -3.56346,-3.636174 -0.35999,-0.0036 -0.72118,0.112723 -1.08237,0.229081 -1.92596,0.580579 -5.53306,1.264186 -12.25756,1.676295 1.18296,-10.188563 2.74286,-22.053431 2.80709,-28.4131 0.0194,-1.9199 -1.64356,-3.616783 -3.56346,-3.636173 -1.9199,-0.01939 -3.61678,1.643559 -3.63617,3.563459 -0.0594,5.879694 -1.74292,18.103332 -2.92951,28.651876 -2.15989,-0.02181 -4.44099,0.07515 -6.96085,0.0497 -1.9199,-0.01939 -3.61679,1.643559 -3.63618,3.563459 -0.0194,1.9199 1.64356,3.616783 3.56346,3.636173 2.27988,0.02303 4.44099,-0.07515 6.36089,-0.05576 -0.26786,2.757433 -0.41452,5.396091 -0.43391,7.315991 -0.0921,9.119526 1.78541,25.219317 15.34471,25.356262 3.95979,0.03999 7.81536,-1.48115 11.68182,-4.082232 1.08722,-0.709056 1.5781,-1.784155 1.59022,-2.984093 0.0206,-2.039893 -1.76355,-3.617994 -3.56346,-3.636173"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3066"
+ inkscape:connector-curvature="0" /><path
+ d="m 572.97945,56.113077 c -1.19993,0.01272 -2.27478,0.504148 -2.98329,1.59172 -2.71531,4.229022 -4.10307,9.164022 -4.05091,14.08374 0.10942,10.31941 7.87042,17.917562 18.18983,17.808146 12.59928,-0.133589 23.8956,-9.973923 23.75692,-23.053175 -0.10305,-9.719444 -7.25773,-16.723991 -16.97718,-16.620936 -3.4798,0.0369 -11.98533,1.447159 -11.93571,6.126891 0.0216,2.039883 1.83807,3.580713 3.63797,3.561629 0.71996,-0.0076 1.43865,-0.135261 2.03352,-0.621595 1.66718,-1.217743 3.9407,-1.841884 6.34056,-1.86733 5.87967,-0.06234 9.6389,3.618014 9.70125,9.497678 0.0903,8.519513 -7.63418,15.681822 -16.63366,15.777243 -6.47963,0.0687 -10.8452,-4.205258 -10.9139,-10.684888 -0.0369,-3.479801 0.88615,-6.96979 2.89423,-9.991247 0.35362,-0.603782 0.58597,-1.326288 0.57834,-2.046247 -0.0191,-1.799897 -1.59809,-3.583258 -3.63797,-3.561629"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3068"
+ inkscape:connector-curvature="0" /><path
+ d="m 694.10557,68.906195 c 0.30548,5.150944 -3.86388,9.84602 -9.01482,10.151504 -7.78631,0.461778 -13.65284,-7.244437 -14.24249,-17.186957 -0.86672,-14.614307 9.75019,-34.237286 21.96871,-34.961922 3.3541,-0.19892 6.13866,2.160368 6.27364,4.436367 0.0995,1.677051 -1.01318,3.185572 -0.91372,4.862623 0.10656,1.796841 1.6506,3.508435 3.80681,3.380558 3.59368,-0.213128 4.50741,-5.075756 4.29428,-8.669438 -0.43336,-7.307153 -7.65822,-11.566903 -13.88727,-11.197481 -18.92673,1.122475 -29.71021,26.044612 -28.72982,42.57555 0.68911,11.619571 8.08033,24.765063 21.85612,23.948071 9.22378,-0.547029 16.32296,-8.541348 15.77593,-17.765132 -0.19892,-3.354103 -1.5389,-5.678857 -1.6952,-8.314223 -0.0853,-1.437473 0.50562,-3.636312 8.17214,-4.090986 1.91663,-0.113668 3.49423,-1.890183 3.38056,-3.806814 -0.11367,-1.91663 -1.89018,-3.494225 -3.80681,-3.380557 -8.62484,0.511508 -15.37372,4.277671 -14.93326,11.704613 0.19892,3.354104 1.5389,5.678857 1.6952,8.314224"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3070"
+ inkscape:connector-curvature="0" /><path
+ d="m 737.34329,82.592398 c 5.1422,-0.428236 9.49718,-1.633825 15.5763,-5.270886 1.14606,-0.697519 1.87362,-2.08268 1.76407,-3.398125 -0.17927,-2.152547 -2.09257,-3.438196 -3.88635,-3.288811 -0.47835,0.03984 -1.06632,0.209217 -1.52475,0.488225 -5.38152,3.338134 -8.10213,3.925953 -12.52681,4.294436 -1.91337,0.159343 -3.61746,-0.05999 -5.10228,-0.538411 7.79316,-3.298142 14.91892,-11.718581 14.172,-20.687524 -0.55771,-6.696811 -6.2577,-11.520407 -12.95451,-10.962703 -10.64314,0.88635 -17.18102,10.582398 -16.34446,20.627614 0.9461,11.360662 9.34654,19.692248 20.82679,18.736185 m 1.29701,-27.803556 c 0.49795,5.979295 -6.79719,13.811757 -13.37442,14.359502 -0.85694,-1.614449 -1.385,-3.617539 -1.57422,-5.889671 -0.5577,-6.696811 3.66796,-12.347004 9.76684,-12.854913 2.87006,-0.239015 4.94279,1.51502 5.1818,4.385082"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3072"
+ inkscape:connector-curvature="0" /><path
+ d="m 766.31418,57.130463 c -0.19587,-1.789309 -1.62379,-3.805905 -1.71519,-4.640917 -0.36563,-3.340044 8.90139,-5.803079 12.59929,-6.207876 4.17506,-0.45703 7.60475,1.09901 9.31641,7.913209 2.97582,11.745919 7.33088,22.858014 18.06674,21.682795 5.48721,-0.600667 8.1673,-2.584087 7.8278,-5.685557 -0.20893,-1.908596 -2.06177,-3.39581 -3.97037,-3.186882 -2.26646,0.248101 -1.42016,1.362628 -4.64091,1.715194 -3.57862,0.391739 -6.8855,-3.350654 -10.23047,-16.263329 -2.50221,-9.624863 -9.399,-14.181444 -17.15268,-13.332675 -8.70797,0.953233 -19.91323,5.559916 -18.97306,14.148601 0.43091,3.936481 2.22623,8.206481 5.68556,7.8278 2.14717,-0.235044 3.38275,-2.181053 3.18688,-3.970363"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3074"
+ inkscape:connector-curvature="0" /><path
+ d="m 933.70012,45.805004 c -0.94823,0.149876 -1.72173,0.636604 -2.32049,1.460182 -1.6965,2.33347 -3.16243,3.051136 -4.22919,3.219746 -2.01498,0.318487 -3.64953,-0.03061 -4.67993,-6.549677 -1.36762,-8.652575 -3.63989,-17.648139 -12.29246,-16.28052 -7.46729,1.180275 -10.45426,9.184762 -13.79068,16.515531 -3.89771,8.391404 -6.33637,12.178575 -8.35135,12.497062 -0.8297,0.131142 -2.42678,0.0191 -4.05668,-10.292879 -1.36762,-8.652575 -3.63989,-17.648139 -12.29246,-16.28052 -7.46729,1.180275 -10.45426,9.184762 -13.79068,16.515531 -3.89772,8.391404 -6.33637,12.178575 -8.35135,12.497062 -0.8297,0.131142 -2.42678,0.0191 -4.05668,-10.292879 -1.44256,-9.126689 -4.58812,-17.498263 -13.47775,-16.093174 -7.34876,1.161539 -9.99276,8.26139 -12.76751,16.839768 -0.72954,2.302123 -1.45296,3.874346 -3.14945,6.207816 -0.59877,0.823578 -0.82321,1.709483 -0.67333,2.657711 0.29975,1.896455 2.22143,3.293573 4.11789,2.99382 0.94823,-0.149876 1.72172,-0.636604 2.32049,-1.460182 2.09567,-2.882522 3.38038,-5.515382 4.27204,-8.329087 2.8994,-9.327018 4.87043,-11.460912 7.00394,-11.798133 2.01498,-0.318487 3.687,0.267673 5.24197,10.105533 1.36761,8.652576 3.63988,17.64814 12.29246,16.28052 7.46729,-1.180274 10.45426,-9.184762 13.79068,-16.515531 3.89771,-8.391404 6.33636,-12.178575 8.35135,-12.497062 0.8297,-0.131141 2.42677,-0.01909 4.05668,10.292879 1.36762,8.652576 3.63989,17.64814 12.29246,16.28052 7.46729,-1.180274 10.45426,-9.184762 13.79068,-16.515531 3.89771,-8.391403 6.33637,-12.178575 8.35135,-12.497062 0.8297,-0.131141 2.42678,-0.01909 4.05668,10.292879 1.21774,7.704348 5.44842,13.717593 12.91571,12.537318 3.67438,-0.58077 6.57491,-2.983063 8.87017,-6.14011 0.59876,-0.823578 0.82321,-1.709483 0.67333,-2.657711 -0.29975,-1.896455 -2.22144,-3.293572 -4.11789,-2.99382"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3076"
+ inkscape:connector-curvature="0" /><path
+ d="m 974.3481,18.511134 c -0.0592,-0.355098 -0.23677,-0.690463 -0.41434,-1.025828 -2.50569,-4.813469 -7.91126,-7.318636 -13.00101,-6.470077 -13.02027,2.170733 -22.60724,17.637896 -20.51544,30.184707 1.1051,6.628504 6.31356,12.329599 14.00736,11.046893 7.57543,-1.262972 14.1643,-6.254471 19.35238,-13.080576 1.24301,3.077482 3.96578,9.192987 7.87186,8.541767 2.01222,-0.335477 3.25498,-2.367514 2.95897,-4.143006 -0.11841,-0.710197 -0.47354,-1.380928 -0.92731,-1.913557 -2.34774,-2.406678 -4.08399,-6.253533 -4.99175,-11.698376 -0.27628,-1.657126 -2.13079,-3.294446 -4.14301,-2.958969 -1.0653,0.177605 -1.93329,0.808943 -2.50535,1.75591 -5.34576,9.52883 -12.05296,15.269997 -18.79983,16.394832 -2.95915,0.493348 -5.05039,-1.104506 -5.72135,-5.128955 -1.46031,-8.759095 6.31188,-20.517319 14.59751,-21.898694 2.01223,-0.335477 4.49799,0.709974 5.54367,2.603795 0.71027,1.341458 2.18991,2.189682 3.72867,1.933141 2.13059,-0.355211 3.25497,-2.367514 2.95897,-4.143007"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3078"
+ inkscape:connector-curvature="0" /><path
+ d="m 1050.1537,33.606686 c -0.1427,-0.949331 -0.6236,-1.726476 -1.4426,-2.331431 -3.0032,-2.218169 -4.3744,-4.074948 -6.1585,-15.941577 -0.6958,-4.627986 -3.1491,-12.8749 -11.4558,-11.626069 -6.0519,0.9098626 -11.1057,6.0382129 -17.8586,22.464706 -2.9707,-11.688225 -8.3085,-22.1711575 -18.27649,-20.6725603 -3.67866,0.5530537 -6.59721,2.9334125 -8.91621,6.0730673 -0.60495,0.819041 -0.83607,1.703229 -0.69334,2.652559 0.28544,1.898661 2.19654,3.310226 4.0952,3.024779 0.94933,-0.142724 1.72648,-0.623607 2.33143,-1.442648 1.71404,-2.320614 3.18535,-3.027208 4.25334,-3.187772 4.03467,-0.606575 9.41277,6.108506 12.58837,27.231107 0.2676,1.779994 1.9592,3.345906 4.0952,3.024778 1.3053,-0.196244 2.5036,-1.104489 2.9185,-2.380355 9.3898,-27.137543 14.3971,-29.346548 16.5331,-29.667676 1.1866,-0.178405 2.5339,0.711193 3.2653,5.576511 1.7841,11.86663 3.8565,16.773056 9.0438,20.604439 0.819,0.604955 1.7032,0.836071 2.6526,0.693348 1.8986,-0.285447 3.3102,-2.196546 3.0247,-4.095206"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3080"
+ inkscape:connector-curvature="0" /><path
+ d="m 1090.5861,62.101726 c -0.8184,-6.186086 1.6399,-14.137232 6.0332,-22.102261 1.0267,4.100754 1.784,7.995072 2.2247,11.326042 1.1805,8.922239 -2.6703,13.668324 -5.4064,14.03033 -0.8328,0.110176 -2.5367,-0.874847 -2.8515,-3.254111 m -7.1378,0.944366 c 0.6296,4.758528 4.6286,10.281733 10.9336,9.447544 9.1602,-1.211935 12.9378,-12.000623 11.5999,-22.112495 -0.7397,-5.59127 -2.3821,-12.515681 -4.0491,-18.710555 4.3757,-6.268064 9.6471,-12.170468 13.6395,-15.84587 0.8573,-0.839694 1.3104,-1.989063 1.153,-3.178695 -0.2675,-2.022374 -2.2566,-3.3328079 -4.041,-3.0967168 -0.7138,0.094437 -1.4119,0.307837 -1.9437,0.8623868 -3.4606,3.120852 -7.3586,7.510045 -11.2968,12.509781 -3.4144,-11.168637 -7.2574,-21.9174538 -9.4002,-28.0493697 -0.5773,-1.6182665 -2.1622,-2.619028 -3.8277,-2.3986762 -2.0224,0.26757 -3.2296,2.1219316 -3.1125,3.922119 1.0509,11.6023877 -5.1253,26.2187599 -12.1442,27.1473849 -6.1861,0.81845 -10.0207,-2.547679 -10.9336,-9.447544 -0.4564,-3.449933 -0.5893,-5.3690934 -0.2514,-10.1345733 -0.032,-0.2379264 0.056,-0.491593 0.024,-0.7295194 -0.2361,-1.7844479 -1.8997,-3.38002602 -4.0411,-3.09671661 -4.5206,0.59809765 -3.5781,9.55183001 -3.0114,13.83450531 l 0.1416,1.07067 c 1.2906,9.754982 8.547,17.026045 19.0158,15.640977 8.9222,-1.180456 14.0695,-9.850494 16.5839,-18.293211 1.8104,5.449616 3.8815,11.954178 5.6516,18.014349 -6.33,9.79486 -12.123,21.818574 -10.6907,32.644225"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3082"
+ inkscape:connector-curvature="0" /><path
+ d="m 1177.2238,4.5189424 c 0.2387,-0.025235 0.4647,-0.1698055 0.7034,-0.1950408 4.0884,-1.2769604 12.4166,-2.3988685 20.6507,-3.2694862 1.9093,-0.2018824 3.4034,-2.04921897 3.2015,-3.9585739 -0.2019,-1.9093549 -2.0492,-3.4033965 -3.9586,-3.2015142 -8.4727,0.8958531 -16.8009,2.0177615 -22.0574,3.6595678 -1.6329,0.5346511 -2.6748,2.09284757 -2.4982,3.7635331 0.2271,2.1480243 2.1686,3.3907789 3.9586,3.2015142"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3084"
+ inkscape:connector-curvature="0" /><path
+ d="m 1269.0334,-5.5715472 c -0.019,-0.2392199 -0.048,-0.5980506 -0.1872,-0.8276045 -1.5828,-4.6877383 -3.0072,-8.9067193 -3.6549,-16.9205853 -0.8312,-10.286456 2.5891,-23.083556 7.7323,-23.499194 2.2726,-0.183654 3.6946,1.025733 3.8783,3.298322 0.4639,5.741277 -2.8344,9.619574 -2.1384,18.23149 0.5413,6.698157 5.7449,10.00977 10.6876,10.091903 12.5361,0.190836 14.3846,2.208495 14.5876,4.720304 0.493,6.1001076 -10.4193,14.0850456 -19.2704,14.8003297 -2.0334,0.1643221 -4.1248,-0.3890176 -6.0639,-2.0381768 -0.7757,-0.6596636 -1.6419,-0.9508323 -2.5988,-0.8735043 -1.9138,0.154656 -3.453,1.9645232 -3.2983,3.8782824 0.077,0.9568795 0.5038,1.7651536 1.2795,2.4248173 3.2318,2.7485987 7.3143,4.1041637 11.2614,3.7851857 10.2865,-0.831276 26.9207,-9.5194102 25.8671,-22.556894 -0.7636,-9.449186 -10.0473,-11.10678 -21.6265,-11.374944 -2.2919,-0.05557 -3.4167,-0.566625 -3.6487,-3.437263 -0.464,-5.741278 2.8343,-9.619575 2.1384,-18.231491 -0.493,-6.100107 -5.5348,-10.387931 -11.6349,-9.894965 -13.9943,1.130922 -15.0442,22.404623 -14.3289,31.255759 0.7056,8.731526 2.4467,13.8880561 4.0294,18.575794 0.4845,1.5259313 2.1361,2.5963752 3.691,2.4707172 2.153,-0.1739881 3.4433,-2.0841332 3.2983,-3.8782824"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3086"
+ inkscape:connector-curvature="0" /><path
+ d="m 1367.2048,-5.4291228 c -3.2332,0.2101245 -3.1195,3.8103287 -7.0711,4.0671475 -5.0294,0.3268602 -8.0798,-13.3040157 -8.8192,-24.6800057 -0.1245,-1.915956 -1.9099,-3.483467 -3.8259,-3.358949 -1.9159,0.124518 -3.2517,1.774624 -3.39,3.346903 0,1.923739 -1.6875,25.84384694 -13.9018,26.63765046 -6.2268,0.40468414 -9.8288,-3.20933136 -10.2802,-10.15467236 -0.5058,-7.7835721 0.6216,-8.9391321 0.4971,-10.8550881 -0.1167,-1.796209 -1.6705,-3.499032 -3.8259,-3.358949 -1.437,0.09339 -2.6997,1.017228 -3.1973,2.612854 -0.089,0.486772 -1.1568,4.404302 -0.6587,12.0681268 0.6381,9.81927515 7.3942,17.5574214 17.932,16.8725713 8.981,-0.5836791 13.9572,-7.28050497 16.6582,-13.8294517 1.9225,5.52695007 5.7345,12.3741433 13.2786,11.8838529 6.1071,-0.3969018 9.2841,-5.17299234 9.62,-5.55558127 0.4401,-0.62986584 0.7448,-1.49144613 0.6903,-2.32967693 -0.1167,-1.7962089 -1.7901,-3.4912501 -3.7061,-3.3667319"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3088"
+ inkscape:connector-curvature="0" /><path
+ d="m 1408.4749,-22.933681 c 0.9588,-0.04756 1.78,-0.448742 2.4634,-1.203531 9.6821,-10.692835 13.1744,-22.640562 12.6512,-33.187582 -0.3864,-7.790413 -4.6676,-16.589108 -12.8176,-16.18481 -7.1912,0.356734 -10.5014,6.288033 -12.5952,12.519422 -2.8376,8.190648 -3.7298,21.691456 -3.0045,36.313461 0.5946,11.98525 5.083,27.3817888 20.5439,26.6148112 7.1912,-0.3567338 12.7895,-3.7582962 18.8266,-10.4255935 0.6834,-0.7547884 1.0014,-1.6115947 0.9538,-2.5704147 -0.095,-1.91764 -1.8563,-3.512341 -3.7739,-3.417212 -0.9588,0.04757 -1.78,0.448742 -2.4634,1.203531 -5.3536,5.9125085 -9.1057,7.7807095 -13.8998,8.018532 -8.5095,0.422135 -12.4015,-7.795138 -12.996,-19.780388 -0.7016,-14.142595 0.4541,-27.175882 2.6559,-33.652921 2.1057,-5.991684 3.7123,-7.51316 6.1093,-7.632071 1.4383,-0.07135 4.9428,2.7585 5.2698,9.350387 0.4281,8.62938 -2.2006,18.611897 -10.7436,28.046752 -0.6834,0.754788 -1.0014,1.611595 -0.9538,2.570415 0.095,1.91764 1.8563,3.512341 3.7739,3.417212"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3090"
+ inkscape:connector-curvature="0" /><path
+ d="m 1469.9278,-29.383234 c 0.017,0.479704 -0.6353,2.423784 -0.4986,2.899278 -6.0885,18.1047464 -12.2868,19.4030319 -15.4049,19.5124979 l -1.0793,0.037892 c -2.9981,0.1052558 -4.8644,-1.7504126 -5.0076,-5.8278959 -0.3115,-8.874524 8.9205,-19.524999 17.3153,-19.819715 2.7583,-0.09683 4.5951,0.919349 4.6751,3.197943 m 20.3206,24.7422782 c -0.042,-1.1992599 -0.8038,-2.3732616 -2.0283,-3.0507153 -0.244,-0.1115055 -5.3778,-2.6929869 -5.7567,-13.4863269 -0.055,-1.559038 -0.027,-4.201627 0.1072,-7.208198 0.5215,-12.505986 1.5711,-27.071803 2.2336,-38.982369 0.1599,-2.287015 0.5659,-7.824671 0.5238,-9.023931 -0.059,-1.678964 -1.4498,-3.671397 -3.7283,-3.591402 -1.7989,0.06315 -3.3075,1.557001 -3.4842,3.364312 -1.2473,15.773459 -2.6757,26.390139 -5.4843,38.736267 -2.3459,-1.838821 -4.6329,-1.998681 -7.6311,-1.893425 -13.1918,0.463126 -24.7045,14.55574 -24.2582,27.267896 0.2358,6.7158555 4.6605,13.0445141 12.4557,12.770849 4.4373,-0.1557786 14.5889,-1.7129298 22.0576,-21.547163 l 0.013,0.359778 c 0.5179,14.7508978 8.9612,19.2574514 9.9375,19.7034736 0.4881,0.2230111 1.0919,0.3218862 1.5716,0.3050453 1.7989,-0.063154 3.5473,-1.5654227 3.4715,-3.7240907"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3092"
+ inkscape:connector-curvature="0" /><path
+ d="m 1499.1069,-57.573307 c -2.3993,0.0545 -3.5173,3.68082 -3.4628,6.080199 0.046,2.039472 1.6414,3.563648 3.6808,3.517326 2.3994,-0.0545 3.5174,-3.680821 3.4629,-6.080199 -0.046,-2.039472 -1.6414,-3.563649 -3.6809,-3.517326 m 10.6875,47.7696336 c -1.9195,0.043598 -3.8117,1.2868866 -5.9712,1.3359342 -2.7593,0.062672 -4.8614,-2.6502988 -4.9895,-8.2888388 -0.076,-3.359131 0.2183,-11.527938 1.8353,-19.606729 -0.01,-0.239938 0.1063,-0.602571 0.1009,-0.842509 -0.041,-1.799534 -1.5214,-3.566373 -3.6809,-3.517325 -1.6795,0.03815 -3.0946,1.15057 -3.4164,2.838309 -1.8405,8.804056 -2.1242,17.45274 -2.037,21.291746 0.1444,6.358354 3.1135,15.5333055 12.3511,15.3234904 4.079,-0.092646 9.5757,-1.1777463 9.4885,-5.0167523 -0.049,-2.1594409 -1.8812,-3.5581986 -3.6808,-3.5173255"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3094"
+ inkscape:connector-curvature="0" /><path
+ d="m 1573.8285,-5.7395963 c -0.01,-0.9599773 -0.372,-1.7975393 -1.0969,-2.5126809 -2.6577,-2.6221858 -3.7514,-4.6548918 -3.832,-16.6546088 -0.032,-4.679889 -1.2888,-13.191632 -9.6886,-13.135149 -6.1198,0.04115 -11.8507,4.399801 -20.868,19.700766 -1.2807,-11.991647 -5.0756,-23.126393 -15.1554,-23.058613 -3.7199,0.02501 -6.9469,1.96676 -9.6883,4.745254 -0.7151,0.724824 -1.0695,1.567228 -1.063,2.527205 0.013,1.919955 1.7041,3.588622 3.6241,3.575712 0.96,-0.0065 1.7975,-0.372097 2.5127,-1.096921 2.0262,-2.053669 3.583,-2.54415 4.6629,-2.551412 4.0799,-0.02744 8.4499,7.383369 8.5935,28.742865 0.012,1.7999575 1.4642,3.5902357 3.6241,3.5757114 1.32,-0.00888 2.6351,-0.7377369 3.227,-1.9417431 13.1487,-25.5289663 18.4189,-27.0044623 20.5788,-27.0189873 1.2,-0.0081 2.4072,1.063843 2.4403,5.983726 0.081,11.999717 1.4354,17.150741 6.0259,21.679971 0.7249,0.7151415 1.5673,1.0694858 2.5272,1.0630305 1.92,-0.012911 3.5887,-1.7041711 3.5757,-3.6241258"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3096"
+ inkscape:connector-curvature="0" /><path
+ d="m 1591.7464,28.161283 c 0.059,-4.559615 3.2733,-11.838695 8.0413,-18.617637 1.7518,3.742947 2.8974,7.958112 2.8354,12.757707 -0.07,5.399543 -3.4838,9.555777 -7.3235,9.506152 -2.2798,-0.02946 -3.5826,-1.366415 -3.5532,-3.646222 m 17.605,-62.177682 c 0.011,-0.839929 -0.3382,-1.684513 -0.9289,-2.412206 -2.8379,-3.276945 -6.7774,-4.887993 -10.977,-4.942269 -10.3192,-0.133366 -18.0978,7.446754 -18.2311,17.765882 -0.1505,11.639017 10.3172,18.8549118 16.3374,26.6133515 -5.8634,7.9648845 -10.9009,17.0205575 -11.0048,25.0598775 -0.079,6.119483 4.5401,10.859578 10.6596,10.938667 9.3592,0.120959 14.5151,-8.813165 14.6159,-16.612506 0.098,-7.559361 -2.2215,-13.829868 -5.2746,-19.0297513 2.6817,-3.2056095 5.4787,-6.0497068 8.0264,-8.1769583 0.8492,-0.7090838 1.2231,-1.784343 1.2356,-2.7442619 0.026,-2.0398276 -1.6334,-3.6214105 -3.5532,-3.6462225 -0.84,-0.01086 -1.683,0.21827 -2.4107,0.808915 -2.5477,2.1272514 -5.1031,4.8544599 -7.6601,7.7016505 -1.1813,-1.4553859 -2.4842,-2.7923367 -3.6686,-4.0077429 -6.0404,-6.1985716 -10.1718,-11.5324186 -10.1035,-16.8119726 0.084,-6.479453 4.4592,-10.743271 10.9386,-10.65953 2.5198,0.03257 4.3088,0.895759 5.7285,2.474237 0.7107,0.729243 1.6644,1.22161 2.6243,1.234016 2.0398,0.02636 3.6214,-1.633339 3.6462,-3.553176"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3098"
+ inkscape:connector-curvature="0" /><path
+ d="m 1681.2748,-17.2694 c 0.013,-0.23963 0.033,-0.599075 -0.073,-0.845367 -0.9317,-4.859212 -1.7702,-9.23252 -1.3238,-17.260113 0.5729,-10.304074 5.6989,-22.518344 10.851,-22.231881 2.2764,0.126577 3.5211,1.517825 3.3945,3.794307 -0.3197,5.751111 -4.114,9.145715 -4.5937,17.772381 -0.3731,6.70963 4.3328,10.69704 9.2186,11.449439 12.3941,1.890991 13.9516,4.140932 13.8117,6.657043 -0.3397,6.110555 -12.235,12.5400944 -21.1013,12.0471104 -2.0369,-0.1132531 -4.0338,-0.9453979 -5.7311,-2.8425493 -0.6789,-0.7588606 -1.4976,-1.1649399 -2.4561,-1.2182354 -1.9171,-0.1065917 -3.6877,1.4775524 -3.7943,3.3945894 -0.053,0.9585185 0.2595,1.8172106 0.9384,2.5760712 2.8288,3.161919 6.6895,5.0591759 10.6433,5.2790201 10.3041,0.5729274 27.9639,-5.7764749 28.69,-18.8362894 0.5263,-9.465371 -8.4464,-12.367989 -19.882,-14.205684 -2.2632,-0.366206 -3.3082,-1.025242 -3.1483,-3.900798 0.3198,-5.751111 4.1141,-9.145714 4.5937,-17.772381 0.3398,-6.110556 -4.0732,-11.043161 -10.1837,-11.38292 -14.0184,-0.779448 -17.9466,20.154764 -18.4396,29.02106 -0.4863,8.746482 0.5385,14.091634 1.4702,18.950846 0.2728,1.577578 1.7638,2.862335 3.3214,2.94894 2.1567,0.119915 3.6944,-1.597367 3.7943,-3.394589"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3100"
+ inkscape:connector-curvature="0" /><path
+ d="m 1734.0549,-18.881608 c 0.1514,-1.793625 -0.8628,-4.046871 -0.7922,-4.883896 0.2825,-3.3481 9.85,-3.985966 13.5569,-3.673204 4.1851,0.353118 7.2522,2.538733 7.6236,9.554796 0.6652,12.0987473 2.8056,23.8402887 13.5673,24.7483065 5.5005,0.464098 8.5115,-0.967818 8.7739,-4.0767681 0.1614,-1.9132001 -1.3714,-3.7285012 -3.2846,-3.8899266 -2.2719,-0.1916927 -1.6554,1.0645927 -4.8839,0.7921873 -3.5873,-0.3026726 -6.114,-4.6103787 -6.9174,-17.9250541 -0.6076,-9.92622 -6.5012,-15.722258 -14.2736,-16.378049 -8.729,-0.736503 -20.6102,1.632966 -21.3367,10.242366 -0.3329,3.945975 0.6091,8.481239 4.0768,8.773823 2.1524,0.181603 3.7386,-1.490956 3.8899,-3.284581"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3102"
+ inkscape:connector-curvature="0" /><path
+ d="m 1795.8561,-46.924648 c -2.3858,-0.260411 -3.9694,3.188131 -4.2298,5.573959 -0.2213,2.027954 1.1602,3.748013 3.1882,3.969362 2.3858,0.26041 3.9693,-3.188132 4.2297,-5.57396 0.2214,-2.027953 -1.1601,-3.748012 -3.1881,-3.969361 m 4.3351,48.758249 c -1.9087,-0.2083285 -3.9475,0.7762574 -6.0948,0.5418878 -2.7437,-0.2994723 -4.4722,-3.2645323 -3.8602,-8.8712279 0.3646,-3.340159 1.7271,-11.3999109 4.3889,-19.1971269 0.026,-0.238582 0.1844,-0.583437 0.2104,-0.82202 0.1953,-1.78937 -1.0409,-3.734992 -3.1881,-3.969361 -1.6701,-0.182288 -3.2188,0.735091 -3.7589,2.366109 -2.9785,8.486922 -4.3931,17.023841 -4.8098,20.8411661 -0.6901,6.3224439 1.0511,15.8073709 10.2365,16.8099519 4.0559,0.442698 9.6475,0.08731 10.0641,-3.7300172 0.2344,-2.1472451 -1.3987,-3.7740538 -3.1881,-3.9693618"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3104"
+ inkscape:connector-curvature="0" /><path
+ d="m 1841.2985,-13.770517 c -0.064,0.475671 -1.0351,2.281886 -0.9805,2.773636 -9.0551,16.8183395 -15.3836,17.0525188 -18.4754,16.63447 l -1.0703,-0.1447093 c -2.9729,-0.40197 -4.4995,-2.5458434 -3.9528,-6.5890486 1.1899,-8.7999173 12.0861,-17.7405611 20.4103,-16.6150451 2.7351,0.369813 4.3742,1.681259 4.0687,3.940697 m 15.856,27.815367 c 0.1608,-1.189178 -0.3919,-2.474832 -1.4847,-3.349127 -0.2217,-0.151075 -4.8464,-3.5615085 -3.3994,-14.2641106 0.2091,-1.5459314 0.6817,-4.1460513 1.3215,-7.0868384 2.6236,-12.238821 6.115,-26.418889 8.7771,-38.047042 0.5433,-2.227281 1.8776,-7.617114 2.0383,-8.806292 0.2251,-1.664849 -0.8096,-3.863323 -3.0691,-4.16882 -1.7837,-0.241182 -3.5226,0.97681 -4.0016,2.728419 -3.8901,15.33705 -7.0888,25.560672 -11.9396,37.25616 -2.0022,-2.208182 -4.2295,-2.751518 -7.2025,-3.153488 -13.0809,-1.768668 -26.8057,10.180104 -28.5101,22.7853911 -0.9004,6.6593969 2.3935,13.6437309 10.1232,14.6888529 4.3999,0.594915 14.6688,0.772418 25.376,-17.5178253 l -0.048,0.3567537 c -1.9777,14.6268896 5.5845,20.4930596 6.4715,21.0973616 0.4435,0.302151 1.022,0.501463 1.4977,0.565778 1.7838,0.241182 3.7605,-0.944652 4.0499,-3.085173"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3106"
+ inkscape:connector-curvature="0" /><path
+ d="m 1866.2363,49.764497 c 0.7643,-4.495501 5.0669,-11.189095 10.827,-17.148019 1.1511,3.969047 1.6303,8.310763 0.8258,13.042869 -0.9049,5.32362 -4.9213,8.901115 -8.707,8.257563 -2.2478,-0.382108 -3.3279,-1.904662 -2.9458,-4.152413 m 27.0202,-58.7019074 c 0.1407,-0.8281186 -0.073,-1.7165726 -0.5443,-2.5269436 -2.2962,-3.676835 -5.9388,-5.878438 -10.0794,-6.582322 -10.174,-1.729544 -19.0325,4.554739 -20.762,14.7287684 -1.9508,11.4753586 7.2733,20.2250096 12.0196,28.8220396 -7.0259,6.960952 -13.4048,15.127427 -14.7522,23.053706 -1.0257,6.033436 2.8038,11.43158 8.8372,12.457239 9.2276,1.568656 15.7047,-6.459397 17.0119,-14.14907 1.267,-7.453068 -0.053,-14.007045 -2.2644,-19.616945 3.1457,-2.751731 6.3493,-5.128449 9.1957,-6.835567 0.9487,-0.569039 1.4847,-1.573433 1.6455,-2.519854 0.3419,-2.011145 -1.0529,-3.830637 -2.9457,-4.152413 -0.8281,-0.140777 -1.6965,-0.04495 -2.5068,0.4259 -2.8464,1.707117 -5.7933,4.005755 -8.7603,6.422688 -0.9417,-1.620742 -2.0218,-3.143296 -3.0038,-4.527432 -5.0077,-7.059096 -8.2634,-12.968315 -7.3786,-18.1736322 1.086,-6.3883438 6.0689,-9.9232538 12.4573,-8.8372608 2.4843,0.42233 4.1181,1.5521165 5.2763,3.3313828 0.5891,0.8304818 1.4551,1.4645818 2.4015,1.6254696 2.0112,0.3418865 3.8307,-1.0529112 4.1525,-2.9457538"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3108"
+ inkscape:connector-curvature="0" /><path
+ d="m 1916.2833,28.581646 c 5.0526,1.047205 9.5707,1.125768 16.4315,-0.638561 1.2968,-0.343977 2.3872,-1.466034 2.6551,-2.758563 0.4384,-2.115048 -1.0319,-3.890388 -2.7945,-4.255692 -0.47,-0.09741 -1.0819,-0.10168 -1.6006,0.03591 -6.1071,1.675446 -8.8827,1.467822 -13.2303,0.566739 -1.8801,-0.389657 -3.452,-1.083118 -4.7403,-1.962874 8.4085,-0.953368 17.6291,-7.008073 19.4556,-15.8207724 1.3639,-6.5801487 -2.7347,-12.8218376 -9.3149,-14.1856386 -10.4577,-2.167469 -19.4763,5.2771791 -21.522,15.1474022 -2.3136,11.1627518 3.3801,21.5341048 14.6604,23.8720488 m 9.1264,-26.2950291 c -1.2177,5.8751331 -10.4341,11.3179651 -16.8967,9.9785181 -0.3641,-1.791159 -0.3026,-3.861771 0.1601,-6.0943211 1.3638,-6.5801488 7.018,-10.8004853 13.0106,-9.5584524 2.8201,0.5844861 4.3105,2.8541917 3.726,5.6742554"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3110"
+ inkscape:connector-curvature="0" /><path
+ d="m 1963.7977,33.329534 c -0.2761,1.044117 -0.057,2.094924 0.4546,2.975053 0.4574,0.617427 2.8535,4.229973 8.4222,5.70238 10.6731,2.822113 22.4216,-4.994382 25.2437,-15.667574 2.5154,-9.513063 -1.4314,-18.9970734 -11.6405,-21.6964861 -14.2696,-3.7730426 -31.827,9.5825691 -45.4026,23.3703711 -0.5014,0.48804 -0.7708,1.037431 -0.9242,1.617496 -0.4601,1.740194 0.4719,3.848495 2.5602,4.400647 1.1601,0.306752 2.5896,0.06411 3.4764,-0.942641 13.5756,-13.787803 29.5166,-23.847075 38.4496,-21.485089 6.0327,1.595108 8.2995,6.16644 6.5203,12.895191 -1.9018,7.192804 -10.1777,12.203758 -16.4424,10.5473 -4.4085,-1.165655 -3.331,-3.363218 -6.3473,-4.160772 -1.8562,-0.490802 -3.8485,0.471904 -4.37,2.444124"
+ style="font-size:120px;letter-spacing:-4.5px"
+ id="path3112"
+ inkscape:connector-curvature="0" /><path
+ d="m 1376.733,-52.430002 c -2.381,0.30113 -3.1198,4.02326 -2.8187,6.40429 0.2557,2.02391 1.9995,3.3758 4.0233,3.11984 2.381,-0.30115 3.1199,-4.02327 2.8187,-6.4043 -0.2556,-2.02391 -1.9994,-3.3758 -4.0233,-3.11983 m 15.547,46.4160703 c -1.9048,0.24092 -3.659,1.67233 -5.802,1.94337 -2.7382,0.34634 -5.1084,-2.13592 -5.8161,-7.7313303 -0.4213,-3.33347 -0.9693,-11.48919 -0.1923,-19.6915 -0.035,-0.23763 0.044,-0.61031 0.014,-0.84841 -0.226,-1.78577 -1.8804,-3.39087 -4.0234,-3.11983 -1.6666,0.21084 -2.9597,1.46294 -3.1061,3.17484 -0.9247,8.94672 -0.3168,17.57868 0.1651,21.38833 0.798,6.3097203 4.6955,15.1303903 13.8625,13.9710003 4.0478,-0.512 9.4036,-2.15699 8.9218,-5.96664 -0.271,-2.14293 -2.2374,-3.34569 -4.0232,-3.11983"
+ style="font-size:120px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:-4.5px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Pecita;-inkscape-font-specification:Pecita Bold"
+ id="path3094-2"
+ inkscape:connector-curvature="0" /></g>
+</svg> \ No newline at end of file
diff --git a/configs/conferences/foss4g-2016/main.less b/configs/conferences/foss4g-2016/main.less
new file mode 100644
index 0000000..1371d25
--- /dev/null
+++ b/configs/conferences/foss4g-2016/main.less
@@ -0,0 +1,35 @@
+@import "../../../assets/css/_structure.less";
+
+@green: #49a942;
+@blue: #2980b9;
+@dark: #2c3e50;
+
+@link-color: @green;
+@panel-primary-border: @green;
+
+@text-color: @dark;
+
+footer {
+ background-color: #444;
+ color: #ccc;
+ box-shadow: inset 0 5px 10px -5px black;
+
+ a {
+ font-style: italic;
+ color: #ddd;
+ &:hover {
+ text-decoration: underline;
+ color: #ddd;
+ }
+ }
+}
+
+
+.logo {
+ background-image: url(foss4g-logo_slogan.svg);
+ background-size: contain;
+ background-position: center;
+ background-repeat: no-repeat;
+ height: 200px;
+ margin: 20px 0;
+}