require("lib/config.php");
require("lib/database.php");
require("lib/session.php");
- require("lib/web/templates.php");
-
+ require("lib/modules/templates.php");
+ require("lib/modules/gallery.php");
$db = new database($cfg["db"]);
$sess = new session($db);
$vars = array();
// }
}
$params = array();
- if (isset($_POST) && count($_POST) > 0){
- $params = $_POST;
- } elseif (isset($_GET)){
- $params = $_GET;
- }
+ $html["session"] = $vars["session"];
+ $params = json_decode(file_get_contents('php://input'), true);
$html["params"] = $params;
if(count($vars["session"]) == 0) {
header('Content-Type: application/json');
}
if (isset($params["get"])){
if (strpos($params["get"], 'gallery_') === 0) {
-
+ $gl = new Gallery($db);
+ if ($params["get"] == "gallery_galleries"){
+ $html["data"] = $gl->getGalleries();
+ }
+ elseif ($params["get"] == "gallery_gallery"){
+ $html["data"] = $gl->getGallery($params["id"]);
+ }
+ elseif ($params["get"] == "gallery_items"){
+ $html["data"] = $gl->getGalleryItems($params["id"]);
+ }
} elseif (strpos($params["get"], 'rdv_') === 0){
} elseif (strpos($params["get"], 'website_') === 0){
require("lib/session.php");
$vars = array();
$vars["skeleton"] = "index.html";
- $vars["page"] = 'home.html';
+ $vars["page"] = 'index.html';
$vars["config"] = $cfg;
$vars["requri"] = $_SERVER["REQUEST_URI"];
$postdata = [];
if (($vars["skeleton"] != 'login.html') && (!file_exists($cfg["templatepath"].'/pages/'.$vars["page"].'.mustache'))){
if (substr($vars["page"],0,5) == "login"){
- $vars["page"] = "home.html";
+ $vars["page"] = "index.html";
} else {
$vars["origpage"] =$vars["page"];
$vars["page"] = 'error.html';
+++ /dev/null
-let galleries = {
- tbl: null,
- init: function(){
- console.log("Init Galleries!");
- galleries.tbl= new Tabulator("#tbl_galleries",{
- height: "calc(100vh - 60px)",
- layout: "fitColumns",
- responsiveLayout:true,
- selectable: 1,
- rowContext:function(e, row){ e.preventDefault(); },
- columns: [
- {title: "Gallerie", field: "name"},
- ]
- });
- galleries.gettbldata();
- },
- gettbldata: function(){
- // postData()
- }
-}
\ No newline at end of file
--- /dev/null
+let gallery = {
+ tbl: null,
+ tblitems: null,
+ init: function(){
+ console.log("Init Galleries!");
+ gallery.tbl= new Tabulator("#tbl_galleries",{
+ height: "calc(100vh - 60px)",
+ layout: "fitColumns",
+ responsiveLayout:true,
+ selectable: 1,
+ rowContext:function(e, row){ e.preventDefault(); },
+ columns: [
+ {title: "Gallerie", field: "gallery"},
+ {title: "description",field: "description"}
+ ]
+ });
+ gallery.tblitems =new Tabulator("#tbl_galleryitems",{
+ height: "calc(100vh - 246px)",
+ layout: "fitColumns",
+ responsiveLayout:true,
+ selectable: 1,
+ rowContext:function(e, row){ e.preventDefault(); },
+ columns: [
+ {title: "Image", field: "filename",formatter:"html",},
+ {title: "Type", field: "filetype"},
+ {title: "description",field: "description"},
+ {title: "publication",field: "publishdate",formatter:"datetime",headerSort:true,formatterParams:{inputFormat:"YYYY-MM-DD",outputFormat:"DD.MM.YYYY",invalidPlaceholder:""}},
+ {title: "fin publication",field: "unpublishdate",formatter:"datetime",headerSort:true,formatterParams:{inputFormat:"YYYY-MM-DD",outputFormat:"DD.MM.YYYY",invalidPlaceholder:""}},
+ ]
+ });
+ gallery.gettbldata();
+ },
+ gettbldata: function(){
+ postData({"get":"gallery_galleries"}).then(data => {
+ console.log("Gallery Data",data.data);
+ gallery.tbl.setData(data.data);
+
+ })
+ },
+ edit: function(){
+ let sel = gallery.tbl.getSelectedData();
+ if (sel[0]){
+ myapp.viewpanel("gallery");
+ }
+ },
+ add: function(){
+
+ },
+ confirmRemove: function(){
+
+ },
+ remove: function(){
+
+ }
+}
\ No newline at end of file
--- /dev/null
+function initpage(){
+
+}
\ No newline at end of file
logout: function() {\r
postData(location.href, { "logout": "1" }).then (data => { location.href = 'login.html';});\r
},\r
- reloadpage() { },\r
- changedataset: function(){},\r
- getCurrentSchemata: function(){\r
- return schemata;\r
- },\r
- changedataset: function(){\r
- let csel = document.getElementById("current_schemata").value;\r
- schemata = csel;\r
- postData("db.cgi",{"fn":"setsessiondata","params":{"schemata":csel}}).then(data => {\r
- document.getElementById("current_schemata").dataset.selected = csel;\r
- });\r
- },\r
- setschemata(data){\r
- },\r
- reload_page: function() {\r
- location.href = location.href;\r
- },\r
+\r
viewpanel: function(pnlname){\r
let panels = document.getElementsByClassName("panel");\r
- let toolbars = document.getElementsByClassName("paneltoolbar");\r
+ // let toolbars = document.getElementsByClassName("paneltoolbar");\r
currentview = pnlname;\r
for (let p=0;p<panels.length;p++){\r
panels[p].style.display = 'none';\r
}\r
- for (let p=0;p<toolbars.length;p++){\r
- toolbars[p].style.display = 'none';\r
- }\r
+ // for (let p=0;p<toolbars.length;p++){\r
+ // toolbars[p].style.display = 'none';\r
+ // }\r
if (document.getElementById('pnl_' + pnlname)){\r
document.getElementById('pnl_' + pnlname).style.display = 'block';\r
}\r
- if (document.getElementById('tlb_' +pnlname)){\r
- document.getElementById('tlb_' +pnlname).style.display = 'block';\r
- }\r
+ // if (document.getElementById('tlb_' +pnlname)){\r
+ // document.getElementById('tlb_' +pnlname).style.display = 'block';\r
+ // }\r
return false;\r
},\r
viewdialog: function(dlgname){\r
console.log(api);
// var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(e){var t="";var n,r,i,s,o,u,a;var f=0;e=Base64._utf8_encode(e);while(f<e.length){n=e.charCodeAt(f++);r=e.charCodeAt(f++);i=e.charCodeAt(f++);s=n>>2;o=(n&3)<<4|r>>4;u=(r&15)<<2|i>>6;a=i&63;if(isNaN(r)){u=a=64}else if(isNaN(i)){a=64}t=t+this._keyStr.charAt(s)+this._keyStr.charAt(o)+this._keyStr.charAt(u)+this._keyStr.charAt(a)}return t},decode:function(e){var t="";var n,r,i;var s,o,u,a;var f=0;e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(f<e.length){s=this._keyStr.indexOf(e.charAt(f++));o=this._keyStr.indexOf(e.charAt(f++));u=this._keyStr.indexOf(e.charAt(f++));a=this._keyStr.indexOf(e.charAt(f++));n=s<<2|o>>4;r=(o&15)<<4|u>>2;i=(u&3)<<6|a;t=t+String.fromCharCode(n);if(u!=64){t=t+String.fromCharCode(r)}if(a!=64){t=t+String.fromCharCode(i)}}t=Base64._utf8_decode(t);return t},_utf8_encode:function(e){e=e.replace(/\r\n/g,"\n");var t="";for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<128){t+=String.fromCharCode(r)}else if(r>127&&r<2048){t+=String.fromCharCode(r>>6|192);t+=String.fromCharCode(r&63|128)}else{t+=String.fromCharCode(r>>12|224);t+=String.fromCharCode(r>>6&63|128);t+=String.fromCharCode(r&63|128)}}return t},_utf8_decode:function(e){var t="";var n=0;var r=c1=c2=0;while(n<e.length){r=e.charCodeAt(n);if(r<128){t+=String.fromCharCode(r);n++}else if(r>191&&r<224){c2=e.charCodeAt(n+1);t+=String.fromCharCode((r&31)<<6|c2&63);n+=2}else{c2=e.charCodeAt(n+1);c3=e.charCodeAt(n+2);t+=String.fromCharCode((r&15)<<12|(c2&63)<<6|c3&63);n+=3}}return t}}
-async function postData(url = '', data = {}) {
- const response = await fetch(api + url, {
+async function postData(data = {}) {
+ const response = await fetch(api + 'db.php', {
method: 'POST',
mode: 'same-origin',
cache: 'no-cache',
"basepath" => "/oldbelladmin/",
"cookie" => "oldbell_lu",
"templatepath" => "tmpl/",
+ "webdocroot" => $_SERVER["DOCUMENT_ROOT"].'/oldbell_lu/',
+ "webmediapath" => $_SERVER["DOCUMENT_ROOT"].'/oldbell_lu/media/',
+ "datapath" => "data/",
"db"=> array(
"type" => "pgsql",
"host" => "dedi1781.your-server.de",
"user" => "oldbell_user",
"password" => "reLH2MgvEsnWNHcy",
),
- "appversion" => "1",
+ "appversion" => date("YmdHis"),
"minify" => "",
"sitename" => "oldbell",
"sitetemplatepath" => $_SERVER["DOCUMENT_ROOT"].'/oldbell_lu'
class database {
private $conn;
private $dbconf;
- private $debug = 1;
+ private $debug=1;
public function __construct($pdbconf){
$this->dbconf = $pdbconf;
try {
//pgsql:host=localhost;port=5432;dbname=testdb;user=bruce;password=mypass
$this->conn = new PDO($this->dbconf["type"].':host='.$this->dbconf["host"].';port=5432;dbname='.$this->dbconf["dbname"],$this->dbconf["user"],$this->dbconf["password"]);
} catch(PDOException $e){
- error_log("Connection error:".$e->getMessage());
- // fwrite(STDERR, "Connectio Error: ".$e->getMessage()."\n");
+ error_log("Connection Error: ".$e->getMessage());
}
}
}
public function query($sql){
+ $result = array();
+ if ($this->debug == 1){
+ error_log("QUERY:".$sql);
+ }
try {
- if ($this->debug ==1 ){
- error_log("QUERY: ".$sql);
- }
- // fwrite(STDERR, "QUERY: ".$sql."\n");
if ($this->conn){
$sth = $this->conn->prepare($sql);
$sth->execute();
$result = $sth->fetch(PDO::FETCH_ASSOC);
-
return $result;
}
} catch(PDOException $e){
- error_log("QUERY ERROR: ".$sql." ".$e->getMessage());
+ error_log("QUERY ERROR: ".$sql);
}
- return null;
+ return $result;
+ }
+
+ public function querybykey($key,$sql){
+ $result = null;
+ $kresult = array();
+ if ($this->debug == 1){
+ error_log("QUERYbykey: ".$sql);
+ }
+ try {
+ if ($this->conn){
+ $sth = $this->conn->prepare($sql);
+ $sth->execute();
+ $result = $sth->fetchAll(PDO::FETCH_ASSOC);
+ foreach($result as $r){
+ $kresult[$r[$key]] = $r;
+ }
+
+ return $kresult;
+ }
+ } catch (PDOException $e){
+ error_log("QUERYBYKEY ERROR: ".$sql);
+ }
+ return $result;
}
public function queryarray($sql){
$result = null;
+ if ($this->debug == 1){
+ error_log("QUERYARRAY: ".$sql);
+ }
try {
if ($this->conn){
- $sth = $this->link->prepare($sql);
+ $sth = $this->conn->prepare($sql);
$sth->execute();
$result = $sth->fetchAll(PDO::FETCH_ASSOC);
return $result;
}
public function exec($sql){
+ if ($this->debug == 1){
+ error_log("EXEC: ".$sql);
+ }
try {
if ($this->conn){
- return $this->conn->exec($sql);
+ return $this->exec($sql);
}
} catch (PDOException $e){
error_log("EXEC ERROR: ".$sql);
$nid = $this->query("SELECT uuid_in(md5(random()::text || clock_timestamp()::text)::cstring) as id");
return $nid["id"];
}
-
+
public function __destruct(){
$this->conn = null;
}
$this->dbh = $dblink;
}
- public function getGalleries($parentid){
-
+ public function getGalleries(){
+ $sql = "select * from galleries";
+ return $this->dbh->queryarray($sql);
}
public function getGallery($id){
+ $sql = "select * from galleries where id='".$id."'";
+ return $this->dbh->query($sql);
+ }
+ public function getGalleryItems($id){
+ $sql = "select * from galleryitems where id_galleries='".$id."'";
+ return $this->dbh->queryarray($sql);
}
public function addgallery(){
-
+
}
public function duplicateGallery($id){
--- /dev/null
+<?php
+class rendezvous {
+ private $dbh;
+ public function __construct($dblink){
+ $this->dbh = $dblink;
+ }
+
+ public function __destruct(){
+ $this->dbh = null;
+ }
+
+}
+
+?>
\ No newline at end of file
+++ /dev/null
-<?php
-class rendezvous {
- private $dbh;
- public function __construct($dblink){
- $this->dbh = $dblink;
- }
-
-
- public function addWorkplan(){
-
- }
-
- public function updateWorkplan($id,$data){
-
- }
-
- public function removeWorkplan($id){
-
- }
-
- public function duplicateWorkplan($id){
-
- }
-
- public function updateWorkplanDay($id,$data){
-
- }
-
-
-
-
-}
-
-?>
\ No newline at end of file
<script type="text/javascript" src="js/vendors/flatpickr/l10n/fr{{minify}}.js?v={{config.appversion}}"></script>
<script type="text/javascript" src="js/vendors/flatpickr/plugins/weekSelect/weekSelect.js?v={{config.appversion}}"></script>
<script type="text/javascript" src="js/request{{minify}}.js?v={{config.appversion}}"></script>
- <script type="text/javascript" src="js/app{{minify}}.js?v={{config.appversion}}"></script>
+ <script type="text/javascript" src="js/myapp{{minify}}.js?v={{config.appversion}}"></script>
<script type="text/javascript" src="js/timecalc{{minify}}.js?v={{config.appversion}}"></script>
<script type="text/javascript" src="js/dataform{{minify}}.js?v={{config.appversion}}"></script>
<script type="text/javascript" src="js/report{{minify}}.js?v={{config.appversion}}"></script>
<div class="container bar toolbar">
- <a class="bar-item toolbarbtn" href="home.html"><span class="icon-back" style="font-size: 17px;"></span>retour</a>
+ <a class="bar-item toolbarbtn" href="index.html"><span class="icon-back" style="font-size: 17px;"></span>retour</a>
<div class="bar-item PageHeadTitle">Galleries</div>
<div class="hide-small">
<button class="bar-item toolbarbtn right" onclick="templates.add();"><span class="icon-plus" style="font-size: 17px;"></span>ajouter</button>
-<div class="container bar toolbar">
- <a class="bar-item toolbarbtn" href="home.html"><span class="icon-back" style="font-size: 17px;"></span>retour</a>
+<div class="panel" id="pnl_galleries">
+<div class="display-container bar toolbar">
+ <a class="bar-item toolbarbtn" href="index.html"><span class="icon-home" style="font-size: 18px;"></span>Home</a>
<div class="bar-item PageHeadTitle">Galleries</div>
<div class="hide-small">
- <button class="bar-item toolbarbtn right" onclick="galleries.add();"><span class="icon-plus" style="font-size: 17px;"></span>ajouter</button>
- <button class="bar-item toolbarbtn right" onclick="galleries.editer();"><span class="icon-edit" style="font-size: 17px;"></span>édit.</button>
- <button class="bar-item toolbarbtn right" onclick="galleries.confirmremove();"><span class="icon-trash" style="font-size: 17px;"></span>suppr.</button>
- <button class="bar-item toolbarbtn right" onclick="galleries.duplicate()"><span class="icon-duplicate" style="font-size: 17px;"></span>dupl.</button>
+ <button class="bar-item toolbarbtn right" onclick="gallery.add();"><span class="icon-plus" style="font-size: 17px;"></span>ajouter</button>
+ <button class="bar-item toolbarbtn right" onclick="gallery.edit();"><span class="icon-edit" style="font-size: 17px;"></span>édit.</button>
+ <button class="bar-item toolbarbtn right" onclick="gallery.confirmRemove();"><span class="icon-trash" style="font-size: 17px;"></span>suppr.</button>
+ <button class="bar-item toolbarbtn right" onclick="gallery.duplicate()"><span class="icon-duplicate" style="font-size: 17px;"></span>dupl.</button>
</div>
<div class="hide-large hide-medium">
- <button class="bar-item toolbarbtn right" onclick="myapp.togglemenu('mobilemenu');"><span class="icon-menu xxlarge" style="font-size: 20px;"></span></button>
+ <button class="bar-item toolbarbtn right" onclick="myapp.togglemenu('mobilemenu_galleries');"><span class="icon-menu xxlarge" style="font-size: 20px;"></span></button>
</div>
- <div class="toolbar" id="mobilemenu" style="display: none;">
+ <div class="toolbar" id="mobilemenu_galleries" style="display: none;">
<div class="bar">
- <button class="bar-item toolbarbtn" onclick="galleries.add();"><span class="icon-plus" style="font-size: 17px;"></span>ajouter</button>
- <button class="bar-item toolbarbtn" onclick="galleries.editer();"><span class="icon-edit" style="font-size: 17px;"></span>édit.</button>
- <button class="bar-item toolbarbtn" onclick="galleries.confirmremove();"><span class="icon-trash" style="font-size: 17px;"></span>suppr.</button>
- <button class="bar-item toolbarbtn" onclick="galleries.duplicate()"><span class="icon-duplicate" style="font-size: 17px;"></span>dupl.</button>
+ <button class="bar-item toolbarbtn" onclick="gallery.add();"><span class="icon-plus" style="font-size: 17px;"></span>ajouter</button>
+ <button class="bar-item toolbarbtn" onclick="gallery.edit();"><span class="icon-edit" style="font-size: 17px;"></span>édit.</button>
+ <button class="bar-item toolbarbtn" onclick="gallery.confirmRemove();"><span class="icon-trash" style="font-size: 17px;"></span>suppr.</button>
+ <button class="bar-item toolbarbtn" onclick="gallery.duplicate()"><span class="icon-duplicate" style="font-size: 17px;"></span>dupl.</button>
</div>
</div>
</div>
<div id="tbl_galleries"></div>
-<script type="text/javascript" src="js/modules/galleries.js"></script>
+</div>
+<div class="panel" id="pnl_gallery" style="display: none;">
+<div class="display-container bar toolbar">
+ <button class="bar-item toolbarbtn" onclick="myapp.viewpanel('galleries');"><span class="icon-back" style="font-size: 17px;"></span>retour</button>
+ <div class="bar-item PageHeadTitle">Gallerie</div>
+ <div class="hide-small">
+ <button class="bar-item toolbarbtn right" onclick="gallery.addItem();"><span class="icon-plus" style="font-size: 17px;"></span>ajouter</button>
+ <button class="bar-item toolbarbtn right" onclick="gallery.editItem();"><span class="icon-edit" style="font-size: 17px;"></span>édit.</button>
+ <button class="bar-item toolbarbtn right" onclick="gallery.confirmRemoveItem();"><span class="icon-trash" style="font-size: 17px;"></span>suppr.</button>
+ <button class="bar-item toolbarbtn right" onclick="gallery.duplicateItem()"><span class="icon-duplicate" style="font-size: 17px;"></span>dupl.</button>
+ </div>
+ <div class="hide-large hide-medium">
+ <button class="bar-item toolbarbtn right" onclick="myapp.togglemenu('mobilemenu_galleryitems');"><span class="icon-menu xxlarge" style="font-size: 20px;"></span></button>
+ </div>
+ <div class="toolbar" id="mobilemenu_galleryitems" style="display: none;">
+ <div class="bar">
+ <button class="bar-item toolbarbtn" onclick="gallery.addItem();"><span class="icon-plus" style="font-size: 17px;"></span>ajouter</button>
+ <button class="bar-item toolbarbtn" onclick="gallery.editItem();"><span class="icon-edit" style="font-size: 17px;"></span>édit.</button>
+ <button class="bar-item toolbarbtn" onclick="gallery.confirmRemoveItem();"><span class="icon-trash" style="font-size: 17px;"></span>suppr.</button>
+ <button class="bar-item toolbarbtn" onclick="gallery.duplicateItem()"><span class="icon-duplicate" style="font-size: 17px;"></span>dupl.</button>
+ </div>
+ </div>
+</div>
+<div class="row" style="background-color: lightgrey; padding-bottom: 10px;">
+<form>
+<div class="cell-row">
+<div class="cell container">
+ <label class="label">Nom</label>
+ <input class="input" type="text" id="galleries_name" data-id="" data-column="gallery" data-table="galleries" onblur="gallery.savefield();"/>
+ </div>
+</div>
+<div class="cell-row">
+ <div class="cell container">
+ <label class="label">description</label>
+ <textarea class="input richeditarea" type="text" style="width: 100%; height: 100px;" id="galleries_description" data-id="" data-column="description" data-table="galleries"></textarea>
+ </div>
+</div>
+</div>
+<div class="row">
+ <div id="tbl_galleryitems"></div>
+</div>
+</div>
+<script type="text/javascript" src="js/modules/gallery.js"></script>
<script>
function initpage(){
- galleries.init();
+ gallery.init();
}
</script>
\ No newline at end of file
</div>
</div>
</div>
-<script type="text/javascript" src="js/modules/home.js"></script>
+<script type="text/javascript" src="js/modules/index.js"></script>
<script>
function initpage(){
- galleries.init();
+ index.init();
}
</script>
\ No newline at end of file
<![CDATA[
{
"fontFamily": "siteicons",
- "majorVersion": 1,
- "minorVersion": 0,
+ "description": "Font generated by IcoMoon.",
+ "majorVersion": 0,
"version": "Version 1.0",
"fontId": "siteicons",
"psName": "siteicons",
"subFamily": "Regular",
- "fullName": "siteicons",
- "description": "Font generated by IcoMoon."
+ "fullName": "siteicons"
}
]]>
</json>
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode=" " horiz-adv-x="512" d="" />
-<glyph unicode="" glyph-name="home" data-tags="home, house" d="M1024 369.556l-512 397.426-512-397.428v162.038l512 397.426 512-397.428zM896 384v-384h-256v256h-256v-256h-256v384l384 288z" />
+<glyph unicode="" glyph-name="events" data-tags="Calendar_Ok" d="M960.678 366.457l63.222-63.199-266.16-266.165-0.163 0.201-150.263 150.245 63.212 63.224 87.214-87.247zM341.472 512.38c13.904 0 26.763-2.977 38.527-9.001 11.76-5.987 20.742-14.167 26.961-24.507 6.232-10.307 9.324-21.333 9.324-32.952 0-11.027-2.945-21.106-8.869-30.17-5.92-9.065-14.739-16.265-26.388-21.595 15.134-3.503 26.897-10.768 35.257-21.696 8.41-11.028 12.564-24.836 12.564-41.261 0-22.35-8.165-41.265-24.425-56.811-16.28-15.542-36.858-23.297-61.759-23.297-22.411 0-41.030 6.707-55.885 20.062-14.819 13.444-23.296 30.789-25.39 52.095l31.394 4.12c3.632-17.735 9.736-30.63 18.391-38.451 8.654-7.849 19.205-11.777 31.638-11.777 14.772 0 27.223 5.105 37.448 15.346 10.125 10.245 15.231 22.873 15.231 38.057 0 14.363-4.714 26.343-14.102 35.635-9.458 9.39-21.416 14.039-35.96 14.039-5.903 0-13.268-1.179-22.133-3.473l3.484 27.522c2.094-0.298 3.762-0.36 5.022-0.36 13.398 0 25.47 3.502 36.155 10.472 10.698 6.936 16.032 17.702 16.032 32.294 0 11.489-3.893 21.011-11.663 28.536-7.82 7.559-17.881 11.355-30.184 11.355-12.172 0-22.415-3.891-30.513-11.518-8.145-7.657-13.398-19.208-15.687-34.492l-31.347 5.533c3.796 21.072 12.547 37.402 26.144 48.918 13.613 11.584 30.512 17.377 50.732 17.377zM557.843 512.405h20.221v-256.666h-31.393v200.056c-7.559-7.264-17.457-14.496-29.692-21.662-12.321-7.198-23.3-12.565-33.097-16.197v30.3c17.57 8.31 32.916 18.255 46.099 30.003 13.107 11.686 22.415 23.104 27.863 34.165zM76.808 786.636h84.286v-94.785h152.748v94.785h214.198v-94.785h152.751v94.785h91.872c42.417 0 76.793-34.35 76.793-76.794v-406.333l-81.165-81.116v374.018h-687.115v-413.068h482.054l89.374-89.383h-652.604v89.383h0.065v526.499c0 42.443 34.338 76.794 76.742 76.794zM557.157 858.982h94.56v-136.173h-94.56zM190.225 858.982h94.535v-136.173h-94.535z" />
+<glyph unicode="" glyph-name="rendezvous" data-tags="Hand_Shake" d="M204.412 366.925c20.005 0.565 37.826-15.148 40.815-36.805l0.094-0.622c7.878 22.245 28.491 36.284 49.168 32.067 17.616-3.634 29.944-19.444 32.313-38.605 10.628 21.54 30.049 34.537 48.755 30.317 23.194-5.249 36.285-34.935 29.161-66.251l-1.373-6.070c10.888 14.32 28.165 21.751 44.854 17.344 23.031-6.058 36.122-32.125 29.219-58.225l-14.123-53.595c-6.879-26.064-31.129-42.285-54.136-36.227-19.361 5.134-31.504 24.379-30.882 45.885-11.123-15.623-27.378-24.379-43.131-20.815-19.642 4.464-31.854 26.475-30.858 52.164-10.139-12.916-25.445-19.946-40.798-16.782-14.884 3.024-25.95 14.872-30.474 30.003-4.336-2.695-9.223-4.57-14.532-5.321-21.635-2.964-41.7 13.35-44.853 36.45l-6.599 47.534c-3.153 23.090 11.791 44.219 33.356 47.22 1.349 0.185 2.693 0.295 4.026 0.333zM220.697 670.443h40.412c0 0-70.194-70.323 6.472-131.645 0 0 39.662-35.186 95.394 1.5l105.452 57.946 64.732-32.161 296.98-212.81c0 0 25.070-17.967 18.356-46.377 0 0-12.189-30.379-37.977-28.598l-138.304 99.296c-6.037 4.244-13.572 3.869-16.971-0.879-3.469-4.782-1.383-12.095 4.558-16.373l112.015-80.333c2.192-6.656 4.256-19.246-4.993-32.501 0 0-12.823-15.47-28.762-15.754l-139.43 100.457c-6.025 4.244-13.562 3.867-16.971-0.879-3.471-4.781-1.373-12.095 4.57-16.375l110.174-79.017c2.626-5.37 5.72-15.66-0.915-27.568 0 0-13.43-20.934-33.754-20.369l-99.696 71.507c-5.346 3.785-12.319 3-15.73-1.747-3.469-4.781-1.935-11.697 3.317-15.506l62.67-44.947c1.219-4.688 2.216-13.783-4.313-25.845 0 0-13.723-22.914-37.413-18.19l-66.105 49.133c0 0 50.377 122.421-56.575 133.273 0 0-21.32 81.166-102.862 45.628 0 0-37.036 33.663-83.791 6.342 0 0-56.482 47.138-105.521-20.934l-11.31 3.997c0 0 4.501 175.022 76.29 299.728zM966.743 682.517c0 0 21.038 0.305 24.473-27.32l32.813-239.657c0 0 3.19-25.597-23.966-28.751l-43.785-0.094c0 0 0.996 180.424-76.66 272.815zM115.214 709.398c3.803 0.051 8.081-0.594 12.877-2.197l46.344-24.437c0 0-82.514-168.269-83.51-320.89l-75.821 12.974c0 0-22.691 10.185-12.447 41.384l85.304 272.287c0 0 6.717 20.601 27.255 20.879zM473.014 751.751c6.525-0.188 13.194-1.978 19.553-5.136l162.029-69.723 0.199 0.094 95.021-42.286 93.521 11.251c86.792-100.266 70.289-255.852 70.289-255.852l-52.356-14.181-296.304 220.398-88.199 37.973-133.558-75.29c-20.97-11.814-49.979-0.059-64.852 26.253-14.815 26.347-9.847 57.253 11.124 69.102l164.842 92.918c5.784 3.252 12.165 4.668 18.691 4.48z" />
+<glyph unicode="" glyph-name="news" data-tags="Newspaper" d="M288.8 335.536h301.728v-48h-301.728zM288.8 477.76h301.728v-48h-301.728zM288.8 619.984h301.728v-48h-301.728zM72.001 641.632v-420.592c0-61.408 14.71-90.784 33.416-90.784 22.544 0 35.974 29.376 35.974 90.784v420.592zM213.439 772.464v-551.424c0-42.72-7.84-73.424-20-97.456h718.4c24 0 40 28.048 40 46.736v108.336h-315.839v348.448h315.839v145.36zM141.441 844.56h882.559v-674.24c0-62.768-54.719-118.848-112.158-118.848h-766.4c-94.721 0-145.441 49.424-145.441 169.568v492.656h141.441z" />
+<glyph unicode="" glyph-name="home" data-tags="home, house" d="M1024 369.556l-512 397.426-512-397.428v162.038l512 397.426 512-397.428zM896 384v-384h-256v256h-256v-256h-256v384l384 288z" />
<glyph unicode="" glyph-name="image" data-tags="image, picture, photo, graphic" d="M959.884 832c0.040-0.034 0.082-0.076 0.116-0.116v-767.77c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.772c0.034 0.040 0.076 0.082 0.114 0.114h895.77zM960 896h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64v0zM832 672c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM896 128h-768v128l224 384 256-320h64l224 192z" />
<glyph unicode="" glyph-name="images" data-tags="images, pictures, photos, graphics" horiz-adv-x="1152" d="M1088 832h-64v64c0 35.2-28.8 64-64 64h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h64v-64c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64zM128 768v-640h-63.886c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-63.884h-768c-35.2 0-64-28.8-64-64v0zM1088 0.116c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-767.768zM960 608c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM1024 64h-768v128l224 384 256-320h64l224 192z" />
<glyph unicode="" glyph-name="camera" data-tags="camera, photo, picture, image" d="M304 352c0-114.876 93.124-208 208-208s208 93.124 208 208-93.124 208-208 208-208-93.124-208-208zM960 704h-224c-16 64-32 128-96 128h-256c-64 0-80-64-96-128h-224c-35.2 0-64-28.8-64-64v-576c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v576c0 35.2-28.8 64-64 64zM512 68c-156.85 0-284 127.148-284 284 0 156.85 127.15 284 284 284 156.852 0 284-127.15 284-284 0-156.852-127.146-284-284-284zM960 512h-128v64h128v-64z" />
<glyph unicode="" glyph-name="envelop" data-tags="envelop, mail, email, contact, letter" d="M928 832h-832c-52.8 0-96-43.2-96-96v-640c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v640c0 52.8-43.2 96-96 96zM398.74 409.628l-270.74-210.892v501.642l270.74-290.75zM176.38 704h671.24l-335.62-252-335.62 252zM409.288 398.302l102.712-110.302 102.71 110.302 210.554-270.302h-626.528l210.552 270.302zM625.26 409.628l270.74 290.75v-501.642l-270.74 210.892z" />
<glyph unicode="" glyph-name="pushpin" data-tags="pushpin, pin" d="M544 960l-96-96 96-96-224-256h-224l176-176-272-360.616v-39.384h39.384l360.616 272 176-176v224l256 224 96-96 96 96-480 480zM448 416l-64 64 224 224 64-64-224-224z" />
<glyph unicode="" glyph-name="location" data-tags="location, map-marker, pin" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
-<glyph unicode="" glyph-name="map2" data-tags="map, guide" d="M672 768l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 814.27l256-102.4v-630.138l-256 102.398v630.14zM64 723.172l256 93.090v-631.8l-256-93.088v631.798zM960 172.828l-256-93.092v631.8l256 93.090v-631.798z" />
+<glyph unicode="" glyph-name="map" data-tags="map, guide" d="M672 768l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 814.27l256-102.4v-630.138l-256 102.398v630.14zM64 723.172l256 93.090v-631.8l-256-93.088v631.798zM960 172.828l-256-93.092v631.8l256 93.090v-631.798z" />
<glyph unicode="" glyph-name="clock" data-tags="clock, time, schedule" d="M658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" />
<glyph unicode="" glyph-name="calendar" data-tags="calendar, date, schedule, time, day" d="M320 576h128v-128h-128zM512 576h128v-128h-128zM704 576h128v-128h-128zM128 192h128v-128h-128zM320 192h128v-128h-128zM512 192h128v-128h-128zM320 384h128v-128h-128zM512 384h128v-128h-128zM704 384h128v-128h-128zM128 384h128v-128h-128zM832 960v-64h-128v64h-448v-64h-128v64h-128v-1024h960v1024h-128zM896 0h-832v704h832v-704z" />
<glyph unicode="" glyph-name="box-add" data-tags="box-add, box, download, storage, inbox, archive" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
<glyph unicode="" glyph-name="arrow-right" data-tags="arrow-right, right, next" d="M992 448l-480 480v-288h-512v-384h512v-288z" />
<glyph unicode="" glyph-name="arrow-down" data-tags="arrow-down, down, download, bottom" d="M512-32l480 480h-288v512h-384v-512h-288z" />
<glyph unicode="" glyph-name="arrow-left" data-tags="arrow-left, left, previous" d="M32 448l480-480v288h512v384h-512v288z" />
-<glyph unicode="" glyph-name="arrow-right2" data-tags="arrow-right, right, next" d="M621.254 82.746l320 320c24.994 24.992 24.994 65.516 0 90.51l-320 320c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.516 0-90.51l210.746-210.746h-613.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h613.49l-210.746-210.746c-12.496-12.496-18.744-28.876-18.744-45.254s6.248-32.758 18.744-45.254c24.994-24.994 65.516-24.994 90.51 0z" />
-<glyph unicode="" glyph-name="arrow-left2" data-tags="arrow-left, left, previous" d="M402.746 82.746l-320 320c-24.994 24.992-24.994 65.516 0 90.51l320 320c24.994 24.992 65.516 24.992 90.51 0 24.994-24.994 24.994-65.516 0-90.51l-210.746-210.746h613.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-613.49l210.746-210.746c12.496-12.496 18.744-28.876 18.744-45.254s-6.248-32.758-18.744-45.254c-24.994-24.994-65.516-24.994-90.51 0z" />
+<glyph unicode="" glyph-name="arrow-right1" data-tags="arrow-right, right, next" d="M621.254 82.746l320 320c24.994 24.992 24.994 65.516 0 90.51l-320 320c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.516 0-90.51l210.746-210.746h-613.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h613.49l-210.746-210.746c-12.496-12.496-18.744-28.876-18.744-45.254s6.248-32.758 18.744-45.254c24.994-24.994 65.516-24.994 90.51 0z" />
+<glyph unicode="" glyph-name="arrow-left1" data-tags="arrow-left, left, previous" d="M402.746 82.746l-320 320c-24.994 24.992-24.994 65.516 0 90.51l320 320c24.994 24.992 65.516 24.992 90.51 0 24.994-24.994 24.994-65.516 0-90.51l-210.746-210.746h613.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-613.49l210.746-210.746c12.496-12.496 18.744-28.876 18.744-45.254s-6.248-32.758-18.744-45.254c-24.994-24.994-65.516-24.994-90.51 0z" />
<glyph unicode="" glyph-name="circle-right" data-tags="circle-right, right, circle-next, arrow" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM354.744 253.256l90.512-90.512 285.254 285.256-285.256 285.254-90.508-90.508 194.744-194.746z" />
<glyph unicode="" glyph-name="circle-left" data-tags="circle-left, left, circle-previous, arrow" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM669.256 642.744l-90.512 90.512-285.254-285.256 285.256-285.254 90.508 90.508-194.744 194.746z" />
<glyph unicode="" glyph-name="checkbox-checked" data-tags="checkbox-checked, checkbox, tick, checked, selected" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM448 165.49l-237.254 237.256 90.51 90.508 146.744-146.744 306.746 306.746 90.508-90.51-397.254-397.256z" />
<glyph unicode="" glyph-name="share" data-tags="share, out, external, outside" d="M256 320c0 0 58.824 192 384 192v-192l384 256-384 256v-192c-256 0-384-159.672-384-320zM704 192h-576v384h125.876c10.094 11.918 20.912 23.334 32.488 34.18 43.964 41.19 96.562 72.652 156.114 93.82h-442.478v-640h832v268.624l-128-85.334v-55.29z" />
<glyph unicode="" glyph-name="new-tab" data-tags="new-tab, out, external, outside, popout, link, blank" d="M192 896v-768h768v768h-768zM896 192h-640v640h640v-640zM128 64v672l-64 64v-800h800l-64 64h-672zM352 704l160-160-192-192 96-96 192 192 160-160v416z" />
<glyph unicode="" glyph-name="mail" data-tags="mail, contact, support, newsletter, letter, email, envelop, social" d="M853.31 960h-682.62c-93.88 0-170.69-76.784-170.69-170.658v-682.656c0-93.876 76.81-170.686 170.69-170.686h682.622c93.938 0 170.688 76.81 170.688 170.686v682.656c0 93.874-76.75 170.658-170.69 170.658zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.94-185.598-185.6c-1.444 5.338-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.206l182.118 182.118 90.422-105.496 90.424 105.494 182.116-182.118c-5.34-1.442-10.886-2.204-16.54-2.204zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.598 185.598 187.664 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
-<glyph unicode="" glyph-name="facebook2" data-tags="facebook, brand, social" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h416v448h-128v128h128v64c0 105.8 86.2 192 192 192h128v-128h-128c-35.2 0-64-28.8-64-64v-64h192l-32-128h-160v-448h288c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96z" />
+<glyph unicode="" glyph-name="facebook" data-tags="facebook, brand, social" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h416v448h-128v128h128v64c0 105.8 86.2 192 192 192h128v-128h-128c-35.2 0-64-28.8-64-64v-64h192l-32-128h-160v-448h288c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96z" />
<glyph unicode="" glyph-name="instagram" data-tags="instagram, brand, social" d="M512 867.8c136.8 0 153-0.6 206.8-3 50-2.2 77-10.6 95-17.6 23.8-9.2 41-20.4 58.8-38.2 18-18 29-35 38.4-58.8 7-18 15.4-45.2 17.6-95 2.4-54 3-70.2 3-206.8s-0.6-153-3-206.8c-2.2-50-10.6-77-17.6-95-9.2-23.8-20.4-41-38.2-58.8-18-18-35-29-58.8-38.4-18-7-45.2-15.4-95-17.6-54-2.4-70.2-3-206.8-3s-153 0.6-206.8 3c-50 2.2-77 10.6-95 17.6-23.8 9.2-41 20.4-58.8 38.2-18 18-29 35-38.4 58.8-7 18-15.4 45.2-17.6 95-2.4 54-3 70.2-3 206.8s0.6 153 3 206.8c2.2 50 10.6 77 17.6 95 9.2 23.8 20.4 41 38.2 58.8 18 18 35 29 58.8 38.4 18 7 45.2 15.4 95 17.6 53.8 2.4 70 3 206.8 3zM512 960c-139 0-156.4-0.6-211-3-54.4-2.4-91.8-11.2-124.2-23.8-33.8-13.2-62.4-30.6-90.8-59.2-28.6-28.4-46-57-59.2-90.6-12.6-32.6-21.4-69.8-23.8-124.2-2.4-54.8-3-72.2-3-211.2s0.6-156.4 3-211c2.4-54.4 11.2-91.8 23.8-124.2 13.2-33.8 30.6-62.4 59.2-90.8 28.4-28.4 57-46 90.6-59 32.6-12.6 69.8-21.4 124.2-23.8 54.6-2.4 72-3 211-3s156.4 0.6 211 3c54.4 2.4 91.8 11.2 124.2 23.8 33.6 13 62.2 30.6 90.6 59s46 57 59 90.6c12.6 32.6 21.4 69.8 23.8 124.2 2.4 54.6 3 72 3 211s-0.6 156.4-3 211c-2.4 54.4-11.2 91.8-23.8 124.2-12.6 34-30 62.6-58.6 91-28.4 28.4-57 46-90.6 59-32.6 12.6-69.8 21.4-124.2 23.8-54.8 2.6-72.2 3.2-211.2 3.2v0zM512 711c-145.2 0-263-117.8-263-263s117.8-263 263-263 263 117.8 263 263c0 145.2-117.8 263-263 263zM512 277.4c-94.2 0-170.6 76.4-170.6 170.6s76.4 170.6 170.6 170.6c94.2 0 170.6-76.4 170.6-170.6s-76.4-170.6-170.6-170.6zM846.8 721.4c0-33.91-27.49-61.4-61.4-61.4s-61.4 27.49-61.4 61.4c0 33.91 27.49 61.4 61.4 61.4s61.4-27.49 61.4-61.4z" />
<glyph unicode="" glyph-name="whatsapp" data-tags="whatsapp, brand, social" d="M873 811.2c-95.8 96-223.2 148.8-359 148.8-279.6 0-507.2-227.6-507.2-507.4 0-89.4 23.4-176.8 67.8-253.6l-72-263 269 70.6c74.2-40.4 157.6-61.8 242.4-61.8h0.2c0 0 0 0 0 0 279.6 0 507.4 227.6 507.4 507.4 0 135.6-52.8 263-148.6 359zM514.2 30.4v0c-75.8 0-150 20.4-214.8 58.8l-15.4 9.2-159.6-41.8 42.6 155.6-10 16c-42.4 67-64.6 144.6-64.6 224.4 0 232.6 189.2 421.8 422 421.8 112.6 0 218.6-44 298.2-123.6 79.6-79.8 123.4-185.6 123.4-298.4-0.2-232.8-189.4-422-421.8-422zM745.4 346.4c-12.6 6.4-75 37-86.6 41.2s-20 6.4-28.6-6.4c-8.4-12.6-32.8-41.2-40.2-49.8-7.4-8.4-14.8-9.6-27.4-3.2s-53.6 19.8-102 63c-37.6 33.6-63.2 75.2-70.6 87.8s-0.8 19.6 5.6 25.8c5.8 5.6 12.6 14.8 19 22.2s8.4 12.6 12.6 21.2c4.2 8.4 2.2 15.8-1 22.2s-28.6 68.8-39 94.2c-10.2 24.8-20.8 21.4-28.6 21.8-7.4 0.4-15.8 0.4-24.2 0.4s-22.2-3.2-33.8-15.8c-11.6-12.6-44.4-43.4-44.4-105.8s45.4-122.6 51.8-131.2c6.4-8.4 89.4-136.6 216.6-191.4 30.2-13 53.8-20.8 72.2-26.8 30.4-9.6 58-8.2 79.8-5 24.4 3.6 75 30.6 85.6 60.2s10.6 55 7.4 60.2c-3 5.6-11.4 8.8-24.2 15.2z" />
<glyph unicode="" glyph-name="twitter" data-tags="twitter, brand, tweet, social" d="M1024 733.6c-37.6-16.8-78.2-28-120.6-33 43.4 26 76.6 67.2 92.4 116.2-40.6-24-85.6-41.6-133.4-51-38.4 40.8-93 66.2-153.4 66.2-116 0-210-94-210-210 0-16.4 1.8-32.4 5.4-47.8-174.6 8.8-329.4 92.4-433 219.6-18-31-28.4-67.2-28.4-105.6 0-72.8 37-137.2 93.4-174.8-34.4 1-66.8 10.6-95.2 26.2 0-0.8 0-1.8 0-2.6 0-101.8 72.4-186.8 168.6-206-17.6-4.8-36.2-7.4-55.4-7.4-13.6 0-26.6 1.4-39.6 3.8 26.8-83.4 104.4-144.2 196.2-146-72-56.4-162.4-90-261-90-17 0-33.6 1-50.2 3 93.2-59.8 203.6-94.4 322.2-94.4 386.4 0 597.8 320.2 597.8 597.8 0 9.2-0.2 18.2-0.6 27.2 41 29.4 76.6 66.4 104.8 108.6z" />
@font-face {
font-family: 'siteicons';
- src:
- url('fonts/siteicons.ttf?2p3ux7') format('truetype'),
- url('fonts/siteicons.woff?2p3ux7') format('woff'),
- url('fonts/siteicons.svg?2p3ux7#siteicons') format('svg');
+ src: url('fonts/siteicons.eot?9mq9yx');
+ src: url('fonts/siteicons.eot?9mq9yx#iefix') format('embedded-opentype'),
+ url('fonts/siteicons.ttf?9mq9yx') format('truetype'),
+ url('fonts/siteicons.woff?9mq9yx') format('woff'),
+ url('fonts/siteicons.svg?9mq9yx#siteicons') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
-moz-osx-font-smoothing: grayscale;
}
-.icon-home:before {
+.icon-events:before {
content: "\e900";
}
+.icon-rendezvous:before {
+ content: "\e901";
+}
+.icon-news:before {
+ content: "\e902";
+}
+.icon-home:before {
+ content: "\e903";
+}
.icon-image:before {
content: "\e90d";
}
.icon-location:before {
content: "\e947";
}
-.icon-map2:before {
+.icon-map:before {
content: "\e94c";
}
.icon-clock:before {
.icon-arrow-left:before {
content: "\ea38";
}
-.icon-arrow-right2:before {
+.icon-arrow-right1:before {
content: "\ea3c";
}
-.icon-arrow-left2:before {
+.icon-arrow-left1:before {
content: "\ea40";
}
.icon-circle-right:before {
.icon-mail:before {
content: "\ea83";
}
-.icon-facebook2:before {
+.icon-facebook:before {
content: "\ea91";
}
.icon-instagram:before {
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
/* End extract */
+@font-face {
+ font-family: 'Roboto';
+ src: url('fonts/Roboto-Regular.ttf') format('truetype');
+ font-weight: normal;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: 'DancingScript';
+ src: url('fonts/DancingScript-Regular.ttf') format('truetype');
+ font-weight: normal;
+ font-style: normal;
+}
+
html ,body {
+ font-family: "Roboto";
background-color: #faeddd;
}
html,body{font-family:Verdana,sans-serif;font-size:9pt;line-height:1.5}html{overflow-x:hidden}
.padding-32{padding-top:32px!important;padding-bottom:32px!important}.padding-48{padding-top:48px!important;padding-bottom:48px!important}
.padding-64{padding-top:64px!important;padding-bottom:64px!important}
.left{float:left!important}.right{float:right!important}
-.button:hover{color:#fff!important;background-color:#ca050f!important}
+.button:hover{color:#fff!important;background-color:#82171b!important}
.transparent,.hover-none:hover{background-color:transparent!important}
.hover-none:hover{box-shadow:none!important}
/* DEFAULT COLORS */
-.red-gold,.hover-red-gold{color: #b0834c;background-color: #c42027;}
-.red-white,.hover-red-white{color: #fff;background-color: #c42027;}
-.gold-white,.hover-gold-white{background-color: #b0834c;color: #fff;}
+.red-gold,.hover-red-gold{color: #caa036;background-color: #82171b;}
+.red-white,.hover-red-white{color: #fff;background-color: #82171b;}
+.gold-white,.hover-gold-white{background-color: #caa036;color: #fff;}
.text-white { color: #fff;}
+.dark {background-color: #1e1e1e; color: #fff;}
/* .label { color: #000; font-size: 8pt;} */
/* #main {margin-left: 210px;} */
/* @media (max-width:768px){
#main { margin-left: 0px;}
} */
+.font-gallerytile {
+ display: block;
+ width: 100%;
+ height: 100%;
+ z-index: 3;
+ top: 0;
+ left: 0;
+ text-align: center;
+ position: absolute;
+ /* margin-top: -150px; */
+ font-family: "DancingScript";
+ /* transform: rotate(-30deg); */
+ font-size: 500%;
+}
+
.table {
table-layout: fixed;
}
div.PageHeadTitle
{
font-size: 18pt;
- color: #b0834c;
+ color: #caa036;
}
div.ListView_SectionHeader
require("lib/modules/RendezVous.php");
require("lib/modules/Gallery.php");
require("lib/modules/Shop.php");
- require("lib/modules/WebPage.php");
+ require("lib/modules/WebArticles.php");
$db = new database($cfg["db"]);
$vars = array();
$html = array();
$shop = new WebPage($db);
}
- } elseif (isset($params["fn"])){
+ }
+ elseif (isset($params["fn"])){
if (strpos($params["fn"], 'rdv_') === 0) {
$rdv = new RendezVous($db);
if ($params["fn"] == 'rdv_confirm'){
}elseif ($params["fn"] == 'rdv_cancel'){
}
- } else (strpos($params["fn"], 'shop_') === 0) {
- $shop = new Shop($db);
- if ($params["fn"] == 'shop_order'){
+ }
+ // else (strpos($params["fn"], 'shop_') === 0){
+ // //$shop = new Shop($db);
+ // if ($params["fn"] == 'shop_order'){
- }
- }
+ // }
+ // }
- } elseif(isset($params["save"])){
+ }
+ elseif(isset($params["save"])){
}
header('Content-Type: application/json');
--- /dev/null
+<?xml version="1.0"?><svg width="249.70699" height="299.84564" xmlns="http://www.w3.org/2000/svg">
+
+ <metadata id="metadata2420">image/svg+xml</metadata>
+ <g>
+ <title>Layer 1</title>
+ <g id="layer1">
+ <g id="g2460">
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" d="m16.237167,77.274994l-4.511591,179.58725l64.515642,31.483154l-14.437077,-201.315041l7.21854,-6.20797l-52.785515,-3.547394z" id="path2451"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" d="m76.241219,287.901978l161.965797,-66.513748l-4.962753,-164.510803l-170.988968,29.26606l13.985924,201.758492z" id="path2453"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" d="m75.338882,287.458557l-8.284744,-30.857513l-4.347664,-40.53392l0.902309,-107.308937" id="path2471"/>
+ <g id="g3854">
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" id="path2457" d="m16.688349,76.831573l173.244711,-24.388397l-1.353455,8.425076l45.115845,-4.434246"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" id="path2461" d="m62.706448,102.993652l171.440159,-32.813469"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" id="path2463" d="m75.338913,263.957031l162.416916,-62.96637"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" id="path2465" d="m11.5,255.753677l22.542709,-15.599991l28.663738,-23.864853"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="3" marker-start="none" stroke-miterlimit="4" stroke-dasharray="1.5, 1.5" stroke-dashoffset="0" id="path2477" d="m98.009583,64.859077c-1.010406,-14.816067 7.604042,-33.093178 22.445122,-41.238558c1.915916,-0.941523 4.002045,-1.199133 6.316231,-1.773695c2.460205,-0.610817 7.969788,-0.43042 9.135925,0.665144c11.727539,7.447418 16.868546,21.167124 18.159134,34.476313"/>Boutique
+ <path fill="#452d3a" stroke-width="0.3" stroke-miterlimit="4" id="path2493" d="m76.686447,285.60434c0,-0.719086 -0.311119,-5.655975 -0.69136,-10.970856c-0.38028,-5.314911 -0.580757,-9.772217 -0.445534,-9.90509c0.477997,-0.469818 161.030739,-62.57283 161.238762,-62.368378c0.116058,0.11412 0.304672,4.353226 0.418884,9.420166l0.207748,9.212662l-79.574707,32.666611c-43.766113,17.966614 -79.930046,32.79837 -80.364288,32.959442c-0.640762,0.237701 -0.789505,0.046539 -0.789505,-1.014557l0,0z"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" id="path3269" d="m16.237194,91.908028l46.018101,2.660545"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" id="path3271" d="m11.725605,235.57782l20.302101,4.877686l35.641483,16.850159l7.218544,8.8685"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="1px" id="path3275" d="m188.309433,60.865475l0,3.605808"/>
+ <path fill="#544164" stroke-width="0.3" stroke-miterlimit="4" d="m130.831345,95.898849a1.748238,1.662843 0 1 1 -3.496452,0a1.748238,1.662843 0 1 1 3.496452,0z" id="path3277"/>
+ <path fill="#544164" stroke-width="0.3" stroke-miterlimit="4" d="m185.083084,84.868645a1.353477,1.49656 0 1 1 -2.706909,0a1.353477,1.49656 0 1 1 2.706909,0z" id="path3279"/>
+ <path fill="#452d3a" stroke-width="0.3" stroke-miterlimit="4" id="path3287" d="m36.362179,92.356163c-9.825733,-0.612251 -18.223869,-1.137482 -18.662533,-1.167175c-0.584484,-0.039558 -0.797543,-1.83197 -0.797543,-6.709709l0,-6.655724l2.711649,0.36071c1.491438,0.198395 12.617136,0.978905 24.72381,1.734467c12.106705,0.755562 22.120041,1.460281 22.251839,1.56601c0.131744,0.105743 -0.689384,0.960579 -1.824921,1.899643c-3.936142,3.255295 -3.941818,3.266571 -3.481236,6.889915l0.428204,3.369102l-3.742142,-0.087013c-2.058174,-0.047874 -11.781425,-0.587959 -21.607128,-1.200211l0,-0.000015z"/>
+ <path fill="#452d3a" stroke-width="0.3" stroke-miterlimit="4" id="path3289" d="m42.744282,271.210449l-30.623772,-14.889526l10.439453,-7.277832l10.439373,-7.277832l11.251934,5.339996c6.188522,2.937027 13.737564,6.468506 16.775635,7.847733l5.523724,2.507706l1.003868,3.847015c0.552162,2.115875 2.274513,8.573792 3.827576,14.350922c1.552971,5.77713 2.635201,10.489807 2.404869,10.472626c-0.230331,-0.017212 -14.199512,-6.731567 -31.04266,-14.920807z"/>
+ <path fill="#452d3a" stroke-width="0.3" stroke-miterlimit="4" id="path3291" d="m12.739851,245.650131c0.257429,-4.793152 0.517806,-8.769852 0.578616,-8.837112c0.167854,-0.185623 17.037566,4.043686 17.348517,4.349304c0.14905,0.1465 -2.241079,1.981705 -5.311359,4.078278c-3.070282,2.096542 -7.270142,5.007233 -9.333019,6.468124l-3.75071,2.656204l0.467955,-8.714798z"/>
+ <path fill="#452d3a" stroke-width="0.3" stroke-miterlimit="4" id="path3293" d="m71.866325,271.647491c-1.49678,-5.54187 -2.595367,-10.200043 -2.441315,-10.35144c0.15403,-0.151398 1.207474,0.875519 2.340889,2.282104c1.952194,2.422607 2.092812,2.956421 2.668198,10.128571c0.333984,4.164185 0.505234,7.671448 0.380585,7.794037c-0.124741,0.122559 -1.451469,-4.311401 -2.948303,-9.853271l-0.000053,0z"/>
+ <path fill="#452d3a" stroke-width="0.3" stroke-miterlimit="4" id="path3295" d="m63.872635,97.87632c-0.719318,-8.159317 -0.935799,-11.130997 -0.811008,-11.130997c0.070827,0 38.014233,-6.490463 84.31847,-14.423256c46.30423,-7.932785 84.392181,-14.423256 84.639816,-14.423256c0.247528,0 0.541611,2.68148 0.653442,5.958839c0.111771,3.277374 0.031052,5.958206 -0.179596,5.957428c-0.210587,-0.000748 -37.966217,7.194351 -83.901474,15.989143c-45.935196,8.794785 -83.711075,15.990746 -83.946335,15.99099c-0.23526,0.000259 -0.583206,-1.763237 -0.773315,-3.918892z"/>
+ <path fill="#f9f9f9" stroke-width="0.3" stroke-miterlimit="4" id="path3303" d="m23.195272,237.701172c-5.275614,-1.283615 -9.735545,-2.47496 -9.911021,-2.6474c-0.235897,-0.231827 2.969245,-142.123077 3.217605,-142.442093c0.061033,-0.078384 45.146112,2.560646 45.217772,2.646812c0.031994,0.038483 0.308838,3.761505 0.615227,8.273346c0.414989,6.110909 0.485313,19.457436 0.275814,52.324196c-0.154667,24.266449 -0.402637,47.758804 -0.551018,52.205215l-0.26981,8.084396l-14.363194,11.980621c-7.899773,6.589294 -14.425335,11.964417 -14.501278,11.944687c-0.075947,-0.019714 -4.454454,-1.086136 -9.730097,-2.369751l0,-0.000031z"/>
+ <path fill="#f9f9f9" stroke-width="0.3" stroke-miterlimit="4" id="path3305" d="m71.093315,260.425903c-1.217346,-1.511719 -2.487045,-3.122009 -2.821587,-3.57843c-0.396683,-0.541199 -1.364395,-7.877441 -2.781967,-21.090317l-2.173679,-20.260422l0.400162,-41.632065c0.22007,-22.897598 0.458218,-41.689102 0.529179,-41.758835c0.070969,-0.069763 2.23555,29.297028 4.810165,65.259583c2.574615,35.962524 4.584366,65.481506 4.46608,65.597717c-0.118256,0.116241 -1.211006,-1.025513 -2.428352,-2.537231l0,0z"/>
+ <path fill="#f9f9f9" stroke-width="0.3" stroke-miterlimit="4" id="path3307" d="m50.277557,248.374924c-8.742554,-4.149475 -15.815796,-7.622818 -15.718323,-7.718597c0.097473,-0.09581 6.336845,-5.316422 13.86525,-11.601425c9.251842,-7.72374 13.728382,-11.197754 13.812366,-10.719025c0.20549,1.171234 4.083279,37.509705 4.006886,37.54805c-0.038887,0.019501 -7.223682,-3.359558 -15.966179,-7.509003l0,0z"/>
+ <path fill="#f9f9f9" stroke-width="0.3" stroke-miterlimit="4" id="path3309" d="m67.75206,82.784393c1.364754,-1.218956 2.379868,-2.305138 2.255798,-2.413712c-0.124069,-0.108574 -10.173626,-0.83667 -22.332348,-1.617973c-12.158695,-0.781319 -22.918808,-1.54644 -23.911358,-1.700287c-1.293039,-0.200424 12.712524,-2.32222 49.401802,-7.48423c28.163544,-3.962494 51.940483,-7.318195 52.837677,-7.45713l1.631195,-0.252617l0.324471,6.01825c0.17849,3.310028 0.250633,6.090843 0.160362,6.179565c-0.090271,0.088722 -13.659142,2.469681 -30.153084,5.291008c-16.493889,2.82135 -30.597984,5.247543 -31.3424,5.391579c-1.27401,0.24649 -1.207809,0.13176 1.127884,-1.954437l0,-0.000015z"/>
+ <path fill="#f9f9f9" stroke-width="0.3" stroke-miterlimit="4" id="path3311" d="m129.333069,68.833817c-0.174194,-2.743698 -0.244965,-5.487392 -0.157288,-6.097103l0.159393,-1.108566l25.490417,-3.609566c14.01976,-1.985249 25.629517,-3.481815 25.799484,-3.325684c0.420273,0.386047 1.465454,9.773258 1.125351,10.107517c-0.241119,0.237 -50.294098,8.979897 -51.581238,9.00985c-0.343506,0.007988 -0.626678,-1.677483 -0.836121,-4.976448l0,0z"/>
+ <path fill="#f9f9f9" stroke-width="0.3" stroke-miterlimit="4" id="path3313" d="m182.828827,59.763733c-0.298874,-2.61068 -0.630081,-4.884491 -0.736008,-5.052925c-0.291321,-0.463196 0.690155,-0.723007 4.077957,-1.07959l3.079407,-0.324123l-0.283188,1.056553c-0.15567,0.581104 -0.528824,2.984581 -0.829086,5.341042c-0.53862,4.226974 -0.563766,4.288013 -1.871719,4.545113c-2.914215,0.572861 -2.848282,0.65892 -3.437363,-4.486069l0,0z"/>
+ <path fill="#e0e0e0" stroke-width="0.3" stroke-miterlimit="4" id="path3315" d="m189.113647,62.515003c0,-0.609711 0.152222,-1.10881 0.338333,-1.109127c0.186096,-0.000301 5.408554,-0.50811 11.605362,-1.128441c6.196915,-0.620346 11.779999,-1.069057 12.40686,-0.99715c0.889893,0.102066 -22.632675,4.360001 -24.012222,4.346577c-0.186111,-0.001804 -0.338333,-0.502148 -0.338333,-1.111858z"/>
+ <path fill="#e0e0e0" stroke-width="0.3" stroke-miterlimit="4" id="path3317" d="m22.418621,237.528259c-5.088343,-1.231827 -9.294324,-2.273453 -9.346678,-2.314713c-0.20079,-0.158249 3.492949,-142.210503 3.702364,-142.385063c0.121563,-0.101311 10.30142,0.393082 22.621876,1.098663l22.400837,1.282898l0.408871,6.568108c0.530823,8.526924 0.522476,55.43045 -0.01569,88.422333l-0.422894,25.924057l-14.213753,11.858582c-7.817547,6.522263 -14.589409,11.842056 -15.048573,11.821762c-0.459167,-0.020279 -4.998018,-1.044739 -10.086361,-2.276596l0,-0.000031z"/>
+ <path fill="#e0e0e0" stroke-width="0.3" stroke-miterlimit="4" id="path3319" d="m49.613537,248.084671l-15.234398,-7.327347l13.639313,-11.358795c10.782368,-8.979523 13.730942,-11.144211 14.076942,-10.334564c0.240685,0.563324 1.186413,8.50238 2.101543,17.642319c0.915138,9.139954 1.768005,17.111938 1.895248,17.715515c0.127235,0.603592 -0.1007,1.073318 -0.506485,1.043839c-0.405785,-0.029465 -7.593277,-3.350891 -15.972164,-7.380966l0,0z"/>
+ <path fill="#e0e0e0" stroke-width="0.3" stroke-miterlimit="4" id="path3323" d="m70.462708,259.629761l-2.679688,-3.233887l-2.223999,-20.662231l-2.224052,-20.662231l0.428566,-42.329147c0.235676,-23.280991 0.504623,-41.482529 0.597641,-40.447815c0.913353,10.160843 9.105522,128.253159 8.966125,129.248611c-0.1567,1.118652 -0.594666,0.826172 -2.864616,-1.9133l0.000023,0z"/>
+ <path fill="none" fill-rule="evenodd" stroke="#000000" stroke-width="3.5" marker-start="none" stroke-miterlimit="4" stroke-dasharray="1.75, 1.75" stroke-dashoffset="0" id="path2475" d="m129.037415,96.983139c2.463837,-27.579132 -8.299965,-52.162151 10.917648,-68.749176c3.880554,-3.349346 6.808945,-5.733942 14.337158,-6.168039c9.734543,0.200411 13.230545,2.711815 16.560089,7.135941c10.066467,13.37586 12.394897,32.186598 12.302536,50.564272c0,1.829628 0.450989,4.042778 0.450989,6.049217"/></g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ version="1.1"
+ viewBox="0 0 367 372"
+ id="svg3930">
+ <title
+ id="title5282">White bag for shopping. Bolsa blanca de compras.</title>
+ <defs
+ id="defs3932">
+ <linearGradient
+ x1="628.06"
+ y1="590.85"
+ gradientTransform="translate(-235.28 -382.54)"
+ x2="564.96"
+ gradientUnits="userSpaceOnUse"
+ y2="514.4"
+ id="linearGradient3874">
+ <stop
+ offset="0"
+ stop-color="#7b7b7b"
+ id="stop3870" />
+ <stop
+ offset="1"
+ stop-color="#989898"
+ id="stop3872" />
+ </linearGradient>
+ <radialGradient
+ r="160"
+ gradientTransform="matrix(-1.9574 -1.4681 .375 -.5 1045.1 1050.2)"
+ cx="323.46"
+ cy="291.03"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2996">
+ <stop
+ offset="0"
+ stop-color="#f2f2f2"
+ id="stop2992" />
+ <stop
+ offset="1"
+ stop-color="#f9f9f9"
+ id="stop2994" />
+ </radialGradient>
+ <linearGradient
+ x1="388.83"
+ y1="428.44"
+ gradientTransform="matrix(.40250 -.020464 .020464 .40250 35.708 266.29)"
+ x2="329.37"
+ gradientUnits="userSpaceOnUse"
+ y2="494.71"
+ id="linearGradient3801">
+ <stop
+ offset="0"
+ stop-color="#ececec"
+ id="stop3797" />
+ <stop
+ offset="1"
+ stop-color="#f9f9f9"
+ id="stop3799" />
+ </linearGradient>
+ <linearGradient
+ x1="434.93"
+ y1="806.67"
+ gradientTransform="translate(-235.28 -382.54)"
+ x2="401.07"
+ gradientUnits="userSpaceOnUse"
+ y2="555.01"
+ id="linearGradient3809">
+ <stop
+ offset="0"
+ stop-color="#e6e6e6"
+ id="stop3805" />
+ <stop
+ offset=".71677"
+ stop-color="#ececec"
+ id="stop3811" />
+ <stop
+ offset="1"
+ stop-color="#f9f9f9"
+ id="stop3807" />
+ </linearGradient>
+ <linearGradient
+ x1="710.52"
+ y1="530.97"
+ gradientTransform="translate(-235.28 -382.54)"
+ x2="450.42"
+ gradientUnits="userSpaceOnUse"
+ y2="562.69"
+ id="linearGradient3849">
+ <stop
+ offset="0"
+ stop-color="#e6e6e6"
+ id="stop3845" />
+ <stop
+ offset=".43554"
+ stop-color="#f9f9f9"
+ id="stop3884" />
+ <stop
+ offset="1"
+ stop-color="#e6e6e6"
+ id="stop3847" />
+ </linearGradient>
+ <linearGradient
+ x1="609.2"
+ x2="574.73"
+ gradientTransform="translate(-235.28 -382.54)"
+ y1="589.21"
+ gradientUnits="userSpaceOnUse"
+ y2="547.11"
+ id="linearGradient3928">
+ <stop
+ offset="0"
+ stop-color="#5f5f5f"
+ id="stop4012" />
+ <stop
+ offset="1"
+ stop-color="#a2a2a2"
+ id="stop4014" />
+ </linearGradient>
+ <linearGradient
+ x1="720.17"
+ x2="756.83"
+ gradientTransform="translate(-235.23 -382.79)"
+ y1="538.14"
+ gradientUnits="userSpaceOnUse"
+ y2="532.84"
+ id="linearGradient4610">
+ <stop
+ offset="0"
+ stop-color="#f9f9f9"
+ id="stop4711" />
+ <stop
+ offset=".43554"
+ stop-color="#f2f2f2"
+ id="stop4713" />
+ <stop
+ offset="1"
+ stop-color="#ececec"
+ id="stop4715" />
+ </linearGradient>
+ </defs>
+ <g
+ transform="translate(-160.05 -101.82)"
+ id="layer1">
+ <g
+ id="g4735">
+ <path
+ fill="none"
+ stroke-width="4.8722"
+ stroke-linecap="round"
+ stroke="url(#linearGradient3928)"
+ d="m305.92 209.11c-25.6-116.37 92.14-132.68 64.14-11.59"
+ id="path3858" />
+ <path
+ fill="url(#linearGradient3849)"
+ stroke-width="0"
+ d="m165.18 173.41s134.01 0.83386 187.4-4.5849c53.395-5.4188 132.97-27.928 132.97-27.928l-0.47578 9.3573 35.367 0.15861-159.58 41.041-190.04 8.6207z"
+ id="rect3832" />
+ <path
+ fill="url(#linearGradient3809)"
+ d="m165.19 173.37 40.851 7.1552-3.5442 10.559 15.495 113.49-6.8576 122.63c6.3719 5.8016-12.194 8.6238-16.408 12.308l-30.677 8.947c14.326-29.912 11.372-82.385 11.296-125.67 0-31.605-10.155-149.42-10.155-149.42z"
+ id="rect3776" />
+ <path
+ fill="url(#linearGradient3801)"
+ d="m201.24 469.77-18.823-10.254-18.159-11.083 31.062-9.9357 14.167-10.008-1.5086 22.462z"
+ id="path3774" />
+ <path
+ fill="url(#linearGradient4610)"
+ stroke-width="0"
+ d="m485.07 150.24-0.3043 9.1089 36.372-9.5142z"
+ id="path3150" />
+ <path
+ fill="#f2f2f2"
+ d="m206.02 180.56 0.32951 9.681-5.2418-0.24005z"
+ id="path3188" />
+ <path
+ fill="url(#radialGradient2996)"
+ d="m201.12 189.82s102.47 1.8606 155.8-4.806c53.333-6.6667 164.2-35.194 164.2-35.194s-9.0573 86.626-10.385 129.02c-1.328 42.399 2.4171 125.37 2.4171 125.37l7.9683 25.609-320 40 6.6402-19.127s6.1377-75.169 5.031-118.65c-1.1067-43.479-11.671-142.23-11.671-142.23z"
+ id="rect2985" />
+ <path
+ fill="none"
+ stroke-width="5"
+ stroke-linecap="round"
+ stroke="url(#linearGradient3874)"
+ d="m324.61 207.97c-26.28-119.43 94.55-136.16 65.82-11.9"
+ id="path3853" />
+ </g>
+ </g>
+ <metadata
+ id="metadata38">
+ <rdf:RDF>
+ <cc:Work>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
+ <dc:publisher>
+ <cc:Agent
+ rdf:about="http://openclipart.org/">
+ <dc:title>Openclipart</dc:title>
+ </cc:Agent>
+ </dc:publisher>
+ <dc:title>White bag for shopping. Bolsa blanca de compras.</dc:title>
+ <dc:date>2011-09-20T22:31:04</dc:date>
+ <dc:description>White bag for shopping. Bolsa blanca de compras.</dc:description>
+ <dc:source>http://openclipart.org/detail/161593/white-bag-by-ehecatl1138</dc:source>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Ehecatl1138</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>bag</rdf:li>
+ <rdf:li>blanco</rdf:li>
+ <rdf:li>bolsa</rdf:li>
+ <rdf:li>clip art</rdf:li>
+ <rdf:li>clipart</rdf:li>
+ <rdf:li>compras</rdf:li>
+ <rdf:li>mall</rdf:li>
+ <rdf:li>shopping</rdf:li>
+ <rdf:li>tiendas</rdf:li>
+ <rdf:li>white</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/publicdomain/">
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Distribution" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ transform="matrix(2.1305694,0,0,2.1305694,56.6196,93.148973)"
+ id="g18848">
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ id="g18786">
+ <path
+ d="m 64.21171,16.074469 -0.414867,0.0021 0.858661,-9.5976723 z m 4.500739,-5.614105 c -0.422981,0.385233 -1.033992,0.449791 -1.413581,0.43568 -0.835025,-0.03069 -1.64218,-0.821619 -1.742722,-1.9808471 -0.11183,-1.290461 0.432506,-2.3689027 1.355372,-2.4585082 0.45332,-0.04445 0.914753,0.276225 1.230136,0.6857999 h 0.714728 L 68.612613,6.1779942 C 68.561813,5.978322 68.40024,5.8287442 68.201274,5.7987581 L 64.869641,5.2967553 c -0.05997,-0.00917 -0.121003,-0.0067 -0.18027,0.0067 l -1.281289,0.2899834 c -0.188736,0.042686 -0.33655,0.1933222 -0.379589,0.3866444 L 61.153832,16.794488 c 0,0 1.780822,-0.201436 4.125031,-0.738011 1.792816,-0.410633 5.096227,-0.518936 5.096227,-0.518936 l -0.563033,-4.494389 c -0.60325,-0.02187 -0.965905,-0.429683 -1.099608,-0.582788"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1428" />
+ <path
+ d="m 44.349014,51.915038 c -0.852664,0.621594 -1.807281,1.176161 -2.875492,1.644297 3.713339,0.995892 10.901186,2.124075 24.417161,2.124075 13.516327,0 20.704175,-1.128183 24.417513,-2.124075 -1.068211,-0.468136 -2.022475,-1.022703 -2.875491,-1.644297 -4.189942,0.782814 -10.906831,1.480961 -21.542022,1.480961 -10.634839,0 -17.351727,-0.698147 -21.541669,-1.480961"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1432" />
+ <path
+ d="m 53.142105,23.756697 c -0.05644,0.732367 -0.116064,1.486253 -0.1778,2.240139 3.796947,-0.362303 8.213725,-0.569736 12.926836,-0.569736 4.713464,0 9.129536,0.207433 12.926483,0.569736 -0.06209,-0.753886 -0.121356,-1.507772 -0.1778,-2.240139 -3.757436,-0.351719 -8.107539,-0.554214 -12.748683,-0.554214 -4.641145,0 -8.991247,0.202495 -12.749036,0.554214"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1436" />
+ <path
+ d="m 65.891181,21.974397 c 4.601633,0 8.919633,0.198261 12.654844,0.544689 -0.109714,-1.474964 -0.202847,-2.798233 -0.269169,-3.765197 -0.06703,-0.985661 -0.785636,-1.788584 -1.733903,-1.951214 -3.008136,-0.515056 -6.646686,-0.748242 -10.652125,-0.748242 -4.005086,0 -7.643636,0.233186 -10.651772,0.748242 -0.948266,0.16263 -1.667228,0.965553 -1.734608,1.951214 -0.06632,0.966964 -0.15875,2.290233 -0.268817,3.765197 3.735917,-0.346428 8.05427,-0.544689 12.65555,-0.544689"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1440" />
+ <path
+ d="m 44.529884,55.401118 c -2.202744,-0.403578 -3.72498,-0.831144 -4.758267,-1.20015 l -1.999897,5.013678 c 0,0 1.07562,0.992011 5.573536,1.93675 z"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1444" />
+ <path
+ d="m 92.010531,54.200828 c -3.004608,1.071739 -10.139186,2.648303 -26.119666,2.648303 -8.572853,0 -14.597239,-0.454025 -18.806936,-1.039989 l -2.045758,5.664905 c 4.225219,0.730956 10.781594,1.357842 20.852694,1.357842 24.205494,0 28.118858,-3.617383 28.118858,-3.617383 z"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1448" />
+ <path
+ d="m 77.740242,29.342226 c 0,0 0.537633,6.987822 1.384653,9.618839 0,0 -2.625372,-3.370439 -1.384653,-9.618839 m 1.1811,-2.106083 c -3.819878,-0.3683 -8.272992,-0.58032 -13.0302,-0.58032 -4.757208,0 -9.209969,0.21202 -13.030552,0.58032 -0.08996,2.969683 -0.950031,17.849497 -7.3279,23.720071 0.898878,0.147462 1.89865,0.289631 3.006372,0.422275 0.859367,-0.767291 2.293761,-2.3749 3.411714,-5.264149 2.895953,-7.481711 2.761897,-16.81092 2.761897,-16.81092 1.0668,14.538678 -1.906764,20.538722 -3.207103,22.381281 3.735917,0.328083 8.449028,0.545747 14.385219,0.545747 9.686925,0 16.121592,-0.579261 20.358806,-1.274234 C 79.869609,45.08564 79.009889,30.205826 78.921342,27.236143"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1452" />
+ <path
+ d="m 74.748191,61.282588 c 0.04974,-0.223308 0.07373,-0.378178 0.07373,-0.378178 0,0 -0.0314,0.144286 -0.07373,0.378178"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1456" />
+ <path
+ d="m 69.244651,68.745358 -0.557742,-0.19685 c 0,0 -1.337733,0.394053 -1.521883,0.394053 -0.18415,0 -1.187803,-0.09878 -1.187803,-0.09878 l -0.767997,0.241653 -1.640769,-0.208845 -0.951089,-0.09843 c 0,0 -1.302808,0.993423 -2.060222,1.839736 l -0.400756,0.522464 c 0.09454,-0.159102 0.234597,-0.337255 0.400756,-0.522464 l 1.535288,-2.003777 c 0,0 0.754239,-0.426509 1.049514,-0.59055 0.295628,-0.164042 1.279878,-0.951442 1.575153,-0.918281 0.294922,0.0321 1.175456,0.259997 1.260122,-0.0014 0.08502,-0.261761 1.187803,0.263525 1.187803,0.263525 l 1.259417,0.19685 0.853016,0.459317 c 0,0 1.706386,1.77165 1.738842,1.870075 0.03281,0.09843 0.459317,1.049514 0.459317,1.049514 z m 5.577417,-3.821994 c -0.541867,-0.684036 -0.231775,-2.77742 -0.07373,-3.640667 -0.06809,0.300919 -0.183092,0.726017 -0.352425,1.065036 -0.295628,0.59055 -0.557742,2.427817 -0.557742,2.427817 0,0 -0.06597,0.721783 -0.558094,0.951441 -0.491772,0.230012 -1.049867,1.24707 -1.049867,1.24707 l 0.918634,1.771297 -1.443214,-1.509183 c 0,0 -0.525286,-0.262114 -1.148645,-0.394053 -0.623358,-0.130881 -2.657475,-1.968147 -3.391958,-2.394656 -0.734836,-0.426861 -1.332442,0.229659 -1.332442,0.229659 0,0 -0.131586,-0.229659 -0.7874,-0.361245 -0.656166,-0.13088 -1.738841,1.509536 -2.362552,1.706386 -0.623359,0.19685 -2.066572,0.918634 -2.657122,1.738842 -0.590903,0.820208 -2.061634,1.181453 -2.061634,1.181453 l 1.339497,-1.017411 c 0,0 0.09878,-1.148292 0,-1.5748 -0.09807,-0.426509 -1.148291,-0.7874 -1.443213,-1.77165 -0.295275,-0.984603 -1.279878,-2.887486 -1.279878,-2.887486 0,0 0.229658,1.509536 0.3937,2.198511 0.164394,0.688975 -0.03246,1.180747 -0.229659,1.541639 -0.196849,0.361244 -0.819855,1.772002 -0.426508,2.887486 0.3937,1.11513 0.164042,2.329744 0.262467,3.74015 0.09843,1.411111 1.345141,2.953102 1.345141,3.773311 0,0.819855 1.673578,2.952397 2.526242,3.313288 0.85337,0.361245 2.100086,1.44392 2.887486,2.001309 0.7874,0.557741 2.198158,1.050219 2.198158,1.050219 1.738842,-0.361244 3.051175,-1.837266 4.822825,-2.788708 1.772003,-0.951795 3.805767,-2.821517 3.838575,-3.379611 0.03316,-0.557742 0.557742,-0.7874 1.181453,-1.574447 0.623006,-0.787753 0.688975,-3.41242 0.799394,-4.822825 0.111125,-1.411111 -0.668513,-3.838928 -1.357488,-4.708172"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1460" />
+ </g>
+ <g
+ id="g1462"
+ transform="matrix(0.35277777,0,0,-0.35277777,10.283734,35.405108)">
+ <path
+ d="m 0,0 c 0,-0.253 0.013,-0.484 0.04,-0.695 0.079,-3.035 0.322,-5.795 0.73,-8.281 0.408,-2.487 0.954,-4.615 1.639,-6.385 0.684,-1.77 1.493,-3.14 2.427,-4.109 0.935,-0.969 1.955,-1.453 3.06,-1.453 2.053,0 3.639,1.643 4.757,4.93 1.119,3.286 1.679,7.881 1.679,13.781 0,3.16 -0.185,6.068 -0.553,8.722 -0.369,2.655 -0.888,4.952 -1.56,6.891 -0.671,1.938 -1.461,3.456 -2.368,4.552 -0.909,1.095 -1.902,1.643 -2.981,1.643 -1.027,0 -1.961,-0.454 -2.804,-1.36 C 3.224,17.331 2.5,16.044 1.895,14.38 1.29,12.716 0.822,10.726 0.494,8.408 0.164,6.09 0,3.519 0,0.695 Z m -7.777,11.53 c 0.71,1.722 1.599,3.277 2.665,4.663 1.066,1.387 2.25,2.573 3.553,3.56 1.303,0.987 2.697,1.754 4.184,2.301 1.487,0.545 3.021,0.819 4.6,0.819 2.421,0 4.671,-0.599 6.751,-1.796 2.079,-1.197 3.875,-2.847 5.389,-4.947 1.513,-2.101 2.704,-4.59 3.573,-7.467 0.869,-2.878 1.303,-6.018 1.303,-9.421 0,-3.488 -0.415,-6.659 -1.244,-9.515 -0.829,-2.858 -1.994,-5.326 -3.494,-7.405 -1.5,-2.079 -3.29,-3.686 -5.369,-4.821 -2.079,-1.134 -4.369,-1.701 -6.869,-1.701 -2.58,0 -4.923,0.567 -7.028,1.701 -2.106,1.135 -3.908,2.73 -5.409,4.79 -1.5,2.057 -2.664,4.537 -3.494,7.436 -0.829,2.898 -1.243,6.112 -1.243,9.641 0,4.621 0.71,8.674 2.132,12.162"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1464" />
+ </g>
+ <g
+ id="g1466"
+ transform="matrix(0.35277777,0,0,-0.35277777,19.225312,42.408447)">
+ <path
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.323,0.418 2.71,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.698,3.874 3.75,4.899 3.75,6.156 v 26.632 c 0,1.214 -0.052,2.219 -0.157,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.71,38.148 2.323,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.895,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.514,-0.189 0.947,0 2.125,0.063 3.533,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.876,-0.483 -1.165,-0.945 -0.29,-0.463 -0.487,-1.093 -0.592,-1.891 -0.106,-0.798 -0.158,-1.807 -0.158,-3.024 V 5.042 c 0,-0.589 0.006,-1.072 0.02,-1.45 0.013,-0.378 0.039,-0.693 0.079,-0.946 0.039,-0.251 0.091,-0.462 0.157,-0.629 0.066,-0.169 0.164,-0.337 0.297,-0.505 0.578,-0.841 1.605,-1.26 3.079,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.211,0.482 0.48,1.112 0.81,1.89 0.329,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1468" />
+ </g>
+ <g
+ id="g1470"
+ transform="matrix(0.35277777,0,0,-0.35277777,34.197342,28.447548)">
+ <path
+ d="m 0,0 v -34.281 c 0,-2.059 0.23,-3.456 0.691,-4.191 0.46,-0.735 1.309,-1.102 2.546,-1.102 1.316,0 2.507,0.451 3.573,1.355 1.066,0.903 1.974,2.183 2.724,3.844 0.751,1.659 1.329,3.665 1.737,6.018 0.408,2.352 0.612,4.999 0.612,7.94 0,6.637 -0.973,11.699 -2.921,15.187 C 7.014,-1.744 4.158,0 0.395,0 Z m -13.068,-39.574 c 1.342,0 2.29,0.355 2.843,1.067 0.553,0.712 0.829,1.948 0.829,3.706 v 28.956 c 0,1.843 -0.264,3.109 -0.79,3.8 -0.526,0.691 -1.487,1.037 -2.882,1.037 v 3.277 c 1.185,0.118 2.211,0.217 3.08,0.296 0.868,0.079 1.592,0.159 2.171,0.237 1.579,0.197 3.105,0.326 4.58,0.385 1.473,0.059 2.803,0.09 3.987,0.09 1.553,0 2.941,-0.043 4.165,-0.126 1.224,-0.085 2.342,-0.232 3.356,-0.442 1.013,-0.21 1.941,-0.483 2.783,-0.818 0.842,-0.337 1.672,-0.757 2.488,-1.261 1.236,-0.756 2.369,-1.818 3.395,-3.182 1.026,-1.366 1.901,-2.941 2.626,-4.726 0.723,-1.786 1.282,-3.729 1.677,-5.829 0.395,-2.101 0.593,-4.286 0.593,-6.554 0,-4.328 -0.652,-8.203 -1.955,-11.627 -1.303,-3.424 -3.152,-6.102 -5.547,-8.034 -0.842,-0.673 -1.691,-1.24 -2.546,-1.701 -0.856,-0.463 -1.79,-0.831 -2.803,-1.103 C 7.968,-42.4 6.83,-42.589 5.567,-42.693 4.303,-42.799 2.829,-42.851 1.145,-42.851 h -14.213 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1472" />
+ </g>
+ <g
+ id="g1474"
+ transform="matrix(0.35277777,0,0,-0.35277777,90.956671,34.893507)">
+ <path
+ d="m 0,0 v -13.611 c 0,-2.269 0.263,-3.992 0.789,-5.168 0.526,-1.177 1.289,-1.764 2.29,-1.764 1.131,0 2.02,0.86 2.665,2.584 0.645,1.721 0.967,4.095 0.967,7.12 0,1.428 -0.093,2.794 -0.276,4.096 C 6.25,-5.441 5.987,-4.244 5.646,-3.151 5.276,-2.059 4.783,-1.26 4.165,-0.756 3.546,-0.252 2.724,0 1.697,0 Z m 0,3.277 h 1.736 c 1.185,0 2.106,0.671 2.764,2.015 0.658,1.342 0.987,3.13 0.987,5.364 0,2.479 -0.362,4.442 -1.086,5.889 C 3.678,17.992 2.71,18.716 1.5,18.716 1.131,18.716 0.631,18.654 0,18.53 Z m -13.068,-24.072 c 1.368,0 2.322,0.344 2.862,1.035 0.539,0.692 0.81,1.937 0.81,3.738 v 28.956 c 0,1.8 -0.264,3.056 -0.791,3.768 -0.526,0.712 -1.487,1.069 -2.881,1.069 v 3.276 c 1.21,0.119 2.25,0.217 3.119,0.296 0.868,0.078 1.604,0.157 2.211,0.236 0.683,0.04 1.421,0.088 2.211,0.148 0.789,0.059 1.591,0.108 2.408,0.148 0.815,0.039 1.598,0.068 2.348,0.088 0.75,0.02 1.428,0.03 2.034,0.03 1.658,0 3.073,-0.055 4.244,-0.165 1.171,-0.109 2.178,-0.284 3.02,-0.524 0.842,-0.24 1.573,-0.568 2.192,-0.983 0.618,-0.416 1.19,-0.95 1.717,-1.605 0.658,-0.755 1.204,-1.875 1.638,-3.362 0.435,-1.486 0.652,-2.963 0.652,-4.43 0,-2.136 -0.356,-3.979 -1.067,-5.528 C 13.186,4.307 12.646,3.521 12.041,3.04 11.436,2.557 10.541,2.17 9.356,1.876 c 0.895,-0.251 1.619,-0.544 2.171,-0.878 1.448,-0.796 2.626,-2.231 3.535,-4.305 0.907,-2.073 1.361,-4.409 1.361,-7.005 0,-2.849 -0.487,-5.299 -1.46,-7.351 -0.527,-1.131 -1.159,-2.106 -1.896,-2.923 -0.737,-0.817 -1.598,-1.477 -2.586,-1.979 -0.987,-0.502 -2.119,-0.879 -3.395,-1.13 -1.276,-0.252 -2.718,-0.377 -4.323,-0.377 h -15.831 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1476" />
+ </g>
+ <g
+ id="g1478"
+ transform="matrix(0.35277777,0,0,-0.35277777,97.15406,42.264267)">
+ <path
+ d="m 0,0 c 1.18,0.04 2.002,0.395 2.467,1.066 0.465,0.67 0.698,1.858 0.698,3.564 v 28.393 c 0,1.787 -0.233,3.015 -0.698,3.685 C 2.002,37.379 1.18,37.714 0,37.714 v 3.179 h 24.093 l 0.374,-10.697 h -1.77 c -0.091,1.778 -0.216,3.112 -0.374,4.002 -0.159,0.889 -0.409,1.637 -0.749,2.243 -0.159,0.283 -0.323,0.505 -0.493,0.667 -0.17,0.162 -0.392,0.293 -0.664,0.394 -0.271,0.102 -0.612,0.162 -1.021,0.182 -0.408,0.02 -0.918,0.03 -1.531,0.03 h -6.601 v -16.87 h 6.295 c 0.658,0 1.196,0.081 1.616,0.244 0.42,0.162 0.749,0.448 0.987,0.856 0.238,0.407 0.402,0.968 0.493,1.681 0.091,0.712 0.137,1.62 0.137,2.72 h 1.701 c -0.046,-1.63 -0.08,-3.039 -0.102,-4.227 -0.023,-1.188 -0.035,-2.206 -0.035,-3.055 0,-0.848 0.012,-1.874 0.035,-3.077 0.022,-1.203 0.056,-2.6 0.102,-4.189 h -1.735 c 0,1.385 -0.058,2.424 -0.17,3.118 -0.114,0.692 -0.296,1.262 -0.545,1.711 -0.227,0.407 -0.505,0.682 -0.834,0.825 -0.329,0.143 -0.891,0.214 -1.685,0.214 h -6.26 V 5.482 c 0,-0.853 0.005,-1.544 0.016,-2.07 C 11.292,2.883 11.32,2.457 11.365,2.131 11.411,1.807 11.473,1.542 11.553,1.34 11.632,1.136 11.74,0.954 11.876,0.792 12.08,0.467 12.397,0.253 12.829,0.152 13.26,0.05 13.872,0 14.666,0 h 4.561 c 0.907,0 1.621,0.132 2.143,0.397 0.522,0.265 0.964,0.784 1.327,1.559 0.34,0.692 0.584,1.487 0.732,2.384 0.147,0.896 0.266,2.221 0.357,3.973 h 1.905 L 25.113,-3.179 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1480" />
+ </g>
+ <g
+ id="g1482"
+ transform="matrix(0.35277777,0,0,-0.35277777,106.46958,42.229668)">
+ <path
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.322,0.418 2.711,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.697,3.874 3.751,4.899 3.751,6.156 v 26.632 c 0,1.214 -0.054,2.219 -0.158,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.711,38.148 2.322,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.896,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.513,-0.189 0.948,0 2.126,0.063 3.534,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.875,-0.483 -1.166,-0.945 -0.289,-0.463 -0.487,-1.093 -0.591,-1.891 -0.106,-0.798 -0.159,-1.807 -0.159,-3.024 V 5.042 c 0,-0.589 0.007,-1.072 0.021,-1.45 0.013,-0.378 0.039,-0.693 0.078,-0.946 0.04,-0.251 0.093,-0.462 0.158,-0.629 0.066,-0.169 0.164,-0.337 0.296,-0.505 0.579,-0.841 1.606,-1.26 3.08,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.21,0.482 0.48,1.112 0.81,1.89 0.328,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1484" />
+ </g>
+ <g
+ id="g1486"
+ transform="matrix(0.35277777,0,0,-0.35277777,116.8314,42.229668)">
+ <path
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.322,0.418 2.711,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.697,3.874 3.751,4.899 3.751,6.156 v 26.632 c 0,1.214 -0.054,2.219 -0.158,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.711,38.148 2.322,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.896,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.513,-0.189 0.948,0 2.126,0.063 3.534,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.875,-0.483 -1.166,-0.945 -0.289,-0.463 -0.487,-1.093 -0.591,-1.891 -0.106,-0.798 -0.159,-1.807 -0.159,-3.024 V 5.042 c 0,-0.589 0.007,-1.072 0.021,-1.45 0.013,-0.378 0.039,-0.693 0.078,-0.946 0.04,-0.251 0.093,-0.462 0.158,-0.629 0.066,-0.169 0.164,-0.337 0.296,-0.505 0.579,-0.841 1.606,-1.26 3.08,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.21,0.482 0.48,1.112 0.81,1.89 0.328,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1488" />
+ </g>
+ <g
+ id="g1574"
+ transform="matrix(0.35277777,0,0,-0.35277777,30.528664,62.556578)">
+ <path
+ d="m 0,0 c -0.566,0 -1.025,0.459 -1.025,1.025 0,0.567 0.459,1.027 1.025,1.027 0.566,0 1.025,-0.46 1.025,-1.027 C 1.025,0.459 0.566,0 0,0 m -62.412,-1 c -0.794,0 -1.437,0.643 -1.437,1.437 0,0.792 0.643,1.436 1.437,1.436 0.793,0 1.436,-0.644 1.436,-1.436 0,-0.794 -0.643,-1.437 -1.436,-1.437 M 5.573,1.694 C 5.306,3.79 3.077,3.479 3.077,3.479 c 0,0 -17.835,-1.561 -29.517,-2.32 -11.682,-0.758 -34.51,2.542 -34.51,2.542 -4.949,0.892 -5.78,-1.625 -5.78,-1.625 -1.472,-3.835 2.034,-4.796 2.034,-4.796 8.294,-2.541 18.682,-3.255 34.824,-3.165 16.143,0.089 33.394,4.905 33.394,4.905 0,0 2.319,0.58 2.051,2.674"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1576" />
+ </g>
+ <g
+ id="g1578"
+ transform="matrix(0.35277777,0,0,-0.35277777,22.632508,59.331978)">
+ <path
+ d="m 0,0 1.739,3.79 -28.001,15.383 -2.274,-2.096 1.758,2.772 c 0.139,0.221 0.427,0.296 0.658,0.17 L 2.81,4.146 Z m -26.166,21.114 c -0.382,0.213 -0.864,0.099 -1.109,-0.263 l -3.24,-4.781 c -0.235,-0.347 -0.312,-0.777 -0.213,-1.183 0.1,-0.408 0.367,-0.753 0.735,-0.952 L -2.821,-0.761 c 1.257,-0.679 2.743,-0.796 4.091,-0.32 l 2.299,0.811 c 0.565,0.2 1.189,0.143 1.707,-0.155 l 9.661,-5.55 6.42,0.536 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1580" />
+ </g>
+ <g
+ id="g1582"
+ transform="matrix(0.35277777,0,0,-0.35277777,103.01691,62.194838)">
+ <path
+ d="M 0,0 C 0,0.566 0.459,1.026 1.025,1.026 1.592,1.026 2.051,0.566 2.051,0 2.051,-0.566 1.592,-1.025 1.025,-1.025 0.459,-1.025 0,-0.566 0,0 m 62.001,-0.589 c 0,0.793 0.644,1.437 1.437,1.437 0.793,0 1.436,-0.644 1.436,-1.437 0,-0.794 -0.643,-1.436 -1.436,-1.436 -0.793,0 -1.437,0.642 -1.437,1.436 M -2.497,-2.006 c 0,0 17.252,-4.815 33.394,-4.904 16.142,-0.09 26.531,0.624 34.825,3.165 0,0 3.506,0.961 2.034,4.796 0,0 -0.831,2.516 -5.78,1.625 0,0 -22.829,-3.3 -34.51,-2.542 -11.683,0.759 -29.518,2.319 -29.518,2.319 0,0 -2.228,0.312 -2.496,-1.784 -0.267,-2.095 2.051,-2.675 2.051,-2.675"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1584" />
+ </g>
+ <g
+ id="g1586"
+ transform="matrix(0.35277777,0,0,-0.35277777,110.28364,57.869188)">
+ <path
+ d="m 0,0 28.93,15.872 c 0.23,0.126 0.518,0.052 0.658,-0.17 L 31.346,12.931 29.071,15.026 1.07,-0.356 2.81,-4.146 Z m -18.548,-9.586 6.421,-0.535 9.66,5.55 c 0.519,0.298 1.143,0.354 1.707,0.155 l 2.3,-0.812 c 1.348,-0.475 2.834,-0.359 4.091,0.321 L 32.803,9.788 c 0.368,0.199 0.635,0.545 0.734,0.952 0.1,0.406 0.023,0.836 -0.213,1.184 l -3.239,4.78 c -0.245,0.362 -0.728,0.477 -1.109,0.264 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1588" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g18760">
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,57.270699,20.747757)"
+ id="g1590">
+ <path
+ id="path1592"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.225,0.024 0.411,0.058 0.558,0.102 0.148,0.044 0.266,0.111 0.357,0.203 0.091,0.092 0.156,0.208 0.195,0.347 0.039,0.14 0.058,0.313 0.058,0.521 v 5.576 c 0,0.398 -0.086,0.68 -0.259,0.843 C 0.735,7.755 0.433,7.857 0,7.897 V 8.293 H 6.167 L 6.309,6.133 H 5.881 C 5.863,6.324 5.844,6.485 5.822,6.616 5.8,6.747 5.774,6.864 5.744,6.967 5.713,7.071 5.679,7.16 5.64,7.236 5.601,7.311 5.551,7.389 5.49,7.468 5.368,7.619 5.208,7.728 5.008,7.796 4.808,7.863 4.517,7.897 4.135,7.897 H 2.285 V 4.225 h 1.968 c 0.252,0 0.45,0.03 0.594,0.09 0.143,0.06 0.258,0.158 0.345,0.294 0.052,0.088 0.089,0.186 0.111,0.294 0.021,0.108 0.041,0.282 0.058,0.522 H 5.777 C 5.759,5.113 5.751,4.841 5.751,4.609 V 4.015 3.421 c 0,-0.232 0.008,-0.5 0.026,-0.804 H 5.361 C 5.344,3.081 5.259,3.399 5.107,3.571 4.955,3.743 4.67,3.829 4.253,3.829 H 2.285 V 1.11 C 2.285,0.896 2.3,0.719 2.33,0.58 2.36,0.44 2.419,0.332 2.505,0.252 2.592,0.172 2.707,0.117 2.85,0.085 2.992,0.053 3.181,0.037 3.414,0.037 h 1.35 c 0.58,0 0.995,0.152 1.247,0.456 0.06,0.072 0.112,0.148 0.156,0.228 0.042,0.08 0.082,0.174 0.116,0.282 C 6.317,1.111 6.348,1.239 6.374,1.387 6.4,1.535 6.43,1.713 6.465,1.921 H 6.88 L 6.569,-0.359 H 0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,60.128411,20.209806)"
+ id="g1594">
+ <path
+ id="path1596"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.026,-0.128 0.052,-0.248 0.078,-0.36 0.026,-0.112 0.056,-0.212 0.09,-0.3 0.096,-0.304 0.269,-0.542 0.52,-0.714 0.251,-0.172 0.532,-0.258 0.844,-0.258 0.354,0 0.644,0.1 0.869,0.3 0.225,0.2 0.338,0.46 0.338,0.78 0,0.232 -0.065,0.44 -0.195,0.624 C 2.492,0.144 2.438,0.212 2.382,0.276 2.326,0.34 2.252,0.406 2.161,0.474 2.07,0.542 1.958,0.616 1.824,0.696 1.689,0.776 1.523,0.872 1.324,0.984 0.718,1.32 0.29,1.644 0.039,1.956 c -0.251,0.312 -0.377,0.676 -0.377,1.092 0,0.24 0.056,0.46 0.169,0.66 0.112,0.2 0.266,0.374 0.461,0.522 0.195,0.148 0.426,0.262 0.694,0.342 0.268,0.08 0.558,0.12 0.87,0.12 0.13,0 0.249,-0.004 0.357,-0.012 C 2.321,4.672 2.432,4.658 2.544,4.638 2.657,4.618 2.776,4.588 2.901,4.548 3.026,4.508 3.171,4.456 3.336,4.392 V 2.64 H 2.959 C 2.942,2.776 2.927,2.906 2.914,3.03 2.901,3.154 2.882,3.268 2.856,3.372 2.787,3.652 2.644,3.876 2.427,4.044 2.211,4.212 1.96,4.296 1.674,4.296 1.363,4.296 1.103,4.204 0.896,4.02 0.688,3.836 0.584,3.604 0.584,3.324 0.584,3.188 0.61,3.06 0.661,2.94 0.713,2.82 0.801,2.696 0.925,2.568 1.049,2.44 1.212,2.304 1.415,2.16 1.616,2.016 1.867,1.856 2.167,1.68 2.468,1.504 2.717,1.34 2.915,1.188 3.112,1.036 3.271,0.884 3.391,0.732 3.511,0.58 3.597,0.424 3.648,0.264 3.7,0.104 3.726,-0.072 3.726,-0.264 3.726,-0.504 3.675,-0.732 3.574,-0.948 3.472,-1.164 3.335,-1.352 3.163,-1.512 2.99,-1.672 2.785,-1.798 2.548,-1.89 2.312,-1.981 2.06,-2.028 1.792,-2.028 1.514,-2.028 1.233,-1.992 0.947,-1.92 0.87,-1.904 0.802,-1.892 0.746,-1.884 0.69,-1.876 0.649,-1.868 0.623,-1.86 0.554,-1.844 0.498,-1.836 0.454,-1.836 0.29,-1.836 0.186,-1.904 0.143,-2.04 H -0.273 L -0.429,0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,61.717464,18.681567)"
+ id="g1598">
+ <path
+ id="path1600"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.147,0.072 0.275,0.136 0.383,0.192 0.491,0.248 0.586,0.306 0.668,0.366 0.751,0.426 0.831,0.49 0.909,0.558 0.987,0.626 1.064,0.704 1.143,0.792 1.22,0.88 1.287,0.962 1.344,1.038 1.4,1.114 1.45,1.192 1.493,1.272 1.536,1.352 1.577,1.438 1.616,1.53 1.655,1.622 1.696,1.736 1.74,1.872 H 2.025 V 0.276 H 4.543 L 4.35,-0.192 H 2.025 v -4.596 c 0,-0.672 0.273,-1.008 0.818,-1.008 0.251,0 0.47,0.064 0.656,0.192 0.186,0.128 0.396,0.356 0.629,0.684 L 4.361,-5.292 C 4.258,-5.452 4.154,-5.584 4.05,-5.688 3.851,-5.896 3.618,-6.06 3.349,-6.18 3.081,-6.3 2.795,-6.36 2.493,-6.36 1.973,-6.36 1.595,-6.236 1.357,-5.988 1.119,-5.74 1,-5.352 1,-4.824 v 4.632 H 0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,63.583306,20.465777)"
+ id="g1602">
+ <path
+ id="path1604"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.144,0.148 0.322,0.242 0.539,0.282 0.565,0.29 0.613,0.294 0.682,0.294 H 0.799 C 1.023,0.254 1.21,0.158 1.357,0.006 1.504,-0.146 1.578,-0.314 1.578,-0.498 1.578,-0.682 1.504,-0.848 1.357,-0.996 1.21,-1.145 1.023,-1.238 0.799,-1.278 0.773,-1.278 0.752,-1.28 0.734,-1.284 0.717,-1.288 0.699,-1.29 0.682,-1.29 0.664,-1.29 0.641,-1.288 0.611,-1.284 0.58,-1.28 0.557,-1.278 0.539,-1.278 0.322,-1.23 0.144,-1.134 0,-0.99 c -0.143,0.144 -0.213,0.308 -0.213,0.492 0,0.184 0.07,0.35 0.213,0.498" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,65.738213,20.742777)"
+ id="g1606">
+ <path
+ id="path1608"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 0.817,0.722 c 0.459,0.409 0.858,0.773 1.196,1.09 0.337,0.316 0.631,0.609 0.883,0.878 0.25,0.269 0.472,0.528 0.667,0.776 0.196,0.249 0.379,0.51 0.552,0.783 0.077,0.128 0.152,0.271 0.221,0.427 0.069,0.156 0.132,0.315 0.188,0.475 0.056,0.161 0.1,0.315 0.129,0.464 0.032,0.148 0.046,0.282 0.046,0.403 0,0.241 -0.046,0.467 -0.136,0.68 C 4.472,6.911 4.349,7.093 4.192,7.246 4.037,7.398 3.853,7.518 3.642,7.606 3.429,7.695 3.202,7.739 2.96,7.739 2.562,7.739 2.173,7.627 1.792,7.403 1.618,7.299 1.474,7.193 1.356,7.085 1.239,6.977 1.136,6.855 1.045,6.719 0.954,6.583 0.874,6.423 0.805,6.239 0.735,6.055 0.667,5.839 0.597,5.591 H 0.194 c 0.043,0.248 0.096,0.472 0.157,0.672 0.06,0.2 0.125,0.372 0.195,0.516 0.103,0.24 0.25,0.462 0.44,0.666 0.191,0.203 0.408,0.377 0.65,0.52 0.242,0.143 0.504,0.253 0.785,0.33 0.281,0.078 0.564,0.116 0.85,0.116 0.373,0 0.716,-0.058 1.033,-0.174 C 4.619,8.121 4.894,7.959 5.128,7.751 5.361,7.543 5.543,7.297 5.673,7.013 5.803,6.729 5.868,6.419 5.868,6.083 5.868,5.779 5.827,5.491 5.744,5.219 5.662,4.947 5.519,4.663 5.315,4.367 5.112,4.071 4.84,3.751 4.498,3.407 4.156,3.063 3.729,2.675 3.22,2.243 3.012,2.067 2.827,1.911 2.667,1.775 2.507,1.639 2.347,1.507 2.188,1.379 2.027,1.251 1.86,1.119 1.688,0.983 1.515,0.847 1.315,0.695 1.091,0.527 h 3.453 c 0.354,0 0.609,0.06 0.766,0.18 0.051,0.04 0.097,0.086 0.136,0.138 0.039,0.052 0.077,0.12 0.117,0.204 0.039,0.084 0.08,0.19 0.124,0.318 0.042,0.128 0.089,0.284 0.142,0.468 H 6.192 L 5.854,-0.373 H 0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,68.78575,18.440937)"
+ id="g1610">
+ <path
+ id="path1612"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -0.065,-0.241 -0.119,-0.501 -0.162,-0.781 -0.044,-0.281 -0.078,-0.575 -0.105,-0.884 -0.025,-0.308 -0.039,-0.615 -0.039,-0.919 0,-0.296 0.014,-0.595 0.039,-0.895 0.027,-0.301 0.061,-0.591 0.105,-0.872 0.043,-0.28 0.095,-0.543 0.155,-0.787 0.061,-0.244 0.131,-0.454 0.208,-0.631 0.121,-0.28 0.296,-0.499 0.527,-0.654 0.228,-0.157 0.49,-0.235 0.785,-0.235 0.294,0 0.558,0.078 0.791,0.235 0.234,0.155 0.412,0.374 0.533,0.654 0.078,0.168 0.146,0.375 0.207,0.619 0.06,0.245 0.113,0.507 0.156,0.787 0.043,0.281 0.076,0.573 0.098,0.878 0.021,0.304 0.032,0.605 0.032,0.901 0,0.609 -0.046,1.202 -0.137,1.779 C 3.103,-0.229 2.983,0.244 2.837,0.613 2.724,0.885 2.549,1.104 2.312,1.268 2.073,1.432 1.807,1.514 1.513,1.514 1.218,1.514 0.956,1.434 0.728,1.273 0.497,1.113 0.322,0.893 0.201,0.613 0.132,0.444 0.065,0.24 0,0 m -1.278,-0.742 c 0.146,0.552 0.351,1.024 0.616,1.416 0.265,0.392 0.585,0.696 0.961,0.912 C 0.675,1.802 1.093,1.91 1.552,1.91 1.993,1.91 2.396,1.8 2.759,1.58 3.122,1.36 3.434,1.052 3.693,0.656 3.953,0.26 4.156,-0.212 4.304,-0.76 4.45,-1.308 4.524,-1.914 4.524,-2.578 4.524,-3.25 4.45,-3.86 4.304,-4.408 4.156,-4.956 3.95,-5.426 3.687,-5.818 3.423,-6.21 3.103,-6.514 2.726,-6.73 2.35,-6.946 1.937,-7.054 1.486,-7.054 c -0.441,0 -0.845,0.108 -1.214,0.324 -0.367,0.216 -0.681,0.522 -0.941,0.918 -0.26,0.396 -0.463,0.868 -0.609,1.416 -0.148,0.548 -0.221,1.154 -0.221,1.818 0,0.672 0.073,1.284 0.221,1.836" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,71.04572,18.347026)"
+ id="g1614">
+ <path
+ id="path1616"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.199,0.128 0.379,0.26 0.539,0.396 0.159,0.136 0.315,0.288 0.468,0.456 0.15,0.168 0.334,0.38 0.551,0.636 h 0.649 v -7.176 c 0,-0.2 0.017,-0.366 0.052,-0.498 0.035,-0.132 0.097,-0.242 0.188,-0.33 0.091,-0.088 0.212,-0.154 0.364,-0.198 0.151,-0.044 0.339,-0.074 0.565,-0.09 v -0.36 c -0.381,0.016 -0.711,0.028 -0.987,0.036 -0.277,0.008 -0.511,0.012 -0.701,0.012 -0.199,0 -0.446,-0.004 -0.74,-0.012 -0.295,-0.008 -0.636,-0.02 -1.025,-0.036 v 0.348 c 0.441,0.04 0.746,0.144 0.914,0.312 0.17,0.168 0.254,0.452 0.254,0.852 V 0.36 C 0.909,0.216 0.757,0.096 0.636,0 0.515,-0.096 0.396,-0.182 0.279,-0.258 0.163,-0.334 0.034,-0.41 -0.104,-0.486 -0.242,-0.562 -0.411,-0.652 -0.61,-0.756 l -0.143,0.312 C -0.45,-0.276 -0.199,-0.128 0,0" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,72.66253,17.822166)"
+ id="g1618">
+ <path
+ id="path1620"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 H 5.842 V -0.42 L 2.284,-8.652 H 1.115 l 3.791,7.8 H 1.311 C 1.129,-0.852 0.973,-0.88 0.844,-0.936 0.713,-0.992 0.605,-1.082 0.519,-1.206 0.432,-1.33 0.363,-1.498 0.311,-1.71 0.26,-1.922 0.221,-2.184 0.194,-2.496 h -0.441 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g18792">
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,74.87463,40.498658)"
+ id="g1622">
+ <path
+ id="path1624"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 3.972,-0.996 4.303,-4.468 3.889,-5.241 3.475,-6.014 2.928,-6.464 2.481,-6.704 c -1.245,-0.671 -3.377,-0.887 -5.642,0.412 -2.803,1.608 -2.485,4 -1.94,4.794 C -4.557,-0.704 -3.449,0.866 0,0 m -54.502,8.249 c 3.977,-2.068 32.268,-10.248 32.268,-10.248 2.348,1.034 4.186,1.499 7.231,1.278 3.045,-0.22 8.598,-4.682 8.598,-4.682 0,0 3.509,-3.01 8.083,-3.164 4.573,-0.154 10.696,1.57 12.118,4.228 0,0 0.473,0.606 -10e-4,0.988 -0.474,0.383 -0.999,-0.392 -1.384,-0.753 0,0 -2.152,-1.553 -3.004,-1.906 C 8.556,-6.362 6.697,-6.734 5.999,-5.33 5.3,-3.926 3.893,0.318 0.48,1.222 c -3.413,0.904 -4.279,-0.606 -7.298,-1.69 -3.02,-1.085 -6.574,1.309 -7.198,1.725 -0.623,0.418 -1.028,0.148 -1.028,0.148 -0.868,-0.446 -3.822,-0.092 -3.822,-0.092 l -15.817,3.684 -19.848,3.83 c -0.422,-0.363 0.029,-0.578 0.029,-0.578" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,69.185731,46.435267)"
+ id="g1626">
+ <path
+ id="path1628"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 1.897,-0.989 4.565,-3.882 2.875,-6.299 1.185,-8.716 -1.034,-7.754 -1.034,-7.754 -3.336,-7.31 -6.042,-4.003 -5.402,-1.605 -4.762,0.791 -1.898,0.99 0,0 m -32.325,35.646 c 0.106,-0.496 23.473,-22.309 23.473,-22.309 0,0 2.507,-3.027 3.821,-7.711 0,0 1.129,-2.289 -0.528,-4.953 -1.655,-2.663 -0.962,-5.869 1.41,-7.874 0,0 2.575,-2.659 5.145,-1.741 2.57,0.917 3.491,2.815 3.974,4.62 0.482,1.804 1.477,2.26 1.477,2.26 0,0 1.494,0.394 0.795,1.597 -0.7,1.204 -1.585,0.289 -1.712,-0.094 0,0 -4.597,0.309 -7.581,4.52 -2.983,4.212 -2.837,11.875 -2.837,11.875 0,0 -25.054,19.227 -26.973,20.2 0,0 -0.571,0.107 -0.464,-0.39" />
+ </g>
+ </g>
+ </g>
+ <text
+ id="text1153"
+ y="298.53879"
+ x="97.611404"
+ style="font-size:32px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';letter-spacing:0px;word-spacing:0px"
+ xml:space="preserve"><tspan
+ y="298.53879"
+ x="97.611404"
+ id="tspan1151">Online Shop</tspan></text>
+</svg>
--- /dev/null
+<?xml version="1.0"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:svg="http://www.w3.org/2000/svg" id="svg3930" viewBox="0 0 367 372" version="1.1">
+ <title id="title5282">White bag for shopping. Bolsa blanca de compras.</title>
+ <defs id="defs3932">
+ <linearGradient id="linearGradient3874" y2="514.4" gradientUnits="userSpaceOnUse" x2="564.96" gradientTransform="translate(-235.28 -382.54)" y1="590.85" x1="628.06">
+ <stop id="stop3870" stop-color="#7b7b7b" offset="0"/>
+ <stop id="stop3872" stop-color="#989898" offset="1"/>
+ </linearGradient>
+ <radialGradient id="radialGradient2996" gradientUnits="userSpaceOnUse" cy="291.03" cx="323.46" gradientTransform="matrix(-1.9574 -1.4681 .375 -.5 1045.1 1050.2)" r="160">
+ <stop id="stop2992" stop-color="#f2f2f2" offset="0"/>
+ <stop id="stop2994" stop-color="#f9f9f9" offset="1"/>
+ </radialGradient>
+ <linearGradient id="linearGradient3801" y2="494.71" gradientUnits="userSpaceOnUse" x2="329.37" gradientTransform="matrix(.40250 -.020464 .020464 .40250 35.708 266.29)" y1="428.44" x1="388.83">
+ <stop id="stop3797" stop-color="#ececec" offset="0"/>
+ <stop id="stop3799" stop-color="#f9f9f9" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient3809" y2="555.01" gradientUnits="userSpaceOnUse" x2="401.07" gradientTransform="translate(-235.28 -382.54)" y1="806.67" x1="434.93">
+ <stop id="stop3805" stop-color="#e6e6e6" offset="0"/>
+ <stop id="stop3811" stop-color="#ececec" offset=".71677"/>
+ <stop id="stop3807" stop-color="#f9f9f9" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient3849" y2="562.69" gradientUnits="userSpaceOnUse" x2="450.42" gradientTransform="translate(-235.28 -382.54)" y1="530.97" x1="710.52">
+ <stop id="stop3845" stop-color="#e6e6e6" offset="0"/>
+ <stop id="stop3884" stop-color="#f9f9f9" offset=".43554"/>
+ <stop id="stop3847" stop-color="#e6e6e6" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient3928" y2="547.11" gradientUnits="userSpaceOnUse" y1="589.21" gradientTransform="translate(-235.28 -382.54)" x2="574.73" x1="609.2">
+ <stop id="stop4012" stop-color="#5f5f5f" offset="0"/>
+ <stop id="stop4014" stop-color="#a2a2a2" offset="1"/>
+ </linearGradient>
+ <linearGradient id="linearGradient4610" y2="532.84" gradientUnits="userSpaceOnUse" y1="538.14" gradientTransform="translate(-235.23 -382.79)" x2="756.83" x1="720.17">
+ <stop id="stop4711" stop-color="#f9f9f9" offset="0"/>
+ <stop id="stop4713" stop-color="#f2f2f2" offset=".43554"/>
+ <stop id="stop4715" stop-color="#ececec" offset="1"/>
+ </linearGradient>
+ </defs>
+ <g id="layer1" transform="translate(-160.05 -101.82)">
+ <g id="g4735">
+ <path id="path3858" d="m305.92 209.11c-25.6-116.37 92.14-132.68 64.14-11.59" stroke="url(#linearGradient3928)" stroke-linecap="round" stroke-width="4.8722" fill="none"/>
+ <path id="rect3832" d="m165.18 173.41s134.01 0.83386 187.4-4.5849c53.395-5.4188 132.97-27.928 132.97-27.928l-0.47578 9.3573 35.367 0.15861-159.58 41.041-190.04 8.6207z" stroke-width="0" fill="url(#linearGradient3849)"/>
+ <path id="rect3776" d="m165.19 173.37 40.851 7.1552-3.5442 10.559 15.495 113.49-6.8576 122.63c6.3719 5.8016-12.194 8.6238-16.408 12.308l-30.677 8.947c14.326-29.912 11.372-82.385 11.296-125.67 0-31.605-10.155-149.42-10.155-149.42z" fill="url(#linearGradient3809)"/>
+ <path id="path3774" d="m201.24 469.77-18.823-10.254-18.159-11.083 31.062-9.9357 14.167-10.008-1.5086 22.462z" fill="url(#linearGradient3801)"/>
+ <path id="path3150" d="m485.07 150.24-0.3043 9.1089 36.372-9.5142z" stroke-width="0" fill="url(#linearGradient4610)"/>
+ <path id="path3188" d="m206.02 180.56 0.32951 9.681-5.2418-0.24005z" fill="#f2f2f2"/>
+ <path id="rect2985" d="m201.12 189.82s102.47 1.8606 155.8-4.806c53.333-6.6667 164.2-35.194 164.2-35.194s-9.0573 86.626-10.385 129.02c-1.328 42.399 2.4171 125.37 2.4171 125.37l7.9683 25.609-320 40 6.6402-19.127s6.1377-75.169 5.031-118.65c-1.1067-43.479-11.671-142.23-11.671-142.23z" fill="url(#radialGradient2996)"/>
+ <path id="path3853" d="m324.61 207.97c-26.28-119.43 94.55-136.16 65.82-11.9" stroke="url(#linearGradient3874)" stroke-linecap="round" stroke-width="5" fill="none"/>
+ </g>
+ </g>
+ <metadata>
+ <rdf:RDF>
+ <cc:Work>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+ <cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/>
+ <dc:publisher>
+ <cc:Agent rdf:about="http://openclipart.org/">
+ <dc:title>Openclipart</dc:title>
+ </cc:Agent>
+ </dc:publisher>
+ <dc:title>White bag</dc:title>
+ <dc:date>2011-09-20T22:31:04</dc:date>
+ <dc:description>White bag for shopping. Bolsa blanca de compras.</dc:description>
+ <dc:source>http://openclipart.org/detail/161593/white-bag-by-ehecatl1138</dc:source>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Ehecatl1138</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>bag</rdf:li>
+ <rdf:li>blanco</rdf:li>
+ <rdf:li>bolsa</rdf:li>
+ <rdf:li>clip art</rdf:li>
+ <rdf:li>clipart</rdf:li>
+ <rdf:li>compras</rdf:li>
+ <rdf:li>mall</rdf:li>
+ <rdf:li>shopping</rdf:li>
+ <rdf:li>tiendas</rdf:li>
+ <rdf:li>white</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ <cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/">
+ <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
+ <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
+ <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ id="svg17326"
+ version="1.1"
+ viewBox="0 0 33.866666 33.866666"
+ height="128"
+ width="128">
+ <defs
+ id="defs17320" />
+ <metadata
+ id="metadata17323">
+ <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>
+ <g
+ id="layer1">
+ <g
+ transform="matrix(1.2797172,0,0,1.2797172,-6.881488,-2.6338905)"
+ id="g17935">
+ <g
+ transform="matrix(0.35277777,0,0,-0.35277777,25.700813,14.307204)"
+ id="g1622"
+ style="fill:#fff;fill-opacity:1">
+ <path
+ id="path1624"
+ style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 3.972,-0.996 4.303,-4.468 3.889,-5.241 3.475,-6.014 2.928,-6.464 2.481,-6.704 c -1.245,-0.671 -3.377,-0.887 -5.642,0.412 -2.803,1.608 -2.485,4 -1.94,4.794 C -4.557,-0.704 -3.449,0.866 0,0 m -54.502,8.249 c 3.977,-2.068 32.268,-10.248 32.268,-10.248 2.348,1.034 4.186,1.499 7.231,1.278 3.045,-0.22 8.598,-4.682 8.598,-4.682 0,0 3.509,-3.01 8.083,-3.164 4.573,-0.154 10.696,1.57 12.118,4.228 0,0 0.473,0.606 -10e-4,0.988 -0.474,0.383 -0.999,-0.392 -1.384,-0.753 0,0 -2.152,-1.553 -3.004,-1.906 C 8.556,-6.362 6.697,-6.734 5.999,-5.33 5.3,-3.926 3.893,0.318 0.48,1.222 c -3.413,0.904 -4.279,-0.606 -7.298,-1.69 -3.02,-1.085 -6.574,1.309 -7.198,1.725 -0.623,0.418 -1.028,0.148 -1.028,0.148 -0.868,-0.446 -3.822,-0.092 -3.822,-0.092 l -15.817,3.684 -19.848,3.83 c -0.422,-0.363 0.029,-0.578 0.029,-0.578" />
+ </g>
+ <g
+ transform="matrix(0.35277777,0,0,-0.35277777,20.011914,20.243813)"
+ id="g1626"
+ style="fill:#fff;fill-opacity:1">
+ <path
+ id="path1628"
+ style="fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 1.897,-0.989 4.565,-3.882 2.875,-6.299 1.185,-8.716 -1.034,-7.754 -1.034,-7.754 -3.336,-7.31 -6.042,-4.003 -5.402,-1.605 -4.762,0.791 -1.898,0.99 0,0 m -32.325,35.646 c 0.106,-0.496 23.473,-22.309 23.473,-22.309 0,0 2.507,-3.027 3.821,-7.711 0,0 1.129,-2.289 -0.528,-4.953 -1.655,-2.663 -0.962,-5.869 1.41,-7.874 0,0 2.575,-2.659 5.145,-1.741 2.57,0.917 3.491,2.815 3.974,4.62 0.482,1.804 1.477,2.26 1.477,2.26 0,0 1.494,0.394 0.795,1.597 -0.7,1.204 -1.585,0.289 -1.712,-0.094 0,0 -4.597,0.309 -7.581,4.52 -2.983,4.212 -2.837,11.875 -2.837,11.875 0,0 -25.054,19.227 -26.973,20.2 0,0 -0.571,0.107 -0.464,-0.39" />
+ </g>
+ </g>
+ </g>
+</svg>
-<?xml version="1.0" encoding="utf-8"?>\r
+<?xml version="1.0" encoding="utf-8"?>
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
\ No newline at end of file
{
- "name": "OldBell",
+ "name": "App",
"icons": [
{
- "src": "android-icon-36x36.png",
+ "src": "\/android-icon-36x36.png",
"sizes": "36x36",
- "type": "image/png"
+ "type": "image\/png",
+ "density": "0.75"
},
{
- "src": "android-icon-48x48.png",
+ "src": "\/android-icon-48x48.png",
"sizes": "48x48",
- "type": "image/png"
+ "type": "image\/png",
+ "density": "1.0"
},
{
- "src": "android-icon-72x72.png",
+ "src": "\/android-icon-72x72.png",
"sizes": "72x72",
- "type": "image/png"
+ "type": "image\/png",
+ "density": "1.5"
},
{
- "src": "android-icon-96x96.png",
+ "src": "\/android-icon-96x96.png",
"sizes": "96x96",
- "type": "image/png"
+ "type": "image\/png",
+ "density": "2.0"
},
{
- "src": "android-icon-144x144.png",
+ "src": "\/android-icon-144x144.png",
"sizes": "144x144",
- "type": "image/png"
+ "type": "image\/png",
+ "density": "3.0"
},
{
- "src": "android-icon-192x192.png",
+ "src": "\/android-icon-192x192.png",
"sizes": "192x192",
- "type": "image/png"
+ "type": "image\/png",
+ "density": "4.0"
}
- ],
- "lang": "fr-FR",
- "start_url": "http://dks-laptop/oldbell_lu/index.html",
- "display": "standalone",
- "background_color": "white",
- "theme_color": "white"
+ ]
}
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ sodipodi:docname="oldbell_icon.svg"
+ inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
+ id="svg2081"
+ version="1.1"
+ viewBox="0 0 135.46666 135.46667"
+ height="512"
+ width="512">
+ <defs
+ id="defs2075" />
+ <sodipodi:namedview
+ inkscape:window-maximized="1"
+ inkscape:window-y="-9"
+ inkscape:window-x="2391"
+ inkscape:window-height="1321"
+ inkscape:window-width="2400"
+ inkscape:showpageshadow="false"
+ showborder="true"
+ units="px"
+ showgrid="false"
+ inkscape:document-rotation="0"
+ inkscape:current-layer="layer1"
+ inkscape:document-units="mm"
+ inkscape:cy="256.75285"
+ inkscape:cx="240.24172"
+ inkscape:zoom="1.979899"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base" />
+ <metadata
+ id="metadata2078">
+ <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>
+ <g
+ id="layer1"
+ inkscape:groupmode="layer"
+ inkscape:label="Ebene 1">
+ <g
+ transform="translate(-19.243406,-13.898015)"
+ id="g18956">
+ <rect
+ style="fill:#82171b;fill-opacity:1;stroke:#000000;stroke-width:1.31585;stroke-linecap:square;stroke-linejoin:round"
+ id="rect3168"
+ width="134.27646"
+ height="134.13959"
+ x="19.901333"
+ y="14.555942"
+ ry="15.072922" />
+ <g
+ id="g18005"
+ transform="translate(22.584275,13.898015)">
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ id="g17294">
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,64.103923,21.438096)"
+ id="g1426">
+ <path
+ id="path1428"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 -1.176,-0.006 1.258,27.2 Z m 12.758,15.914 c -1.199,-1.092 -2.931,-1.275 -4.007,-1.235 -2.367,0.087 -4.655,2.329 -4.94,5.615 -0.317,3.658 1.226,6.715 3.842,6.969 1.285,0.126 2.593,-0.783 3.487,-1.944 h 2.026 l -0.691,2.734 c -0.144,0.566 -0.602,0.99 -1.166,1.075 L 1.865,30.551 C 1.695,30.577 1.522,30.57 1.354,30.532 L -2.278,29.71 C -2.813,29.589 -3.232,29.162 -3.354,28.614 L -8.668,-2.041 c 0,0 5.048,0.571 11.693,2.092 5.082,1.164 14.446,1.471 14.446,1.471 l -1.596,12.74 c -1.71,0.062 -2.738,1.218 -3.117,1.652" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,31.899822,79.547697)"
+ id="g1430">
+ <path
+ id="path1432"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -2.417,-1.762 -5.123,-3.334 -8.151,-4.661 10.526,-2.823 30.901,-6.021 69.214,-6.021 38.314,0 58.689,3.198 69.215,6.021 C 127.25,-3.334 124.545,-1.762 122.127,0 110.25,-2.219 91.21,-4.198 61.063,-4.198 30.917,-4.198 11.877,-2.219 0,0" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,46.156375,33.893569)"
+ id="g1434">
+ <path
+ id="path1436"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -0.16,-2.076 -0.329,-4.213 -0.504,-6.35 10.763,1.027 23.283,1.615 36.643,1.615 13.361,0 25.879,-0.588 36.642,-1.615 C 72.605,-4.213 72.437,-2.076 72.277,0 61.626,0.997 49.295,1.571 36.139,1.571 22.983,1.571 10.652,0.997 0,0" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,66.82691,31.003861)"
+ id="g1438">
+ <path
+ id="path1440"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 13.044,0 25.284,-0.562 35.872,-1.544 -0.311,4.181 -0.575,7.932 -0.763,10.673 -0.19,2.794 -2.227,5.07 -4.915,5.531 -8.527,1.46 -18.841,2.121 -30.195,2.121 -11.353,0 -21.667,-0.661 -30.194,-2.121 -2.688,-0.461 -4.726,-2.737 -4.917,-5.531 C -35.3,6.388 -35.562,2.637 -35.874,-1.544 -25.284,-0.562 -13.043,0 0,0" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,32.193072,85.199804)"
+ id="g1442">
+ <path
+ id="path1444"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -6.244,1.144 -10.559,2.356 -13.488,3.402 l -5.669,-14.212 c 0,0 3.049,-2.812 15.799,-5.49 z" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,109.17516,83.253731)"
+ id="g1446">
+ <path
+ id="path1448"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -8.517,-3.038 -28.741,-7.507 -74.04,-7.507 -24.301,0 -41.378,1.287 -53.311,2.948 l -5.799,-16.058 c 11.977,-2.072 30.562,-3.849 59.11,-3.849 68.614,0 79.707,10.254 79.707,10.254 z" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,86.038217,42.949587)"
+ id="g1450">
+ <path
+ id="path1452"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0,0 1.524,-19.808 3.925,-27.266 0,0 -7.442,9.554 -3.925,27.266 m 3.348,5.97 c -10.828,1.044 -23.451,1.645 -36.936,1.645 -13.485,0 -26.107,-0.601 -36.937,-1.645 -0.255,-8.418 -2.693,-50.597 -20.772,-67.238 2.548,-0.418 5.382,-0.821 8.522,-1.197 2.436,2.175 6.502,6.732 9.671,14.922 8.209,21.208 7.829,47.653 7.829,47.653 3.024,-41.212 -5.405,-58.22 -9.091,-63.443 10.59,-0.93 23.95,-1.547 40.777,-1.547 27.459,0 45.699,1.642 57.71,3.612 C 6.036,-44.627 3.599,-2.448 3.348,5.97" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,81.187098,94.735642)"
+ id="g1454">
+ <path
+ id="path1456"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.141,0.633 0.209,1.072 0.209,1.072 0.209,1.072 0.12,0.663 0,0" />
+ </g>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,72.264011,106.8353)"
+ id="g1458">
+ <path
+ id="path1460"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 -1.581,0.558 c 0,0 -3.792,-1.117 -4.314,-1.117 -0.522,0 -3.367,0.28 -3.367,0.28 l -2.177,-0.685 -4.651,0.592 -2.696,0.279 c 0,0 -3.693,-2.816 -5.84,-5.215 l -1.136,-1.481 c 0.268,0.451 0.665,0.956 1.136,1.481 l 4.352,5.68 c 0,0 2.138,1.209 2.975,1.674 0.838,0.465 3.628,2.697 4.465,2.603 0.836,-0.091 3.332,-0.737 3.572,0.004 0.241,0.742 3.367,-0.747 3.367,-0.747 l 3.57,-0.558 2.418,-1.302 c 0,0 4.837,-5.022 4.929,-5.301 0.093,-0.279 1.302,-2.975 1.302,-2.975 z m 15.81,10.834 c -1.536,1.939 -0.657,7.873 -0.209,10.32 -0.193,-0.853 -0.519,-2.058 -0.999,-3.019 -0.838,-1.674 -1.581,-6.882 -1.581,-6.882 0,0 -0.187,-2.046 -1.582,-2.697 C 10.045,7.904 8.463,5.021 8.463,5.021 L 11.067,0 6.976,4.278 c 0,0 -1.489,0.743 -3.256,1.117 -1.767,0.371 -7.533,5.579 -9.615,6.788 -2.083,1.21 -3.777,-0.651 -3.777,-0.651 0,0 -0.373,0.651 -2.232,1.024 -1.86,0.371 -4.929,-4.279 -6.697,-4.837 -1.767,-0.558 -5.858,-2.604 -7.532,-4.929 -1.675,-2.325 -5.844,-3.349 -5.844,-3.349 l 3.797,2.884 c 0,0 0.28,3.255 0,4.464 -0.278,1.209 -3.255,2.232 -4.091,5.022 -0.837,2.791 -3.628,8.185 -3.628,8.185 0,0 0.651,-4.279 1.116,-6.232 0.466,-1.953 -0.092,-3.347 -0.651,-4.37 -0.558,-1.024 -2.324,-5.023 -1.209,-8.185 1.116,-3.161 0.465,-6.604 0.744,-10.602 0.279,-4 3.813,-8.371 3.813,-10.696 0,-2.324 4.744,-8.369 7.161,-9.392 2.419,-1.024 5.953,-4.093 8.185,-5.673 2.232,-1.581 6.231,-2.977 6.231,-2.977 4.929,1.024 8.649,5.208 13.671,7.905 5.023,2.698 10.788,7.998 10.881,9.58 0.094,1.581 1.581,2.232 3.349,4.463 1.766,2.233 1.953,9.673 2.266,13.671 0.315,4 -1.895,10.882 -3.848,13.346" />
+ </g>
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ id="g17268">
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,52.850213,29.015066)"
+ id="g1590">
+ <path
+ id="path1592"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.225,0.024 0.411,0.058 0.558,0.102 0.148,0.044 0.266,0.111 0.357,0.203 0.091,0.092 0.156,0.208 0.195,0.347 0.039,0.14 0.058,0.313 0.058,0.521 v 5.576 c 0,0.398 -0.086,0.68 -0.259,0.843 C 0.735,7.755 0.433,7.857 0,7.897 V 8.293 H 6.167 L 6.309,6.133 H 5.881 C 5.863,6.324 5.844,6.485 5.822,6.616 5.8,6.747 5.774,6.864 5.744,6.967 5.713,7.071 5.679,7.16 5.64,7.236 5.601,7.311 5.551,7.389 5.49,7.468 5.368,7.619 5.208,7.728 5.008,7.796 4.808,7.863 4.517,7.897 4.135,7.897 H 2.285 V 4.225 h 1.968 c 0.252,0 0.45,0.03 0.594,0.09 0.143,0.06 0.258,0.158 0.345,0.294 0.052,0.088 0.089,0.186 0.111,0.294 0.021,0.108 0.041,0.282 0.058,0.522 H 5.777 C 5.759,5.113 5.751,4.841 5.751,4.609 V 4.015 3.421 c 0,-0.232 0.008,-0.5 0.026,-0.804 H 5.361 C 5.344,3.081 5.259,3.399 5.107,3.571 4.955,3.743 4.67,3.829 4.253,3.829 H 2.285 V 1.11 C 2.285,0.896 2.3,0.719 2.33,0.58 2.36,0.44 2.419,0.332 2.505,0.252 2.592,0.172 2.707,0.117 2.85,0.085 2.992,0.053 3.181,0.037 3.414,0.037 h 1.35 c 0.58,0 0.995,0.152 1.247,0.456 0.06,0.072 0.112,0.148 0.156,0.228 0.042,0.08 0.082,0.174 0.116,0.282 C 6.317,1.111 6.348,1.239 6.374,1.387 6.4,1.535 6.43,1.713 6.465,1.921 H 6.88 L 6.569,-0.359 H 0 Z" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,57.483524,28.142866)"
+ id="g1594">
+ <path
+ id="path1596"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.026,-0.128 0.052,-0.248 0.078,-0.36 0.026,-0.112 0.056,-0.212 0.09,-0.3 0.096,-0.304 0.269,-0.542 0.52,-0.714 0.251,-0.172 0.532,-0.258 0.844,-0.258 0.354,0 0.644,0.1 0.869,0.3 0.225,0.2 0.338,0.46 0.338,0.78 0,0.232 -0.065,0.44 -0.195,0.624 C 2.492,0.144 2.438,0.212 2.382,0.276 2.326,0.34 2.252,0.406 2.161,0.474 2.07,0.542 1.958,0.616 1.824,0.696 1.689,0.776 1.523,0.872 1.324,0.984 0.718,1.32 0.29,1.644 0.039,1.956 c -0.251,0.312 -0.377,0.676 -0.377,1.092 0,0.24 0.056,0.46 0.169,0.66 0.112,0.2 0.266,0.374 0.461,0.522 0.195,0.148 0.426,0.262 0.694,0.342 0.268,0.08 0.558,0.12 0.87,0.12 0.13,0 0.249,-0.004 0.357,-0.012 C 2.321,4.672 2.432,4.658 2.544,4.638 2.657,4.618 2.776,4.588 2.901,4.548 3.026,4.508 3.171,4.456 3.336,4.392 V 2.64 H 2.959 C 2.942,2.776 2.927,2.906 2.914,3.03 2.901,3.154 2.882,3.268 2.856,3.372 2.787,3.652 2.644,3.876 2.427,4.044 2.211,4.212 1.96,4.296 1.674,4.296 1.363,4.296 1.103,4.204 0.896,4.02 0.688,3.836 0.584,3.604 0.584,3.324 0.584,3.188 0.61,3.06 0.661,2.94 0.713,2.82 0.801,2.696 0.925,2.568 1.049,2.44 1.212,2.304 1.415,2.16 1.616,2.016 1.867,1.856 2.167,1.68 2.468,1.504 2.717,1.34 2.915,1.188 3.112,1.036 3.271,0.884 3.391,0.732 3.511,0.58 3.597,0.424 3.648,0.264 3.7,0.104 3.726,-0.072 3.726,-0.264 3.726,-0.504 3.675,-0.732 3.574,-0.948 3.472,-1.164 3.335,-1.352 3.163,-1.512 2.99,-1.672 2.785,-1.798 2.548,-1.89 2.312,-1.981 2.06,-2.028 1.792,-2.028 1.514,-2.028 1.233,-1.992 0.947,-1.92 0.87,-1.904 0.802,-1.892 0.746,-1.884 0.69,-1.876 0.649,-1.868 0.623,-1.86 0.554,-1.844 0.498,-1.836 0.454,-1.836 0.29,-1.836 0.186,-1.904 0.143,-2.04 H -0.273 L -0.429,0 Z" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,60.059913,25.665078)"
+ id="g1598">
+ <path
+ id="path1600"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.147,0.072 0.275,0.136 0.383,0.192 0.491,0.248 0.586,0.306 0.668,0.366 0.751,0.426 0.831,0.49 0.909,0.558 0.987,0.626 1.064,0.704 1.143,0.792 1.22,0.88 1.287,0.962 1.344,1.038 1.4,1.114 1.45,1.192 1.493,1.272 1.536,1.352 1.577,1.438 1.616,1.53 1.655,1.622 1.696,1.736 1.74,1.872 H 2.025 V 0.276 H 4.543 L 4.35,-0.192 H 2.025 v -4.596 c 0,-0.672 0.273,-1.008 0.818,-1.008 0.251,0 0.47,0.064 0.656,0.192 0.186,0.128 0.396,0.356 0.629,0.684 L 4.361,-5.292 C 4.258,-5.452 4.154,-5.584 4.05,-5.688 3.851,-5.896 3.618,-6.06 3.349,-6.18 3.081,-6.3 2.795,-6.36 2.493,-6.36 1.973,-6.36 1.595,-6.236 1.357,-5.988 1.119,-5.74 1,-5.352 1,-4.824 v 4.632 H 0 Z" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,63.085069,28.557882)"
+ id="g1602">
+ <path
+ id="path1604"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.144,0.148 0.322,0.242 0.539,0.282 0.565,0.29 0.613,0.294 0.682,0.294 H 0.799 C 1.023,0.254 1.21,0.158 1.357,0.006 1.504,-0.146 1.578,-0.314 1.578,-0.498 1.578,-0.682 1.504,-0.848 1.357,-0.996 1.21,-1.145 1.023,-1.238 0.799,-1.278 0.773,-1.278 0.752,-1.28 0.734,-1.284 0.717,-1.288 0.699,-1.29 0.682,-1.29 0.664,-1.29 0.641,-1.288 0.611,-1.284 0.58,-1.28 0.557,-1.278 0.539,-1.278 0.322,-1.23 0.144,-1.134 0,-0.99 c -0.143,0.144 -0.213,0.308 -0.213,0.492 0,0.184 0.07,0.35 0.213,0.498" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,66.578897,29.006992)"
+ id="g1606">
+ <path
+ id="path1608"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 0.817,0.722 c 0.459,0.409 0.858,0.773 1.196,1.09 0.337,0.316 0.631,0.609 0.883,0.878 0.25,0.269 0.472,0.528 0.667,0.776 0.196,0.249 0.379,0.51 0.552,0.783 0.077,0.128 0.152,0.271 0.221,0.427 0.069,0.156 0.132,0.315 0.188,0.475 0.056,0.161 0.1,0.315 0.129,0.464 0.032,0.148 0.046,0.282 0.046,0.403 0,0.241 -0.046,0.467 -0.136,0.68 C 4.472,6.911 4.349,7.093 4.192,7.246 4.037,7.398 3.853,7.518 3.642,7.606 3.429,7.695 3.202,7.739 2.96,7.739 2.562,7.739 2.173,7.627 1.792,7.403 1.618,7.299 1.474,7.193 1.356,7.085 1.239,6.977 1.136,6.855 1.045,6.719 0.954,6.583 0.874,6.423 0.805,6.239 0.735,6.055 0.667,5.839 0.597,5.591 H 0.194 c 0.043,0.248 0.096,0.472 0.157,0.672 0.06,0.2 0.125,0.372 0.195,0.516 0.103,0.24 0.25,0.462 0.44,0.666 0.191,0.203 0.408,0.377 0.65,0.52 0.242,0.143 0.504,0.253 0.785,0.33 0.281,0.078 0.564,0.116 0.85,0.116 0.373,0 0.716,-0.058 1.033,-0.174 C 4.619,8.121 4.894,7.959 5.128,7.751 5.361,7.543 5.543,7.297 5.673,7.013 5.803,6.729 5.868,6.419 5.868,6.083 5.868,5.779 5.827,5.491 5.744,5.219 5.662,4.947 5.519,4.663 5.315,4.367 5.112,4.071 4.84,3.751 4.498,3.407 4.156,3.063 3.729,2.675 3.22,2.243 3.012,2.067 2.827,1.911 2.667,1.775 2.507,1.639 2.347,1.507 2.188,1.379 2.027,1.251 1.86,1.119 1.688,0.983 1.515,0.847 1.315,0.695 1.091,0.527 h 3.453 c 0.354,0 0.609,0.06 0.766,0.18 0.051,0.04 0.097,0.086 0.136,0.138 0.039,0.052 0.077,0.12 0.117,0.204 0.039,0.084 0.08,0.19 0.124,0.318 0.042,0.128 0.089,0.284 0.142,0.468 H 6.192 L 5.854,-0.373 H 0 Z" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,71.519979,25.274936)"
+ id="g1610">
+ <path
+ id="path1612"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -0.065,-0.241 -0.119,-0.501 -0.162,-0.781 -0.044,-0.281 -0.078,-0.575 -0.105,-0.884 -0.025,-0.308 -0.039,-0.615 -0.039,-0.919 0,-0.296 0.014,-0.595 0.039,-0.895 0.027,-0.301 0.061,-0.591 0.105,-0.872 0.043,-0.28 0.095,-0.543 0.155,-0.787 0.061,-0.244 0.131,-0.454 0.208,-0.631 0.121,-0.28 0.296,-0.499 0.527,-0.654 0.228,-0.157 0.49,-0.235 0.785,-0.235 0.294,0 0.558,0.078 0.791,0.235 0.234,0.155 0.412,0.374 0.533,0.654 0.078,0.168 0.146,0.375 0.207,0.619 0.06,0.245 0.113,0.507 0.156,0.787 0.043,0.281 0.076,0.573 0.098,0.878 0.021,0.304 0.032,0.605 0.032,0.901 0,0.609 -0.046,1.202 -0.137,1.779 C 3.103,-0.229 2.983,0.244 2.837,0.613 2.724,0.885 2.549,1.104 2.312,1.268 2.073,1.432 1.807,1.514 1.513,1.514 1.218,1.514 0.956,1.434 0.728,1.273 0.497,1.113 0.322,0.893 0.201,0.613 0.132,0.444 0.065,0.24 0,0 m -1.278,-0.742 c 0.146,0.552 0.351,1.024 0.616,1.416 0.265,0.392 0.585,0.696 0.961,0.912 C 0.675,1.802 1.093,1.91 1.552,1.91 1.993,1.91 2.396,1.8 2.759,1.58 3.122,1.36 3.434,1.052 3.693,0.656 3.953,0.26 4.156,-0.212 4.304,-0.76 4.45,-1.308 4.524,-1.914 4.524,-2.578 4.524,-3.25 4.45,-3.86 4.304,-4.408 4.156,-4.956 3.95,-5.426 3.687,-5.818 3.423,-6.21 3.103,-6.514 2.726,-6.73 2.35,-6.946 1.937,-7.054 1.486,-7.054 c -0.441,0 -0.845,0.108 -1.214,0.324 -0.367,0.216 -0.681,0.522 -0.941,0.918 -0.26,0.396 -0.463,0.868 -0.609,1.416 -0.148,0.548 -0.221,1.154 -0.221,1.818 0,0.672 0.073,1.284 0.221,1.836" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,75.184149,25.122675)"
+ id="g1614">
+ <path
+ id="path1616"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.199,0.128 0.379,0.26 0.539,0.396 0.159,0.136 0.315,0.288 0.468,0.456 0.15,0.168 0.334,0.38 0.551,0.636 h 0.649 v -7.176 c 0,-0.2 0.017,-0.366 0.052,-0.498 0.035,-0.132 0.097,-0.242 0.188,-0.33 0.091,-0.088 0.212,-0.154 0.364,-0.198 0.151,-0.044 0.339,-0.074 0.565,-0.09 v -0.36 c -0.381,0.016 -0.711,0.028 -0.987,0.036 -0.277,0.008 -0.511,0.012 -0.701,0.012 -0.199,0 -0.446,-0.004 -0.74,-0.012 -0.295,-0.008 -0.636,-0.02 -1.025,-0.036 v 0.348 c 0.441,0.04 0.746,0.144 0.914,0.312 0.17,0.168 0.254,0.452 0.254,0.852 V 0.36 C 0.909,0.216 0.757,0.096 0.636,0 0.515,-0.096 0.396,-0.182 0.279,-0.258 0.163,-0.334 0.034,-0.41 -0.104,-0.486 -0.242,-0.562 -0.411,-0.652 -0.61,-0.756 l -0.143,0.312 C -0.45,-0.276 -0.199,-0.128 0,0" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,77.805541,24.2717)"
+ id="g1618">
+ <path
+ id="path1620"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 H 5.842 V -0.42 L 2.284,-8.652 H 1.115 l 3.791,7.8 H 1.311 C 1.129,-0.852 0.973,-0.88 0.844,-0.936 0.713,-0.992 0.605,-1.082 0.519,-1.206 0.432,-1.33 0.363,-1.498 0.311,-1.71 0.26,-1.922 0.221,-2.184 0.194,-2.496 h -0.441 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ id="g17274">
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,81.392098,61.03791)"
+ id="g1622">
+ <path
+ id="path1624"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 3.972,-0.996 4.303,-4.468 3.889,-5.241 3.475,-6.014 2.928,-6.464 2.481,-6.704 c -1.245,-0.671 -3.377,-0.887 -5.642,0.412 -2.803,1.608 -2.485,4 -1.94,4.794 C -4.557,-0.704 -3.449,0.866 0,0 m -54.502,8.249 c 3.977,-2.068 32.268,-10.248 32.268,-10.248 2.348,1.034 4.186,1.499 7.231,1.278 3.045,-0.22 8.598,-4.682 8.598,-4.682 0,0 3.509,-3.01 8.083,-3.164 4.573,-0.154 10.696,1.57 12.118,4.228 0,0 0.473,0.606 -10e-4,0.988 -0.474,0.383 -0.999,-0.392 -1.384,-0.753 0,0 -2.152,-1.553 -3.004,-1.906 C 8.556,-6.362 6.697,-6.734 5.999,-5.33 5.3,-3.926 3.893,0.318 0.48,1.222 c -3.413,0.904 -4.279,-0.606 -7.298,-1.69 -3.02,-1.085 -6.574,1.309 -7.198,1.725 -0.623,0.418 -1.028,0.148 -1.028,0.148 -0.868,-0.446 -3.822,-0.092 -3.822,-0.092 l -15.817,3.684 -19.848,3.83 c -0.422,-0.363 0.029,-0.578 0.029,-0.578" />
+ </g>
+ <g
+ style="fill:#00000f;fill-opacity:1"
+ transform="matrix(0.57197126,0,0,-0.57197126,72.168482,70.663147)"
+ id="g1626">
+ <path
+ id="path1628"
+ style="fill:#00000f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 1.897,-0.989 4.565,-3.882 2.875,-6.299 1.185,-8.716 -1.034,-7.754 -1.034,-7.754 -3.336,-7.31 -6.042,-4.003 -5.402,-1.605 -4.762,0.791 -1.898,0.99 0,0 m -32.325,35.646 c 0.106,-0.496 23.473,-22.309 23.473,-22.309 0,0 2.507,-3.027 3.821,-7.711 0,0 1.129,-2.289 -0.528,-4.953 -1.655,-2.663 -0.962,-5.869 1.41,-7.874 0,0 2.575,-2.659 5.145,-1.741 2.57,0.917 3.491,2.815 3.974,4.62 0.482,1.804 1.477,2.26 1.477,2.26 0,0 1.494,0.394 0.795,1.597 -0.7,1.204 -1.585,0.289 -1.712,-0.094 0,0 -4.597,0.309 -7.581,4.52 -2.983,4.212 -2.837,11.875 -2.837,11.875 0,0 -25.054,19.227 -26.973,20.2 0,0 -0.571,0.107 -0.464,-0.39" />
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ id="svg2081"
+ version="1.1"
+ viewBox="0 0 135.46666 89.958336"
+ height="340"
+ width="512">
+ <defs
+ id="defs2075" />
+ <metadata
+ id="metadata2078">
+ <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>
+ <g
+ id="layer1">
+ <g
+ id="g1426"
+ transform="matrix(0.35277777,0,0,-0.35277777,64.21171,16.074469)">
+ <path
+ d="M 0,0 -1.176,-0.006 1.258,27.2 Z m 12.758,15.914 c -1.199,-1.092 -2.931,-1.275 -4.007,-1.235 -2.367,0.087 -4.655,2.329 -4.94,5.615 -0.317,3.658 1.226,6.715 3.842,6.969 1.285,0.126 2.593,-0.783 3.487,-1.944 h 2.026 l -0.691,2.734 c -0.144,0.566 -0.602,0.99 -1.166,1.075 L 1.865,30.551 C 1.695,30.577 1.522,30.57 1.354,30.532 L -2.278,29.71 C -2.813,29.589 -3.232,29.162 -3.354,28.614 L -8.668,-2.041 c 0,0 5.048,0.571 11.693,2.092 5.082,1.164 14.446,1.471 14.446,1.471 l -1.596,12.74 c -1.71,0.062 -2.738,1.218 -3.117,1.652"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1428" />
+ </g>
+ <g
+ id="g1430"
+ transform="matrix(0.35277777,0,0,-0.35277777,44.349014,51.915038)">
+ <path
+ d="m 0,0 c -2.417,-1.762 -5.123,-3.334 -8.151,-4.661 10.526,-2.823 30.901,-6.021 69.214,-6.021 38.314,0 58.689,3.198 69.215,6.021 C 127.25,-3.334 124.545,-1.762 122.127,0 110.25,-2.219 91.21,-4.198 61.063,-4.198 30.917,-4.198 11.877,-2.219 0,0"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1432" />
+ </g>
+ <g
+ id="g1434"
+ transform="matrix(0.35277777,0,0,-0.35277777,53.142105,23.756697)">
+ <path
+ d="m 0,0 c -0.16,-2.076 -0.329,-4.213 -0.504,-6.35 10.763,1.027 23.283,1.615 36.643,1.615 13.361,0 25.879,-0.588 36.642,-1.615 C 72.605,-4.213 72.437,-2.076 72.277,0 61.626,0.997 49.295,1.571 36.139,1.571 22.983,1.571 10.652,0.997 0,0"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1436" />
+ </g>
+ <g
+ id="g1438"
+ transform="matrix(0.35277777,0,0,-0.35277777,65.891181,21.974397)">
+ <path
+ d="m 0,0 c 13.044,0 25.284,-0.562 35.872,-1.544 -0.311,4.181 -0.575,7.932 -0.763,10.673 -0.19,2.794 -2.227,5.07 -4.915,5.531 -8.527,1.46 -18.841,2.121 -30.195,2.121 -11.353,0 -21.667,-0.661 -30.194,-2.121 -2.688,-0.461 -4.726,-2.737 -4.917,-5.531 C -35.3,6.388 -35.562,2.637 -35.874,-1.544 -25.284,-0.562 -13.043,0 0,0"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1440" />
+ </g>
+ <g
+ id="g1442"
+ transform="matrix(0.35277777,0,0,-0.35277777,44.529884,55.401118)">
+ <path
+ d="m 0,0 c -6.244,1.144 -10.559,2.356 -13.488,3.402 l -5.669,-14.212 c 0,0 3.049,-2.812 15.799,-5.49 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1444" />
+ </g>
+ <g
+ id="g1446"
+ transform="matrix(0.35277777,0,0,-0.35277777,92.010531,54.200828)">
+ <path
+ d="m 0,0 c -8.517,-3.038 -28.741,-7.507 -74.04,-7.507 -24.301,0 -41.378,1.287 -53.311,2.948 l -5.799,-16.058 c 11.977,-2.072 30.562,-3.849 59.11,-3.849 68.614,0 79.707,10.254 79.707,10.254 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1448" />
+ </g>
+ <g
+ id="g1450"
+ transform="matrix(0.35277777,0,0,-0.35277777,77.740242,29.342226)">
+ <path
+ d="m 0,0 c 0,0 1.524,-19.808 3.925,-27.266 0,0 -7.442,9.554 -3.925,27.266 m 3.348,5.97 c -10.828,1.044 -23.451,1.645 -36.936,1.645 -13.485,0 -26.107,-0.601 -36.937,-1.645 -0.255,-8.418 -2.693,-50.597 -20.772,-67.238 2.548,-0.418 5.382,-0.821 8.522,-1.197 2.436,2.175 6.502,6.732 9.671,14.922 8.209,21.208 7.829,47.653 7.829,47.653 3.024,-41.212 -5.405,-58.22 -9.091,-63.443 10.59,-0.93 23.95,-1.547 40.777,-1.547 27.459,0 45.699,1.642 57.71,3.612 C 6.036,-44.627 3.599,-2.448 3.348,5.97"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1452" />
+ </g>
+ <g
+ id="g1454"
+ transform="matrix(0.35277777,0,0,-0.35277777,74.748191,61.282588)">
+ <path
+ d="M 0,0 C 0.141,0.633 0.209,1.072 0.209,1.072 0.209,1.072 0.12,0.663 0,0"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1456" />
+ </g>
+ <g
+ id="g1458"
+ transform="matrix(0.35277777,0,0,-0.35277777,69.244651,68.745358)">
+ <path
+ d="m 0,0 -1.581,0.558 c 0,0 -3.792,-1.117 -4.314,-1.117 -0.522,0 -3.367,0.28 -3.367,0.28 l -2.177,-0.685 -4.651,0.592 -2.696,0.279 c 0,0 -3.693,-2.816 -5.84,-5.215 l -1.136,-1.481 c 0.268,0.451 0.665,0.956 1.136,1.481 l 4.352,5.68 c 0,0 2.138,1.209 2.975,1.674 0.838,0.465 3.628,2.697 4.465,2.603 0.836,-0.091 3.332,-0.737 3.572,0.004 0.241,0.742 3.367,-0.747 3.367,-0.747 l 3.57,-0.558 2.418,-1.302 c 0,0 4.837,-5.022 4.929,-5.301 0.093,-0.279 1.302,-2.975 1.302,-2.975 z m 15.81,10.834 c -1.536,1.939 -0.657,7.873 -0.209,10.32 -0.193,-0.853 -0.519,-2.058 -0.999,-3.019 -0.838,-1.674 -1.581,-6.882 -1.581,-6.882 0,0 -0.187,-2.046 -1.582,-2.697 C 10.045,7.904 8.463,5.021 8.463,5.021 L 11.067,0 6.976,4.278 c 0,0 -1.489,0.743 -3.256,1.117 -1.767,0.371 -7.533,5.579 -9.615,6.788 -2.083,1.21 -3.777,-0.651 -3.777,-0.651 0,0 -0.373,0.651 -2.232,1.024 -1.86,0.371 -4.929,-4.279 -6.697,-4.837 -1.767,-0.558 -5.858,-2.604 -7.532,-4.929 -1.675,-2.325 -5.844,-3.349 -5.844,-3.349 l 3.797,2.884 c 0,0 0.28,3.255 0,4.464 -0.278,1.209 -3.255,2.232 -4.091,5.022 -0.837,2.791 -3.628,8.185 -3.628,8.185 0,0 0.651,-4.279 1.116,-6.232 0.466,-1.953 -0.092,-3.347 -0.651,-4.37 -0.558,-1.024 -2.324,-5.023 -1.209,-8.185 1.116,-3.161 0.465,-6.604 0.744,-10.602 0.279,-4 3.813,-8.371 3.813,-10.696 0,-2.324 4.744,-8.369 7.161,-9.392 2.419,-1.024 5.953,-4.093 8.185,-5.673 2.232,-1.581 6.231,-2.977 6.231,-2.977 4.929,1.024 8.649,5.208 13.671,7.905 5.023,2.698 10.788,7.998 10.881,9.58 0.094,1.581 1.581,2.232 3.349,4.463 1.766,2.233 1.953,9.673 2.266,13.671 0.315,4 -1.895,10.882 -3.848,13.346"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1460" />
+ </g>
+ <g
+ id="g1462"
+ transform="matrix(0.35277777,0,0,-0.35277777,10.283734,35.405108)">
+ <path
+ d="m 0,0 c 0,-0.253 0.013,-0.484 0.04,-0.695 0.079,-3.035 0.322,-5.795 0.73,-8.281 0.408,-2.487 0.954,-4.615 1.639,-6.385 0.684,-1.77 1.493,-3.14 2.427,-4.109 0.935,-0.969 1.955,-1.453 3.06,-1.453 2.053,0 3.639,1.643 4.757,4.93 1.119,3.286 1.679,7.881 1.679,13.781 0,3.16 -0.185,6.068 -0.553,8.722 -0.369,2.655 -0.888,4.952 -1.56,6.891 -0.671,1.938 -1.461,3.456 -2.368,4.552 -0.909,1.095 -1.902,1.643 -2.981,1.643 -1.027,0 -1.961,-0.454 -2.804,-1.36 C 3.224,17.331 2.5,16.044 1.895,14.38 1.29,12.716 0.822,10.726 0.494,8.408 0.164,6.09 0,3.519 0,0.695 Z m -7.777,11.53 c 0.71,1.722 1.599,3.277 2.665,4.663 1.066,1.387 2.25,2.573 3.553,3.56 1.303,0.987 2.697,1.754 4.184,2.301 1.487,0.545 3.021,0.819 4.6,0.819 2.421,0 4.671,-0.599 6.751,-1.796 2.079,-1.197 3.875,-2.847 5.389,-4.947 1.513,-2.101 2.704,-4.59 3.573,-7.467 0.869,-2.878 1.303,-6.018 1.303,-9.421 0,-3.488 -0.415,-6.659 -1.244,-9.515 -0.829,-2.858 -1.994,-5.326 -3.494,-7.405 -1.5,-2.079 -3.29,-3.686 -5.369,-4.821 -2.079,-1.134 -4.369,-1.701 -6.869,-1.701 -2.58,0 -4.923,0.567 -7.028,1.701 -2.106,1.135 -3.908,2.73 -5.409,4.79 -1.5,2.057 -2.664,4.537 -3.494,7.436 -0.829,2.898 -1.243,6.112 -1.243,9.641 0,4.621 0.71,8.674 2.132,12.162"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1464" />
+ </g>
+ <g
+ id="g1466"
+ transform="matrix(0.35277777,0,0,-0.35277777,19.225312,42.408447)">
+ <path
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.323,0.418 2.71,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.698,3.874 3.75,4.899 3.75,6.156 v 26.632 c 0,1.214 -0.052,2.219 -0.157,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.71,38.148 2.323,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.895,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.514,-0.189 0.947,0 2.125,0.063 3.533,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.876,-0.483 -1.165,-0.945 -0.29,-0.463 -0.487,-1.093 -0.592,-1.891 -0.106,-0.798 -0.158,-1.807 -0.158,-3.024 V 5.042 c 0,-0.589 0.006,-1.072 0.02,-1.45 0.013,-0.378 0.039,-0.693 0.079,-0.946 0.039,-0.251 0.091,-0.462 0.157,-0.629 0.066,-0.169 0.164,-0.337 0.297,-0.505 0.578,-0.841 1.605,-1.26 3.079,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.211,0.482 0.48,1.112 0.81,1.89 0.329,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1468" />
+ </g>
+ <g
+ id="g1470"
+ transform="matrix(0.35277777,0,0,-0.35277777,34.197342,28.447548)">
+ <path
+ d="m 0,0 v -34.281 c 0,-2.059 0.23,-3.456 0.691,-4.191 0.46,-0.735 1.309,-1.102 2.546,-1.102 1.316,0 2.507,0.451 3.573,1.355 1.066,0.903 1.974,2.183 2.724,3.844 0.751,1.659 1.329,3.665 1.737,6.018 0.408,2.352 0.612,4.999 0.612,7.94 0,6.637 -0.973,11.699 -2.921,15.187 C 7.014,-1.744 4.158,0 0.395,0 Z m -13.068,-39.574 c 1.342,0 2.29,0.355 2.843,1.067 0.553,0.712 0.829,1.948 0.829,3.706 v 28.956 c 0,1.843 -0.264,3.109 -0.79,3.8 -0.526,0.691 -1.487,1.037 -2.882,1.037 v 3.277 c 1.185,0.118 2.211,0.217 3.08,0.296 0.868,0.079 1.592,0.159 2.171,0.237 1.579,0.197 3.105,0.326 4.58,0.385 1.473,0.059 2.803,0.09 3.987,0.09 1.553,0 2.941,-0.043 4.165,-0.126 1.224,-0.085 2.342,-0.232 3.356,-0.442 1.013,-0.21 1.941,-0.483 2.783,-0.818 0.842,-0.337 1.672,-0.757 2.488,-1.261 1.236,-0.756 2.369,-1.818 3.395,-3.182 1.026,-1.366 1.901,-2.941 2.626,-4.726 0.723,-1.786 1.282,-3.729 1.677,-5.829 0.395,-2.101 0.593,-4.286 0.593,-6.554 0,-4.328 -0.652,-8.203 -1.955,-11.627 -1.303,-3.424 -3.152,-6.102 -5.547,-8.034 -0.842,-0.673 -1.691,-1.24 -2.546,-1.701 -0.856,-0.463 -1.79,-0.831 -2.803,-1.103 C 7.968,-42.4 6.83,-42.589 5.567,-42.693 4.303,-42.799 2.829,-42.851 1.145,-42.851 h -14.213 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1472" />
+ </g>
+ <g
+ id="g1474"
+ transform="matrix(0.35277777,0,0,-0.35277777,90.956671,34.893507)">
+ <path
+ d="m 0,0 v -13.611 c 0,-2.269 0.263,-3.992 0.789,-5.168 0.526,-1.177 1.289,-1.764 2.29,-1.764 1.131,0 2.02,0.86 2.665,2.584 0.645,1.721 0.967,4.095 0.967,7.12 0,1.428 -0.093,2.794 -0.276,4.096 C 6.25,-5.441 5.987,-4.244 5.646,-3.151 5.276,-2.059 4.783,-1.26 4.165,-0.756 3.546,-0.252 2.724,0 1.697,0 Z m 0,3.277 h 1.736 c 1.185,0 2.106,0.671 2.764,2.015 0.658,1.342 0.987,3.13 0.987,5.364 0,2.479 -0.362,4.442 -1.086,5.889 C 3.678,17.992 2.71,18.716 1.5,18.716 1.131,18.716 0.631,18.654 0,18.53 Z m -13.068,-24.072 c 1.368,0 2.322,0.344 2.862,1.035 0.539,0.692 0.81,1.937 0.81,3.738 v 28.956 c 0,1.8 -0.264,3.056 -0.791,3.768 -0.526,0.712 -1.487,1.069 -2.881,1.069 v 3.276 c 1.21,0.119 2.25,0.217 3.119,0.296 0.868,0.078 1.604,0.157 2.211,0.236 0.683,0.04 1.421,0.088 2.211,0.148 0.789,0.059 1.591,0.108 2.408,0.148 0.815,0.039 1.598,0.068 2.348,0.088 0.75,0.02 1.428,0.03 2.034,0.03 1.658,0 3.073,-0.055 4.244,-0.165 1.171,-0.109 2.178,-0.284 3.02,-0.524 0.842,-0.24 1.573,-0.568 2.192,-0.983 0.618,-0.416 1.19,-0.95 1.717,-1.605 0.658,-0.755 1.204,-1.875 1.638,-3.362 0.435,-1.486 0.652,-2.963 0.652,-4.43 0,-2.136 -0.356,-3.979 -1.067,-5.528 C 13.186,4.307 12.646,3.521 12.041,3.04 11.436,2.557 10.541,2.17 9.356,1.876 c 0.895,-0.251 1.619,-0.544 2.171,-0.878 1.448,-0.796 2.626,-2.231 3.535,-4.305 0.907,-2.073 1.361,-4.409 1.361,-7.005 0,-2.849 -0.487,-5.299 -1.46,-7.351 -0.527,-1.131 -1.159,-2.106 -1.896,-2.923 -0.737,-0.817 -1.598,-1.477 -2.586,-1.979 -0.987,-0.502 -2.119,-0.879 -3.395,-1.13 -1.276,-0.252 -2.718,-0.377 -4.323,-0.377 h -15.831 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1476" />
+ </g>
+ <g
+ id="g1478"
+ transform="matrix(0.35277777,0,0,-0.35277777,97.15406,42.264267)">
+ <path
+ d="m 0,0 c 1.18,0.04 2.002,0.395 2.467,1.066 0.465,0.67 0.698,1.858 0.698,3.564 v 28.393 c 0,1.787 -0.233,3.015 -0.698,3.685 C 2.002,37.379 1.18,37.714 0,37.714 v 3.179 h 24.093 l 0.374,-10.697 h -1.77 c -0.091,1.778 -0.216,3.112 -0.374,4.002 -0.159,0.889 -0.409,1.637 -0.749,2.243 -0.159,0.283 -0.323,0.505 -0.493,0.667 -0.17,0.162 -0.392,0.293 -0.664,0.394 -0.271,0.102 -0.612,0.162 -1.021,0.182 -0.408,0.02 -0.918,0.03 -1.531,0.03 h -6.601 v -16.87 h 6.295 c 0.658,0 1.196,0.081 1.616,0.244 0.42,0.162 0.749,0.448 0.987,0.856 0.238,0.407 0.402,0.968 0.493,1.681 0.091,0.712 0.137,1.62 0.137,2.72 h 1.701 c -0.046,-1.63 -0.08,-3.039 -0.102,-4.227 -0.023,-1.188 -0.035,-2.206 -0.035,-3.055 0,-0.848 0.012,-1.874 0.035,-3.077 0.022,-1.203 0.056,-2.6 0.102,-4.189 h -1.735 c 0,1.385 -0.058,2.424 -0.17,3.118 -0.114,0.692 -0.296,1.262 -0.545,1.711 -0.227,0.407 -0.505,0.682 -0.834,0.825 -0.329,0.143 -0.891,0.214 -1.685,0.214 h -6.26 V 5.482 c 0,-0.853 0.005,-1.544 0.016,-2.07 C 11.292,2.883 11.32,2.457 11.365,2.131 11.411,1.807 11.473,1.542 11.553,1.34 11.632,1.136 11.74,0.954 11.876,0.792 12.08,0.467 12.397,0.253 12.829,0.152 13.26,0.05 13.872,0 14.666,0 h 4.561 c 0.907,0 1.621,0.132 2.143,0.397 0.522,0.265 0.964,0.784 1.327,1.559 0.34,0.692 0.584,1.487 0.732,2.384 0.147,0.896 0.266,2.221 0.357,3.973 h 1.905 L 25.113,-3.179 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1480" />
+ </g>
+ <g
+ id="g1482"
+ transform="matrix(0.35277777,0,0,-0.35277777,106.46958,42.229668)">
+ <path
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.322,0.418 2.711,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.697,3.874 3.751,4.899 3.751,6.156 v 26.632 c 0,1.214 -0.054,2.219 -0.158,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.711,38.148 2.322,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.896,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.513,-0.189 0.948,0 2.126,0.063 3.534,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.875,-0.483 -1.166,-0.945 -0.289,-0.463 -0.487,-1.093 -0.591,-1.891 -0.106,-0.798 -0.159,-1.807 -0.159,-3.024 V 5.042 c 0,-0.589 0.007,-1.072 0.021,-1.45 0.013,-0.378 0.039,-0.693 0.078,-0.946 0.04,-0.251 0.093,-0.462 0.158,-0.629 0.066,-0.169 0.164,-0.337 0.296,-0.505 0.579,-0.841 1.606,-1.26 3.08,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.21,0.482 0.48,1.112 0.81,1.89 0.328,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1484" />
+ </g>
+ <g
+ id="g1486"
+ transform="matrix(0.35277777,0,0,-0.35277777,116.8314,42.229668)">
+ <path
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.322,0.418 2.711,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.697,3.874 3.751,4.899 3.751,6.156 v 26.632 c 0,1.214 -0.054,2.219 -0.158,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.711,38.148 2.322,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.896,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.513,-0.189 0.948,0 2.126,0.063 3.534,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.875,-0.483 -1.166,-0.945 -0.289,-0.463 -0.487,-1.093 -0.591,-1.891 -0.106,-0.798 -0.159,-1.807 -0.159,-3.024 V 5.042 c 0,-0.589 0.007,-1.072 0.021,-1.45 0.013,-0.378 0.039,-0.693 0.078,-0.946 0.04,-0.251 0.093,-0.462 0.158,-0.629 0.066,-0.169 0.164,-0.337 0.296,-0.505 0.579,-0.841 1.606,-1.26 3.08,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.21,0.482 0.48,1.112 0.81,1.89 0.328,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1488" />
+ </g>
+ <g
+ id="g1574"
+ transform="matrix(0.35277777,0,0,-0.35277777,30.528664,62.556578)">
+ <path
+ d="m 0,0 c -0.566,0 -1.025,0.459 -1.025,1.025 0,0.567 0.459,1.027 1.025,1.027 0.566,0 1.025,-0.46 1.025,-1.027 C 1.025,0.459 0.566,0 0,0 m -62.412,-1 c -0.794,0 -1.437,0.643 -1.437,1.437 0,0.792 0.643,1.436 1.437,1.436 0.793,0 1.436,-0.644 1.436,-1.436 0,-0.794 -0.643,-1.437 -1.436,-1.437 M 5.573,1.694 C 5.306,3.79 3.077,3.479 3.077,3.479 c 0,0 -17.835,-1.561 -29.517,-2.32 -11.682,-0.758 -34.51,2.542 -34.51,2.542 -4.949,0.892 -5.78,-1.625 -5.78,-1.625 -1.472,-3.835 2.034,-4.796 2.034,-4.796 8.294,-2.541 18.682,-3.255 34.824,-3.165 16.143,0.089 33.394,4.905 33.394,4.905 0,0 2.319,0.58 2.051,2.674"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1576" />
+ </g>
+ <g
+ id="g1578"
+ transform="matrix(0.35277777,0,0,-0.35277777,22.632508,59.331978)">
+ <path
+ d="m 0,0 1.739,3.79 -28.001,15.383 -2.274,-2.096 1.758,2.772 c 0.139,0.221 0.427,0.296 0.658,0.17 L 2.81,4.146 Z m -26.166,21.114 c -0.382,0.213 -0.864,0.099 -1.109,-0.263 l -3.24,-4.781 c -0.235,-0.347 -0.312,-0.777 -0.213,-1.183 0.1,-0.408 0.367,-0.753 0.735,-0.952 L -2.821,-0.761 c 1.257,-0.679 2.743,-0.796 4.091,-0.32 l 2.299,0.811 c 0.565,0.2 1.189,0.143 1.707,-0.155 l 9.661,-5.55 6.42,0.536 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1580" />
+ </g>
+ <g
+ id="g1582"
+ transform="matrix(0.35277777,0,0,-0.35277777,103.01691,62.194838)">
+ <path
+ d="M 0,0 C 0,0.566 0.459,1.026 1.025,1.026 1.592,1.026 2.051,0.566 2.051,0 2.051,-0.566 1.592,-1.025 1.025,-1.025 0.459,-1.025 0,-0.566 0,0 m 62.001,-0.589 c 0,0.793 0.644,1.437 1.437,1.437 0.793,0 1.436,-0.644 1.436,-1.437 0,-0.794 -0.643,-1.436 -1.436,-1.436 -0.793,0 -1.437,0.642 -1.437,1.436 M -2.497,-2.006 c 0,0 17.252,-4.815 33.394,-4.904 16.142,-0.09 26.531,0.624 34.825,3.165 0,0 3.506,0.961 2.034,4.796 0,0 -0.831,2.516 -5.78,1.625 0,0 -22.829,-3.3 -34.51,-2.542 -11.683,0.759 -29.518,2.319 -29.518,2.319 0,0 -2.228,0.312 -2.496,-1.784 -0.267,-2.095 2.051,-2.675 2.051,-2.675"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1584" />
+ </g>
+ <g
+ id="g1586"
+ transform="matrix(0.35277777,0,0,-0.35277777,110.28364,57.869188)">
+ <path
+ d="m 0,0 28.93,15.872 c 0.23,0.126 0.518,0.052 0.658,-0.17 L 31.346,12.931 29.071,15.026 1.07,-0.356 2.81,-4.146 Z m -18.548,-9.586 6.421,-0.535 9.66,5.55 c 0.519,0.298 1.143,0.354 1.707,0.155 l 2.3,-0.812 c 1.348,-0.475 2.834,-0.359 4.091,0.321 L 32.803,9.788 c 0.368,0.199 0.635,0.545 0.734,0.952 0.1,0.406 0.023,0.836 -0.213,1.184 l -3.239,4.78 c -0.245,0.362 -0.728,0.477 -1.109,0.264 z"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1588" />
+ </g>
+ <g
+ id="g1590"
+ transform="matrix(0.35277777,0,0,-0.35277777,57.270699,20.747757)">
+ <path
+ d="m 0,0 c 0.225,0.024 0.411,0.058 0.558,0.102 0.148,0.044 0.266,0.111 0.357,0.203 0.091,0.092 0.156,0.208 0.195,0.347 0.039,0.14 0.058,0.313 0.058,0.521 v 5.576 c 0,0.398 -0.086,0.68 -0.259,0.843 C 0.735,7.755 0.433,7.857 0,7.897 V 8.293 H 6.167 L 6.309,6.133 H 5.881 C 5.863,6.324 5.844,6.485 5.822,6.616 5.8,6.747 5.774,6.864 5.744,6.967 5.713,7.071 5.679,7.16 5.64,7.236 5.601,7.311 5.551,7.389 5.49,7.468 5.368,7.619 5.208,7.728 5.008,7.796 4.808,7.863 4.517,7.897 4.135,7.897 H 2.285 V 4.225 h 1.968 c 0.252,0 0.45,0.03 0.594,0.09 0.143,0.06 0.258,0.158 0.345,0.294 0.052,0.088 0.089,0.186 0.111,0.294 0.021,0.108 0.041,0.282 0.058,0.522 H 5.777 C 5.759,5.113 5.751,4.841 5.751,4.609 V 4.015 3.421 c 0,-0.232 0.008,-0.5 0.026,-0.804 H 5.361 C 5.344,3.081 5.259,3.399 5.107,3.571 4.955,3.743 4.67,3.829 4.253,3.829 H 2.285 V 1.11 C 2.285,0.896 2.3,0.719 2.33,0.58 2.36,0.44 2.419,0.332 2.505,0.252 2.592,0.172 2.707,0.117 2.85,0.085 2.992,0.053 3.181,0.037 3.414,0.037 h 1.35 c 0.58,0 0.995,0.152 1.247,0.456 0.06,0.072 0.112,0.148 0.156,0.228 0.042,0.08 0.082,0.174 0.116,0.282 C 6.317,1.111 6.348,1.239 6.374,1.387 6.4,1.535 6.43,1.713 6.465,1.921 H 6.88 L 6.569,-0.359 H 0 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1592" />
+ </g>
+ <g
+ id="g1594"
+ transform="matrix(0.35277777,0,0,-0.35277777,60.128411,20.209806)">
+ <path
+ d="m 0,0 c 0.026,-0.128 0.052,-0.248 0.078,-0.36 0.026,-0.112 0.056,-0.212 0.09,-0.3 0.096,-0.304 0.269,-0.542 0.52,-0.714 0.251,-0.172 0.532,-0.258 0.844,-0.258 0.354,0 0.644,0.1 0.869,0.3 0.225,0.2 0.338,0.46 0.338,0.78 0,0.232 -0.065,0.44 -0.195,0.624 C 2.492,0.144 2.438,0.212 2.382,0.276 2.326,0.34 2.252,0.406 2.161,0.474 2.07,0.542 1.958,0.616 1.824,0.696 1.689,0.776 1.523,0.872 1.324,0.984 0.718,1.32 0.29,1.644 0.039,1.956 c -0.251,0.312 -0.377,0.676 -0.377,1.092 0,0.24 0.056,0.46 0.169,0.66 0.112,0.2 0.266,0.374 0.461,0.522 0.195,0.148 0.426,0.262 0.694,0.342 0.268,0.08 0.558,0.12 0.87,0.12 0.13,0 0.249,-0.004 0.357,-0.012 C 2.321,4.672 2.432,4.658 2.544,4.638 2.657,4.618 2.776,4.588 2.901,4.548 3.026,4.508 3.171,4.456 3.336,4.392 V 2.64 H 2.959 C 2.942,2.776 2.927,2.906 2.914,3.03 2.901,3.154 2.882,3.268 2.856,3.372 2.787,3.652 2.644,3.876 2.427,4.044 2.211,4.212 1.96,4.296 1.674,4.296 1.363,4.296 1.103,4.204 0.896,4.02 0.688,3.836 0.584,3.604 0.584,3.324 0.584,3.188 0.61,3.06 0.661,2.94 0.713,2.82 0.801,2.696 0.925,2.568 1.049,2.44 1.212,2.304 1.415,2.16 1.616,2.016 1.867,1.856 2.167,1.68 2.468,1.504 2.717,1.34 2.915,1.188 3.112,1.036 3.271,0.884 3.391,0.732 3.511,0.58 3.597,0.424 3.648,0.264 3.7,0.104 3.726,-0.072 3.726,-0.264 3.726,-0.504 3.675,-0.732 3.574,-0.948 3.472,-1.164 3.335,-1.352 3.163,-1.512 2.99,-1.672 2.785,-1.798 2.548,-1.89 2.312,-1.981 2.06,-2.028 1.792,-2.028 1.514,-2.028 1.233,-1.992 0.947,-1.92 0.87,-1.904 0.802,-1.892 0.746,-1.884 0.69,-1.876 0.649,-1.868 0.623,-1.86 0.554,-1.844 0.498,-1.836 0.454,-1.836 0.29,-1.836 0.186,-1.904 0.143,-2.04 H -0.273 L -0.429,0 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1596" />
+ </g>
+ <g
+ id="g1598"
+ transform="matrix(0.35277777,0,0,-0.35277777,61.717464,18.681567)">
+ <path
+ d="M 0,0 C 0.147,0.072 0.275,0.136 0.383,0.192 0.491,0.248 0.586,0.306 0.668,0.366 0.751,0.426 0.831,0.49 0.909,0.558 0.987,0.626 1.064,0.704 1.143,0.792 1.22,0.88 1.287,0.962 1.344,1.038 1.4,1.114 1.45,1.192 1.493,1.272 1.536,1.352 1.577,1.438 1.616,1.53 1.655,1.622 1.696,1.736 1.74,1.872 H 2.025 V 0.276 H 4.543 L 4.35,-0.192 H 2.025 v -4.596 c 0,-0.672 0.273,-1.008 0.818,-1.008 0.251,0 0.47,0.064 0.656,0.192 0.186,0.128 0.396,0.356 0.629,0.684 L 4.361,-5.292 C 4.258,-5.452 4.154,-5.584 4.05,-5.688 3.851,-5.896 3.618,-6.06 3.349,-6.18 3.081,-6.3 2.795,-6.36 2.493,-6.36 1.973,-6.36 1.595,-6.236 1.357,-5.988 1.119,-5.74 1,-5.352 1,-4.824 v 4.632 H 0 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1600" />
+ </g>
+ <g
+ id="g1602"
+ transform="matrix(0.35277777,0,0,-0.35277777,63.583306,20.465777)">
+ <path
+ d="M 0,0 C 0.144,0.148 0.322,0.242 0.539,0.282 0.565,0.29 0.613,0.294 0.682,0.294 H 0.799 C 1.023,0.254 1.21,0.158 1.357,0.006 1.504,-0.146 1.578,-0.314 1.578,-0.498 1.578,-0.682 1.504,-0.848 1.357,-0.996 1.21,-1.145 1.023,-1.238 0.799,-1.278 0.773,-1.278 0.752,-1.28 0.734,-1.284 0.717,-1.288 0.699,-1.29 0.682,-1.29 0.664,-1.29 0.641,-1.288 0.611,-1.284 0.58,-1.28 0.557,-1.278 0.539,-1.278 0.322,-1.23 0.144,-1.134 0,-0.99 c -0.143,0.144 -0.213,0.308 -0.213,0.492 0,0.184 0.07,0.35 0.213,0.498"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1604" />
+ </g>
+ <g
+ id="g1606"
+ transform="matrix(0.35277777,0,0,-0.35277777,65.738213,20.742777)">
+ <path
+ d="m 0,0 0.817,0.722 c 0.459,0.409 0.858,0.773 1.196,1.09 0.337,0.316 0.631,0.609 0.883,0.878 0.25,0.269 0.472,0.528 0.667,0.776 0.196,0.249 0.379,0.51 0.552,0.783 0.077,0.128 0.152,0.271 0.221,0.427 0.069,0.156 0.132,0.315 0.188,0.475 0.056,0.161 0.1,0.315 0.129,0.464 0.032,0.148 0.046,0.282 0.046,0.403 0,0.241 -0.046,0.467 -0.136,0.68 C 4.472,6.911 4.349,7.093 4.192,7.246 4.037,7.398 3.853,7.518 3.642,7.606 3.429,7.695 3.202,7.739 2.96,7.739 2.562,7.739 2.173,7.627 1.792,7.403 1.618,7.299 1.474,7.193 1.356,7.085 1.239,6.977 1.136,6.855 1.045,6.719 0.954,6.583 0.874,6.423 0.805,6.239 0.735,6.055 0.667,5.839 0.597,5.591 H 0.194 c 0.043,0.248 0.096,0.472 0.157,0.672 0.06,0.2 0.125,0.372 0.195,0.516 0.103,0.24 0.25,0.462 0.44,0.666 0.191,0.203 0.408,0.377 0.65,0.52 0.242,0.143 0.504,0.253 0.785,0.33 0.281,0.078 0.564,0.116 0.85,0.116 0.373,0 0.716,-0.058 1.033,-0.174 C 4.619,8.121 4.894,7.959 5.128,7.751 5.361,7.543 5.543,7.297 5.673,7.013 5.803,6.729 5.868,6.419 5.868,6.083 5.868,5.779 5.827,5.491 5.744,5.219 5.662,4.947 5.519,4.663 5.315,4.367 5.112,4.071 4.84,3.751 4.498,3.407 4.156,3.063 3.729,2.675 3.22,2.243 3.012,2.067 2.827,1.911 2.667,1.775 2.507,1.639 2.347,1.507 2.188,1.379 2.027,1.251 1.86,1.119 1.688,0.983 1.515,0.847 1.315,0.695 1.091,0.527 h 3.453 c 0.354,0 0.609,0.06 0.766,0.18 0.051,0.04 0.097,0.086 0.136,0.138 0.039,0.052 0.077,0.12 0.117,0.204 0.039,0.084 0.08,0.19 0.124,0.318 0.042,0.128 0.089,0.284 0.142,0.468 H 6.192 L 5.854,-0.373 H 0 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1608" />
+ </g>
+ <g
+ id="g1610"
+ transform="matrix(0.35277777,0,0,-0.35277777,68.78575,18.440937)">
+ <path
+ d="m 0,0 c -0.065,-0.241 -0.119,-0.501 -0.162,-0.781 -0.044,-0.281 -0.078,-0.575 -0.105,-0.884 -0.025,-0.308 -0.039,-0.615 -0.039,-0.919 0,-0.296 0.014,-0.595 0.039,-0.895 0.027,-0.301 0.061,-0.591 0.105,-0.872 0.043,-0.28 0.095,-0.543 0.155,-0.787 0.061,-0.244 0.131,-0.454 0.208,-0.631 0.121,-0.28 0.296,-0.499 0.527,-0.654 0.228,-0.157 0.49,-0.235 0.785,-0.235 0.294,0 0.558,0.078 0.791,0.235 0.234,0.155 0.412,0.374 0.533,0.654 0.078,0.168 0.146,0.375 0.207,0.619 0.06,0.245 0.113,0.507 0.156,0.787 0.043,0.281 0.076,0.573 0.098,0.878 0.021,0.304 0.032,0.605 0.032,0.901 0,0.609 -0.046,1.202 -0.137,1.779 C 3.103,-0.229 2.983,0.244 2.837,0.613 2.724,0.885 2.549,1.104 2.312,1.268 2.073,1.432 1.807,1.514 1.513,1.514 1.218,1.514 0.956,1.434 0.728,1.273 0.497,1.113 0.322,0.893 0.201,0.613 0.132,0.444 0.065,0.24 0,0 m -1.278,-0.742 c 0.146,0.552 0.351,1.024 0.616,1.416 0.265,0.392 0.585,0.696 0.961,0.912 C 0.675,1.802 1.093,1.91 1.552,1.91 1.993,1.91 2.396,1.8 2.759,1.58 3.122,1.36 3.434,1.052 3.693,0.656 3.953,0.26 4.156,-0.212 4.304,-0.76 4.45,-1.308 4.524,-1.914 4.524,-2.578 4.524,-3.25 4.45,-3.86 4.304,-4.408 4.156,-4.956 3.95,-5.426 3.687,-5.818 3.423,-6.21 3.103,-6.514 2.726,-6.73 2.35,-6.946 1.937,-7.054 1.486,-7.054 c -0.441,0 -0.845,0.108 -1.214,0.324 -0.367,0.216 -0.681,0.522 -0.941,0.918 -0.26,0.396 -0.463,0.868 -0.609,1.416 -0.148,0.548 -0.221,1.154 -0.221,1.818 0,0.672 0.073,1.284 0.221,1.836"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1612" />
+ </g>
+ <g
+ id="g1614"
+ transform="matrix(0.35277777,0,0,-0.35277777,71.04572,18.347026)">
+ <path
+ d="m 0,0 c 0.199,0.128 0.379,0.26 0.539,0.396 0.159,0.136 0.315,0.288 0.468,0.456 0.15,0.168 0.334,0.38 0.551,0.636 h 0.649 v -7.176 c 0,-0.2 0.017,-0.366 0.052,-0.498 0.035,-0.132 0.097,-0.242 0.188,-0.33 0.091,-0.088 0.212,-0.154 0.364,-0.198 0.151,-0.044 0.339,-0.074 0.565,-0.09 v -0.36 c -0.381,0.016 -0.711,0.028 -0.987,0.036 -0.277,0.008 -0.511,0.012 -0.701,0.012 -0.199,0 -0.446,-0.004 -0.74,-0.012 -0.295,-0.008 -0.636,-0.02 -1.025,-0.036 v 0.348 c 0.441,0.04 0.746,0.144 0.914,0.312 0.17,0.168 0.254,0.452 0.254,0.852 V 0.36 C 0.909,0.216 0.757,0.096 0.636,0 0.515,-0.096 0.396,-0.182 0.279,-0.258 0.163,-0.334 0.034,-0.41 -0.104,-0.486 -0.242,-0.562 -0.411,-0.652 -0.61,-0.756 l -0.143,0.312 C -0.45,-0.276 -0.199,-0.128 0,0"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1616" />
+ </g>
+ <g
+ id="g1618"
+ transform="matrix(0.35277777,0,0,-0.35277777,72.66253,17.822166)">
+ <path
+ d="M 0,0 H 5.842 V -0.42 L 2.284,-8.652 H 1.115 l 3.791,7.8 H 1.311 C 1.129,-0.852 0.973,-0.88 0.844,-0.936 0.713,-0.992 0.605,-1.082 0.519,-1.206 0.432,-1.33 0.363,-1.498 0.311,-1.71 0.26,-1.922 0.221,-2.184 0.194,-2.496 h -0.441 z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1620" />
+ </g>
+ <g
+ id="g1622"
+ transform="matrix(0.35277777,0,0,-0.35277777,74.87463,40.498658)">
+ <path
+ d="M 0,0 C 3.972,-0.996 4.303,-4.468 3.889,-5.241 3.475,-6.014 2.928,-6.464 2.481,-6.704 c -1.245,-0.671 -3.377,-0.887 -5.642,0.412 -2.803,1.608 -2.485,4 -1.94,4.794 C -4.557,-0.704 -3.449,0.866 0,0 m -54.502,8.249 c 3.977,-2.068 32.268,-10.248 32.268,-10.248 2.348,1.034 4.186,1.499 7.231,1.278 3.045,-0.22 8.598,-4.682 8.598,-4.682 0,0 3.509,-3.01 8.083,-3.164 4.573,-0.154 10.696,1.57 12.118,4.228 0,0 0.473,0.606 -10e-4,0.988 -0.474,0.383 -0.999,-0.392 -1.384,-0.753 0,0 -2.152,-1.553 -3.004,-1.906 C 8.556,-6.362 6.697,-6.734 5.999,-5.33 5.3,-3.926 3.893,0.318 0.48,1.222 c -3.413,0.904 -4.279,-0.606 -7.298,-1.69 -3.02,-1.085 -6.574,1.309 -7.198,1.725 -0.623,0.418 -1.028,0.148 -1.028,0.148 -0.868,-0.446 -3.822,-0.092 -3.822,-0.092 l -15.817,3.684 -19.848,3.83 c -0.422,-0.363 0.029,-0.578 0.029,-0.578"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1624" />
+ </g>
+ <g
+ id="g1626"
+ transform="matrix(0.35277777,0,0,-0.35277777,69.185731,46.435267)">
+ <path
+ d="M 0,0 C 1.897,-0.989 4.565,-3.882 2.875,-6.299 1.185,-8.716 -1.034,-7.754 -1.034,-7.754 -3.336,-7.31 -6.042,-4.003 -5.402,-1.605 -4.762,0.791 -1.898,0.99 0,0 m -32.325,35.646 c 0.106,-0.496 23.473,-22.309 23.473,-22.309 0,0 2.507,-3.027 3.821,-7.711 0,0 1.129,-2.289 -0.528,-4.953 -1.655,-2.663 -0.962,-5.869 1.41,-7.874 0,0 2.575,-2.659 5.145,-1.741 2.57,0.917 3.491,2.815 3.974,4.62 0.482,1.804 1.477,2.26 1.477,2.26 0,0 1.494,0.394 0.795,1.597 -0.7,1.204 -1.585,0.289 -1.712,-0.094 0,0 -4.597,0.309 -7.581,4.52 -2.983,4.212 -2.837,11.875 -2.837,11.875 0,0 -25.054,19.227 -26.973,20.2 0,0 -0.571,0.107 -0.464,-0.39"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path1628" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
+ sodipodi:docname="oldbell_logo2.svg"
+ width="512"
+ height="340"
+ viewBox="0 0 135.46666 89.958336"
+ version="1.1"
+ id="svg2081">
+ <sodipodi:namedview
+ inkscape:current-layer="svg2081"
+ inkscape:window-maximized="1"
+ inkscape:window-y="-9"
+ inkscape:window-x="-9"
+ inkscape:cy="187.34124"
+ inkscape:cx="256"
+ inkscape:zoom="2.3066406"
+ showgrid="false"
+ id="namedview18121"
+ inkscape:window-height="1001"
+ inkscape:window-width="1920"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0"
+ guidetolerance="10"
+ gridtolerance="10"
+ objecttolerance="10"
+ borderopacity="1"
+ bordercolor="#666666"
+ pagecolor="#ffffff" />
+ <defs
+ id="defs2075" />
+ <metadata
+ id="metadata2078">
+ <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>
+ <g
+ style="fill:#f7c616;fill-opacity:1"
+ id="g18786">
+ <path
+ d="m 64.21171,16.074469 -0.414867,0.0021 0.858661,-9.5976723 z m 4.500739,-5.614105 c -0.422981,0.385233 -1.033992,0.449791 -1.413581,0.43568 -0.835025,-0.03069 -1.64218,-0.821619 -1.742722,-1.9808471 -0.11183,-1.290461 0.432506,-2.3689027 1.355372,-2.4585082 0.45332,-0.04445 0.914753,0.276225 1.230136,0.6857999 h 0.714728 L 68.612613,6.1779942 C 68.561813,5.978322 68.40024,5.8287442 68.201274,5.7987581 L 64.869641,5.2967553 c -0.05997,-0.00917 -0.121003,-0.0067 -0.18027,0.0067 l -1.281289,0.2899834 c -0.188736,0.042686 -0.33655,0.1933222 -0.379589,0.3866444 L 61.153832,16.794488 c 0,0 1.780822,-0.201436 4.125031,-0.738011 1.792816,-0.410633 5.096227,-0.518936 5.096227,-0.518936 l -0.563033,-4.494389 c -0.60325,-0.02187 -0.965905,-0.429683 -1.099608,-0.582788"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1428" />
+ <path
+ d="m 44.349014,51.915038 c -0.852664,0.621594 -1.807281,1.176161 -2.875492,1.644297 3.713339,0.995892 10.901186,2.124075 24.417161,2.124075 13.516327,0 20.704175,-1.128183 24.417513,-2.124075 -1.068211,-0.468136 -2.022475,-1.022703 -2.875491,-1.644297 -4.189942,0.782814 -10.906831,1.480961 -21.542022,1.480961 -10.634839,0 -17.351727,-0.698147 -21.541669,-1.480961"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1432" />
+ <path
+ d="m 53.142105,23.756697 c -0.05644,0.732367 -0.116064,1.486253 -0.1778,2.240139 3.796947,-0.362303 8.213725,-0.569736 12.926836,-0.569736 4.713464,0 9.129536,0.207433 12.926483,0.569736 -0.06209,-0.753886 -0.121356,-1.507772 -0.1778,-2.240139 -3.757436,-0.351719 -8.107539,-0.554214 -12.748683,-0.554214 -4.641145,0 -8.991247,0.202495 -12.749036,0.554214"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1436" />
+ <path
+ d="m 65.891181,21.974397 c 4.601633,0 8.919633,0.198261 12.654844,0.544689 -0.109714,-1.474964 -0.202847,-2.798233 -0.269169,-3.765197 -0.06703,-0.985661 -0.785636,-1.788584 -1.733903,-1.951214 -3.008136,-0.515056 -6.646686,-0.748242 -10.652125,-0.748242 -4.005086,0 -7.643636,0.233186 -10.651772,0.748242 -0.948266,0.16263 -1.667228,0.965553 -1.734608,1.951214 -0.06632,0.966964 -0.15875,2.290233 -0.268817,3.765197 3.735917,-0.346428 8.05427,-0.544689 12.65555,-0.544689"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1440" />
+ <path
+ d="m 44.529884,55.401118 c -2.202744,-0.403578 -3.72498,-0.831144 -4.758267,-1.20015 l -1.999897,5.013678 c 0,0 1.07562,0.992011 5.573536,1.93675 z"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1444" />
+ <path
+ d="m 92.010531,54.200828 c -3.004608,1.071739 -10.139186,2.648303 -26.119666,2.648303 -8.572853,0 -14.597239,-0.454025 -18.806936,-1.039989 l -2.045758,5.664905 c 4.225219,0.730956 10.781594,1.357842 20.852694,1.357842 24.205494,0 28.118858,-3.617383 28.118858,-3.617383 z"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1448" />
+ <path
+ d="m 77.740242,29.342226 c 0,0 0.537633,6.987822 1.384653,9.618839 0,0 -2.625372,-3.370439 -1.384653,-9.618839 m 1.1811,-2.106083 c -3.819878,-0.3683 -8.272992,-0.58032 -13.0302,-0.58032 -4.757208,0 -9.209969,0.21202 -13.030552,0.58032 -0.08996,2.969683 -0.950031,17.849497 -7.3279,23.720071 0.898878,0.147462 1.89865,0.289631 3.006372,0.422275 0.859367,-0.767291 2.293761,-2.3749 3.411714,-5.264149 2.895953,-7.481711 2.761897,-16.81092 2.761897,-16.81092 1.0668,14.538678 -1.906764,20.538722 -3.207103,22.381281 3.735917,0.328083 8.449028,0.545747 14.385219,0.545747 9.686925,0 16.121592,-0.579261 20.358806,-1.274234 C 79.869609,45.08564 79.009889,30.205826 78.921342,27.236143"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1452" />
+ <path
+ d="m 74.748191,61.282588 c 0.04974,-0.223308 0.07373,-0.378178 0.07373,-0.378178 0,0 -0.0314,0.144286 -0.07373,0.378178"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1456" />
+ <path
+ d="m 69.244651,68.745358 -0.557742,-0.19685 c 0,0 -1.337733,0.394053 -1.521883,0.394053 -0.18415,0 -1.187803,-0.09878 -1.187803,-0.09878 l -0.767997,0.241653 -1.640769,-0.208845 -0.951089,-0.09843 c 0,0 -1.302808,0.993423 -2.060222,1.839736 l -0.400756,0.522464 c 0.09454,-0.159102 0.234597,-0.337255 0.400756,-0.522464 l 1.535288,-2.003777 c 0,0 0.754239,-0.426509 1.049514,-0.59055 0.295628,-0.164042 1.279878,-0.951442 1.575153,-0.918281 0.294922,0.0321 1.175456,0.259997 1.260122,-0.0014 0.08502,-0.261761 1.187803,0.263525 1.187803,0.263525 l 1.259417,0.19685 0.853016,0.459317 c 0,0 1.706386,1.77165 1.738842,1.870075 0.03281,0.09843 0.459317,1.049514 0.459317,1.049514 z m 5.577417,-3.821994 c -0.541867,-0.684036 -0.231775,-2.77742 -0.07373,-3.640667 -0.06809,0.300919 -0.183092,0.726017 -0.352425,1.065036 -0.295628,0.59055 -0.557742,2.427817 -0.557742,2.427817 0,0 -0.06597,0.721783 -0.558094,0.951441 -0.491772,0.230012 -1.049867,1.24707 -1.049867,1.24707 l 0.918634,1.771297 -1.443214,-1.509183 c 0,0 -0.525286,-0.262114 -1.148645,-0.394053 -0.623358,-0.130881 -2.657475,-1.968147 -3.391958,-2.394656 -0.734836,-0.426861 -1.332442,0.229659 -1.332442,0.229659 0,0 -0.131586,-0.229659 -0.7874,-0.361245 -0.656166,-0.13088 -1.738841,1.509536 -2.362552,1.706386 -0.623359,0.19685 -2.066572,0.918634 -2.657122,1.738842 -0.590903,0.820208 -2.061634,1.181453 -2.061634,1.181453 l 1.339497,-1.017411 c 0,0 0.09878,-1.148292 0,-1.5748 -0.09807,-0.426509 -1.148291,-0.7874 -1.443213,-1.77165 -0.295275,-0.984603 -1.279878,-2.887486 -1.279878,-2.887486 0,0 0.229658,1.509536 0.3937,2.198511 0.164394,0.688975 -0.03246,1.180747 -0.229659,1.541639 -0.196849,0.361244 -0.819855,1.772002 -0.426508,2.887486 0.3937,1.11513 0.164042,2.329744 0.262467,3.74015 0.09843,1.411111 1.345141,2.953102 1.345141,3.773311 0,0.819855 1.673578,2.952397 2.526242,3.313288 0.85337,0.361245 2.100086,1.44392 2.887486,2.001309 0.7874,0.557741 2.198158,1.050219 2.198158,1.050219 1.738842,-0.361244 3.051175,-1.837266 4.822825,-2.788708 1.772003,-0.951795 3.805767,-2.821517 3.838575,-3.379611 0.03316,-0.557742 0.557742,-0.7874 1.181453,-1.574447 0.623006,-0.787753 0.688975,-3.41242 0.799394,-4.822825 0.111125,-1.411111 -0.668513,-3.838928 -1.357488,-4.708172"
+ style="fill:#f7c616;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352778"
+ id="path1460" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ id="g19034">
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,10.283734,35.405108)"
+ id="g1462">
+ <path
+ id="path1464"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0,-0.253 0.013,-0.484 0.04,-0.695 0.079,-3.035 0.322,-5.795 0.73,-8.281 0.408,-2.487 0.954,-4.615 1.639,-6.385 0.684,-1.77 1.493,-3.14 2.427,-4.109 0.935,-0.969 1.955,-1.453 3.06,-1.453 2.053,0 3.639,1.643 4.757,4.93 1.119,3.286 1.679,7.881 1.679,13.781 0,3.16 -0.185,6.068 -0.553,8.722 -0.369,2.655 -0.888,4.952 -1.56,6.891 -0.671,1.938 -1.461,3.456 -2.368,4.552 -0.909,1.095 -1.902,1.643 -2.981,1.643 -1.027,0 -1.961,-0.454 -2.804,-1.36 C 3.224,17.331 2.5,16.044 1.895,14.38 1.29,12.716 0.822,10.726 0.494,8.408 0.164,6.09 0,3.519 0,0.695 Z m -7.777,11.53 c 0.71,1.722 1.599,3.277 2.665,4.663 1.066,1.387 2.25,2.573 3.553,3.56 1.303,0.987 2.697,1.754 4.184,2.301 1.487,0.545 3.021,0.819 4.6,0.819 2.421,0 4.671,-0.599 6.751,-1.796 2.079,-1.197 3.875,-2.847 5.389,-4.947 1.513,-2.101 2.704,-4.59 3.573,-7.467 0.869,-2.878 1.303,-6.018 1.303,-9.421 0,-3.488 -0.415,-6.659 -1.244,-9.515 -0.829,-2.858 -1.994,-5.326 -3.494,-7.405 -1.5,-2.079 -3.29,-3.686 -5.369,-4.821 -2.079,-1.134 -4.369,-1.701 -6.869,-1.701 -2.58,0 -4.923,0.567 -7.028,1.701 -2.106,1.135 -3.908,2.73 -5.409,4.79 -1.5,2.057 -2.664,4.537 -3.494,7.436 -0.829,2.898 -1.243,6.112 -1.243,9.641 0,4.621 0.71,8.674 2.132,12.162" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,19.225312,42.408447)"
+ id="g1466">
+ <path
+ id="path1468"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.323,0.418 2.71,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.698,3.874 3.75,4.899 3.75,6.156 v 26.632 c 0,1.214 -0.052,2.219 -0.157,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.71,38.148 2.323,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.895,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.514,-0.189 0.947,0 2.125,0.063 3.533,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.876,-0.483 -1.165,-0.945 -0.29,-0.463 -0.487,-1.093 -0.592,-1.891 -0.106,-0.798 -0.158,-1.807 -0.158,-3.024 V 5.042 c 0,-0.589 0.006,-1.072 0.02,-1.45 0.013,-0.378 0.039,-0.693 0.079,-0.946 0.039,-0.251 0.091,-0.462 0.157,-0.629 0.066,-0.169 0.164,-0.337 0.297,-0.505 0.578,-0.841 1.605,-1.26 3.079,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.211,0.482 0.48,1.112 0.81,1.89 0.329,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,34.197342,28.447548)"
+ id="g1470">
+ <path
+ id="path1472"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 v -34.281 c 0,-2.059 0.23,-3.456 0.691,-4.191 0.46,-0.735 1.309,-1.102 2.546,-1.102 1.316,0 2.507,0.451 3.573,1.355 1.066,0.903 1.974,2.183 2.724,3.844 0.751,1.659 1.329,3.665 1.737,6.018 0.408,2.352 0.612,4.999 0.612,7.94 0,6.637 -0.973,11.699 -2.921,15.187 C 7.014,-1.744 4.158,0 0.395,0 Z m -13.068,-39.574 c 1.342,0 2.29,0.355 2.843,1.067 0.553,0.712 0.829,1.948 0.829,3.706 v 28.956 c 0,1.843 -0.264,3.109 -0.79,3.8 -0.526,0.691 -1.487,1.037 -2.882,1.037 v 3.277 c 1.185,0.118 2.211,0.217 3.08,0.296 0.868,0.079 1.592,0.159 2.171,0.237 1.579,0.197 3.105,0.326 4.58,0.385 1.473,0.059 2.803,0.09 3.987,0.09 1.553,0 2.941,-0.043 4.165,-0.126 1.224,-0.085 2.342,-0.232 3.356,-0.442 1.013,-0.21 1.941,-0.483 2.783,-0.818 0.842,-0.337 1.672,-0.757 2.488,-1.261 1.236,-0.756 2.369,-1.818 3.395,-3.182 1.026,-1.366 1.901,-2.941 2.626,-4.726 0.723,-1.786 1.282,-3.729 1.677,-5.829 0.395,-2.101 0.593,-4.286 0.593,-6.554 0,-4.328 -0.652,-8.203 -1.955,-11.627 -1.303,-3.424 -3.152,-6.102 -5.547,-8.034 -0.842,-0.673 -1.691,-1.24 -2.546,-1.701 -0.856,-0.463 -1.79,-0.831 -2.803,-1.103 C 7.968,-42.4 6.83,-42.589 5.567,-42.693 4.303,-42.799 2.829,-42.851 1.145,-42.851 h -14.213 z" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,90.956671,34.893507)"
+ id="g1474">
+ <path
+ id="path1476"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 v -13.611 c 0,-2.269 0.263,-3.992 0.789,-5.168 0.526,-1.177 1.289,-1.764 2.29,-1.764 1.131,0 2.02,0.86 2.665,2.584 0.645,1.721 0.967,4.095 0.967,7.12 0,1.428 -0.093,2.794 -0.276,4.096 C 6.25,-5.441 5.987,-4.244 5.646,-3.151 5.276,-2.059 4.783,-1.26 4.165,-0.756 3.546,-0.252 2.724,0 1.697,0 Z m 0,3.277 h 1.736 c 1.185,0 2.106,0.671 2.764,2.015 0.658,1.342 0.987,3.13 0.987,5.364 0,2.479 -0.362,4.442 -1.086,5.889 C 3.678,17.992 2.71,18.716 1.5,18.716 1.131,18.716 0.631,18.654 0,18.53 Z m -13.068,-24.072 c 1.368,0 2.322,0.344 2.862,1.035 0.539,0.692 0.81,1.937 0.81,3.738 v 28.956 c 0,1.8 -0.264,3.056 -0.791,3.768 -0.526,0.712 -1.487,1.069 -2.881,1.069 v 3.276 c 1.21,0.119 2.25,0.217 3.119,0.296 0.868,0.078 1.604,0.157 2.211,0.236 0.683,0.04 1.421,0.088 2.211,0.148 0.789,0.059 1.591,0.108 2.408,0.148 0.815,0.039 1.598,0.068 2.348,0.088 0.75,0.02 1.428,0.03 2.034,0.03 1.658,0 3.073,-0.055 4.244,-0.165 1.171,-0.109 2.178,-0.284 3.02,-0.524 0.842,-0.24 1.573,-0.568 2.192,-0.983 0.618,-0.416 1.19,-0.95 1.717,-1.605 0.658,-0.755 1.204,-1.875 1.638,-3.362 0.435,-1.486 0.652,-2.963 0.652,-4.43 0,-2.136 -0.356,-3.979 -1.067,-5.528 C 13.186,4.307 12.646,3.521 12.041,3.04 11.436,2.557 10.541,2.17 9.356,1.876 c 0.895,-0.251 1.619,-0.544 2.171,-0.878 1.448,-0.796 2.626,-2.231 3.535,-4.305 0.907,-2.073 1.361,-4.409 1.361,-7.005 0,-2.849 -0.487,-5.299 -1.46,-7.351 -0.527,-1.131 -1.159,-2.106 -1.896,-2.923 -0.737,-0.817 -1.598,-1.477 -2.586,-1.979 -0.987,-0.502 -2.119,-0.879 -3.395,-1.13 -1.276,-0.252 -2.718,-0.377 -4.323,-0.377 h -15.831 z" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,97.15406,42.264267)"
+ id="g1478">
+ <path
+ id="path1480"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 1.18,0.04 2.002,0.395 2.467,1.066 0.465,0.67 0.698,1.858 0.698,3.564 v 28.393 c 0,1.787 -0.233,3.015 -0.698,3.685 C 2.002,37.379 1.18,37.714 0,37.714 v 3.179 h 24.093 l 0.374,-10.697 h -1.77 c -0.091,1.778 -0.216,3.112 -0.374,4.002 -0.159,0.889 -0.409,1.637 -0.749,2.243 -0.159,0.283 -0.323,0.505 -0.493,0.667 -0.17,0.162 -0.392,0.293 -0.664,0.394 -0.271,0.102 -0.612,0.162 -1.021,0.182 -0.408,0.02 -0.918,0.03 -1.531,0.03 h -6.601 v -16.87 h 6.295 c 0.658,0 1.196,0.081 1.616,0.244 0.42,0.162 0.749,0.448 0.987,0.856 0.238,0.407 0.402,0.968 0.493,1.681 0.091,0.712 0.137,1.62 0.137,2.72 h 1.701 c -0.046,-1.63 -0.08,-3.039 -0.102,-4.227 -0.023,-1.188 -0.035,-2.206 -0.035,-3.055 0,-0.848 0.012,-1.874 0.035,-3.077 0.022,-1.203 0.056,-2.6 0.102,-4.189 h -1.735 c 0,1.385 -0.058,2.424 -0.17,3.118 -0.114,0.692 -0.296,1.262 -0.545,1.711 -0.227,0.407 -0.505,0.682 -0.834,0.825 -0.329,0.143 -0.891,0.214 -1.685,0.214 h -6.26 V 5.482 c 0,-0.853 0.005,-1.544 0.016,-2.07 C 11.292,2.883 11.32,2.457 11.365,2.131 11.411,1.807 11.473,1.542 11.553,1.34 11.632,1.136 11.74,0.954 11.876,0.792 12.08,0.467 12.397,0.253 12.829,0.152 13.26,0.05 13.872,0 14.666,0 h 4.561 c 0.907,0 1.621,0.132 2.143,0.397 0.522,0.265 0.964,0.784 1.327,1.559 0.34,0.692 0.584,1.487 0.732,2.384 0.147,0.896 0.266,2.221 0.357,3.973 h 1.905 L 25.113,-3.179 H 0 Z" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,106.46958,42.229668)"
+ id="g1482">
+ <path
+ id="path1484"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.322,0.418 2.711,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.697,3.874 3.751,4.899 3.751,6.156 v 26.632 c 0,1.214 -0.054,2.219 -0.158,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.711,38.148 2.322,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.896,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.513,-0.189 0.948,0 2.126,0.063 3.534,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.875,-0.483 -1.166,-0.945 -0.289,-0.463 -0.487,-1.093 -0.591,-1.891 -0.106,-0.798 -0.159,-1.807 -0.159,-3.024 V 5.042 c 0,-0.589 0.007,-1.072 0.021,-1.45 0.013,-0.378 0.039,-0.693 0.078,-0.946 0.04,-0.251 0.093,-0.462 0.158,-0.629 0.066,-0.169 0.164,-0.337 0.296,-0.505 0.579,-0.841 1.606,-1.26 3.08,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.21,0.482 0.48,1.112 0.81,1.89 0.328,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,116.8314,42.229668)"
+ id="g1486">
+ <path
+ id="path1488"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.736,0 1.349,0.083 1.836,0.251 2.322,0.418 2.711,0.732 3,1.193 3.29,1.654 3.487,2.282 3.593,3.078 3.697,3.874 3.751,4.899 3.751,6.156 v 26.632 c 0,1.214 -0.054,2.219 -0.158,3.015 C 3.487,36.599 3.29,37.227 3,37.688 2.711,38.148 2.322,38.462 1.836,38.63 1.349,38.797 0.736,38.881 0,38.881 v 3.277 c 1.896,-0.211 3.54,-0.378 4.935,-0.504 1.395,-0.126 2.566,-0.189 3.513,-0.189 0.948,0 2.126,0.063 3.534,0.189 1.408,0.126 3.06,0.293 4.955,0.504 v -3.277 c -0.764,0 -1.389,-0.085 -1.875,-0.252 -0.488,-0.169 -0.875,-0.483 -1.166,-0.945 -0.289,-0.463 -0.487,-1.093 -0.591,-1.891 -0.106,-0.798 -0.159,-1.807 -0.159,-3.024 V 5.042 c 0,-0.589 0.007,-1.072 0.021,-1.45 0.013,-0.378 0.039,-0.693 0.078,-0.946 0.04,-0.251 0.093,-0.462 0.158,-0.629 0.066,-0.169 0.164,-0.337 0.296,-0.505 0.579,-0.841 1.606,-1.26 3.08,-1.26 h 3.988 c 1.762,0 3.105,0.735 4.026,2.206 0.211,0.335 0.401,0.65 0.573,0.945 0.171,0.293 0.362,0.682 0.572,1.166 0.21,0.482 0.48,1.112 0.81,1.89 0.328,0.777 0.77,1.817 1.322,3.12 h 2.132 L 26.768,-3.277 H 0 Z" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,30.528664,62.556578)"
+ id="g1574">
+ <path
+ id="path1576"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -0.566,0 -1.025,0.459 -1.025,1.025 0,0.567 0.459,1.027 1.025,1.027 0.566,0 1.025,-0.46 1.025,-1.027 C 1.025,0.459 0.566,0 0,0 m -62.412,-1 c -0.794,0 -1.437,0.643 -1.437,1.437 0,0.792 0.643,1.436 1.437,1.436 0.793,0 1.436,-0.644 1.436,-1.436 0,-0.794 -0.643,-1.437 -1.436,-1.437 M 5.573,1.694 C 5.306,3.79 3.077,3.479 3.077,3.479 c 0,0 -17.835,-1.561 -29.517,-2.32 -11.682,-0.758 -34.51,2.542 -34.51,2.542 -4.949,0.892 -5.78,-1.625 -5.78,-1.625 -1.472,-3.835 2.034,-4.796 2.034,-4.796 8.294,-2.541 18.682,-3.255 34.824,-3.165 16.143,0.089 33.394,4.905 33.394,4.905 0,0 2.319,0.58 2.051,2.674" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,22.632508,59.331978)"
+ id="g1578">
+ <path
+ id="path1580"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 1.739,3.79 -28.001,15.383 -2.274,-2.096 1.758,2.772 c 0.139,0.221 0.427,0.296 0.658,0.17 L 2.81,4.146 Z m -26.166,21.114 c -0.382,0.213 -0.864,0.099 -1.109,-0.263 l -3.24,-4.781 c -0.235,-0.347 -0.312,-0.777 -0.213,-1.183 0.1,-0.408 0.367,-0.753 0.735,-0.952 L -2.821,-0.761 c 1.257,-0.679 2.743,-0.796 4.091,-0.32 l 2.299,0.811 c 0.565,0.2 1.189,0.143 1.707,-0.155 l 9.661,-5.55 6.42,0.536 z" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,103.01691,62.194838)"
+ id="g1582">
+ <path
+ id="path1584"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0,0.566 0.459,1.026 1.025,1.026 1.592,1.026 2.051,0.566 2.051,0 2.051,-0.566 1.592,-1.025 1.025,-1.025 0.459,-1.025 0,-0.566 0,0 m 62.001,-0.589 c 0,0.793 0.644,1.437 1.437,1.437 0.793,0 1.436,-0.644 1.436,-1.437 0,-0.794 -0.643,-1.436 -1.436,-1.436 -0.793,0 -1.437,0.642 -1.437,1.436 M -2.497,-2.006 c 0,0 17.252,-4.815 33.394,-4.904 16.142,-0.09 26.531,0.624 34.825,3.165 0,0 3.506,0.961 2.034,4.796 0,0 -0.831,2.516 -5.78,1.625 0,0 -22.829,-3.3 -34.51,-2.542 -11.683,0.759 -29.518,2.319 -29.518,2.319 0,0 -2.228,0.312 -2.496,-1.784 -0.267,-2.095 2.051,-2.675 2.051,-2.675" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,110.28364,57.869188)"
+ id="g1586">
+ <path
+ id="path1588"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 28.93,15.872 c 0.23,0.126 0.518,0.052 0.658,-0.17 L 31.346,12.931 29.071,15.026 1.07,-0.356 2.81,-4.146 Z m -18.548,-9.586 6.421,-0.535 9.66,5.55 c 0.519,0.298 1.143,0.354 1.707,0.155 l 2.3,-0.812 c 1.348,-0.475 2.834,-0.359 4.091,0.321 L 32.803,9.788 c 0.368,0.199 0.635,0.545 0.734,0.952 0.1,0.406 0.023,0.836 -0.213,1.184 l -3.239,4.78 c -0.245,0.362 -0.728,0.477 -1.109,0.264 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g18760">
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,57.270699,20.747757)"
+ id="g1590">
+ <path
+ id="path1592"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.225,0.024 0.411,0.058 0.558,0.102 0.148,0.044 0.266,0.111 0.357,0.203 0.091,0.092 0.156,0.208 0.195,0.347 0.039,0.14 0.058,0.313 0.058,0.521 v 5.576 c 0,0.398 -0.086,0.68 -0.259,0.843 C 0.735,7.755 0.433,7.857 0,7.897 V 8.293 H 6.167 L 6.309,6.133 H 5.881 C 5.863,6.324 5.844,6.485 5.822,6.616 5.8,6.747 5.774,6.864 5.744,6.967 5.713,7.071 5.679,7.16 5.64,7.236 5.601,7.311 5.551,7.389 5.49,7.468 5.368,7.619 5.208,7.728 5.008,7.796 4.808,7.863 4.517,7.897 4.135,7.897 H 2.285 V 4.225 h 1.968 c 0.252,0 0.45,0.03 0.594,0.09 0.143,0.06 0.258,0.158 0.345,0.294 0.052,0.088 0.089,0.186 0.111,0.294 0.021,0.108 0.041,0.282 0.058,0.522 H 5.777 C 5.759,5.113 5.751,4.841 5.751,4.609 V 4.015 3.421 c 0,-0.232 0.008,-0.5 0.026,-0.804 H 5.361 C 5.344,3.081 5.259,3.399 5.107,3.571 4.955,3.743 4.67,3.829 4.253,3.829 H 2.285 V 1.11 C 2.285,0.896 2.3,0.719 2.33,0.58 2.36,0.44 2.419,0.332 2.505,0.252 2.592,0.172 2.707,0.117 2.85,0.085 2.992,0.053 3.181,0.037 3.414,0.037 h 1.35 c 0.58,0 0.995,0.152 1.247,0.456 0.06,0.072 0.112,0.148 0.156,0.228 0.042,0.08 0.082,0.174 0.116,0.282 C 6.317,1.111 6.348,1.239 6.374,1.387 6.4,1.535 6.43,1.713 6.465,1.921 H 6.88 L 6.569,-0.359 H 0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,60.128411,20.209806)"
+ id="g1594">
+ <path
+ id="path1596"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.026,-0.128 0.052,-0.248 0.078,-0.36 0.026,-0.112 0.056,-0.212 0.09,-0.3 0.096,-0.304 0.269,-0.542 0.52,-0.714 0.251,-0.172 0.532,-0.258 0.844,-0.258 0.354,0 0.644,0.1 0.869,0.3 0.225,0.2 0.338,0.46 0.338,0.78 0,0.232 -0.065,0.44 -0.195,0.624 C 2.492,0.144 2.438,0.212 2.382,0.276 2.326,0.34 2.252,0.406 2.161,0.474 2.07,0.542 1.958,0.616 1.824,0.696 1.689,0.776 1.523,0.872 1.324,0.984 0.718,1.32 0.29,1.644 0.039,1.956 c -0.251,0.312 -0.377,0.676 -0.377,1.092 0,0.24 0.056,0.46 0.169,0.66 0.112,0.2 0.266,0.374 0.461,0.522 0.195,0.148 0.426,0.262 0.694,0.342 0.268,0.08 0.558,0.12 0.87,0.12 0.13,0 0.249,-0.004 0.357,-0.012 C 2.321,4.672 2.432,4.658 2.544,4.638 2.657,4.618 2.776,4.588 2.901,4.548 3.026,4.508 3.171,4.456 3.336,4.392 V 2.64 H 2.959 C 2.942,2.776 2.927,2.906 2.914,3.03 2.901,3.154 2.882,3.268 2.856,3.372 2.787,3.652 2.644,3.876 2.427,4.044 2.211,4.212 1.96,4.296 1.674,4.296 1.363,4.296 1.103,4.204 0.896,4.02 0.688,3.836 0.584,3.604 0.584,3.324 0.584,3.188 0.61,3.06 0.661,2.94 0.713,2.82 0.801,2.696 0.925,2.568 1.049,2.44 1.212,2.304 1.415,2.16 1.616,2.016 1.867,1.856 2.167,1.68 2.468,1.504 2.717,1.34 2.915,1.188 3.112,1.036 3.271,0.884 3.391,0.732 3.511,0.58 3.597,0.424 3.648,0.264 3.7,0.104 3.726,-0.072 3.726,-0.264 3.726,-0.504 3.675,-0.732 3.574,-0.948 3.472,-1.164 3.335,-1.352 3.163,-1.512 2.99,-1.672 2.785,-1.798 2.548,-1.89 2.312,-1.981 2.06,-2.028 1.792,-2.028 1.514,-2.028 1.233,-1.992 0.947,-1.92 0.87,-1.904 0.802,-1.892 0.746,-1.884 0.69,-1.876 0.649,-1.868 0.623,-1.86 0.554,-1.844 0.498,-1.836 0.454,-1.836 0.29,-1.836 0.186,-1.904 0.143,-2.04 H -0.273 L -0.429,0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,61.717464,18.681567)"
+ id="g1598">
+ <path
+ id="path1600"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.147,0.072 0.275,0.136 0.383,0.192 0.491,0.248 0.586,0.306 0.668,0.366 0.751,0.426 0.831,0.49 0.909,0.558 0.987,0.626 1.064,0.704 1.143,0.792 1.22,0.88 1.287,0.962 1.344,1.038 1.4,1.114 1.45,1.192 1.493,1.272 1.536,1.352 1.577,1.438 1.616,1.53 1.655,1.622 1.696,1.736 1.74,1.872 H 2.025 V 0.276 H 4.543 L 4.35,-0.192 H 2.025 v -4.596 c 0,-0.672 0.273,-1.008 0.818,-1.008 0.251,0 0.47,0.064 0.656,0.192 0.186,0.128 0.396,0.356 0.629,0.684 L 4.361,-5.292 C 4.258,-5.452 4.154,-5.584 4.05,-5.688 3.851,-5.896 3.618,-6.06 3.349,-6.18 3.081,-6.3 2.795,-6.36 2.493,-6.36 1.973,-6.36 1.595,-6.236 1.357,-5.988 1.119,-5.74 1,-5.352 1,-4.824 v 4.632 H 0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,63.583306,20.465777)"
+ id="g1602">
+ <path
+ id="path1604"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0.144,0.148 0.322,0.242 0.539,0.282 0.565,0.29 0.613,0.294 0.682,0.294 H 0.799 C 1.023,0.254 1.21,0.158 1.357,0.006 1.504,-0.146 1.578,-0.314 1.578,-0.498 1.578,-0.682 1.504,-0.848 1.357,-0.996 1.21,-1.145 1.023,-1.238 0.799,-1.278 0.773,-1.278 0.752,-1.28 0.734,-1.284 0.717,-1.288 0.699,-1.29 0.682,-1.29 0.664,-1.29 0.641,-1.288 0.611,-1.284 0.58,-1.28 0.557,-1.278 0.539,-1.278 0.322,-1.23 0.144,-1.134 0,-0.99 c -0.143,0.144 -0.213,0.308 -0.213,0.492 0,0.184 0.07,0.35 0.213,0.498" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,65.738213,20.742777)"
+ id="g1606">
+ <path
+ id="path1608"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 0.817,0.722 c 0.459,0.409 0.858,0.773 1.196,1.09 0.337,0.316 0.631,0.609 0.883,0.878 0.25,0.269 0.472,0.528 0.667,0.776 0.196,0.249 0.379,0.51 0.552,0.783 0.077,0.128 0.152,0.271 0.221,0.427 0.069,0.156 0.132,0.315 0.188,0.475 0.056,0.161 0.1,0.315 0.129,0.464 0.032,0.148 0.046,0.282 0.046,0.403 0,0.241 -0.046,0.467 -0.136,0.68 C 4.472,6.911 4.349,7.093 4.192,7.246 4.037,7.398 3.853,7.518 3.642,7.606 3.429,7.695 3.202,7.739 2.96,7.739 2.562,7.739 2.173,7.627 1.792,7.403 1.618,7.299 1.474,7.193 1.356,7.085 1.239,6.977 1.136,6.855 1.045,6.719 0.954,6.583 0.874,6.423 0.805,6.239 0.735,6.055 0.667,5.839 0.597,5.591 H 0.194 c 0.043,0.248 0.096,0.472 0.157,0.672 0.06,0.2 0.125,0.372 0.195,0.516 0.103,0.24 0.25,0.462 0.44,0.666 0.191,0.203 0.408,0.377 0.65,0.52 0.242,0.143 0.504,0.253 0.785,0.33 0.281,0.078 0.564,0.116 0.85,0.116 0.373,0 0.716,-0.058 1.033,-0.174 C 4.619,8.121 4.894,7.959 5.128,7.751 5.361,7.543 5.543,7.297 5.673,7.013 5.803,6.729 5.868,6.419 5.868,6.083 5.868,5.779 5.827,5.491 5.744,5.219 5.662,4.947 5.519,4.663 5.315,4.367 5.112,4.071 4.84,3.751 4.498,3.407 4.156,3.063 3.729,2.675 3.22,2.243 3.012,2.067 2.827,1.911 2.667,1.775 2.507,1.639 2.347,1.507 2.188,1.379 2.027,1.251 1.86,1.119 1.688,0.983 1.515,0.847 1.315,0.695 1.091,0.527 h 3.453 c 0.354,0 0.609,0.06 0.766,0.18 0.051,0.04 0.097,0.086 0.136,0.138 0.039,0.052 0.077,0.12 0.117,0.204 0.039,0.084 0.08,0.19 0.124,0.318 0.042,0.128 0.089,0.284 0.142,0.468 H 6.192 L 5.854,-0.373 H 0 Z" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,68.78575,18.440937)"
+ id="g1610">
+ <path
+ id="path1612"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c -0.065,-0.241 -0.119,-0.501 -0.162,-0.781 -0.044,-0.281 -0.078,-0.575 -0.105,-0.884 -0.025,-0.308 -0.039,-0.615 -0.039,-0.919 0,-0.296 0.014,-0.595 0.039,-0.895 0.027,-0.301 0.061,-0.591 0.105,-0.872 0.043,-0.28 0.095,-0.543 0.155,-0.787 0.061,-0.244 0.131,-0.454 0.208,-0.631 0.121,-0.28 0.296,-0.499 0.527,-0.654 0.228,-0.157 0.49,-0.235 0.785,-0.235 0.294,0 0.558,0.078 0.791,0.235 0.234,0.155 0.412,0.374 0.533,0.654 0.078,0.168 0.146,0.375 0.207,0.619 0.06,0.245 0.113,0.507 0.156,0.787 0.043,0.281 0.076,0.573 0.098,0.878 0.021,0.304 0.032,0.605 0.032,0.901 0,0.609 -0.046,1.202 -0.137,1.779 C 3.103,-0.229 2.983,0.244 2.837,0.613 2.724,0.885 2.549,1.104 2.312,1.268 2.073,1.432 1.807,1.514 1.513,1.514 1.218,1.514 0.956,1.434 0.728,1.273 0.497,1.113 0.322,0.893 0.201,0.613 0.132,0.444 0.065,0.24 0,0 m -1.278,-0.742 c 0.146,0.552 0.351,1.024 0.616,1.416 0.265,0.392 0.585,0.696 0.961,0.912 C 0.675,1.802 1.093,1.91 1.552,1.91 1.993,1.91 2.396,1.8 2.759,1.58 3.122,1.36 3.434,1.052 3.693,0.656 3.953,0.26 4.156,-0.212 4.304,-0.76 4.45,-1.308 4.524,-1.914 4.524,-2.578 4.524,-3.25 4.45,-3.86 4.304,-4.408 4.156,-4.956 3.95,-5.426 3.687,-5.818 3.423,-6.21 3.103,-6.514 2.726,-6.73 2.35,-6.946 1.937,-7.054 1.486,-7.054 c -0.441,0 -0.845,0.108 -1.214,0.324 -0.367,0.216 -0.681,0.522 -0.941,0.918 -0.26,0.396 -0.463,0.868 -0.609,1.416 -0.148,0.548 -0.221,1.154 -0.221,1.818 0,0.672 0.073,1.284 0.221,1.836" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,71.04572,18.347026)"
+ id="g1614">
+ <path
+ id="path1616"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 c 0.199,0.128 0.379,0.26 0.539,0.396 0.159,0.136 0.315,0.288 0.468,0.456 0.15,0.168 0.334,0.38 0.551,0.636 h 0.649 v -7.176 c 0,-0.2 0.017,-0.366 0.052,-0.498 0.035,-0.132 0.097,-0.242 0.188,-0.33 0.091,-0.088 0.212,-0.154 0.364,-0.198 0.151,-0.044 0.339,-0.074 0.565,-0.09 v -0.36 c -0.381,0.016 -0.711,0.028 -0.987,0.036 -0.277,0.008 -0.511,0.012 -0.701,0.012 -0.199,0 -0.446,-0.004 -0.74,-0.012 -0.295,-0.008 -0.636,-0.02 -1.025,-0.036 v 0.348 c 0.441,0.04 0.746,0.144 0.914,0.312 0.17,0.168 0.254,0.452 0.254,0.852 V 0.36 C 0.909,0.216 0.757,0.096 0.636,0 0.515,-0.096 0.396,-0.182 0.279,-0.258 0.163,-0.334 0.034,-0.41 -0.104,-0.486 -0.242,-0.562 -0.411,-0.652 -0.61,-0.756 l -0.143,0.312 C -0.45,-0.276 -0.199,-0.128 0,0" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,72.66253,17.822166)"
+ id="g1618">
+ <path
+ id="path1620"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 H 5.842 V -0.42 L 2.284,-8.652 H 1.115 l 3.791,7.8 H 1.311 C 1.129,-0.852 0.973,-0.88 0.844,-0.936 0.713,-0.992 0.605,-1.082 0.519,-1.206 0.432,-1.33 0.363,-1.498 0.311,-1.71 0.26,-1.922 0.221,-2.184 0.194,-2.496 h -0.441 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g18792">
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,74.87463,40.498658)"
+ id="g1622">
+ <path
+ id="path1624"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 3.972,-0.996 4.303,-4.468 3.889,-5.241 3.475,-6.014 2.928,-6.464 2.481,-6.704 c -1.245,-0.671 -3.377,-0.887 -5.642,0.412 -2.803,1.608 -2.485,4 -1.94,4.794 C -4.557,-0.704 -3.449,0.866 0,0 m -54.502,8.249 c 3.977,-2.068 32.268,-10.248 32.268,-10.248 2.348,1.034 4.186,1.499 7.231,1.278 3.045,-0.22 8.598,-4.682 8.598,-4.682 0,0 3.509,-3.01 8.083,-3.164 4.573,-0.154 10.696,1.57 12.118,4.228 0,0 0.473,0.606 -10e-4,0.988 -0.474,0.383 -0.999,-0.392 -1.384,-0.753 0,0 -2.152,-1.553 -3.004,-1.906 C 8.556,-6.362 6.697,-6.734 5.999,-5.33 5.3,-3.926 3.893,0.318 0.48,1.222 c -3.413,0.904 -4.279,-0.606 -7.298,-1.69 -3.02,-1.085 -6.574,1.309 -7.198,1.725 -0.623,0.418 -1.028,0.148 -1.028,0.148 -0.868,-0.446 -3.822,-0.092 -3.822,-0.092 l -15.817,3.684 -19.848,3.83 c -0.422,-0.363 0.029,-0.578 0.029,-0.578" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ transform="matrix(0.35277777,0,0,-0.35277777,69.185731,46.435267)"
+ id="g1626">
+ <path
+ id="path1628"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 1.897,-0.989 4.565,-3.882 2.875,-6.299 1.185,-8.716 -1.034,-7.754 -1.034,-7.754 -3.336,-7.31 -6.042,-4.003 -5.402,-1.605 -4.762,0.791 -1.898,0.99 0,0 m -32.325,35.646 c 0.106,-0.496 23.473,-22.309 23.473,-22.309 0,0 2.507,-3.027 3.821,-7.711 0,0 1.129,-2.289 -0.528,-4.953 -1.655,-2.663 -0.962,-5.869 1.41,-7.874 0,0 2.575,-2.659 5.145,-1.741 2.57,0.917 3.491,2.815 3.974,4.62 0.482,1.804 1.477,2.26 1.477,2.26 0,0 1.494,0.394 0.795,1.597 -0.7,1.204 -1.585,0.289 -1.712,-0.094 0,0 -4.597,0.309 -7.581,4.52 -2.983,4.212 -2.837,11.875 -2.837,11.875 0,0 -25.054,19.227 -26.973,20.2 0,0 -0.571,0.107 -0.464,-0.39" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ id="svg17326"
+ version="1.1"
+ viewBox="0 0 33.866666 33.866666"
+ height="128"
+ width="128">
+ <defs
+ id="defs17320" />
+ <metadata
+ id="metadata17323">
+ <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>
+ <g
+ id="layer1">
+ <g
+ transform="matrix(1.2211066,0,0,1.2211066,-5.2918268,-4.97277)"
+ id="g17905">
+ <g
+ transform="matrix(0.35277777,0,0,-0.35277777,6.7411374,21.316414)"
+ id="g1582">
+ <path
+ id="path1584"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="M 0,0 C 0,0.566 0.459,1.026 1.025,1.026 1.592,1.026 2.051,0.566 2.051,0 2.051,-0.566 1.592,-1.025 1.025,-1.025 0.459,-1.025 0,-0.566 0,0 m 62.001,-0.589 c 0,0.793 0.644,1.437 1.437,1.437 0.793,0 1.436,-0.644 1.436,-1.437 0,-0.794 -0.643,-1.436 -1.436,-1.436 -0.793,0 -1.437,0.642 -1.437,1.436 M -2.497,-2.006 c 0,0 17.252,-4.815 33.394,-4.904 16.142,-0.09 26.531,0.624 34.825,3.165 0,0 3.506,0.961 2.034,4.796 0,0 -0.831,2.516 -5.78,1.625 0,0 -22.829,-3.3 -34.51,-2.542 -11.683,0.759 -29.518,2.319 -29.518,2.319 0,0 -2.228,0.312 -2.496,-1.784 -0.267,-2.095 2.051,-2.675 2.051,-2.675" />
+ </g>
+ <g
+ transform="matrix(0.35277777,0,0,-0.35277777,14.007866,16.990763)"
+ id="g1586">
+ <path
+ id="path1588"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 0,0 28.93,15.872 c 0.23,0.126 0.518,0.052 0.658,-0.17 L 31.346,12.931 29.071,15.026 1.07,-0.356 2.81,-4.146 Z m -18.548,-9.586 6.421,-0.535 9.66,5.55 c 0.519,0.298 1.143,0.354 1.707,0.155 l 2.3,-0.812 c 1.348,-0.475 2.834,-0.359 4.091,0.321 L 32.803,9.788 c 0.368,0.199 0.635,0.545 0.734,0.952 0.1,0.406 0.023,0.836 -0.213,1.184 l -3.239,4.78 c -0.245,0.362 -0.728,0.477 -1.109,0.264 z" />
+ </g>
+ </g>
+ </g>
+</svg>
));
$vars["pagedata"] = $m->render($vars["page"],$vars);
-
+ $vars["version"] = date("YmdHis");
$mainsite = $m->render('index.html',$vars);
echo $mainsite;
//echo "<pre>".print_r($vars).print_r($_SERVER["REQUEST_URI"]).print_r($vars)."</pre>"
},
viewConfirmation: function(){
document.getElementById("rendezvous_clientname").value;
- if ()
+
myapp.viewpanel('rdvconfirm');
},
viewSended: function(){
--- /dev/null
+<?php
+
+class Image{
+ private $picdef= array("density" => 72,"maxheight" => 380,"maxwidth" => 700, "thumbwidth" => 128, "thumbheight" => 128);
+
+ public function __construct($npicdef){
+ foreach ($npicdef as $np){
+ if ($picdef[$np]){
+ $picdef[$np] = $npicdef[$np];
+ }
+ }
+ }
+ public function __destruct(){
+
+ }
+ public function set_picdef($npicdef){
+ foreach ($npicdef as $np){
+ if ($picdef[$np]){
+ $picdef[$np] = $npicdef[$np];
+ }
+ }
+ }
+ public function resize($imgfile,$outpath){
+ $outfile = null;
+ $fpinfo = pathinfo($imgfile);
+
+ if (file_exists($imgfile)){
+ list($pwidth, $pheight) = getimagesize($imgfile);
+ $width=0;
+ $height =0;
+ $density = $this->picdef["density"];
+ if ($pwidth>$this->picdef["maxwidth"]){
+ $width = $this->picdef["maxwidth"];
+ } elseif ($height > $this->picdef["maxheight"]) {
+ $height = $this->picdef["maxheight"];
+ }
+ if ($height == 0){
+ $height = ($pheight/$pwidth) * $width;
+ }
+ elseif ($width == 0) {
+ $width = ($pwidth/$pheight) * $height;
+ }
+ if ($height > $this->picdef["maxheight"]){
+ $height = $this->picdef["maxheight"];
+ $width = ($width/$height) * $height;
+ }
+ if ($outpath = null){
+ $outfile = $imgfile;
+ $res = system("mogrify -resize ".$width."x".$height." -density ".$density." ".$imgfile);
+ } else {
+ $outfile = $outpath.'/'.$fpinfo['basename'];
+ $res = system("convert -resize ".$width."x".$height." -density ".$density." ".$imgfile." ".$outpath.'/'.$fpinfo['basename']);
+ }
+
+ }
+ return $outfile;
+ }
+
+ public function createthump($imgfile,$outpath,$type,$postpend){
+ $fpinfo = pathinfo($imgfile);
+ $outfile = $outpath.'/'.$fpinfo['filename'].$postpend.'.'.$fpinfo['extension'];
+ system('convert -thumbnail x'.$this->picdef['thumbwidth'].' -background white -alpha remove "'.$imgfile.'" "'.$outfile.'"');
+ if ($type == "cube"){
+ system("convert ".$imgfile." -gravity center -crop ".$this->picdef['thumbwidth']."x".$this->picdef['thumbheight']."+0+0 +repage \"".$outfile."\"");
+ }
+ return $outfile;
+ }
+
+}
+?>
\ No newline at end of file
{
- "background_color": "#c42027",
+ "background_color": "#82171b",
"description": "OldBell - Marc den Barbir - Haircuts & Shaves For Men",
"display": "fullscreen",
"icons": [
{
"src": "img/appicon.png",
- "sizes": "192x192",
+ "sizes": "512x512",
"type": "image/png"
}
],
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ version="1.1"
+ viewBox="0 0 128 128"
+ id="svg2996">
+ <defs
+ id="defs10">
+ <filter
+ id="filter839"
+ style="color-interpolation-filters:sRGB;">
+ <feColorMatrix
+ id="feColorMatrix837"
+ values="0.21 0.72 0.072 0 0 0.21 0.72 0.072 0 0 0.21 0.72 0.072 0 0 0 0 0 1 0 " />
+ </filter>
+ <filter
+ id="filter843"
+ style="color-interpolation-filters:sRGB;">
+ <feColorMatrix
+ id="feColorMatrix841"
+ values="0.21 0.72 0.072 0 0 0.21 0.72 0.072 0 0 0.21 0.72 0.072 0 0 0 0 0 1 0 " />
+ </filter>
+ </defs>
+ <path
+ transform="matrix(1.0003015,0,0,0.99668702,-0.01929185,-0.01929455)"
+ id="rect3491-1-1"
+ style="fill:#000000;filter:url(#filter843)"
+ d="m 61.76,35.77 c -0.59891,0 -0.77441,0.45947 -1.0528,0.88012 l -4.5733,6.9031 H 50.577 l 9.1811,9.1811 c 3.491,-3.1516 7.9998,-5.1428 12.684,-5.1428 10.114,0 19.467,9.318 19.467,19.432 0,4.6883 -2.0155,9.1922 -5.1773,12.684 l 10.458,10.458 c 0.3372,-0.59521 0.53501,-1.2684 0.53501,-2.0019 v -40.538 c 0,-2.2468 -1.7921,-4.0728 -4.0383,-4.0728 h -4.9012 l -4.556,-6.9031 C 83.95114,36.22907 83.75836,35.7696 83.15941,35.7696 h -21.399 z m -27.44,7.7832 c -2.246,0 -4.0555,1.826 -4.0555,4.0728 v 40.538 c 0,2.2455 1.8094,4.0728 4.0555,4.0728 h 50.876 l -6.8513,-6.8513 c -1.8898,0.67368 -3.8828,1.0528 -5.9021,1.0528 -10.114,0 -19.398,-9.3008 -19.398,-19.415 0,-2.0194 0.36183,-4.0138 1.0354,-5.9021 L 36.512,43.5532 h -2.1918 z m 3.3825,9.0948 h 0.62128 c 0.93534,0 1.674,0.75586 1.674,1.6913 v 25.334 c 0,0.93529 -0.73879,1.6912 -1.674,1.6912 H 37.7025 c -0.93506,0 -1.6912,-0.75602 -1.6912,-1.6912 v -25.334 c 0,-0.93545 0.75613,-1.6913 1.6912,-1.6913 z m 34.74,0.0171 c -3.5586,0 -6.8065,1.2968 -9.3018,3.4515 l 1.7948,1.7948 c 0.94119,-0.71323 1.9794,-1.2787 3.0718,-1.5877 0.34715,-0.10791 0.71345,-0.16468 1.07,-0.22437 l -0.0171,-0.0171 c 1.0698,-0.1807 2.1728,-0.16755 3.2444,0 0.58218,0.20554 0.91684,0.45499 0.53496,0.81113 -0.65396,0.36404 -1.4083,0.58124 -2.0536,0.98366 -1.2421,0.66214 -2.3613,1.5556 -3.3135,2.5886 l 9.9749,9.9577 c 0.30158,-1.3568 1.5006,-2.3643 2.9511,-2.3643 1.6796,0 3.0546,1.3407 3.0546,3.0201 0,1.4556 -1.0298,2.6548 -2.3988,2.9511 l 2.2953,2.2952 c 2.1397,-2.5039 3.4342,-5.7521 3.4342,-9.3018 0,-7.9115 -6.4301,-14.358 -14.341,-14.358 z m -14.169,12.65 c -0.0659,0.55953 -0.10349,1.1314 -0.10349,1.7085 0,7.9115 6.3604,14.324 14.272,14.324 0.59449,0 1.1847,-0.0331 1.7603,-0.10354 l -10.027,-10.027 c 0.0926,0.56141 0.2135,1.1188 0.36238,1.674 0.0193,0.29115 -0.23807,0.53662 -0.51773,0.55225 -0.37381,-0.13177 -0.58372,-0.42131 -0.82836,-0.70759 -1.3436,-1.5 -2.2753,-3.2252 -2.5886,-5.091 l -2.3298,-2.3298 z" />
+ <path
+ transform="matrix(1.0003015,0,0,0.99668702,-0.01929185,-0.01929455)"
+ id="path4320-7"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#d34834;filter:url(#filter839)"
+ d="M 64,0 C 28.714,0 -0.009,28.723 -0.009,64.009 -0.009,99.295 28.714,128 64,128 99.286,128 127.991,99.295 127.991,64.009 127.991,28.723 99.286,0 64,0 Z m 0,9.9577 c 29.914,0 54.051,24.137 54.051,54.051 0,13.961 -5.2607,26.662 -13.91,36.241 l -76.4,-76.4 C 37.3199,15.2008 50.039,9.9577 63.999,9.9577 Z m -40.141,17.81 76.382,76.4 c -9.5788,8.6489 -22.28,13.892 -36.241,13.892 -29.914,0 -54.068,-24.137 -54.068,-54.051 0,-13.965 5.2734,-26.661 13.927,-36.241 z" />
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
+ <dc:publisher>
+ <cc:Agent
+ rdf:about="http://openclipart.org/">
+ <dc:title>Openclipart</dc:title>
+ </cc:Agent>
+ </dc:publisher>
+ <dc:title></dc:title>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/publicdomain/">
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Distribution" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
+ sodipodi:docname="videos.svg"
+ width="200mm"
+ height="150mm"
+ viewBox="0 0 200 150"
+ version="1.1"
+ id="svg8">
+ <metadata
+ id="metadata12">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ inkscape:current-layer="svg8"
+ inkscape:window-maximized="1"
+ inkscape:window-y="-9"
+ inkscape:window-x="-9"
+ inkscape:cy="85.985187"
+ inkscape:cx="210.54228"
+ inkscape:zoom="0.73201389"
+ showgrid="false"
+ id="namedview10"
+ inkscape:window-height="1001"
+ inkscape:window-width="1920"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0"
+ guidetolerance="10"
+ gridtolerance="10"
+ objecttolerance="10"
+ borderopacity="1"
+ bordercolor="#666666"
+ pagecolor="#ffffff" />
+ <defs
+ id="defs2" />
+ <g
+ transform="matrix(0.96467534,0,0,1.2373463,-16.351751,2.4384068)"
+ id="layer1">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:DancingScript;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ x="35.529758"
+ y="82.398804"
+ id="text835"
+ transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.7px;font-family:DancingScript;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">Videos</tspan></tspan></text>
+ </g>
+</svg>
Samedi 8h00 - 15h00<br/>
Fermé le dimanche</p>
</div>
-<div class="container margin">
-<div style="overflow:hidden;width: 400px;position: relative;"><iframe width="400" height="200" src="https://maps.google.com/maps?width=200&height=200&hl=fr&q=34,rue%20du%20fosse+4132+Esch-sur-Alzette&ie=UTF8&t=&z=13&iwloc=B&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><style>#gmap_canvas img{max-width:none!important;background:none!important}</style></div>
-</div>
\ No newline at end of file
+<div class="display-container">
+<iframe style="width: 100%;" height="200" src="https://maps.google.com/maps?width=200&height=200&hl=fr&q=34,rue%20du%20fosse+4132+Esch-sur-Alzette&ie=UTF8&t=&z=13&iwloc=B&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><style>#gmap_canvas img{max-width:none!important;background:none!important}</style></div>
+</div>
+<script>
+function initpage(){}
+</script>
\ No newline at end of file
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes">
- <!-- <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
+ <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
- <meta http-equiv="Expires" content="0" /> -->
+ <meta http-equiv="Expires" content="0" />
<meta name="robots" content="index,follow">
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/apple-icon-60x60.png">
<meta name="msapplication-TileColor" content="#c42027">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#c42027">
-<link rel="stylesheet" href="js/vendor/tabulator/css/tabulator_site.css?v=1" />
-<link rel="stylesheet" href="js/vendor/photoswipe/photoswipe.css?v=1" />
-<link rel="stylesheet" href="js/vendor/photoswipe/default-skin.css?v=1">
-<link rel="stylesheet" href="css/icons.css?v=1">
-<link rel="stylesheet" href="css/theme.css?v=1">
-<link rel="stylesheet" href="css/site.css?v=1">
+<link rel="stylesheet" href="js/vendor/tabulator/css/tabulator_site.css?v={{ version }}" />
+<!-- <link rel="stylesheet" href="js/vendor/photoswipe/photoswipe.css?v=1" />
+<link rel="stylesheet" href="js/vendor/photoswipe/default-skin.css?v=1"> -->
+<link rel="stylesheet" href="css/icons.css?v={{ version }}">
+<link rel="stylesheet" href="css/theme.css?v={{ version }}">
+<link rel="stylesheet" href="css/site.css?v={{ version }}">
</head>
<body class="fullscreen">
<div class="display-container" style="width: 100vw; overflow-y: hidden;">
{{pagedata}}
</div>
- <script src="js/vendor/tabulator/js/tabulator.js" type="text/javascript"></script>
- <script src="js/vendor/moment/moment-with-locales.min.js" type="text/javascript"></script>
- <script src="js/vendor/photoswipe/photoswipe.min.js" type="text/javascript"></script>
- <script src="js/vendor/photoswipe/photoswipe-ui-default.min.js"></script>
- <script src="js/myapp.js" type="text/javascript"></script>
- <script src="js/request.js" type="text/javascript"></script>
+ <script src="js/vendor/tabulator/js/tabulator.js?v={{ version }}" type="text/javascript"></script>
+ <script src="js/vendor/moment/moment-with-locales.min.js?v={{ version }}" type="text/javascript"></script>
+ <!-- <script src="js/vendor/photoswipe/photoswipe.min.js" type="text/javascript"></script>
+ <script src="js/vendor/photoswipe/photoswipe-ui-default.min.js"></script> -->
+ <script src="js/myapp.js?v={{ version }}" type="text/javascript"></script>
+ <script src="js/request.js?v={{ version }}" type="text/javascript"></script>
</body>
</html>
<div class="top">
<div class="bar red-white">
- <a class="bar-item button red-white" href="index.html"><span class="icon-arrow-left2" style="font-size: 30px;"></span><br/>retour</a>
+ <a class="bar-item button red-white" href="index.html"><span class="icon-arrow-left" style="font-size: 30px;"></span><br/>retour</a>
<div class="bar-item">
<span class="large text-white" id="gallery_name">{{ gallery_name }}</span><br/>
<span>Gallerie</span>
</div>
<div class="main" style="margin-top: 66px; background-color: #000; height: calc(100vh - 68px); overflow-y: scroll;">
-<div class="row" style="background-color: #000;padding-top: 5px;">
- <div class="text-white col s12" id="gallery_description" style="padding-bottom: 10px;" >
- {{ gallery_description }}
- </div>
-</div>
+ <div class="row">
+ <div class="col s12">
+ <video controls style="width: 100%;" src="media/galleries/videos/10000000_166728851767629_1882139570219937158_n.mp4"></video>
+ </div>
+ </div>
+ <div class="row" style="background-color: #000;padding-top: 5px;">
+ <div class="text-white col s12" id="gallery_description" style="padding-bottom: 10px;" >
+ gallery dexcription text
+ </div>
+ </div>
+ <div class="row">
+ <div class="bar red-white">
+ <button class="bar-item button"><span class="icon-arrow-left" style="font-size: 30px;"></span> prev</button>
+ <button class="bar-item button right">next <span class="icon-arrow-right" style="font-size: 30px;"></span></button>
+ </div>
+ </div>
+
+
<div class="row" id="gallery_items" style="background-color: #000;padding-top: 5px;">
{{#gallery_items }}
</div>
</div>
-<!-- Root element of PhotoSwipe. Must have class pswp. -->
-<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
-
- <!-- Background of PhotoSwipe.
- It's a separate element as animating opacity is faster than rgba(). -->
- <div class="pswp__bg"></div>
-
- <!-- Slides wrapper with overflow:hidden. -->
- <div class="pswp__scroll-wrap">
-
- <!-- Container that holds slides.
- PhotoSwipe keeps only 3 of them in the DOM to save memory.
- Don't modify these 3 pswp__item elements, data is added later on. -->
- <div class="pswp__container">
- <div class="pswp__item"></div>
- <div class="pswp__item"></div>
- <div class="pswp__item"></div>
- </div>
-
- <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->
- <div class="pswp__ui pswp__ui--hidden">
-
- <div class="pswp__top-bar">
-
- <!-- Controls are self-explanatory. Order can be changed. -->
- <div class="pswp__counter"></div>
-
- <button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
-
- <button class="pswp__button pswp__button--share" title="Share"></button>
-
- <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
-
- <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
-
- <!-- Preloader demo https://codepen.io/dimsemenov/pen/yyBWoR -->
- <!-- element will get class pswp__preloader--active when preloader is running -->
- <div class="pswp__preloader">
- <div class="pswp__preloader__icn">
- <div class="pswp__preloader__cut">
- <div class="pswp__preloader__donut"></div>
- </div>
- </div>
- </div>
- </div>
-
- <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
- <div class="pswp__share-tooltip"></div>
- </div>
-
- <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
- </button>
-
- <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
- </button>
-
- <div class="pswp__caption">
- <div class="pswp__caption__center"></div>
- </div>
-
- </div>
-
- </div>
-
-</div>
-<!-- Photoswipe -->
-<script src="js/gallery.js" type="text/javascript"></script>
\ No newline at end of file
+<script src="js/gallery.js?v={{ version }}" type="text/javascript"></script>
\ No newline at end of file
<div class="top">
<div class="bar red-white">
- <img class="bar-item" src="img/logo1.png" style="height: 70px;" alt="logo oldbell" />
+ <img class="bar-item" src="img/oldbell_logo2.svg" style="height: 70px;" alt="logo oldbell" />
<div class="bar-item" style="color: #fff; font-variant: small-caps; padding: 8px 8px;">Marc de Barbir<br/>Haircuts & Shaves<br/>For Men </div>
- <a class="bar-item right" style="padding-top: 15px;"><span class="icon-cart" style="font-size: 28px;"></span><br/>Shop</a>
+ <!-- <button class="bar-item button right" onclick="index.loadintro();" style="padding-top: 15px;"><span class="icon-cart" style="font-size: 28px;"></span><br/>Offre</button> -->
</div>
</div>
- <div class="display-container" style="margin-top: 70px; height: calc(100vh - 70px); overflow-y: scroll;">
- <div class="row center" style="max-width: 1024px;margin: auto;">
+ <div class="display-container dark" style="margin-top: 70px; height: calc(100vh - 70px); overflow-y: scroll;">
+ <div class="row center" style="max-width: 1024px; margin: auto; margin-bottom: 8px;margin-top: 8px;">
<div class="col s8">
- <fieldset>
- <legend>Offres Speciales</legend>
- <div class="col s4">
- <img src="img/dose.jpg" style="border: 1px solid grey; border-radius: 5px; width: 80%;"><br/>
+ <div class="row">
+ <div class="col s3">
+
+ </div>
+ <div class="col s6">
+ <a class="button" href="shop.html">
+ <div style="display: block; position: relative;">
+ <img src="img/Online_shop.svg" style="width: 100%;"/>
+ </div>
+ </a>
</div>
- <div class="col s8">
- description de l'offre spéciale
+ <div class="col s3">
+
</div>
-
- </fieldset>
+ </div>
+
</div>
- <div class="col s4 padding">
- <a href="gallery.html">
- <img src="media/galleries/default.png" style="width: 100%; border: 4px solid black; border-radius: 5px;"/>
- <label class="label">Gallery</label></a>
+ <div class="col s4 border">
+ <a href="gallery.html?name=weeklysoap">
+ <div style="display: block; position: relative;">
+ <img src="media/galleries/photos.png" style="display: block;width: 100%;"/>
+ <div class="font-gallerytile" style="width: 100%;">
+ <svg version="1.1" viewBox="0 0 200 150" height="100%" width="100%">
+ <text
+ fill="#fff" transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"
+ id="text835"
+ y="82.398804"
+ x="35.529758"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ xml:space="preserve"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">Weekly Soap</tspan></tspan></text>
+ </svg>
+ </div>
+ </div>
+ </a>
+ <!-- <div style="z-index: 1;">Gallery</div> -->
+ </a>
</div>
</div>
<div class="row center" style="max-width: 1024px;margin: auto;">
- <div class="col s4 padding">
- <a href="gallery.html?name="><img src="media/galleries/default.png" style="width: 100%; border: 4px solid black; border-radius: 5px;"/>
- <label class="label">Gallery</label></a>
+ <div class="col s4 border">
+ <a href="gallery.html?name=suggestion">
+ <div style="display: block; position: relative;">
+ <img src="media/galleries/photos.png" style="display: block;width: 100%;"/>
+ <div class="font-gallerytile" style="width: 100%;">
+ <svg version="1.1" viewBox="0 0 200 150" height="100%" width="100%">
+ <text
+ fill="#fff" transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"
+ id="text835"
+ y="82.398804"
+ x="35.529758"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ xml:space="preserve"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">Suggestions</tspan></tspan></text>
+ </svg>
+ </div>
+ </div>
+ </a>
+ <!-- <label class="label">Gallery</label></a> -->
</div>
- <div class="col s4 padding">
- <a href="gallery.html?name="><img src="media/galleries/default.png" style="width: 100%; border: 4px solid black; border-radius: 5px;"/>
- <label class="label">Gallery</label></a>
+ <div class="col s4 border">
+ <a href="gallery.html?name=ourspecials">
+ <div style="display: block; position: relative;">
+ <img src="media/galleries/photos.png" style="display: block;width: 100%;"/>
+ <div class="font-gallerytile" style="width: 100%;">
+ <svg version="1.1" viewBox="0 0 200 150" height="100%" width="100%">
+ <text
+ fill="#fff" transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"
+ id="text835"
+ y="82.398804"
+ x="35.529758"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ xml:space="preserve"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">Our Specials</tspan></tspan></text>
+ </svg>
+ </div>
+ </div>
+ </a>
+
+ <!-- <label class="label">Gallery</label></a> -->
</div>
- <div class="col s4 padding">
- <a href="gallery.html?name="><img src="media/galleries/default.png" style="width: 100%; border: 4px solid black; border-radius: 5px;"/>
- <label class="label">Gallery</label></a>
+ <div class="col s4 border">
+ <a href="gallery.html?name=aboutus">
+ <div style="display: block; position: relative;">
+ <img src="media/galleries/photos.png" style="display: block;width: 100%;"/>
+ <div class="font-gallerytile" style="width: 100%;">
+ <svg version="1.1" viewBox="0 0 200 150" height="100%" width="100%">
+ <text
+ fill="#fff" transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"
+ id="text835"
+ y="82.398804"
+ x="35.529758"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ xml:space="preserve"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8x;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">About us</tspan></tspan></text>
+ </svg>
+ </div>
+ </div>
+ </a>
+ <!-- <label class="label">Gallery</label></a> -->
</div>
</div>
- <div class="bar gold-white" style="max-width: 1024px;margin: auto;">
- <a class="bar-item button block mobile gold-white" href="rendezvous.html" style="vertical-align: text-top;font-size: 30px;"><span class="icon-calendar"></span> <span style="vertical-align: middle!important; font-size: 25px; ">Rendez-Vous</span></a>
+ <div class="row dark" id="newrdv" style="max-width: 1024px; margin: auto;">
+ <div class="col s1 padding">
+
+ </div>
+ <div class="col s10 padding">
+ <a class="button block gold-white" href="rendezvous.html" style="font-size: 22px;"><span class="icon-rendezvous"></span> Rendez-vous</a>
+ </div>
+ <div class="col s1 padding">
+
+ </div>
</div>
- <div class="row" style="max-width: 1024px;margin: auto;">
- <div class="col s4 padding">
- <img src="media/galleries/default.png" style="width: 100%; border: 4px solid black; border-radius: 5px;"/>
- <label class="label">Gallery</label>
+ <div class="row dark" id="nextrdv" style="max-width: 1024px; margin: auto; display: none;">
+ <div class="col s8 padding">
+ <a class="button gold-white" href="rendezvous.html" style="font-size: 22px;"><span class="icon-rendezvous"></span> Rendez-vous: dd.MM.YYYY à HH:MI</a>
</div>
<div class="col s4 padding">
- <img src="media/galleries/default.png" style="width: 100%; border: 4px solid black; border-radius: 5px;"/>
- <label class="label">Gallery</label>
+ <a class="button gold-white" href="rendezvous.html" style="font-size: 22px;"><span class="icon-cross"></span> Annuler</a>
</div>
- <div class="col s4 padding">
- <img src="media/galleries/default.png" style="width: 100%; border: 4px solid black; border-radius: 5px;"/>
- <label class="label">Gallery</label>
+ </div>
+ <div class="row" style="max-width: 1024px;margin: auto;">
+ <div class="col s4">
+ <a href="gallery.html?name=photos">
+ <div style="display: block; position: relative;">
+ <img src="media/galleries/photos.png" style="display: block;width: 100%;"/>
+ <div class="font-gallerytile" style="width: 100%;">
+ <svg version="1.1" viewBox="0 0 200 150" height="100%" width="100%">
+ <text
+ fill="#fff" transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"
+ id="text835"
+ y="82.398804"
+ x="35.529758"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ xml:space="preserve"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9px;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">Photos</tspan></tspan></text>
+ </svg>
+ </div>
+ </div>
+ </a>
+ <!-- <label class="label">Gallery</label> -->
+ </div>
+ <div class="col s4">
+ <a href="gallery.html?name=videos">
+ <div style="display: block; position: relative;">
+ <img src="media/galleries/videos.png" style="width: 100%; overflow-y: hidden;"/>
+ <div class="font-gallerytile" style="width: 100%;">
+ <svg version="1.1" viewBox="0 0 200 150" height="100%" width="100%">
+ <text
+ fill="#fff" transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"
+ id="text835"
+ y="82.398804"
+ x="35.529758"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ xml:space="preserve"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9px;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">Videos</tspan></tspan></text>
+ </svg>
+ </div>
+ </div>
+ </a>
+ </div>
+ <div class="col s4">
+
+ <a href="gallery.html?name=productions">
+ <div style="display: block; position: relative;">
+ <img src="media/galleries/productions.png" style="width: 100%;"/>
+ <div class="font-gallerytile" style="width: 100%;">
+ <svg version="1.1" viewBox="0 0 200 150" height="100%" width="100%">
+ <text
+ fill="#fff" transform="matrix(4.4346399,-2.1554661,2.1985079,4.3478197,-300.78939,-162.28939)"
+ id="text835"
+ y="82.398804"
+ x="35.529758"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;line-height:1.25;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;inline-size:55.7223;stroke-width:0.264583"
+ xml:space="preserve"><tspan
+ x="35.529758"
+ y="82.398804"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9px;font-family:'DancingScript';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583">Productions</tspan></tspan></text>
+ </svg>
+ </div>
+ </div>
+ </a>
+
</div>
</div>
+
<div class="row" style="max-width: 1024px;margin: auto;">
- <div class="col s6">
- <ul class="ul">
- <li style="background-color: #c42027;color: #b0834c;font-weight:bold;">Events</li>
- <li>Event 1</li>
- <li>Event 2</li>
- </ul>
- </div>
- <div class="col s6">
- <ul class="ul">
- <li class="red-gold" style="font-weight:bold;">Presse</li>
- <li>Press 1</li>
- <li>Press 2</li>
- </ul>
+ <div class="col s6 padding">
+ <a class="button block mobile gold-white" href="events.html" style="font-size: 22px;"><span class="icon-calendar"></span> Events</a>
+ </div>
+ <div class="col s6 padding">
+ <a class="button block mobile gold-white" href="press.html" style="font-size: 22px;"><span class="icon-news"></span> Press</a>
</div>
</div>
</div>
<div class="bottom">
<div class="bar red-white">
<a class="bar-item add-button">installer App</button>
- <a class="bar-item button" href="salon.html"><span class="icon-map2" style="font-size: 40px;"></span><br/>Salon</a>
- <a class="bar-item button right"><span class="icon-facebook2" style="font-size: 40px;"></span><br/>instagram</a>
- <a class="bar-item button right"><span class="icon-instagram" style="font-size: 40px;"></span><br/>facebook</a>
+ <a class="bar-item button" href="salon.html"><span class="icon-location" style="font-size: 40px;"></span><br/>Salon</a>
+ <a class="bar-item button right"><span class="icon-instagram" style="font-size: 40px;"></span><br/>instagram</a>
+ <a class="bar-item button right"><span class="icon-facebook" style="font-size: 40px;"></span><br/>facebook</a>
</div>
</div>
+<div class="top">
+ <div class="bar red-white">
+ <a class="bar-item button red-white" href="index.html"><span class="icon-arrow-left" style="font-size: 30px;"></span><br/>retour</a>
+ <div class="bar-item">
+ <span class="large text-white" id="gallery_name">Press</span><br/>
+ </div>
+ </div>
+ </div>
+ <div class="main" style="margin-top: 66px; height: calc(100vh - 68px); overflow-y: scroll;">
+
+
<div class="container padding-large">
<div class="bar black">
<div class="bar-item"><h3>TEST News</h3></div>
<p>Curabitur euismod purus quis ipsum volutpat, sit amet dapibus quam eleifend. Sed dictum, ante fringilla suscipit condimentum, metus lorem feugiat quam, sit amet tristique enim nulla id turpis. Ut vitae elementum ligula, at egestas metus. Etiam fermentum efficitur eros, feugiat tempor ligula accumsan id. Fusce sed aliquet nibh, et sagittis ante. Quisque in tincidunt sapien. Nulla fermentum leo blandit velit semper, ut vehicula quam vestibulum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nullam congue, est nec dictum tempor, tortor nisl vestibulum tellus, quis sollicitudin ipsum arcu id nibh. Ut ut arcu malesuada, imperdiet tellus quis, ornare est. Nulla luctus lobortis commodo. Sed id ex placerat purus consequat lobortis.</p>
</div>
- </div>
\ No newline at end of file
+ </div>
+</div>
\ No newline at end of file
</div>
</div>
</div>
-<script src="js/rendezvous.js" type="text/javascript"></script>
+<script src="js/rendezvous.js?v={{ version }}" type="text/javascript"></script>
<div class="top">
<div class="bar red-gold">
- <a class="bar-item button red-white" href="index.html"><span class="icon-arrow-left2" style="font-size: 30px;"></span><br/>retour</a>
+ <a class="bar-item button red-white" href="index.html"><span class="icon-arrow-left" style="font-size: 30px;"></span><br/>retour</a>
<div class="bar-item">
<span class="large text-white">Salon</span><br/>
</div>
</div>
</div>
-<script src="js/shop.js" type="text/javascript"></script>
\ No newline at end of file
+<script src="js/shop.js?v={{ version }}" type="text/javascript"></script>
\ No newline at end of file