Initial branding

This commit is contained in:
Xenomporio 2022-06-12 15:59:32 +02:00
parent 47415a6942
commit 3d2383690b
13 changed files with 778 additions and 69 deletions

View File

@ -20,7 +20,7 @@ final class ErrorPageData implements JsonSerializable
public function __construct($exception, $title = null)
{
$this->exception = $exception;
$this->title = !empty($title) ? (string)$title : 'Xentral: Es ist ein unerwarteter Fehler aufgetreten!';
$this->title = !empty($title) ? (string)$title : 'Xenomporio: Es ist ein unerwarteter Fehler aufgetreten!';
}

View File

@ -18165,7 +18165,7 @@ INSERT INTO `wiedervorlage_stages` (`id`, `kurzbezeichnung`, `name`, `hexcolor`,
(12, 'Stay', 'Stay (Erhalt)', '#A2D624', 0, 1, 4, 4, NULL),
(13, 'Okay', 'Okay (Befürwortung)', '#A2D624', 0, 1, 5, 4, NULL);
INSERT INTO `wiki` (`id`, `name`, `content`, `lastcontent`) VALUES
(1, 'StartseiteWiki', '\n<p>Herzlich Willkommen in Ihrem Xentral,<br><br>wir freuen uns Sie als Xentral Benutzer begrüßen zu dürfen. Mit Xentral organisieren Sie Ihre Firma schnell und einfach. Sie haben alle wichtigen Zahlen und Vorgänge im Überblick.<br><br>Für Einsteiger sind die folgenden Themen wichtig:<br><br></p>\n<ul>\n<li> <a href="index.php?module=firmendaten&amp;action=edit" target="_blank"> Firmendaten</a> (dort richten Sie Ihr Briefpapier ein)</li>\n<li> <a href="index.php?module=adresse&amp;action=list" target="_blank"> Stammdaten / Adressen</a> (Kunden und Lieferanten anlegen)</li>\n<li> <a href="index.php?module=artikel&amp;action=list" target="_blank"> Artikel anlegen</a> (Ihr Artikelstamm)</li>\n<li> <a href="index.php?module=angebot&amp;action=list" target="_blank"> Angebot</a> / <a href="index.php?module=auftrag&amp;action=list" target="_blank"> Auftrag</a> (Alle Dokumente für Ihr Geschäft)</li>\n<li> <a href="index.php?module=rechnung&amp;action=list" target="_blank"> Rechnung</a> / <a href="index.php?module=gutschrift&amp;action=list" target="_blank"> Gutschrift</a></li>\n<li> <a href="index.php?module=lieferschein&amp;action=list" target="_blank"> Lieferschein</a></li>\n</ul>\n<p><br><br>Kennen Sie unsere Zusatzmodule die Struktur und Organisation in das tägliche Geschäft bringen?<br><br></p>\n<ul>\n<li> <a href="index.php?module=kalender&amp;action=list" target="_blank"> Kalender</a></li>\n<li> <a href="index.php?module=wiki&amp;action=list" target="_blank"> Wiki</a></li>\n</ul>', NULL);
(1, 'StartseiteWiki', '\n<p>Herzlich Willkommen in Ihrem Xenomporio, dem freien ERP.<br><br>Wir freuen uns Sie als Benutzer begrüßen zu dürfen. Mit Xenomporio organisieren Sie Ihre Firma schnell und einfach. Sie haben alle wichtigen Zahlen und Vorgänge im Überblick.<br><br>Für Einsteiger sind die folgenden Themen wichtig:<br><br></p>\n<ul>\n<li> <a href="index.php?module=firmendaten&amp;action=edit" target="_blank"> Firmendaten</a> (dort richten Sie Ihr Briefpapier ein)</li>\n<li> <a href="index.php?module=adresse&amp;action=list" target="_blank"> Stammdaten / Adressen</a> (Kunden und Lieferanten anlegen)</li>\n<li> <a href="index.php?module=artikel&amp;action=list" target="_blank"> Artikel anlegen</a> (Ihr Artikelstamm)</li>\n<li> <a href="index.php?module=angebot&amp;action=list" target="_blank"> Angebot</a> / <a href="index.php?module=auftrag&amp;action=list" target="_blank"> Auftrag</a> (Alle Dokumente für Ihr Geschäft)</li>\n<li> <a href="index.php?module=rechnung&amp;action=list" target="_blank"> Rechnung</a> / <a href="index.php?module=gutschrift&amp;action=list" target="_blank"> Gutschrift</a></li>\n<li> <a href="index.php?module=lieferschein&amp;action=list" target="_blank"> Lieferschein</a></li>\n</ul>\n<p><br><br>Kennen Sie unsere Zusatzmodule die Struktur und Organisation in das tägliche Geschäft bringen?<br><br></p>\n<ul>\n<li> <a href="index.php?module=kalender&amp;action=list" target="_blank"> Kalender</a></li>\n<li> <a href="index.php?module=wiki&amp;action=list" target="_blank"> Wiki</a></li>\n</ul>', NULL);
INSERT INTO `konten` (`id`, `bezeichnung`, `kurzbezeichnung`, `type`, `erstezeile`, `datevkonto`, `blz`, `konto`, `swift`, `iban`, `lastschrift`, `hbci`, `hbcikennung`, `inhaber`, `aktiv`, `keineemail`, `firma`, `schreibbar`, `importletztenzeilenignorieren`, `liveimport`, `liveimport_passwort`, `liveimport_online`, `importtrennzeichen`, `codierung`, `importerstezeilenummer`, `importdatenmaskierung`, `importnullbytes`, `glaeubiger`, `geloescht`, `projekt`, `saldo_summieren`, `saldo_betrag`, `saldo_datum`, `importfelddatum`, `importfelddatumformat`, `importfelddatumformatausgabe`, `importfeldbetrag`, `importfeldbetragformat`, `importfeldbuchungstext`, `importfeldbuchungstextformat`, `importfeldwaehrung`, `importfeldwaehrungformat`, `importfeldhabensollkennung`, `importfeldkennunghaben`, `importfeldkennungsoll`, `importextrahabensoll`, `importfeldhaben`, `importfeldsoll`, `cronjobaktiv`, `cronjobverbuchen`) VALUES

View File

@ -475,10 +475,10 @@ class erpooSystem extends Application
// Creates user specific items
$possibleUserItems = [
'Inbox' => [
/* 'Inbox' => [
'link' => 'index.php?module=ticket&action=offene',
'counter' => $this->erp->AnzahlOffeneTickets()
],
],*/
'Aufgaben' => [
'link' => 'index.php?module=aufgaben&action=list',
'counter' => $this->erp->AnzahlOffeneAufgaben()
@ -492,9 +492,9 @@ class erpooSystem extends Application
'counter' => $appointmentCount
],
];
$possibleUserItems['Apps'] = [
/* $possibleUserItems['Apps'] = [
'link'=> 'index.php?module=appstore&action=list&cmd=allapps'
];
];*/
if(!empty(erpAPI::Ioncube_Property('testlizenz')) && $this->User->GetType() === 'admin'){
@ -587,7 +587,7 @@ class erpooSystem extends Application
}
// Creates fixed bottom navigation items
$possibleFixedItems['Datenschutz'] = 'index.php?module=dataprotection&action=list';
// $possibleFixedItems['Datenschutz'] = 'index.php?module=dataprotection&action=list';
$fixedItems = '<div class="sidebar-list bottom">';
@ -618,7 +618,7 @@ class erpooSystem extends Application
$version = '';
if(isset($version_revision) && $version_revision != '') {
$version .= '<div class="sidebar-software-version">xentral.com, v. '. $version_revision .'</div>';
$version .= '<div class="sidebar-software-version">Xenomporio V.'. $version_revision .'</div>';
}
if($userId = $this->User->GetID()){
@ -1160,7 +1160,7 @@ if (typeof document.hidden !== \"undefined\") { // Opera 12.10 and Firefox 18 an
$this->Tpl->SetText('MODUL',ucfirst($module));
$this->Tpl->Set('HTMLTITLE','{|[MODUL]|} | Xentral ');
$this->Tpl->Set('HTMLTITLE','{|[MODUL]|} | Xenomporio ');
switch($module)
@ -1175,7 +1175,9 @@ if (typeof document.hidden !== \"undefined\") { // Opera 12.10 and Firefox 18 an
break;
default: $artikeltmpid = $id;
}
$this->Tpl->AddText('HTMLTITLE','| '.$this->DB->Select("SELECT CONCAT(nummer,' ',name_de) FROM artikel WHERE id='$artikeltmpid' LIMIT 1"));
if (!empty($artikeltmpid)) {
$this->Tpl->AddText('HTMLTITLE','| '.$this->DB->Select("SELECT CONCAT(nummer,' ',name_de) FROM artikel WHERE id='$artikeltmpid' LIMIT 1"));
}
break;
case 'angebot':
case 'auftrag':
@ -1184,7 +1186,9 @@ if (typeof document.hidden !== \"undefined\") { // Opera 12.10 and Firefox 18 an
case 'gutschrift':
case 'bestellung':
case 'anfrage':
$this->Tpl->AddText('HTMLTITLE','| '.$this->DB->Select("SELECT CONCAT(if(belegnr!='',belegnr,'ENTWURF'),' ',name) FROM $module WHERE id='$id' lIMIT 1"));
if (!empty($id)) {
$this->Tpl->AddText('HTMLTITLE','| '.$this->DB->Select("SELECT CONCAT(if(belegnr!='',belegnr,'ENTWURF'),' ',name) FROM $module WHERE id='$id' lIMIT 1"));
}
break;
}

View File

@ -7118,9 +7118,9 @@ title: 'Abschicken',
$navarray['menu']['admin'][$menu]['sec'][] = array('Startseite','welcome','start');
$navarray['menu']['admin'][$menu]['sec'][] = array('Meine Apps','welcome','meineapps');
// $navarray['menu']['admin'][$menu]['sec'][] = array('Meine Apps','welcome','meineapps');
if($this->app->User->GetType() === 'admin') {
$navarray['menu']['admin'][$menu]['sec'][] = ['Learning Dashboard', 'learningdashboard', 'list'];
// $navarray['menu']['admin'][$menu]['sec'][] = ['Learning Dashboard', 'learningdashboard', 'list'];
}
$navarray['menu']['admin'][$menu]['sec'][] = array('Tickets','ticket','list');
@ -7132,14 +7132,14 @@ title: 'Abschicken',
$navarray['menu']['admin'][$menu]['sec'][] = array('Chat','chat','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Zeiterfassung','zeiterfassung','create');
$navarray['menu']['admin'][$menu]['sec'][] = array('Stechuhr','stechuhr','list');
// $navarray['menu']['admin'][$menu]['sec'][] = array('Stechuhr','stechuhr','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Wiedervorlage','wiedervorlage','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Wiki','wiki','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Interner Support', 'internalsupport', 'list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Einstellungen','welcome','settings');
$navarray['menu']['admin'][$menu]['sec'][] = array('Datenschutz', 'dataprotection','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Lizenz','appstore','buy');
// $navarray['menu']['admin'][$menu]['sec'][] = array('Datenschutz', 'dataprotection','list');
// $navarray['menu']['admin'][$menu]['sec'][] = array('Lizenz','appstore','buy');
$navarray['menu']['admin'][$menu]['sec'][] = array('Abmelden','welcome','logout');
return $this->CalculateNavigation($navarray);

View File

@ -96,6 +96,7 @@
</fieldset>
</div>
</div>
<!--
[BEFORELEARNINGDASHBOARDTILE]
<div class="col-xs-12 col-md-6 col-md-height">
<div class="inside inside-full-height">
@ -115,6 +116,7 @@
</div>
</div>
[AFTERLEARNINGDASHBOARDTILE]
-->
</div>
</div>
@ -123,7 +125,7 @@
<div class="row">
<div class="row-height">
<div class="col-xs-12 col-md-6 col-md-height">
<!-- <div class="col-xs-12 col-md-6 col-md-height">
<div class="inside inside-full-height">
<fieldset class="home-news">
<legend>{|Neues von Xentral|}</legend>
@ -131,7 +133,8 @@
</fieldset>
</div>
</div>
<div class="col-xs-6 col-md-3 col-md-height">
-->
<!-- <div class="col-xs-6 col-md-3 col-md-height">
<div class="inside inside-full-height">
<fieldset>
<legend>{|Update Center|}</legend>
@ -152,6 +155,7 @@
</fieldset>
</div>
</div>
-->
</div>
</div>

View File

@ -601,7 +601,7 @@ class Supportapp Extends GenSupportapp {
$this->app->erp->CheckColumn("id", "int(11)", "supportapp_artikel", "NOT NULL AUTO_INCREMENT");
$this->app->erp->CheckColumn("artikel", "int(11)", "supportapp_artikel", "NOT NULL DEFAULT '0'"); //artikel
$this->app->erp->CheckColumn("typ", "int(11)", "supportapp_artikel", "NOT NULL DEFAULT '0'"); //) 1: Telefonsupport, 2: Technikersupport, 3: Enterprise, etc
$this->app->erp->RegisterMenuHook('startseite','supportappMenuHook', $this);
// $this->app->erp->RegisterMenuHook('startseite','supportappMenuHook', $this);
if($artikeluebernehmen){ //Nur für das erste mal notwending, kann später gelöscht werden
//Damit bei der Änderung der Artikelzuweisung nicht alle Artikel nochmal angelegt werden müssen

View File

@ -240,10 +240,11 @@ class Welcome
public function MenuHook()
{
if($this->GetMeineApps())
/* if($this->GetMeineApps())
{
$this->app->erp->InsertMenuAfter('index.php?module=welcome&action=meineapps','Meine Apps','welcome','start');
}
*/
}
public function StartseiteMenu()
@ -2480,8 +2481,8 @@ $this->app->Tpl->Add('TAB1',"<h2>Schritt 2 von 2: Datenbank anpassen</h2><table
$this->app->Tpl->Add('TAB1',"Sie benutzen die kommerzielle Version von Xentral. Alle Rechte vorbehalten. Beachten Sie die Nutzungsbedinungen.<br><br>&copy; Copyright by Xentral ERP Software GmbH Augsburg");
}
else {
$this->app->Tpl->Add('TAB1',"Sie benutzen die Open-Source Version von Xentral. Die Software steht unter der AGPLv3.0 (<a href=\"https://xentral.biz/lizenzhinweis\" target=\"_blank\">Hinweis</a>).<br><br><div class=\"info\">Das Logo und der Link zur Homepage <a href=\"https://xentral.biz\" target=\"_blank\">https://xentral.biz</a> d&uuml;rfen
nicht entfernt werden.</div><br>&copy; Copyright by Xentral ERP Software GmbH Augsburg");
$this->app->Tpl->Add('TAB1',"Sie benutzen Xenomporio, die freie ERP-Software auf Basis der Open-Source Version 20.3 von Xentral. Die Software steht unter der AGPLv3.0 <br><br><div class=\"info\"><img src=\"themes/new/images/Xentral_ERP_Logo-200.png\"><br>Das Logo und der Link zur Homepage <a href=\"https://xentral.biz\" target=\"_blank\">https://xentral.biz</a> d&uuml;rfen
nicht entfernt werden.</div><br>&copy; Copyright by Xenomporio project & Xentral ERP Software GmbH Augsburg");
}
if($this->app->erp->isIoncube() && method_exists($this->app->erp, 'IoncubeProperty'))

View File

@ -1,9 +1,160 @@
<svg xmlns="http://www.w3.org/2000/svg" width="300" height="67" viewBox="-217 -49 920 200">
<path d="M-170.52,79.71l-43-57.64c-3.41-4.43-1-9.19,4.08-9.19h22.19A9.88,9.88,0,0,1-179,16.67l27.3,39.24h.34l28-39.24a9.3,9.3,0,0,1,7.85-3.79h22.52c5.68,0,7.58,4.42,4.07,8.85l-43,57.74,43.33,60.95c3,4.44,1.35,8.87-4.11,8.87h-21.47a9.29,9.29,0,0,1-7.17-4.09l-30-42.29h-.34l-30.71,43.6a6.54,6.54,0,0,1-5.46,2.72h-22.74c-5.8,0-7.17-4.43-4.1-8.87Z"/>
<path d="M5.43,9.45C40.89,9.45,68.19,36,68.19,72.57a83.2,83.2,0,0,1-.69,9.19,6.29,6.29,0,0,1-6.16,5.8H-31.42A39.51,39.51,0,0,0,7.8,124.05c12.28,0,23.54-5.44,30.32-9.88,4.1-2.41,6.49-3.79,9.22-.36l9.47,13c2.39,2.73,3.41,5.46-.66,8.89-9.89,8.51-27.63,17.06-50.47,17.06-41.27,0-68.56-32.39-68.56-71.62C-62.78,42.54-35.49,9.45,5.43,9.45Zm31,56.63c-1-16.37-14.67-30.32-31.39-30.32a34.51,34.51,0,0,0-34.8,30.32Z"/>
<path d="M101.24,19.34a6.7,6.7,0,0,1,6.48-6.46h9.9a5.5,5.5,0,0,1,5.44,4l4.11,11.62c2.39-2.73,20.45-19.13,47.74-19.13,41.61,0,56.87,29.34,56.87,64.82v68.54a6.69,6.69,0,0,1-6.47,6.48H205.94a6.48,6.48,0,0,1-6.48-6.48h0V72.89c0-21.82-10.56-33.76-28.32-33.76-21.47,0-36.12,15.7-37.91,20.47v83.21c0,4.45-2,6.48-7.84,6.48H107.67a6.72,6.72,0,0,1-6.49-6.48V19.34Z"/>
<path d="M392.18,19.34a6.67,6.67,0,0,1,6.48-6.46h9.88a6.43,6.43,0,0,1,5.8,4.76l3.79,11.6a48.62,48.62,0,0,1,39.8-19.79c13,0,28.66,3.43,24.91,12.62l-8.19,16.72a5.8,5.8,0,0,1-7.47,3.39,6.29,6.29,0,0,1-.7-.32,31.65,31.65,0,0,0-11.6-2.39,36,36,0,0,0-30.71,16.7v86.64c0,5.8-3.79,6.48-9.19,6.48H398.61a6.7,6.7,0,0,1-6.49-6.48V19.34Z"/>
<path d="M667.37-40.78a6.7,6.7,0,0,1,6.48-6.46h19.43a6.71,6.71,0,0,1,6.54,6.46V142.81a6.73,6.73,0,0,1-6.5,6.48H673.85a6.71,6.71,0,0,1-6.48-6.48Z"/>
<path d="M354.12,9.45H324.53V-40.78a6.7,6.7,0,0,0-6.5-6.46H298.64a6.71,6.71,0,0,0-6.5,6.46V9.45H262.59a6.74,6.74,0,0,0-6.46,6.5V31a6.7,6.7,0,0,0,6.46,6.48h29.55V142.81a6.73,6.73,0,0,0,6.5,6.48h19.43a6.72,6.72,0,0,0,6.5-6.48V37.46h29.55A6.71,6.71,0,0,0,360.59,31V16A6.74,6.74,0,0,0,354.12,9.45Z"/>
<path d="M616.59,12.82H600.73a6.73,6.73,0,0,0-6.48,6.49v2.38A66.4,66.4,0,0,0,556,9.47c-38.19,0-68.9,32.73-68.9,71.27,0,39.23,30.71,72,68.9,72a66.17,66.17,0,0,0,38.29-12.26v2.37a6.72,6.72,0,0,0,6.48,6.48h15.86a6.72,6.72,0,0,0,6.5-6.48V19.31A6.75,6.75,0,0,0,616.59,12.82ZM555.94,123.36c-21.49,0-38.53-19.08-38.53-42.62,0-22.75,17.06-41.61,38.53-41.61,20,0,36.17,16.3,38.29,37v9.34C592.14,106.78,576,123.36,556,123.36Z"/>
<svg version="1.2" width="300" height="67" viewBox="2239 7000 25676 5161" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1838" descent="434"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
<glyph unicode="p" horiz-adv-x="1037" d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"/>
<glyph unicode="o" horiz-adv-x="1104" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
<glyph unicode="n" horiz-adv-x="1003" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
<glyph unicode="m" horiz-adv-x="1571" d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"/>
<glyph unicode="i" horiz-adv-x="301" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
<glyph unicode="e" horiz-adv-x="1003" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
<glyph unicode="X" horiz-adv-x="1371" d="M 1038,0 L 684,561 330,0 18,0 506,741 59,1409 371,1409 684,911 997,1409 1307,1409 879,741 1348,0 1038,0 Z"/>
</font>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
</g>
</defs>
<g class="Page">
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="5169" y="9480" width="502" height="1452"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 5169,10931 C 5169,10458 5169,9984 5169,9511 5251,9513 5337,9480 5419,9480 5504,9480 5584,9513 5669,9511 5669,9984 5669,10458 5669,10931 5502,10931 5336,10931 5169,10931 Z"/>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="2319" y="10891" width="2001" height="541"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 4319,10891 L 2319,10891 C 2319,10986 2365,11079 2453,11161 2541,11243 2667,11311 2819,11359 2971,11406 3144,11431 3319,11431 3495,11431 3668,11406 3820,11359 3972,11311 4098,11243 4186,11161 4266,11086 4312,11002 4319,10915 L 4319,10891 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="2240" y="10812" width="2160" height="700"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 4359,10823 C 4371,10830 4381,10840 4388,10852 4395,10864 4399,10878 4399,10892 L 4399,10916 C 4399,10918 4399,10920 4399,10922 4394,10976 4378,11029 4350,11081 4324,11129 4288,11176 4241,11219 4241,11220 4241,11220 4241,11220 4192,11265 4133,11306 4065,11343 4000,11379 3926,11410 3844,11435 3685,11485 3504,11511 3320,11511 3136,11511 2955,11485 2796,11435 2714,11410 2640,11379 2575,11343 2507,11306 2448,11265 2399,11220 2348,11172 2309,11120 2282,11067 2268,11039 2258,11010 2251,10981 2244,10951 2240,10922 2240,10892 2240,10878 2244,10864 2251,10852 2258,10840 2268,10830 2280,10823 2292,10816 2306,10812 2320,10812 L 4320,10812 C 4333,10812 4347,10816 4359,10823 Z M 4226,10971 L 2414,10971 C 2417,10979 2421,10988 2425,10996 2443,11034 2471,11069 2508,11103 2547,11140 2595,11174 2650,11203 2708,11234 2772,11261 2843,11284 2988,11328 3153,11352 3320,11352 3487,11352 3652,11328 3797,11284 3868,11261 3932,11234 3990,11203 4045,11174 4093,11140 4132,11103 4165,11072 4192,11039 4210,11005 4217,10994 4222,10982 4226,10971 Z"/>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="6519" y="10891" width="2001" height="541"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8519,10891 L 6519,10891 C 6519,10986 6565,11079 6653,11161 6741,11243 6867,11311 7019,11359 7171,11406 7344,11431 7519,11431 7695,11431 7868,11406 8020,11359 8172,11311 8298,11243 8386,11161 8466,11086 8512,11002 8519,10915 L 8519,10891 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="6440" y="10812" width="2160" height="700"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 8559,10823 C 8571,10830 8581,10840 8588,10852 8595,10864 8599,10878 8599,10892 L 8599,10916 C 8599,10918 8599,10920 8599,10922 8594,10976 8578,11029 8550,11081 8524,11129 8488,11176 8441,11219 8441,11220 8441,11220 8441,11220 8392,11265 8333,11306 8265,11343 8200,11379 8126,11410 8044,11435 7885,11485 7704,11511 7520,11511 7336,11511 7155,11485 6996,11435 6914,11410 6840,11379 6775,11343 6707,11306 6648,11265 6599,11220 6548,11172 6509,11120 6482,11067 6468,11039 6458,11010 6451,10981 6444,10951 6440,10922 6440,10892 6440,10878 6444,10864 6451,10852 6458,10840 6468,10830 6480,10823 6492,10816 6506,10812 6520,10812 L 8520,10812 C 8533,10812 8547,10816 8559,10823 Z M 8426,10971 L 6614,10971 C 6617,10979 6621,10988 6625,10996 6643,11034 6671,11069 6708,11103 6747,11140 6795,11174 6850,11203 6908,11234 6972,11261 7043,11284 7188,11328 7353,11352 7520,11352 7687,11352 7852,11328 7997,11284 8068,11261 8132,11234 8190,11203 8245,11174 8293,11140 8332,11103 8365,11072 8392,11039 8410,11005 8417,10994 8422,10982 8426,10971 Z"/>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="3212" y="8583" width="216" height="216"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 3427,8691 C 3427,8709 3422,8728 3413,8744 3403,8761 3390,8774 3373,8784 3357,8793 3338,8798 3320,8798 3301,8798 3282,8793 3266,8784 3249,8774 3236,8761 3226,8744 3217,8728 3212,8709 3212,8691 3212,8672 3217,8653 3226,8637 3236,8620 3249,8607 3266,8597 3282,8588 3301,8583 3320,8583 3338,8583 3357,8588 3373,8597 3390,8607 3403,8620 3413,8637 3422,8653 3427,8672 3427,8691 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="3133" y="8504" width="375" height="375"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 3501,8739 C 3496,8755 3490,8770 3482,8785 3474,8799 3464,8812 3452,8823 3441,8835 3428,8845 3414,8853 3399,8861 3384,8867 3368,8872 3353,8876 3336,8878 3320,8878 3304,8878 3287,8876 3272,8872 3256,8867 3241,8861 3226,8853 3212,8845 3199,8835 3188,8823 3176,8812 3166,8799 3158,8785 3150,8770 3144,8755 3139,8739 3135,8724 3133,8707 3133,8691 3133,8675 3135,8658 3139,8643 3144,8627 3150,8612 3158,8597 3166,8583 3176,8570 3188,8559 3199,8547 3212,8537 3226,8529 3241,8521 3256,8515 3272,8510 3287,8506 3304,8504 3320,8504 3336,8504 3353,8506 3368,8510 3384,8515 3399,8521 3414,8529 3428,8537 3441,8547 3452,8559 3464,8570 3474,8583 3482,8597 3490,8612 3496,8627 3501,8643 3505,8658 3507,8675 3507,8691 3507,8707 3505,8724 3501,8739 Z M 3327,8664 C 3325,8663 3322,8663 3320,8663 3318,8663 3315,8663 3313,8664 3310,8665 3308,8666 3306,8667 3304,8668 3302,8669 3300,8671 3298,8673 3297,8675 3296,8677 3295,8679 3294,8681 3293,8684 3292,8686 3292,8689 3292,8691 3292,8693 3292,8696 3293,8698 3294,8701 3295,8703 3296,8705 3297,8707 3298,8709 3300,8711 3302,8713 3304,8714 3306,8715 3308,8716 3310,8717 3313,8718 3315,8719 3318,8719 3320,8719 3322,8719 3325,8719 3327,8718 3330,8717 3332,8716 3334,8715 3336,8714 3338,8713 3340,8711 3342,8709 3343,8707 3344,8705 3345,8703 3346,8701 3347,8698 3348,8696 3348,8693 3348,8691 3348,8689 3348,8686 3347,8684 3346,8681 3345,8679 3344,8677 3343,8675 3342,8673 3340,8671 3338,8669 3336,8668 3334,8667 3332,8666 3330,8665 3327,8664 Z"/>
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="7412" y="8580" width="216" height="216"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7627,8688 C 7627,8706 7622,8725 7613,8741 7603,8758 7590,8771 7573,8781 7557,8790 7538,8795 7520,8795 7501,8795 7482,8790 7466,8781 7449,8771 7436,8758 7426,8741 7417,8725 7412,8706 7412,8688 7412,8669 7417,8650 7426,8634 7436,8617 7449,8604 7466,8594 7482,8585 7501,8580 7520,8580 7538,8580 7557,8585 7573,8594 7590,8604 7603,8617 7613,8634 7622,8650 7627,8669 7627,8688 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="7333" y="8500" width="375" height="376"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7701,8736 C 7696,8752 7690,8767 7682,8782 7674,8796 7664,8809 7652,8820 7641,8832 7628,8842 7613,8850 7599,8858 7584,8864 7568,8869 7553,8873 7536,8875 7520,8875 7504,8875 7487,8873 7472,8869 7456,8864 7441,8858 7427,8850 7412,8842 7399,8832 7388,8820 7376,8809 7366,8796 7358,8781 7350,8767 7344,8752 7339,8736 7335,8721 7333,8704 7333,8688 7333,8672 7335,8655 7339,8640 7344,8624 7350,8609 7358,8595 7366,8580 7376,8567 7388,8556 7399,8544 7412,8534 7427,8526 7441,8518 7456,8512 7472,8507 7487,8503 7504,8501 7520,8501 7536,8501 7553,8503 7568,8507 7584,8512 7599,8518 7613,8526 7628,8534 7641,8544 7652,8556 7664,8567 7674,8580 7682,8594 7690,8609 7696,8624 7701,8640 7705,8655 7707,8672 7707,8688 7707,8704 7705,8721 7701,8736 Z M 7527,8661 C 7525,8660 7522,8660 7520,8660 7518,8660 7515,8660 7513,8661 7510,8662 7508,8663 7506,8664 7504,8665 7502,8666 7500,8668 7498,8670 7497,8672 7496,8674 7495,8676 7494,8678 7493,8681 7492,8683 7492,8686 7492,8688 7492,8690 7492,8693 7493,8695 7494,8698 7495,8700 7496,8702 7497,8704 7498,8706 7500,8708 7502,8710 7504,8711 7506,8712 7508,8713 7510,8714 7513,8715 7515,8716 7518,8716 7520,8716 7522,8716 7525,8716 7527,8715 7530,8714 7532,8713 7534,8712 7536,8711 7538,8710 7540,8708 7542,8706 7543,8704 7544,8702 7545,8700 7546,8698 7547,8695 7548,8693 7548,8690 7548,8688 7548,8686 7548,8683 7547,8681 7546,8678 7545,8676 7544,8674 7543,8672 7542,8670 7540,8668 7538,8666 7536,8665 7534,8664 7532,8663 7530,8662 7527,8661 Z"/>
</g>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="6112" y="8608" width="1301" height="162"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6112,8769 L 6112,8690 6112,8611 7412,8608 7412,8687 7412,8766 6112,8769 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="3919" y="10880" width="3001" height="1201"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 4786,11406 C 4874,11261 4920,11097 4920,10931 4920,10914 4920,10897 4919,10880 L 5921,10880 C 5920,10897 5920,10914 5920,10932 5920,11098 5966,11262 6054,11407 6142,11551 6268,11671 6420,11755 6572,11838 6744,11882 6919,11882 L 6919,12080 3919,12080 3919,11881 3920,11881 C 4095,11881 4268,11837 4420,11754 4572,11670 4698,11550 4786,11406 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="3840" y="10801" width="3161" height="1360"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 4854,11448 C 4807,11526 4749,11597 4682,11661 4616,11724 4541,11779 4459,11824 4377,11869 4289,11903 4199,11926 4133,11943 4067,11954 3999,11958 L 3999,12001 6840,12001 6840,11959 C 6773,11954 6707,11944 6642,11927 6551,11904 6464,11870 6382,11825 6300,11780 6225,11725 6159,11662 6092,11598 6034,11527 5987,11449 5939,11370 5902,11286 5878,11199 5856,11121 5844,11041 5841,10960 L 5000,10960 C 4997,11041 4985,11121 4963,11198 4939,11285 4902,11369 4854,11448 Z M 4810,11155 C 4831,11082 4841,11007 4841,10932 4841,10916 4841,10901 4840,10885 4840,10884 4840,10882 4840,10881 4840,10867 4844,10853 4851,10841 4858,10829 4868,10819 4880,10812 4892,10805 4906,10801 4920,10801 L 5922,10801 C 5935,10801 5949,10805 5961,10812 5973,10819 5983,10829 5990,10841 5997,10853 6001,10867 6001,10881 6001,10882 6001,10884 6001,10885 6000,10901 6000,10916 6000,10933 6000,11008 6010,11083 6031,11156 6052,11229 6082,11300 6122,11366 6163,11432 6212,11493 6268,11546 6325,11600 6389,11647 6459,11686 6529,11724 6604,11753 6681,11773 6759,11793 6839,11803 6920,11803 6933,11803 6947,11807 6959,11814 6971,11821 6981,11831 6988,11843 6995,11855 6999,11869 6999,11883 L 6999,12081 C 6999,12094 6995,12108 6988,12120 6981,12132 6971,12142 6959,12149 6947,12156 6933,12160 6920,12160 L 3920,12160 C 3906,12160 3892,12156 3880,12149 3868,12142 3858,12132 3851,12120 3844,12108 3840,12094 3840,12081 L 3840,11882 C 3840,11868 3844,11854 3851,11842 3858,11830 3868,11820 3880,11813 3892,11806 3906,11802 3920,11802 L 3921,11802 C 4001,11802 4082,11792 4160,11772 4237,11752 4312,11723 4382,11685 4452,11646 4516,11599 4573,11545 4629,11492 4678,11431 4719,11365 4759,11299 4789,11228 4810,11155 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="3458" y="7000" width="3923" height="3443"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 3579,7159 C 3570,7143 3565,7125 3565,7106 3565,7087 3570,7069 3579,7053 3589,7037 3602,7024 3618,7014 3634,7005 3652,7000 3671,7000 L 4832,7000 C 4851,7000 4869,7005 4885,7014 4900,7023 4913,7036 4922,7051 L 5436,7893 5933,7052 C 5942,7036 5955,7023 5971,7014 5987,7005 6005,7000 6024,7000 L 7174,7000 C 7193,7000 7211,7005 7227,7014 7243,7024 7256,7037 7266,7053 7275,7069 7280,7087 7280,7106 7280,7125 7275,7143 7266,7159 7265,7161 7263,7163 7262,7166 L 6242,8669 7361,10275 C 7363,10278 7364,10280 7366,10283 7375,10299 7380,10317 7380,10336 7380,10355 7375,10373 7366,10389 7356,10405 7343,10418 7327,10428 7311,10437 7293,10442 7274,10442 L 6089,10442 C 6070,10442 6052,10437 6036,10428 6021,10419 6009,10408 6000,10394 L 5416,9493 4831,10394 C 4822,10408 4809,10419 4795,10428 4779,10437 4761,10442 4742,10442 L 3564,10442 C 3545,10442 3527,10437 3511,10428 3495,10418 3482,10405 3472,10389 3463,10373 3458,10355 3458,10336 3458,10317 3463,10299 3472,10283 3474,10280 3475,10278 3477,10275 L 4613,8652 3584,7166 C 3582,7164 3581,7162 3579,7159 Z M 7071,10230 L 6026,8731 C 6024,8728 6023,8726 6021,8723 6012,8707 6007,8689 6007,8670 6007,8651 6012,8633 6021,8617 6022,8615 6024,8613 6025,8610 L 6974,7212 6085,7212 5529,8153 C 5520,8169 5507,8182 5491,8191 5475,8200 5457,8205 5438,8205 5419,8205 5401,8200 5385,8191 5370,8182 5357,8169 5348,8154 L 4773,7212 3873,7212 4829,8592 C 4831,8594 4832,8596 4834,8599 4843,8615 4848,8633 4848,8652 4848,8671 4843,8689 4834,8705 4832,8708 4831,8710 4829,8713 L 3768,10230 4684,10230 5327,9240 C 5336,9226 5349,9215 5363,9206 5379,9197 5397,9192 5416,9192 5435,9192 5453,9197 5469,9206 5484,9215 5496,9226 5505,9240 L 6147,10230 7071,10230 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="3426" y="8609" width="1201" height="163"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 3426,8771 L 3426,8691 3426,8612 4626,8609 4626,8688 4626,8768 3426,8771 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="2239" y="8661" width="2161" height="2311"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 3758,9873 L 3319,8929 2443,10812 4195,10812 4023,10443 4198,10443 4392,10858 C 4396,10868 4399,10880 4399,10892 4399,10905 4395,10919 4388,10931 4381,10943 4371,10953 4359,10960 4347,10967 4333,10971 4320,10971 L 2319,10971 C 2305,10971 2291,10967 2279,10960 2267,10953 2257,10943 2250,10931 2243,10919 2239,10905 2239,10892 2239,10880 2242,10868 2246,10858 L 3246,8707 C 3247,8705 3248,8703 3250,8701 3257,8689 3267,8679 3279,8672 3291,8665 3305,8661 3319,8661 3332,8661 3346,8665 3358,8672 3370,8679 3380,8689 3387,8701 3389,8703 3390,8705 3391,8707 L 3863,9723 3758,9873 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.ClosedBezierShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="6440" y="8661" width="2161" height="2311"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 6816,10443 L 6644,10812 8396,10812 7520,8929 7081,9873 6976,9722 7447,8707 C 7448,8705 7449,8703 7451,8701 7458,8689 7468,8679 7480,8672 7492,8665 7506,8661 7520,8661 7533,8661 7547,8665 7559,8672 7571,8679 7581,8689 7588,8701 7590,8703 7591,8705 7592,8707 L 8593,10858 C 8597,10868 8600,10880 8600,10892 8600,10905 8596,10919 8589,10931 8582,10943 8572,10953 8560,10960 8548,10967 8534,10971 8521,10971 L 6520,10971 C 6506,10971 6492,10967 6480,10960 6468,10953 6458,10943 6451,10931 6444,10919 6440,10905 6440,10892 6440,10880 6443,10868 6447,10858 L 6641,10443 6816,10443 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="9188" y="7908" width="18727" height="3588"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="3210px" font-weight="700"><tspan class="TextPosition" x="9188" y="10812"><tspan fill="rgb(0,0,0)" stroke="none">Xenomporio</tspan></tspan></tspan></text>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>xentral - Login</title>
<title>Xenomporio - Login</title>
<link id="shortcuticon" rel="shortcut icon" href="./themes/new/images/favicon/favicon.ico" type="image/x-icon">
<link id="favicon" rel="icon" href="./themes/new/images/favicon/favicon.ico" type="image/x-icon">
<link rel="icon" href="./themes/new/images/favicon/favicon.gif" type="image/gif">
@ -36,9 +36,9 @@
<meta name="msapplication-TileImage" content="./themes/new/images/favicon/ms-icon-144x144.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-navbutton-color" content="#ffffff">
<meta name="application-name" content="Xentral ERP"/>
<meta name="msapplication-tooltip" content="Xentral ERP"/>
<meta name="apple-mobile-web-app-title" content="Xentral ERP"/>
<meta name="application-name" content="Xenomporio ERP"/>
<meta name="msapplication-tooltip" content="Xenomporio ERP"/>
<meta name="apple-mobile-web-app-title" content="Xenomporio ERP"/>
<meta name="msapplication-config" content="./themes/new/images/favicon/browserconfig.xml"/>
<meta name="msapplication-square70x70logo" content="./themes/new/images/ms-icon-70x70.png">
<meta name="msapplication-square144x144logo" content="./themes/new/images/ms-icon-144x144.png">
@ -62,33 +62,22 @@
</div>
<div id="login-wrapper">
<svg id="logo" height="70" xmlns="http://www.w3.org/2000/svg" viewBox="-110 0 807 241.49">
<path d="M212.81,120.13,190.14,89.72c-1.8-2.34-.54-4.85,2.15-4.85H204a5.21,5.21,0,0,1,4.31,2l14.4,20.7h.18l14.75-20.7a4.9,4.9,0,0,1,4.14-2h11.88c3,0,4,2.33,2.15,4.67L233.14,120,256,152.16c1.61,2.34.71,4.68-2.17,4.68H242.5a4.89,4.89,0,0,1-3.78-2.16l-15.83-22.31h-.18l-16.2,23a3.45,3.45,0,0,1-2.88,1.44h-12c-3.06,0-3.78-2.34-2.16-4.68Z"/>
<path d="M305.64,83.06c18.71,0,33.11,14,33.11,33.3a44.14,44.14,0,0,1-.36,4.85,3.32,3.32,0,0,1-3.25,3.06H286.2a20.84,20.84,0,0,0,20.69,19.25c6.48,0,12.42-2.87,16-5.21,2.16-1.27,3.42-2,4.86-.19l5,6.84c1.26,1.44,1.8,2.88-.35,4.69-5.22,4.49-14.58,9-26.63,9-21.77,0-36.17-17.09-36.17-37.79C269.65,100.52,284.05,83.06,305.64,83.06ZM322,112.94c-.54-8.64-7.74-16-16.56-16a18.21,18.21,0,0,0-18.36,16Z"/>
<path d="M356.19,88.28a3.53,3.53,0,0,1,3.42-3.41h5.22A2.9,2.9,0,0,1,367.7,87l2.17,6.13c1.26-1.44,10.79-10.09,25.19-10.09,21.95,0,30,15.48,30,34.2v36.16a3.53,3.53,0,0,1-3.41,3.42H411.43a3.42,3.42,0,0,1-3.42-3.42V116.53c0-11.51-5.57-17.81-14.94-17.81-11.33,0-19.06,8.28-20,10.8v43.9c0,2.35-1.07,3.42-4.14,3.42h-9.35a3.54,3.54,0,0,1-3.42-3.42V88.28Z"/>
<path d="M509.69,88.28a3.52,3.52,0,0,1,3.42-3.41h5.21a3.39,3.39,0,0,1,3.06,2.51l2,6.12a25.65,25.65,0,0,1,21-10.44c6.84,0,15.12,1.81,13.14,6.66l-4.32,8.82a3.06,3.06,0,0,1-4.31,1.62,16.56,16.56,0,0,0-6.12-1.26,19,19,0,0,0-16.2,8.81v45.71c0,3.06-2,3.42-4.85,3.42h-8.64a3.53,3.53,0,0,1-3.42-3.42V88.28Z"/>
<path d="M654.88,56.56a3.53,3.53,0,0,1,3.42-3.41h10.25A3.54,3.54,0,0,1,672,56.56v96.86a3.55,3.55,0,0,1-3.43,3.42H658.3a3.54,3.54,0,0,1-3.42-3.42Z"/>
<path d="M489.61,83.06H474V56.56a3.54,3.54,0,0,0-3.43-3.41H460.34a3.54,3.54,0,0,0-3.43,3.41v26.5H441.32a3.55,3.55,0,0,0-3.41,3.43v7.93a3.54,3.54,0,0,0,3.41,3.42h15.59v55.58a3.55,3.55,0,0,0,3.43,3.42h10.25a3.55,3.55,0,0,0,3.43-3.42V97.84h15.59A3.54,3.54,0,0,0,493,94.42V86.49A3.55,3.55,0,0,0,489.61,83.06Z"/>
<path d="M628.09,84.84h-8.37a3.55,3.55,0,0,0-3.42,3.42v1.26a35,35,0,0,0-20.2-6.45c-20.15,0-36.35,17.27-36.35,37.6,0,20.7,16.2,38,36.35,38a34.9,34.9,0,0,0,20.2-6.47v1.25a3.55,3.55,0,0,0,3.42,3.42h8.37a3.55,3.55,0,0,0,3.43-3.42V88.26A3.56,3.56,0,0,0,628.09,84.84Zm-32,58.32c-11.34,0-20.33-10.07-20.33-22.49,0-12,9-22,20.33-22,10.56,0,19.08,8.6,20.2,19.52v4.93C615.19,134.41,606.66,143.16,596.1,143.16Z"/>
<path fill="#e66dcb" d="M11.87,82.93H11.4c-19.66,0-36.91-14.71-49.76-27.56L-51,42.7a12.86,12.86,0,0,1,0-18.19,12.87,12.87,0,0,1,18.19,0l12.68,12.67c8.61,8.61,21.23,20,31.57,20h.47c10.34,0,23-11.42,31.57-20L56.12,24.51A12.86,12.86,0,1,1,74.31,42.7L61.63,55.38C48.78,68.22,31.53,82.93,11.87,82.93Z"/>
<path fill="#26e3e4" d="M65.22,220.74a12.83,12.83,0,0,1-9.1-3.76L43.44,204.3c-8.61-8.6-21.23-20-31.57-20H11.4c-10.34,0-23,11.42-31.57,20L-32.85,217A12.87,12.87,0,0,1-51,217a12.86,12.86,0,0,1,0-18.19l12.68-12.68c12.89-12.9,30.14-27.67,50-27.56h.23c19.67,0,36.91,14.72,49.76,27.56l12.68,12.68a12.86,12.86,0,0,1-9.09,22Z"/>
<path fill="#5b64ee" d="M-75.5,187.18a12.85,12.85,0,0,1-9.1-3.76,12.87,12.87,0,0,1,0-18.19l12.68-12.68c8.64-8.64,20.12-21.33,20-31.69v-.23c.09-10.36-11.39-23-20-31.69L-84.6,76.26a12.87,12.87,0,0,1,0-18.19,12.87,12.87,0,0,1,18.19,0l12.68,12.68c12.89,12.9,27.67,30.23,27.56,50,.11,19.77-14.67,37.1-27.57,50l-12.67,12.67A12.78,12.78,0,0,1-75.5,187.18Z"/>
<path fill="#27e7a2" d="M98.78,187.18a12.8,12.8,0,0,1-9.1-3.77L77,170.73c-12.9-12.89-27.68-30.22-27.56-50C49.33,101,64.11,83.65,77,70.75L89.68,58.07a12.86,12.86,0,0,1,18.19,18.19L95.2,88.94c-8.65,8.64-20.13,21.32-20,31.69v.22c-.09,10.37,11.38,23.06,20,31.7l12.68,12.68a12.86,12.86,0,0,1-9.09,22Z"/>
</svg>
<img src="[TPLLOGOFIRMA]" heigth="72">
</img>
<div class="intro">
Willkommen in Deinem xentral Home.<br/>
Willkommen bei Xenomporio ERP.<br/>
Bitte gib Deinen Benutzernamen und Passwort ein!
</div>
<div style="[LOGINWARNING]" class="warning"><p>Achtung: Es werden gerade Wartungsarbeiten in Ihrem System (z.B. Update oder Backup) durch Ihre IT-Abteilung durchgeführt. Das System sollte in wenigen Minuten wieder erreichbar sein. Für Rückfragen wenden Sie sich bitte an Ihren Xentral-Administrator.</p></div>
<div style="[LOGINWARNING]" class="warning"><p>Achtung: Es werden gerade Wartungsarbeiten in Ihrem System (z.B. Update oder Backup) durch Ihre IT-Abteilung durchgeführt. Das System sollte in wenigen Minuten wieder erreichbar sein. Für Rückfragen wenden Sie sich bitte an Ihren Administrator.</p></div>
[SPERRMELDUNGNACHRICHT]
[PAGE]
<div id="login-footer">
<div class="copyright">
&copy; [YEAR] Xentral ERP Software GmbH | Xentral &reg;<br>
[WAWIVERSION] | <a href="https://xentral.com">https://xentral.com</a>
[LIZENZHINWEIS] | <a target="_blank" href="https://xentral.com/impressum">Impressum</a>
&copy; [YEAR] Xenomporio project & Xentral ERP Software GmbH<br>
[WAWIVERSION]
<!-- dead link [LIZENZHINWEIS] -->
</div>
</div>

View File

@ -9,7 +9,7 @@
<span>{|Profil bearbeiten|}</span>
</a>
<a target="_blank" title="{|xentral Community|}" href="https://community.xentral.com">
<!-- <a target="_blank" title="{|xentral Community|}" href="https://community.xentral.com">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.00066 10.693C9.48758 10.693 10.693 9.48758 10.693 8.00066C10.693 6.51374 9.48758 5.30835 8.00066 5.30835C6.51374 5.30835 5.30835 6.51374 5.30835 8.00066C5.30835 9.48758 6.51374 10.693 8.00066 10.693Z" stroke="#94979E" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.6748 13.9597L8.37939 10.6643" stroke="#94979E" stroke-linecap="round" stroke-linejoin="round"/>
@ -25,6 +25,7 @@
<span>{|xentral Community|}</span>
</a>
-->
<a title="{|Abmelden|}" href="./index.php?module=welcome&action=logout">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.63031 11.375C9.63031 11.0528 9.89148 10.7917 10.2136 10.7917C10.5356 10.7917 10.7967 11.0525 10.797 11.3744V12.5411C10.797 12.8633 10.5358 13.1244 10.2136 13.1244H5.83864V13.7078C5.83866 13.7962 5.79854 13.8799 5.72956 13.9353C5.66056 13.9905 5.57044 14.0119 5.48398 13.9936L0.233977 12.8269C0.100228 12.7973 0.00509078 12.6787 0.00531044 12.5417V1.45834C0.00536462 1.32158 0.100441 1.20322 0.233977 1.17368L5.48398 0.00700995C5.57029 -0.0120843 5.66061 0.00899695 5.72955 0.0643302C5.79849 0.119663 5.83861 0.203277 5.83864 0.291677V0.87501H10.2136C10.5358 0.87501 10.797 1.13618 10.797 1.45834V2.91668C10.797 3.23884 10.5358 3.50001 10.2136 3.50001C9.89148 3.50001 9.63031 3.23884 9.63031 2.91668V2.33334C9.63031 2.17226 9.49973 2.04168 9.33864 2.04168H6.13031C5.96923 2.04168 5.83864 2.17226 5.83864 2.33334V11.6667C5.83864 11.8278 5.96923 11.9583 6.13031 11.9583H9.33864C9.49973 11.9583 9.63031 11.8278 9.63031 11.6667V11.375ZM3.50464 8.16667C3.98789 8.16667 4.37964 7.77492 4.37964 7.29167C4.37964 6.80842 3.98789 6.41667 3.50464 6.41667C3.02139 6.41667 2.62964 6.80842 2.62964 7.29167C2.62964 7.77492 3.02139 8.16667 3.50464 8.16667Z" fill="#7D7F81"/>
@ -33,4 +34,4 @@
<span>{|Abmelden|}</span>
</a>
</div>
</div>

View File

@ -10,7 +10,7 @@
</svg>
</div>
<a class="logo-index" href="index.php" title="Xentral">
<a class="logo-index" href="index.php" title="Xenomporio">
[SIDEBARLOGO]
</a>

View File

@ -1,13 +1,572 @@
<svg width="115" height="26" viewBox="0 0 115 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M40.3172 14.9011L36.7697 9.79331C36.488 9.40028 36.6852 8.97869 37.1061 8.97869H38.9386C39.0678 8.97328 39.1963 9.00092 39.3136 9.05933C39.4308 9.11774 39.5335 9.20524 39.613 9.31462L41.8664 12.7914H41.8946L44.2027 9.31462C44.2769 9.20602 44.3747 9.1186 44.4877 9.06003C44.6006 9.00147 44.7253 8.97354 44.8506 8.97869H46.7097C47.1791 8.97869 47.3356 9.37005 47.0461 9.76308L43.4986 14.8792L47.0758 20.2809C47.3278 20.6739 47.1869 21.067 46.7363 21.067H44.9633C44.8453 21.0597 44.7304 21.0231 44.6278 20.9601C44.5252 20.8972 44.4375 20.8096 44.3718 20.7042L41.8946 16.9569H41.8664L39.3313 20.8201C39.2802 20.8967 39.2124 20.9588 39.1339 21.0009C39.0554 21.043 38.9685 21.064 38.8807 21.0619H37.0028C36.524 21.0619 36.4113 20.6689 36.6648 20.2759L40.3172 14.9011Z" fill="white"/>
<path d="M55.264 8.97803C58.3425 8.97803 60.7118 11.217 60.7118 14.3036C60.7068 14.563 60.687 14.822 60.6526 15.0793C60.642 15.2109 60.5813 15.3339 60.4825 15.4244C60.3836 15.5148 60.2536 15.5663 60.1178 15.5687H52.0653C52.1311 16.4037 52.5178 17.184 53.1486 17.7545C53.7794 18.325 54.608 18.6437 55.4696 18.6473C56.5358 18.6473 57.5132 18.1883 58.1023 17.814C58.4577 17.6109 58.665 17.4942 58.9019 17.7837L59.7246 18.8776C59.9319 19.1079 60.0208 19.3382 59.667 19.6276C58.8081 20.3457 57.268 21.067 55.2853 21.067C51.7033 21.067 49.334 18.3338 49.334 15.0233C49.3422 11.7704 51.7116 8.97803 55.264 8.97803ZM57.9558 13.7567C57.867 12.3749 56.6823 11.1978 55.231 11.1978C54.4913 11.1866 53.7735 11.4418 53.2158 11.9142C52.658 12.3866 52.2998 13.0429 52.2101 13.7567H57.9558Z" fill="white"/>
<path d="M63.5616 9.83638C63.5666 9.68952 63.6277 9.55004 63.7326 9.44629C63.8375 9.34253 63.9783 9.28229 64.1264 9.27779H64.9884C65.0953 9.27509 65.2001 9.30798 65.286 9.37122C65.3719 9.43445 65.4339 9.52439 65.4623 9.6267L65.8206 10.6308C66.0287 10.395 67.6025 8.97803 69.9804 8.97803C73.6051 8.97803 74.9345 11.5138 74.9345 14.5802V20.5035C74.9299 20.6504 74.8692 20.79 74.7646 20.8941C74.66 20.9981 74.5194 21.0588 74.3713 21.0637H72.6837C72.5339 21.0637 72.3902 21.0047 72.2843 20.8996C72.1784 20.7946 72.1189 20.6521 72.1189 20.5035V14.4639C72.1189 12.5785 71.1991 11.5465 69.6518 11.5465C67.7808 11.5465 66.5043 12.9028 66.3491 13.3156V20.5068C66.3491 20.8917 66.1724 21.067 65.6654 21.067H64.1214C63.9732 21.0621 63.8324 21.0015 63.7275 20.8975C63.6227 20.7934 63.5616 20.6538 63.5566 20.5068V9.83638H63.5616Z" fill="white"/>
<path d="M88.4502 9.83368C88.4547 9.68666 88.5147 9.54693 88.618 9.44307C88.7212 9.33921 88.8599 9.27908 89.0057 9.27497H89.852C89.9671 9.28237 90.077 9.32605 90.1661 9.39984C90.2553 9.47362 90.3193 9.5738 90.349 9.68622L90.6738 10.689C91.0666 10.1508 91.581 9.71491 92.1742 9.41742C92.7674 9.11993 93.4224 8.96943 94.0849 8.97841C95.1959 8.97841 96.5408 9.27497 96.2192 10.0696L95.5175 11.5147C95.4926 11.5816 95.4538 11.6423 95.4037 11.6928C95.3536 11.7433 95.2934 11.7825 95.2271 11.8076C95.1608 11.8327 95.09 11.8433 95.0193 11.8386C94.9487 11.8338 94.8798 11.8139 94.8174 11.7802C94.502 11.6484 94.1647 11.5783 93.8233 11.5737C93.2993 11.5692 92.7828 11.6993 92.3224 11.9519C91.8621 12.2044 91.473 12.571 91.192 13.0172V20.5066C91.192 21.008 90.8671 21.067 90.4042 21.067H89.0008C88.8549 21.0625 88.7162 21.002 88.613 20.8979C88.5098 20.7937 88.4498 20.6538 88.4453 20.5066V9.83368H88.4502Z" fill="white"/>
<path d="M111.912 4.56127C111.917 4.4137 111.979 4.27355 112.084 4.1693C112.19 4.06505 112.331 4.00452 112.48 4H114.183C114.333 4.00367 114.476 4.06379 114.582 4.16808C114.689 4.27238 114.751 4.413 114.757 4.56127V20.5038C114.751 20.6517 114.689 20.7921 114.584 20.8965C114.478 21.001 114.336 21.0619 114.187 21.0668H112.48C112.331 21.0618 112.19 21.0009 112.084 20.8964C111.979 20.7919 111.917 20.6516 111.912 20.5038V4.56127Z" fill="white"/>
<path d="M85.0766 8.92301H82.6586V4.56127C82.6536 4.41355 82.5959 4.2734 82.4973 4.16919C82.3986 4.06497 82.2664 4.0045 82.1273 4H80.5427C80.4037 4.0045 80.2715 4.06497 80.1728 4.16919C80.0742 4.2734 80.0165 4.41355 80.0114 4.56127V8.92301H77.5966C77.4577 8.92875 77.326 8.99017 77.228 9.09492C77.13 9.19966 77.073 9.33995 77.0684 9.48757V10.7928C77.073 10.9402 77.1301 11.0804 77.2281 11.1848C77.3261 11.2893 77.4578 11.3504 77.5966 11.3557H80.0114V20.5038C80.0165 20.6517 80.0741 20.7921 80.1727 20.8965C80.2713 21.001 80.4035 21.0619 80.5427 21.0668H82.1304C82.2696 21.0619 82.4019 21.001 82.5005 20.8965C82.5991 20.7921 82.6567 20.6517 82.6617 20.5038V11.3557H85.0766C85.2148 11.3496 85.3457 11.2881 85.4431 11.1837C85.5405 11.0793 85.5971 10.9397 85.6017 10.7928V9.48757C85.5972 9.34049 85.5406 9.20066 85.4432 9.096C85.3459 8.99134 85.2149 8.92956 85.0766 8.92301Z" fill="white"/>
<path d="M107.779 9.26106H106.369C106.218 9.26622 106.075 9.3255 105.968 9.42696C105.861 9.52842 105.798 9.66455 105.793 9.80794V10.0094C104.798 9.33989 103.61 8.97955 102.39 8.97803C98.9963 8.97803 96.2676 11.7396 96.2676 14.9905C96.2676 18.3006 98.9963 21.067 102.39 21.067C103.61 21.0656 104.799 20.704 105.793 20.0324V20.2323C105.798 20.3757 105.861 20.5118 105.968 20.6132C106.075 20.7147 106.218 20.774 106.369 20.7791H107.779C107.93 20.7744 108.074 20.7153 108.181 20.6138C108.288 20.5123 108.351 20.3759 108.357 20.2323V9.80794C108.351 9.6644 108.288 9.52827 108.181 9.42685C108.074 9.32542 107.93 9.2662 107.779 9.26106ZM102.389 18.5868C100.479 18.5868 98.9643 16.9766 98.9643 14.9905C98.9643 13.0716 100.48 11.4726 102.389 11.4726C104.167 11.4726 105.603 12.8478 105.791 14.594V15.3823C105.606 17.1876 104.169 18.5868 102.39 18.5868H102.389Z" fill="white"/>
<path d="M13.3174 8.08892H13.2561C10.6909 8.08892 8.44011 6.17554 6.76347 4.50409L5.11423 2.85606C4.95835 2.70072 4.8347 2.5163 4.75034 2.31331C4.66598 2.11033 4.62256 1.89276 4.62256 1.67304C4.62256 1.45332 4.66598 1.23576 4.75034 1.03277C4.8347 0.829788 4.95835 0.645359 5.11423 0.490023C5.42909 0.176513 5.85591 0.000416056 6.30092 0.000416056C6.74594 0.000416056 7.17276 0.176513 7.48762 0.490023L9.14208 2.13806C10.2655 3.25799 11.9121 4.73953 13.2613 4.73953H13.3226C14.6717 4.73953 16.3236 3.25409 17.4418 2.13806L19.091 0.490023C19.2469 0.334666 19.4319 0.211431 19.6355 0.127353C19.8391 0.0432745 20.0573 2.31499e-09 20.2777 0C20.4981 -2.31499e-09 20.7163 0.0432745 20.92 0.127353C21.1236 0.211431 21.3086 0.334666 21.4644 0.490023C21.6203 0.645379 21.7439 0.829814 21.8282 1.0328C21.9126 1.23578 21.956 1.45333 21.956 1.67304C21.956 1.89275 21.9126 2.1103 21.8282 2.31329C21.7439 2.51627 21.6203 2.70071 21.4644 2.85606L19.81 4.50539C18.1333 6.17554 15.8826 8.08892 13.3174 8.08892Z" fill="#E66DCB"/>
<path d="M20.2682 25.9909C20.0479 25.9914 19.8296 25.9484 19.626 25.8646C19.4224 25.7807 19.2374 25.6576 19.0816 25.5023L17.4283 23.8544C16.3056 22.7367 14.66 21.2551 13.3117 21.2551H13.2504C11.9022 21.2551 10.2514 22.7393 9.13393 23.8544L7.48055 25.5049C7.1661 25.8165 6.74068 25.9915 6.29723 25.9915C5.85378 25.9915 5.42835 25.8165 5.11391 25.5049C4.95814 25.3497 4.83457 25.1654 4.75026 24.9626C4.66595 24.7598 4.62256 24.5424 4.62256 24.3229C4.62256 24.1034 4.66595 23.886 4.75026 23.6832C4.83457 23.4804 4.95814 23.2961 5.11391 23.1409L6.7673 21.493C8.44806 19.8165 10.6973 17.8969 13.287 17.9112H13.3169C15.8818 17.9112 18.1298 19.8243 19.8053 21.493L21.4587 23.1409C21.6953 23.3743 21.8568 23.6726 21.9228 23.9977C21.9887 24.3229 21.956 24.6603 21.8289 24.967C21.7018 25.2736 21.486 25.5356 21.209 25.7195C20.932 25.9035 20.6063 26.0012 20.2734 26L20.2682 25.9909Z" fill="#26E3E4"/>
<path d="M1.67308 21.3776C1.45334 21.3779 1.2357 21.3347 1.03262 21.2506C0.829532 21.1664 0.644989 21.0429 0.489549 20.8871C0.176076 20.5723 0 20.1456 0 19.7007C0 19.2557 0.176076 18.829 0.489549 18.5142L2.13869 16.8601C3.26239 15.733 4.75545 14.0776 4.73985 12.7262V12.6962C4.75155 11.3447 3.25849 9.69581 2.13869 8.5622L0.489549 6.90809C0.176076 6.5933 0 6.16657 0 5.72165C0 5.27673 0.176076 4.85001 0.489549 4.53521C0.803398 4.2208 1.22884 4.04419 1.67243 4.04419C2.11601 4.04419 2.54146 4.2208 2.8553 4.53521L4.50444 6.18932C6.18089 7.87212 8.10315 10.1328 8.08884 12.7118C8.10315 15.2908 6.18089 17.5515 4.50314 19.2343L2.8553 20.8871C2.70032 21.0431 2.51604 21.1668 2.31313 21.251C2.11021 21.3352 1.89267 21.3782 1.67308 21.3776Z" fill="#5B64EE"/>
<path d="M24.2831 21.4184C24.0634 21.4189 23.8458 21.3757 23.6429 21.2913C23.44 21.207 23.2557 21.0831 23.1007 20.9268L21.4531 19.2734C19.777 17.5926 17.8566 15.3328 17.8722 12.7535C17.8579 10.1808 19.7783 7.91837 21.4531 6.23624L23.1007 4.5828C23.4141 4.26826 23.8392 4.09155 24.2825 4.09155C24.7257 4.09155 25.1508 4.26826 25.4642 4.5828C25.7776 4.89733 25.9537 5.32394 25.9537 5.76876C25.9537 6.21359 25.7776 6.64019 25.4642 6.95473L23.8179 8.60817C22.694 9.7348 21.2024 11.3882 21.2193 12.7405V12.7692C21.2076 14.1214 22.6979 15.7761 23.8179 16.9028L25.4655 18.5562C25.7012 18.7904 25.8622 19.0897 25.9279 19.4159C25.9936 19.7422 25.961 20.0808 25.8344 20.3884C25.7077 20.6961 25.4927 20.9589 25.2166 21.1435C24.9406 21.3281 24.6161 21.4261 24.2844 21.4249L24.2831 21.4184Z" fill="#27E7A2"/>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.2"
width="115"
height="26"
viewBox="2239 7000 25676 5161"
preserveAspectRatio="xMidYMid"
fill-rule="evenodd"
stroke-width="28.222"
stroke-linejoin="round"
xml:space="preserve"
id="svg192"
sodipodi:docname="Xenomporio4.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata196"><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
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1025"
id="namedview194"
showgrid="false"
inkscape:zoom="0.56469723"
inkscape:cx="584.83462"
inkscape:cy="436.9225"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg192" />
<defs
id="defs23">
<font
id="EmbeddedFont_1"
horiz-adv-x="2048">
<font-face
font-family="Liberation Sans embedded"
units-per-em="2048"
font-weight="bold"
font-style="normal"
ascent="1838"
descent="434"
id="font-face2" />
<missing-glyph
horiz-adv-x="2048"
d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"
id="missing-glyph4" />
<glyph
unicode="r"
horiz-adv-x="636"
d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"
id="glyph6" />
<glyph
unicode="p"
horiz-adv-x="1037"
d="M 1167,546 C 1167,365 1131,226 1059,128 986,29 884,-20 752,-20 676,-20 610,-3 554,30 497,63 454,110 424,172 L 418,172 C 422,152 424,91 424,-10 L 424,-425 143,-425 143,833 C 143,935 140,1018 135,1082 L 408,1082 C 411,1070 414,1046 417,1011 419,976 420,941 420,906 L 424,906 C 487,1039 603,1105 770,1105 896,1105 994,1057 1063,960 1132,863 1167,725 1167,546 Z M 874,546 C 874,789 800,910 651,910 576,910 519,877 480,812 440,747 420,655 420,538 420,421 440,331 480,268 519,204 576,172 649,172 799,172 874,297 874,546 Z"
id="glyph8" />
<glyph
unicode="o"
horiz-adv-x="1104"
d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"
id="glyph10" />
<glyph
unicode="n"
horiz-adv-x="1003"
d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"
id="glyph12" />
<glyph
unicode="m"
horiz-adv-x="1571"
d="M 780,0 L 780,607 C 780,797 725,892 616,892 559,892 513,863 478,805 442,747 424,672 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 900,1103 1001,1024 1036,867 L 1042,867 C 1079,951 1123,1011 1174,1048 1225,1085 1291,1103 1370,1103 1475,1103 1556,1067 1611,996 1666,924 1694,821 1694,687 L 1694,0 1415,0 1415,607 C 1415,797 1360,892 1251,892 1196,892 1152,866 1117,813 1082,760 1062,686 1059,593 L 1059,0 780,0 Z"
id="glyph14" />
<glyph
unicode="i"
horiz-adv-x="301"
d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"
id="glyph16" />
<glyph
unicode="e"
horiz-adv-x="1003"
d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"
id="glyph18" />
<glyph
unicode="X"
horiz-adv-x="1371"
d="M 1038,0 L 684,561 330,0 18,0 506,741 59,1409 371,1409 684,911 997,1409 1307,1409 879,741 1348,0 1038,0 Z"
id="glyph20" />
</font>
</defs>
<defs
class="EmbeddedBulletChars"
id="defs55">
<g
id="bullet-char-template-57356"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"
id="path25" />
</g>
<g
id="bullet-char-template-57354"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"
id="path28" />
</g>
<g
id="bullet-char-template-10146"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"
id="path31" />
</g>
<g
id="bullet-char-template-10132"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"
id="path34" />
</g>
<g
id="bullet-char-template-10007"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"
id="path37" />
</g>
<g
id="bullet-char-template-10004"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"
id="path40" />
</g>
<g
id="bullet-char-template-9679"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"
id="path43" />
</g>
<g
id="bullet-char-template-8226"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"
id="path46" />
</g>
<g
id="bullet-char-template-8211"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"
id="path49" />
</g>
<g
id="bullet-char-template-61548"
transform="scale(0.00048828125,-0.00048828125)">
<path
d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"
id="path52" />
</g>
</defs>
<g
id="g62"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id3"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect57"
height="1452"
width="502"
y="9480"
x="5169"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path59"
d="m 5169,10931 c 0,-473 0,-947 0,-1420 82,2 168,-31 250,-31 85,0 165,33 250,31 0,473 0,947 0,1420 -167,0 -333,0 -500,0 z" />
</g>
</g><g
id="g78"
class="Group"
style="stroke:none;stroke-opacity:1">
<g
id="g69"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id4"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect64"
height="541"
width="2001"
y="10891"
x="2319"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path66"
d="M 4319,10891 H 2319 c 0,95 46,188 134,270 88,82 214,150 366,198 152,47 325,72 500,72 176,0 349,-25 501,-72 152,-48 278,-116 366,-198 80,-75 126,-159 133,-246 z" />
</g>
</g>
<g
id="g76"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id5"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect71"
height="700"
width="2160"
y="10812"
x="2240"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path73"
d="m 4359,10823 c 12,7 22,17 29,29 7,12 11,26 11,40 v 24 c 0,2 0,4 0,6 -5,54 -21,107 -49,159 -26,48 -62,95 -109,138 0,1 0,1 0,1 -49,45 -108,86 -176,123 -65,36 -139,67 -221,92 -159,50 -340,76 -524,76 -184,0 -365,-26 -524,-76 -82,-25 -156,-56 -221,-92 -68,-37 -127,-78 -176,-123 -51,-48 -90,-100 -117,-153 -14,-28 -24,-57 -31,-86 -7,-30 -11,-59 -11,-89 0,-14 4,-28 11,-40 7,-12 17,-22 29,-29 12,-7 26,-11 40,-11 h 2000 c 13,0 27,4 39,11 z m -133,148 H 2414 c 3,8 7,17 11,25 18,38 46,73 83,107 39,37 87,71 142,100 58,31 122,58 193,81 145,44 310,68 477,68 167,0 332,-24 477,-68 71,-23 135,-50 193,-81 55,-29 103,-63 142,-100 33,-31 60,-64 78,-98 7,-11 12,-23 16,-34 z" />
</g>
</g>
</g><g
id="g94"
class="Group"
style="stroke:none;stroke-opacity:1">
<g
id="g85"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id6"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect80"
height="541"
width="2001"
y="10891"
x="6519"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path82"
d="M 8519,10891 H 6519 c 0,95 46,188 134,270 88,82 214,150 366,198 152,47 325,72 500,72 176,0 349,-25 501,-72 152,-48 278,-116 366,-198 80,-75 126,-159 133,-246 z" />
</g>
</g>
<g
id="g92"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id7"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect87"
height="700"
width="2160"
y="10812"
x="6440"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path89"
d="m 8559,10823 c 12,7 22,17 29,29 7,12 11,26 11,40 v 24 c 0,2 0,4 0,6 -5,54 -21,107 -49,159 -26,48 -62,95 -109,138 0,1 0,1 0,1 -49,45 -108,86 -176,123 -65,36 -139,67 -221,92 -159,50 -340,76 -524,76 -184,0 -365,-26 -524,-76 -82,-25 -156,-56 -221,-92 -68,-37 -127,-78 -176,-123 -51,-48 -90,-100 -117,-153 -14,-28 -24,-57 -31,-86 -7,-30 -11,-59 -11,-89 0,-14 4,-28 11,-40 7,-12 17,-22 29,-29 12,-7 26,-11 40,-11 h 2000 c 13,0 27,4 39,11 z m -133,148 H 6614 c 3,8 7,17 11,25 18,38 46,73 83,107 39,37 87,71 142,100 58,31 122,58 193,81 145,44 310,68 477,68 167,0 332,-24 477,-68 71,-23 135,-50 193,-81 55,-29 103,-63 142,-100 33,-31 60,-64 78,-98 7,-11 12,-23 16,-34 z" />
</g>
</g>
</g><g
id="g110"
class="Group"
style="stroke:none;stroke-opacity:1">
<g
id="g101"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id8"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect96"
height="216"
width="216"
y="8583"
x="3212"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path98"
d="m 3427,8691 c 0,18 -5,37 -14,53 -10,17 -23,30 -40,40 -16,9 -35,14 -53,14 -19,0 -38,-5 -54,-14 -17,-10 -30,-23 -40,-40 -9,-16 -14,-35 -14,-53 0,-19 5,-38 14,-54 10,-17 23,-30 40,-40 16,-9 35,-14 54,-14 18,0 37,5 53,14 17,10 30,23 40,40 9,16 14,35 14,54 z" />
</g>
</g>
<g
id="g108"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id9"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect103"
height="375"
width="375"
y="8504"
x="3133"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path105"
d="m 3501,8739 c -5,16 -11,31 -19,46 -8,14 -18,27 -30,38 -11,12 -24,22 -38,30 -15,8 -30,14 -46,19 -15,4 -32,6 -48,6 -16,0 -33,-2 -48,-6 -16,-5 -31,-11 -46,-19 -14,-8 -27,-18 -38,-30 -12,-11 -22,-24 -30,-38 -8,-15 -14,-30 -19,-46 -4,-15 -6,-32 -6,-48 0,-16 2,-33 6,-48 5,-16 11,-31 19,-46 8,-14 18,-27 30,-38 11,-12 24,-22 38,-30 15,-8 30,-14 46,-19 15,-4 32,-6 48,-6 16,0 33,2 48,6 16,5 31,11 46,19 14,8 27,18 38,30 12,11 22,24 30,38 8,15 14,30 19,46 4,15 6,32 6,48 0,16 -2,33 -6,48 z m -174,-75 c -2,-1 -5,-1 -7,-1 -2,0 -5,0 -7,1 -3,1 -5,2 -7,3 -2,1 -4,2 -6,4 -2,2 -3,4 -4,6 -1,2 -2,4 -3,7 -1,2 -1,5 -1,7 0,2 0,5 1,7 1,3 2,5 3,7 1,2 2,4 4,6 2,2 4,3 6,4 2,1 4,2 7,3 2,1 5,1 7,1 2,0 5,0 7,-1 3,-1 5,-2 7,-3 2,-1 4,-2 6,-4 2,-2 3,-4 4,-6 1,-2 2,-4 3,-7 1,-2 1,-5 1,-7 0,-2 0,-5 -1,-7 -1,-3 -2,-5 -3,-7 -1,-2 -2,-4 -4,-6 -2,-2 -4,-3 -6,-4 -2,-1 -4,-2 -7,-3 z" />
</g>
</g>
</g><g
id="g126"
class="Group"
style="stroke:none;stroke-opacity:1">
<g
id="g117"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id10"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect112"
height="216"
width="216"
y="8580"
x="7412"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path114"
d="m 7627,8688 c 0,18 -5,37 -14,53 -10,17 -23,30 -40,40 -16,9 -35,14 -53,14 -19,0 -38,-5 -54,-14 -17,-10 -30,-23 -40,-40 -9,-16 -14,-35 -14,-53 0,-19 5,-38 14,-54 10,-17 23,-30 40,-40 16,-9 35,-14 54,-14 18,0 37,5 53,14 17,10 30,23 40,40 9,16 14,35 14,54 z" />
</g>
</g>
<g
id="g124"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id11"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect119"
height="376"
width="375"
y="8500"
x="7333"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path121"
d="m 7701,8736 c -5,16 -11,31 -19,46 -8,14 -18,27 -30,38 -11,12 -24,22 -39,30 -14,8 -29,14 -45,19 -15,4 -32,6 -48,6 -16,0 -33,-2 -48,-6 -16,-5 -31,-11 -45,-19 -15,-8 -28,-18 -39,-30 -12,-11 -22,-24 -30,-39 -8,-14 -14,-29 -19,-45 -4,-15 -6,-32 -6,-48 0,-16 2,-33 6,-48 5,-16 11,-31 19,-45 8,-15 18,-28 30,-39 11,-12 24,-22 39,-30 14,-8 29,-14 45,-19 15,-4 32,-6 48,-6 16,0 33,2 48,6 16,5 31,11 45,19 15,8 28,18 39,30 12,11 22,24 30,38 8,15 14,30 19,46 4,15 6,32 6,48 0,16 -2,33 -6,48 z m -174,-75 c -2,-1 -5,-1 -7,-1 -2,0 -5,0 -7,1 -3,1 -5,2 -7,3 -2,1 -4,2 -6,4 -2,2 -3,4 -4,6 -1,2 -2,4 -3,7 -1,2 -1,5 -1,7 0,2 0,5 1,7 1,3 2,5 3,7 1,2 2,4 4,6 2,2 4,3 6,4 2,1 4,2 7,3 2,1 5,1 7,1 2,0 5,0 7,-1 3,-1 5,-2 7,-3 2,-1 4,-2 6,-4 2,-2 3,-4 4,-6 1,-2 2,-4 3,-7 1,-2 1,-5 1,-7 0,-2 0,-5 -1,-7 -1,-3 -2,-5 -3,-7 -1,-2 -2,-4 -4,-6 -2,-2 -4,-3 -6,-4 -2,-1 -4,-2 -7,-3 z" />
</g>
</g>
</g><g
id="g133"
class="com.sun.star.drawing.PolyPolygonShape"
style="stroke:none;stroke-opacity:1">
<g
id="id12"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect128"
height="162"
width="1301"
y="8608"
x="6112"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path130"
d="m 6112,8769 v -79 -79 l 1300,-3 v 79 79 z" />
</g>
</g><g
id="g140"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id13"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect135"
height="1201"
width="3001"
y="10880"
x="3919"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path137"
d="m 4786,11406 c 88,-145 134,-309 134,-475 0,-17 0,-34 -1,-51 h 1002 c -1,17 -1,34 -1,52 0,166 46,330 134,475 88,144 214,264 366,348 152,83 324,127 499,127 v 198 H 3919 v -199 h 1 c 175,0 348,-44 500,-127 152,-84 278,-204 366,-348 z" />
</g>
</g><g
id="g147"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id14"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect142"
height="1360"
width="3161"
y="10801"
x="3840"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path144"
d="m 4854,11448 c -47,78 -105,149 -172,213 -66,63 -141,118 -223,163 -82,45 -170,79 -260,102 -66,17 -132,28 -200,32 v 43 h 2841 v -42 c -67,-5 -133,-15 -198,-32 -91,-23 -178,-57 -260,-102 -82,-45 -157,-100 -223,-163 -67,-64 -125,-135 -172,-213 -48,-79 -85,-163 -109,-250 -22,-78 -34,-158 -37,-239 h -841 c -3,81 -15,161 -37,238 -24,87 -61,171 -109,250 z m -44,-293 c 21,-73 31,-148 31,-223 0,-16 0,-31 -1,-47 0,-1 0,-3 0,-4 0,-14 4,-28 11,-40 7,-12 17,-22 29,-29 12,-7 26,-11 40,-11 h 1002 c 13,0 27,4 39,11 12,7 22,17 29,29 7,12 11,26 11,40 0,1 0,3 0,4 -1,16 -1,31 -1,48 0,75 10,150 31,223 21,73 51,144 91,210 41,66 90,127 146,180 57,54 121,101 191,140 70,38 145,67 222,87 78,20 158,30 239,30 13,0 27,4 39,11 12,7 22,17 29,29 7,12 11,26 11,40 v 198 c 0,13 -4,27 -11,39 -7,12 -17,22 -29,29 -12,7 -26,11 -39,11 H 3920 c -14,0 -28,-4 -40,-11 -12,-7 -22,-17 -29,-29 -7,-12 -11,-26 -11,-39 v -199 c 0,-14 4,-28 11,-40 7,-12 17,-22 29,-29 12,-7 26,-11 40,-11 h 1 c 80,0 161,-10 239,-30 77,-20 152,-49 222,-87 70,-39 134,-86 191,-140 56,-53 105,-114 146,-180 40,-66 70,-137 91,-210 z" />
</g>
</g><g
id="g154"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id15"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect149"
height="3443"
width="3923"
y="7000"
x="3458"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path151"
d="m 3579,7159 c -9,-16 -14,-34 -14,-53 0,-19 5,-37 14,-53 10,-16 23,-29 39,-39 16,-9 34,-14 53,-14 h 1161 c 19,0 37,5 53,14 15,9 28,22 37,37 l 514,842 497,-841 c 9,-16 22,-29 38,-38 16,-9 34,-14 53,-14 h 1150 c 19,0 37,5 53,14 16,10 29,23 39,39 9,16 14,34 14,53 0,19 -5,37 -14,53 -1,2 -3,4 -4,7 l -1020,1503 1119,1606 c 2,3 3,5 5,8 9,16 14,34 14,53 0,19 -5,37 -14,53 -10,16 -23,29 -39,39 -16,9 -34,14 -53,14 H 6089 c -19,0 -37,-5 -53,-14 -15,-9 -27,-20 -36,-34 l -584,-901 -585,901 c -9,14 -22,25 -36,34 -16,9 -34,14 -53,14 H 3564 c -19,0 -37,-5 -53,-14 -16,-10 -29,-23 -39,-39 -9,-16 -14,-34 -14,-53 0,-19 5,-37 14,-53 2,-3 3,-5 5,-8 L 4613,8652 3584,7166 c -2,-2 -3,-4 -5,-7 z M 7071,10230 6026,8731 c -2,-3 -3,-5 -5,-8 -9,-16 -14,-34 -14,-53 0,-19 5,-37 14,-53 1,-2 3,-4 4,-7 l 949,-1398 h -889 l -556,941 c -9,16 -22,29 -38,38 -16,9 -34,14 -53,14 -19,0 -37,-5 -53,-14 -15,-9 -28,-22 -37,-37 l -575,-942 h -900 l 956,1380 c 2,2 3,4 5,7 9,16 14,34 14,53 0,19 -5,37 -14,53 -2,3 -3,5 -5,8 l -1061,1517 h 916 l 643,-990 c 9,-14 22,-25 36,-34 16,-9 34,-14 53,-14 19,0 37,5 53,14 15,9 27,20 36,34 l 642,990 z" />
</g>
</g><g
id="g161"
class="com.sun.star.drawing.PolyPolygonShape"
style="stroke:none;stroke-opacity:1">
<g
id="id16"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect156"
height="163"
width="1201"
y="8609"
x="3426"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path158"
d="m 3426,8771 v -80 -79 l 1200,-3 v 79 80 z" />
</g>
</g><g
id="g168"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id17"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect163"
height="2311"
width="2161"
y="8661"
x="2239"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path165"
d="m 3758,9873 -439,-944 -876,1883 h 1752 l -172,-369 h 175 l 194,415 c 4,10 7,22 7,34 0,13 -4,27 -11,39 -7,12 -17,22 -29,29 -12,7 -26,11 -39,11 H 2319 c -14,0 -28,-4 -40,-11 -12,-7 -22,-17 -29,-29 -7,-12 -11,-26 -11,-39 0,-12 3,-24 7,-34 L 3246,8707 c 1,-2 2,-4 4,-6 7,-12 17,-22 29,-29 12,-7 26,-11 40,-11 13,0 27,4 39,11 12,7 22,17 29,29 2,2 3,4 4,6 l 472,1016 z" />
</g>
</g><g
id="g175"
class="com.sun.star.drawing.ClosedBezierShape"
style="stroke:none;stroke-opacity:1">
<g
id="id18"
style="stroke:none;stroke-opacity:1">
<rect
style="fill:none;stroke:none;stroke-opacity:1"
id="rect170"
height="2311"
width="2161"
y="8661"
x="6440"
class="BoundingBox" />
<path
style="fill:#ffffff;stroke:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path172"
d="m 6816,10443 -172,369 h 1752 l -876,-1883 -439,944 -105,-151 471,-1015 c 1,-2 2,-4 4,-6 7,-12 17,-22 29,-29 12,-7 26,-11 40,-11 13,0 27,4 39,11 12,7 22,17 29,29 2,2 3,4 4,6 l 1001,2151 c 4,10 7,22 7,34 0,13 -4,27 -11,39 -7,12 -17,22 -29,29 -12,7 -26,11 -39,11 H 6520 c -14,0 -28,-4 -40,-11 -12,-7 -22,-17 -29,-29 -7,-12 -11,-26 -11,-39 0,-12 3,-24 7,-34 l 194,-415 z" />
</g>
</g><text
id="text185"
class="TextShape"
style="stroke:none;stroke-opacity:1;"><tspan
style="font-weight:700;font-size:3210px;font-family:'Liberation Sans', sans-serif;stroke:none;stroke-opacity:1;"
id="tspan183"
font-weight="700"
font-size="3210px"
class="TextParagraph"><tspan
id="tspan181"
y="10812"
x="9188"
class="TextPosition"
style="stroke:none;stroke-opacity:1;"><tspan
style="fill:#ffffff;stroke:none;stroke-opacity:1;"
id="tspan179">Xenomporio</tspan></tspan></tspan></text>
</svg>

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -56,8 +56,8 @@
<div id="inlinehelplink">[INLINEHELPLINK]</div>
</div>
<div class="footer-actions">
<a href="//community.xentral.com" target="_blank" class="button button-secondary">{| Mit unserer Community verbinden |}</a>
<a href="//support.wawision.de/open.php" target="_blank" class="button button-primary">{| Ticket anlegen |}</a>
<a href="//community.xentral.com" target="_blank" class="button button-secondary">{| Zur Xentral community |}</a>
<!-- <a href="//support.wawision.de/open.php" target="_blank" class="button button-primary">{| Ticket anlegen |}</a> -->
</div>
</div>
</div>