Different vessel shapes

This commit is contained in:
2024-04-11 18:44:04 +02:00
parent eccb68e9a2
commit 806cc407eb
9 changed files with 1097 additions and 98 deletions
+1
View File
@@ -66,6 +66,7 @@ CREATE TABLE vessel (
ballast smallint(6) UNSIGNED DEFAULT NULL, ballast smallint(6) UNSIGNED DEFAULT NULL,
beltpos_aft float(4,2) UNSIGNED DEFAULT NULL, beltpos_aft float(4,2) UNSIGNED DEFAULT NULL,
beltpos_bow float(4,2) UNSIGNED DEFAULT NULL, beltpos_bow float(4,2) UNSIGNED DEFAULT NULL,
shapefile varchar(40) DEFAULT NULL,
remarks varchar(150) DEFAULT NULL, remarks varchar(150) DEFAULT NULL,
PRIMARY KEY (vid) PRIMARY KEY (vid)
); );
+3
View File
@@ -28,6 +28,9 @@ $g_mailto_webmaster = 'webmaster@example.com';
$g_timezone = 'Europe/Berlin'; $g_timezone = 'Europe/Berlin';
$g_locale = 'de_DE.UTF-8'; $g_locale = 'de_DE.UTF-8';
// vessel base shapes directory
$g_shapedir = 'shapes';
// documents and images // documents and images
$g_doc_basepath = '/var/local/yms'; $g_doc_basepath = '/var/local/yms';
$g_doc_maxsize = 1024*1024*16; // 16 MB $g_doc_maxsize = 1024*1024*16; // 16 MB
+55 -11
View File
@@ -80,6 +80,7 @@ switch ($submit = form_get_action()) {
$p[':ballast'] = gpc_get_int($_POST, 'ballast'); $p[':ballast'] = gpc_get_int($_POST, 'ballast');
$p[':beltpos_aft'] = gpc_get_float($_POST, 'beltpos_aft'); $p[':beltpos_aft'] = gpc_get_float($_POST, 'beltpos_aft');
$p[':beltpos_bow'] = gpc_get_float($_POST, 'beltpos_bow'); $p[':beltpos_bow'] = gpc_get_float($_POST, 'beltpos_bow');
$p[':shapefile'] = gpc_get_string($_POST, 'shapefile');
$p[':remarks'] = gpc_get_string($_POST, 'remarks', 150); $p[':remarks'] = gpc_get_string($_POST, 'remarks', 150);
$fields = join(',', array_map(function($s) { return ltrim($s, ':') . '=' . $s; }, array_keys($p))); $fields = join(',', array_map(function($s) { return ltrim($s, ':') . '=' . $s; }, array_keys($p)));
$sth = $pdo->prepare("UPDATE vessel SET $fields WHERE vid=:vid"); $sth = $pdo->prepare("UPDATE vessel SET $fields WHERE vid=:vid");
@@ -143,22 +144,22 @@ echo "</form>\n";
// Get current vessel data // Get current vessel data
$sql = "SELECT vesselname, model, loa, lwl, beam, draught, draught_min," $sql = "SELECT vesselname, model, loa, lwl, beam, draught, draught_min,"
. " displacement, ballast, beltpos_aft, beltpos_bow, remarks " . " displacement, ballast, beltpos_aft, beltpos_bow, shapefile,"
. " remarks "
. "FROM vessel " . "FROM vessel "
. "WHERE vid=?"; . "WHERE vid=?";
$sth = $pdo->prepare($sql); $sth = $pdo->prepare($sql);
$sth->execute([$vid]); $sth->execute([$vid]);
$vessel = $sth->fetch(); $vessel = $sth->fetch();
?> // get vessel shape
// TODO predefine base shapes for different vessels
<?php /* <svg viewbox="0 0 1024 768"> $shapefilepath = dirname(__FILE__).'/'.$g_shapedir.'/'.$vessel['shapefile'];
<circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /> if (isset($vessel['shapefile']) and file_exists($shapefilepath)) {
<rect x="0" y="0" width="1024" height="768" stroke="black" fill="none" /> $baseshape = file_get_contents($shapefilepath);
<text x="0" y="20" font-size="12" fill="#ccc" text-anchor="start">Elizabethan 29</text> } else {
<line x1="0" y1="0" x2="100" y2="100" /> // use internal default shape
</svg> */ ?> $baseshape = <<<EOT
<br>
<svg <svg
width="680.8349" width="680.8349"
height="205.42085" height="205.42085"
@@ -185,6 +186,44 @@ $vessel = $sth->fetch();
transform="matrix(1,0,0,-1,-4.9118388e-8,123.69274)" /> transform="matrix(1,0,0,-1,-4.9118388e-8,123.69274)" />
</g> </g>
</svg> </svg>
EOT;
}
$shape = new SimpleXMLElement($baseshape);
$g = $shape->addChild('g');
$g->addAttribute('id', 'boxlayout');
// line for belt
$line = $g->addChild('line');
$line->addAttribute('x1', '100');
$line->addAttribute('y1', '0');
$line->addAttribute('x2', '100');
$line->addAttribute('y2', '100');
$line->addAttribute('style', 'stroke:#ff0000;stroke-width:0.25px');
// rectangle for storage
$rect = $g->addChild('rect');
$rect->addAttribute('x', '2');
$rect->addAttribute('y', '14');
$rect->addAttribute('width', '20');
$rect->addAttribute('height', '26');
$rect->addAttribute('stroke', '#000');
$rect->addAttribute('stroke-width', '0.25px');
$rect->addAttribute('fill', '#57E389');
$rect->addAttribute('fill-opacity', '0.4');
// text with link
$link = $g->addChild('a');
$link->addAttribute('xlink:href', 'storage.php?f=view&id=1');
$text = $link->addChild('text', 'Box1');
$text->addAttribute('font-size', '3.5');
$text->addAttribute('x', '4');
$text->addAttribute('y', '18');
?>
<div class="container-fluid my-4">
<?=$shape->asXML()?>
</div>
<div class="container-fluid"> <div class="container-fluid">
<div class="row my-4"> <div class="row my-4">
@@ -331,7 +370,8 @@ elseif ($action == ACT_EDIT):
// ========== VARIANT: edit single record ===================================== // ========== VARIANT: edit single record =====================================
$sql = "SELECT vesselname, vtype, model, loa, lwl, beam, draught, draught_min," $sql = "SELECT vesselname, vtype, model, loa, lwl, beam, draught, draught_min,"
. " displacement, ballast, beltpos_aft, beltpos_bow, remarks " . " displacement, ballast, beltpos_aft, beltpos_bow, shapefile,"
. " remarks "
. "FROM vessel " . "FROM vessel "
. "WHERE vid=?"; . "WHERE vid=?";
$sth = $pdo->prepare($sql); $sth = $pdo->prepare($sql);
@@ -385,6 +425,10 @@ $vessel = $sth->fetch(PDO::FETCH_OBJ);
<label for="beltpos_bow" class="form-label"><?=_('Belt position bow')?></label> <label for="beltpos_bow" class="form-label"><?=_('Belt position bow')?></label>
<input type="text" class="form-control" id="beltpos_bow" name="beltpos_bow" value="<?=format_float($vessel->beltpos_bow, 2) ?>"> <input type="text" class="form-control" id="beltpos_bow" name="beltpos_bow" value="<?=format_float($vessel->beltpos_bow, 2) ?>">
</div> </div>
<div class="mb-3">
<label for="shapefile" class="form-label"><?=_('Shapefile')?></label>
<input type="text" class="form-control" id="shapefile" name="shapefile" value="<?=$vessel->shapefile ?>">
</div>
<div class="mb-3"> <div class="mb-3">
<label for="remarks" class="form-label"><?=_('Remarks')?></label> <label for="remarks" class="form-label"><?=_('Remarks')?></label>
<textarea class="form-control" id="remarks" name="remarks" rows="3"><?=$vessel->remarks ?></textarea> <textarea class="form-control" id="remarks" name="remarks" rows="3"><?=$vessel->remarks ?></textarea>
@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: YMS 0.1\n" "Project-Id-Version: YMS 0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-09 09:10+0200\n" "POT-Creation-Date: 2024-04-10 17:14+0200\n"
"PO-Revision-Date: 2024-03-15 13:50+0100\n" "PO-Revision-Date: 2024-03-15 13:50+0100\n"
"Last-Translator: Thomas Hooge <thomas@hoogi.de>\n" "Last-Translator: Thomas Hooge <thomas@hoogi.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,11 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: box.php:10 index.php:240 #: box.php:10 index.php:241
msgid "Boxes" msgid "Boxes"
msgstr "Kisten" msgstr "Kisten"
#: box.php:70 maintenance.php:69 projects.php:76 storage.php:97 task.php:62 #: box.php:70 checklist.php:45 maintenance.php:69 projects.php:76
#: storage.php:97 task.php:62
#, php-format #, php-format
msgid "Unknown function '%s'!" msgid "Unknown function '%s'!"
msgstr "Unbekannte Funktion '%s'!" msgstr "Unbekannte Funktion '%s'!"
@@ -38,12 +39,12 @@ msgstr "Farbe"
msgid "Content" msgid "Content"
msgstr "Inhalt" msgstr "Inhalt"
#: box.php:96 box.php:171 equipment.php:339 inventory.php:248 #: box.php:96 box.php:171 equipment.php:352 inventory.php:248
msgid "Weight" msgid "Weight"
msgstr "Gewicht" msgstr "Gewicht"
#: box.php:114 company.php:148 documents.php:208 equipment.php:276 #: box.php:114 checklist.php:83 company.php:148 documents.php:208
#: equipment_js.php:85 inventory.php:162 maintenance.php:113 #: equipment.php:289 equipment_js.php:85 inventory.php:162 maintenance.php:113
#: measurement.php:177 projects.php:119 projects.php:147 provisions.php:128 #: measurement.php:177 projects.php:119 projects.php:147 provisions.php:128
#: storage.php:137 storage.php:168 task.php:111 #: storage.php:137 storage.php:168 task.php:111
#, php-format #, php-format
@@ -54,7 +55,7 @@ msgstr "%d Datensätze"
msgid "Add Box" msgid "Add Box"
msgstr "Kiste hinzufügen" msgstr "Kiste hinzufügen"
#: box.php:132 index.php:279 inventory.php:186 inventory.php:190 #: box.php:132 index.php:280 inventory.php:186 inventory.php:190
#: inventory.php:286 inventory.php:290 provisions.php:157 provisions.php:182 #: inventory.php:286 inventory.php:290 provisions.php:157 provisions.php:182
#: provisions.php:219 storage.php:10 #: provisions.php:219 storage.php:10
msgid "Storage" msgid "Storage"
@@ -62,8 +63,8 @@ msgstr "Stauraum"
#: box.php:146 box.php:172 box.php:234 company.php:130 company.php:196 #: box.php:146 box.php:172 box.php:234 company.php:130 company.php:196
#: company.php:292 documents.php:225 documents.php:297 documents.php:384 #: company.php:292 documents.php:225 documents.php:297 documents.php:384
#: equipment.php:251 equipment.php:309 equipment.php:344 equipment.php:439 #: equipment.php:264 equipment.php:322 equipment.php:357 equipment.php:452
#: equipment_js.php:65 index.php:314 index.php:376 maintenance.php:96 #: equipment_js.php:65 index.php:315 index.php:377 maintenance.php:96
#: maintenance.php:179 maintenance.php:235 projects.php:104 projects.php:175 #: maintenance.php:179 maintenance.php:235 projects.php:104 projects.php:175
#: projects.php:198 projects.php:267 storage.php:125 storage.php:218 #: projects.php:198 projects.php:267 storage.php:125 storage.php:218
#: storage.php:290 #: storage.php:290
@@ -71,8 +72,8 @@ msgid "Remarks"
msgstr "Bemerkungen" msgstr "Bemerkungen"
#: box.php:150 company.php:166 company.php:295 documents.php:250 #: box.php:150 company.php:166 company.php:295 documents.php:250
#: documents.php:387 equipment.php:313 equipment.php:442 equipment_js.php:112 #: documents.php:387 equipment.php:326 equipment.php:455 equipment_js.php:112
#: equipment_js.php:279 index.php:318 inventory.php:194 maintenance.php:144 #: equipment_js.php:279 index.php:319 inventory.php:194 maintenance.php:144
#: measurement.php:219 projects.php:178 projects.php:270 provisions.php:159 #: measurement.php:219 projects.php:178 projects.php:270 provisions.php:159
#: storage.php:195 storage.php:293 task.php:131 #: storage.php:195 storage.php:293 task.php:131
msgid "Save" msgid "Save"
@@ -80,8 +81,8 @@ msgstr "Speichern"
#: box.php:151 company.php:167 company.php:296 company.php:322 #: box.php:151 company.php:167 company.php:296 company.php:322
#: documents.php:251 documents.php:388 dropdown.php:196 dropdown.php:260 #: documents.php:251 documents.php:388 dropdown.php:196 dropdown.php:260
#: equipment.php:314 equipment.php:443 equipment_js.php:113 #: equipment.php:327 equipment.php:456 equipment_js.php:113
#: equipment_js.php:247 equipment_js.php:280 index.php:319 inventory.php:195 #: equipment_js.php:247 equipment_js.php:280 index.php:320 inventory.php:195
#: maintenance.php:145 measurement.php:220 projects.php:179 projects.php:271 #: maintenance.php:145 measurement.php:220 projects.php:179 projects.php:271
#: provisions.php:160 storage.php:196 storage.php:294 task.php:132 #: provisions.php:160 storage.php:196 storage.php:294 task.php:132
msgid "Back" msgid "Back"
@@ -91,7 +92,7 @@ msgstr "Zurück"
msgid "Inventory in box" msgid "Inventory in box"
msgstr "Inventar in der Kiste" msgstr "Inventar in der Kiste"
#: box.php:189 index.php:260 inventory.php:10 #: box.php:189 index.php:261 inventory.php:10
msgid "Inventory" msgid "Inventory"
msgstr "Inventar" msgstr "Inventar"
@@ -103,21 +104,56 @@ msgstr "Kiste ist leer"
msgid "Edit Box" msgid "Edit Box"
msgstr "Kiste bearbeiten" msgstr "Kiste bearbeiten"
#: box.php:230 equipment.php:423 inventory.php:279 #: box.php:230 equipment.php:436 inventory.php:279
msgid "Weight, kg" msgid "Weight, kg"
msgstr "Gewicht, kg" msgstr "Gewicht, kg"
#: box.php:248 company.php:333 documents.php:400 dropdown.php:266 #: box.php:248 checklist.php:151 company.php:333 documents.php:400
#: equipment.php:469 equipment_js.php:289 index.php:387 inventory.php:348 #: dropdown.php:266 equipment.php:482 equipment_js.php:289 index.php:388
#: maintenance.php:251 measurement.php:279 projects.php:283 provisions.php:233 #: inventory.php:348 maintenance.php:251 measurement.php:279 projects.php:283
#: storage.php:320 task.php:187 #: provisions.php:233 storage.php:320 task.php:187
msgid "Unknown function call: Please report to system development!" msgid "Unknown function call: Please report to system development!"
msgstr "Unbekannter Funktionsaufruf: Bitte der Systementwickelung melden!" msgstr "Unbekannter Funktionsaufruf: Bitte der Systementwickelung melden!"
#: checklist.php:10 index.php:286 #: checklist.php:10 index.php:287
msgid "Checklists" msgid "Checklists"
msgstr "Checklisten" msgstr "Checklisten"
#: checklist.php:67 checklist.php:96 checklist.php:113 documents.php:187
#: documents.php:221 documents.php:296 documents.php:380
msgid "Title"
msgstr "Titel"
#: checklist.php:68 checklist.php:138
msgid "State"
msgstr "Status"
#: checklist.php:92
msgid "Add Checklist"
msgstr "Checkliste hinzufügen"
#: checklist.php:111
msgid "View Checklist"
msgstr "Checkliste ansehen"
#: checklist.php:129
msgid "Edit checklist"
msgstr "Checkliste bearbeiten"
#: checklist.php:134 company.php:128 company.php:162 company.php:185
#: company.php:234 dropdown.php:177 dropdown.php:215 equipment.php:310
#: equipment.php:423 equipment_js.php:97 equipment_js.php:264 index.php:307
#: inventory.php:145 inventory.php:175 inventory.php:271 measurement.php:191
#: measurement.php:243 projects.php:101 projects.php:136 projects.php:161
#: projects.php:194 projects.php:241 provisions.php:141 provisions.php:202
#: storage.php:124 storage.php:183 storage.php:274 task.php:171
msgid "Name"
msgstr "Name"
#: checklist.php:146
msgid "Delete checklist"
msgstr "Lösche Checkliste"
#: company.php:10 #: company.php:10
msgid "Company" msgid "Company"
msgstr "Firma" msgstr "Firma"
@@ -138,16 +174,6 @@ msgstr "Firma Nr. %d gelöscht"
msgid "Unknown function!" msgid "Unknown function!"
msgstr "Unbekannte Funktion!" msgstr "Unbekannte Funktion!"
#: company.php:128 company.php:162 company.php:185 company.php:234
#: dropdown.php:177 dropdown.php:215 equipment.php:297 equipment.php:410
#: equipment_js.php:97 equipment_js.php:264 index.php:306 inventory.php:145
#: inventory.php:175 inventory.php:271 measurement.php:191 measurement.php:243
#: projects.php:101 projects.php:136 projects.php:161 projects.php:194
#: projects.php:241 provisions.php:141 provisions.php:202 storage.php:124
#: storage.php:183 storage.php:274 task.php:171
msgid "Name"
msgstr "Name"
#: company.php:129 company.php:186 documents.php:185 documents.php:312 #: company.php:129 company.php:186 documents.php:185 documents.php:312
msgid "Type" msgid "Type"
msgstr "Typ" msgstr "Typ"
@@ -225,7 +251,7 @@ msgstr "Stadt"
msgid "Delete Company" msgid "Delete Company"
msgstr "Firma löschen" msgstr "Firma löschen"
#: company.php:309 equipment.php:458 inventory.php:338 storage.php:309 #: company.php:309 equipment.php:471 inventory.php:338 storage.php:309
#, php-format #, php-format
msgid "Record no. %d" msgid "Record no. %d"
msgstr "Datensatz Nr. %d" msgstr "Datensatz Nr. %d"
@@ -278,10 +304,6 @@ msgstr "ID"
msgid "Filename" msgid "Filename"
msgstr "Dateiname" msgstr "Dateiname"
#: documents.php:187 documents.php:221 documents.php:296 documents.php:380
msgid "Title"
msgstr "Titel"
#: documents.php:188 #: documents.php:188
msgid "Links" msgid "Links"
msgstr "Verknüpfungen" msgstr "Verknüpfungen"
@@ -366,7 +388,7 @@ msgstr ""
msgid "Adding values is usually not critical." msgid "Adding values is usually not critical."
msgstr "" msgstr ""
#: dropdown.php:146 equipment.php:246 equipment_js.php:61 provisions.php:103 #: dropdown.php:146 equipment.php:259 equipment_js.php:61 provisions.php:103
msgid "Description" msgid "Description"
msgstr "Beschreibung" msgstr "Beschreibung"
@@ -398,16 +420,15 @@ msgstr "Liste bearbeiten: %s"
msgid "Add" msgid "Add"
msgstr "Hinzufügen" msgstr "Hinzufügen"
#: equipment.php:10 equipment_js.php:10 index.php:245 maintenance.php:95 #: equipment.php:10 equipment_js.php:10 index.php:246 maintenance.php:95
#: maintenance.php:135 maintenance.php:178 maintenance.php:222 #: maintenance.php:135 maintenance.php:178 maintenance.php:222
#: measurement.php:216 measurement.php:268 #: measurement.php:216 measurement.php:268
msgid "Equipment" msgid "Equipment"
msgstr "Ausrüstung" msgstr "Ausrüstung"
#: equipment.php:14 equipment.php:15 #: equipment.php:14 equipment.php:15
#, fuzzy
msgid "unknown" msgid "unknown"
msgstr "Unbekannt" msgstr "unbekannt"
#: equipment.php:119 #: equipment.php:119
#, php-format #, php-format
@@ -432,73 +453,73 @@ msgstr "Dateityp nicht zum Hochladen zugelassen:"
msgid "File to big: %s.%s" msgid "File to big: %s.%s"
msgstr "Datei zu groß: %s.%s" msgstr "Datei zu groß: %s.%s"
#: equipment.php:236 #: equipment.php:249
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
#: equipment.php:247 equipment.php:302 equipment.php:336 equipment.php:413 #: equipment.php:260 equipment.php:315 equipment.php:349 equipment.php:426
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Hersteller" msgstr "Hersteller"
#: equipment.php:248 equipment.php:305 equipment.php:337 equipment.php:415 #: equipment.php:261 equipment.php:318 equipment.php:350 equipment.php:428
#: equipment_js.php:63 equipment_js.php:105 equipment_js.php:134 #: equipment_js.php:63 equipment_js.php:105 equipment_js.php:134
#: equipment_js.php:272 index.php:310 index.php:344 #: equipment_js.php:272 index.php:311 index.php:345
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
#: equipment.php:249 equipment.php:338 equipment.php:419 equipment_js.php:64 #: equipment.php:262 equipment.php:351 equipment.php:432 equipment_js.php:64
#: equipment_js.php:109 equipment_js.php:135 equipment_js.php:276 #: equipment_js.php:109 equipment_js.php:135 equipment_js.php:276
msgid "Serial" msgid "Serial"
msgstr "Seriennummer" msgstr "Seriennummer"
#: equipment.php:250 #: equipment.php:263
msgid "Age" msgid "Age"
msgstr "Alter" msgstr "Alter"
#: equipment.php:260 #: equipment.php:273
#, php-format #, php-format
msgid "%dm" msgid "%dm"
msgstr "" msgstr ""
#: equipment.php:262 #: equipment.php:275
#, php-format #, php-format
msgid "%dy" msgid "%dy"
msgstr "" msgstr ""
#: equipment.php:294 equipment_js.php:94 #: equipment.php:307 equipment_js.php:94
msgid "Add Equipment" msgid "Add Equipment"
msgstr "Ausrüstung hinzufügen" msgstr "Ausrüstung hinzufügen"
#: equipment.php:301 equipment.php:343 equipment.php:436 #: equipment.php:314 equipment.php:356 equipment.php:449
msgid "Category" msgid "Category"
msgstr "" msgstr ""
#: equipment.php:340 inventory.php:249 #: equipment.php:353 inventory.php:249
msgid "Price" msgid "Price"
msgstr "Preis" msgstr "Preis"
#: equipment.php:341 equipment.php:431 inventory.php:250 inventory.php:298 #: equipment.php:354 equipment.php:444 inventory.php:250 inventory.php:298
msgid "Purchase date" msgid "Purchase date"
msgstr "Kaufdatum" msgstr "Kaufdatum"
#: equipment.php:342 equipment.php:435 #: equipment.php:355 equipment.php:448
msgid "Supplier" msgid "Supplier"
msgstr "Lieferant" msgstr "Lieferant"
#: equipment.php:406 equipment_js.php:261 #: equipment.php:419 equipment_js.php:261
msgid "Edit Equipment" msgid "Edit Equipment"
msgstr "Ausrüstung bearbeiten" msgstr "Ausrüstung bearbeiten"
#: equipment.php:427 inventory.php:294 #: equipment.php:440 inventory.php:294
#, php-format #, php-format
msgid "Price, %s" msgid "Price, %s"
msgstr "Preis, %s" msgstr "Preis, %s"
#: equipment.php:456 #: equipment.php:469
msgid "Delete equipment" msgid "Delete equipment"
msgstr "Ausrüstung löschen" msgstr "Ausrüstung löschen"
#: equipment.php:462 #: equipment.php:475
msgid "" msgid ""
"Deleting an equipment item is final. There is no way back. Only delete if " "Deleting an equipment item is final. There is no way back. Only delete if "
"you are absolute sure." "you are absolute sure."
@@ -565,23 +586,23 @@ msgstr "LüA"
msgid "Lwl" msgid "Lwl"
msgstr "LWL" msgstr "LWL"
#: index.php:197 index.php:356 #: index.php:197 index.php:357
msgid "Beam" msgid "Beam"
msgstr "Breite" msgstr "Breite"
#: index.php:198 index.php:360 #: index.php:198 index.php:361
msgid "Draught" msgid "Draught"
msgstr "Tiefgang" msgstr "Tiefgang"
#: index.php:199 index.php:364 #: index.php:199 index.php:365
msgid "Draught, min." msgid "Draught, min."
msgstr "Tiefgang, min." msgstr "Tiefgang, min."
#: index.php:200 index.php:368 #: index.php:200 index.php:369
msgid "Displacement" msgid "Displacement"
msgstr "Verdrängung" msgstr "Verdrängung"
#: index.php:201 index.php:372 #: index.php:201 index.php:373
msgid "Ballast" msgid "Ballast"
msgstr "Ballast" msgstr "Ballast"
@@ -589,63 +610,55 @@ msgstr "Ballast"
msgid "Statistics" msgid "Statistics"
msgstr "Statistik" msgstr "Statistik"
#: index.php:222 #: index.php:233
msgid "Default"
msgstr ""
#: index.php:222
msgid "Tank"
msgstr ""
#: index.php:232
msgid "Storage type" msgid "Storage type"
msgstr "Stauraumart" msgstr "Stauraumart"
#: index.php:246 index.php:261 #: index.php:247 index.php:262
msgid "Count" msgid "Count"
msgstr "Anzahl" msgstr "Anzahl"
#: index.php:276 #: index.php:277
msgid "Base data" msgid "Base data"
msgstr "Stammdaten" msgstr "Stammdaten"
#: index.php:278 #: index.php:279
msgid "Selection lists" msgid "Selection lists"
msgstr "Auswahllisten" msgstr "Auswahllisten"
#: index.php:280 #: index.php:281
msgid "Companies" msgid "Companies"
msgstr "Firmen" msgstr "Firmen"
#: index.php:283 #: index.php:284
msgid "Additional modules" msgid "Additional modules"
msgstr "Zusatzmodule" msgstr "Zusatzmodule"
#: index.php:285 measurement.php:10 #: index.php:286 measurement.php:10
msgid "Measurements" msgid "Measurements"
msgstr "Maße/Messungen" msgstr "Maße/Messungen"
#: index.php:287 search.php:10 search.php:31 #: index.php:288 search.php:10 search.php:31
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: index.php:301 #: index.php:302
msgid "Add additional yacht" msgid "Add additional yacht"
msgstr "Zusätzliche Yacht hinzufügen" msgstr "Zusätzliche Yacht hinzufügen"
#: index.php:336 #: index.php:337
msgid "Edit Yacht" msgid "Edit Yacht"
msgstr "Yacht bearbeiten" msgstr "Yacht bearbeiten"
#: index.php:340 #: index.php:341
msgid "Vesselname" msgid "Vesselname"
msgstr "Yachtname" msgstr "Yachtname"
#: index.php:348 #: index.php:349
msgid "LoA" msgid "LoA"
msgstr "LüA" msgstr "LüA"
#: index.php:352 #: index.php:353
msgid "LwL" msgid "LwL"
msgstr "LWL" msgstr "LWL"
@@ -848,15 +861,15 @@ msgstr "nicht zugeordnet"
#: measurement.php:154 #: measurement.php:154
msgid "Measurement" msgid "Measurement"
msgstr "" msgstr "Messung"
#: measurement.php:155 measurement.php:195 measurement.php:247 #: measurement.php:155 measurement.php:195 measurement.php:247
msgid "Note" msgid "Note"
msgstr "" msgstr "Notiz"
#: measurement.php:156 #: measurement.php:156
msgid "Measured" msgid "Measured"
msgstr "" msgstr "Gemessen"
#: measurement.php:157 measurement.php:214 measurement.php:266 #: measurement.php:157 measurement.php:214 measurement.php:266
#: provisions.php:105 provisions.php:148 provisions.php:179 provisions.php:209 #: provisions.php:105 provisions.php:148 provisions.php:179 provisions.php:209
@@ -865,7 +878,7 @@ msgstr "Einheit"
#: measurement.php:158 measurement.php:215 measurement.php:267 #: measurement.php:158 measurement.php:215 measurement.php:267
msgid "Accuracy" msgid "Accuracy"
msgstr "" msgstr "Genauigkeit"
#: measurement.php:186 #: measurement.php:186
msgid "Add measurement" msgid "Add measurement"
@@ -921,7 +934,7 @@ msgstr "Verantwortlich"
#: projects.php:204 #: projects.php:204
msgid "Assigned tasks" msgid "Assigned tasks"
msgstr "" msgstr "Zugeordnete Aufgaben"
#: projects.php:213 task.php:10 task.php:94 task.php:127 task.php:149 #: projects.php:213 task.php:10 task.php:94 task.php:127 task.php:149
msgid "Task" msgid "Task"
Binary file not shown.
+228
View File
@@ -0,0 +1,228 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="1024"
height="350"
viewBox="0 0 1024 350"
version="1.1"
id="svg5"
xml:space="preserve"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs2" /><g
id="layer2"
transform="translate(-42.346999,-246.66202)"
style="display:inline"><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:8, 4, 2.00001, 4;stroke-dashoffset:0;stroke-opacity:1"
d="M 42.346999,421.58603 H 1066.347"
id="path399" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 43.434741,421.43502 c 0,0 0.413166,-22.42089 3.894359,-39.92496 8.859879,-44.54909 33.485118,-67.94835 93.87163,-87.80423 71.79884,-23.60841 231.35367,-47.44953 338.07331,-45.17591 58.4656,1.24559 128.71431,3.06837 239.1874,30.59247 125.0131,31.14672 271.98631,88.99119 345.78696,137.98517 0,0 0.7865,1.03131 0.972,1.63871 0.3052,0.99905 0.1801,3.12866 0.1801,3.12866"
id="path1004" /><use
x="0"
y="0"
xlink:href="#path1004"
id="use1064"
transform="matrix(1,0,0,-1,-0.01073228,843.75335)" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 139.7533,294.65233 V 549.05234"
id="path1076" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 128.29598,298.88554 c 0,0 -21.11372,48.32873 -21.56094,122.83479 -0.44721,74.50606 21.56094,123.48728 21.56094,123.48728"
id="path1076-35" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 402.02685,250.22253 V 593.10734"
id="path1076-3" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 695.82365,273.60369 V 570.34813"
id="path1076-3-6" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 974.92654,368.52425 V 475.27079"
id="path1076-3-7" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 401.65156,395.91532 16.33947,0.25844 9.20403,6.2887 v 37.82526 l -9.58816,6.37693 -15.47101,-0.0987"
id="path1076-3-7-6" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 801.73363,302.80958 -31.4949,108.23557 c 0,0 -1.42093,6.22521 -4.07514,8.2393 -2.65422,2.01408 -8.34518,1.9487 -8.34518,1.9487 l -61.90601,0.65758"
id="path1076-3-7-5" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 401.64365,402.99504 25.42188,0.24674"
id="path1076-3-7-2" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 651.58478,265.09859 0.0654,16.97081 c 0,0 -0.0443,2.9577 1.21701,4.21223 1.26135,1.25454 4.18744,1.39735 4.18744,1.39735 l 38.46261,0.46355"
id="path1076-3-7-2-23" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 651.19485,579.2696 -0.29569,-20.46052 c 0,0 -0.0443,-2.9577 1.21701,-4.21223 1.26135,-1.25454 4.18744,-1.39735 4.18744,-1.39735 l 38.46261,-0.46355"
id="path1076-3-7-2-23-7" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 504.33323,356.64322 191.08091,0.0899"
id="path1076-3-7-2-8" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 502.31654,536.64023 192.37631,0.18737"
id="path1076-3-7-2-8-3" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 696.53623,510.95545 70.66206,0.9339 c 0,0 3.31235,0.4436 4.93303,2.10718 1.62068,1.66359 1.2522,5.62583 1.2522,5.62583 l -0.38077,29.49526"
id="path1076-3-7-2-8-3-2" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 502.56723,547.20526 193.21913,0.068"
id="path1076-3-7-2-8-3-6" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 502.48346,484.16125 193.24473,0.20445"
id="path1076-3-7-2-8-28" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 534.58647,400.47434 98.71712,0.0899"
id="path1076-3-7-2-8-2" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 696.01574,307.71152 55.24866,-0.0874 -0.0157,6.67084 44.21451,11.16307"
id="path1076-3-7-2-8-2-6" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 534.73324,440.50878 98.71712,0.0899"
id="path1076-3-7-2-8-2-0" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 503.84503,293.91997 191.36387,0.0899"
id="path1076-3-7-2-8-7" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 503.9692,303.58926 191.63005,0.0899"
id="path1076-3-7-2-8-9" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999995px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 402.26463,327.90275 52.68334,0.0717"
id="path1076-3-7-2-2" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 402.56366,277.97299 52.03591,-0.36493 0.12016,93.57016 c 0,0 -0.0926,3.8297 1.56132,5.47701 1.65393,1.64731 5.49969,1.45768 5.49969,1.45768 l 35.98533,-0.33129 c 0,0 3.87823,-0.0951 5.04019,-1.26194 1.16197,-1.16685 1.46298,-5.38591 1.46298,-5.38591 l -0.44027,-88.53586"
id="path1076-3-7-2-6" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 402.26492,274.26588 93.196,0.24674"
id="path1076-3-7-2-93" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 544.53012,276.34531 106.92365,0.35943"
id="path1076-3-7-2-93-6" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 695.93516,350.67318 7.36374,-0.20407"
id="path1076-3-7-2-93-6-10" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 743.95201,341.91962 7.83071,-0.0409"
id="path1076-3-7-2-93-6-10-6" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 784.1852,363.76065 -31.75424,-9.30605 -0.66181,-14.90089"
id="path1076-3-7-2-93-6-10-6-3" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 551.81491,562.85112 99.14579,0.35686"
id="path1076-3-7-2-93-6-1" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 403.06785,563.89524 100.17136,0.35943"
id="path1076-3-7-2-93-6-1-4" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 447.48689,563.90368 0.0748,-76.78068 c 0,0 -0.13956,-2.06257 0.90458,-3.10291 1.04414,-1.04034 3.77205,-1.05573 3.77205,-1.05573 l 49.88028,0.13333"
id="path1076-3-7-2-93-6-1-4-7" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999992px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 696.01205,484.2988 73.26552,0.35943"
id="path1076-3-7-2-93-6-1-9" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 495.29951,248.84789 0.39468,28.41618 c 0,0 0.072,2.32949 1.25608,3.49714 1.18007,1.16371 3.73974,1.22974 3.73974,1.22974 l 38.98011,0.34926 c 0,0 2.43728,0.21795 3.50237,-0.86043 1.06509,-1.07837 1.39765,-3.27069 1.39765,-3.27069 l -0.3652,-26.77235"
id="path1076-3-7-2-93-6-0" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 502.39242,594.61082 0.53702,-31.56582 c 0,0 0.072,-2.32949 1.25608,-3.49714 1.18007,-1.16371 3.73974,-1.22974 3.73974,-1.22974 l 38.98011,-0.34926 c 0,0 2.43728,-0.21795 3.50237,0.86043 1.06509,1.07837 1.39765,3.27069 1.39765,3.27069 l -0.63183,30.19019"
id="path1076-3-7-2-93-6-0-9" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 401.76546,439.81002 25.42188,0.24674"
id="path1076-3-7-2-9" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 401.59513,513.85959 30.68214,0.20492 c 0,0 3.68856,-0.0819 5.41293,1.64167 1.72437,1.72361 1.31946,6.35536 1.31946,6.35536 l 0.29673,41.65952"
id="path1076-3-7-2-9-0" /><rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="rect1290"
width="34.317268"
height="34.170086"
x="462.3371"
y="287.16812" /><rect
style="fill:none;stroke:#000000;stroke-width:0.999992;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="rect1290-1"
width="47.632832"
height="40.752644"
x="404.82559"
y="283.51431" /><ellipse
style="fill:none;stroke:#000000;stroke-width:0.999998;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="path1424"
ry="6.000001"
rx="6"
cy="303.68939"
cx="417.05225" /><ellipse
style="fill:none;stroke:#000000;stroke-width:0.999998;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="path1424-2"
ry="8.4151545"
rx="8.4151535"
cy="303.81128"
cx="438.55051" /><ellipse
style="fill:none;stroke:#000000;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="path1424-2-7"
ry="15.097409"
rx="15.097408"
cy="351.33347"
cx="479.57416" /><ellipse
style="fill:none;stroke:#000000;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="path1424-2-7-0"
ry="18.202652"
rx="18.20265"
cy="351.30994"
cx="479.76828" /><ellipse
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999995;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="path1492"
cx="479.61801"
cy="351.24689"
rx="1.25"
ry="1.2500011" /><ellipse
style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999995;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0"
id="path1492-3"
cx="772.22894"
cy="336.68265"
rx="1.25"
ry="1.2500011" /><rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1845"
width="99.039169"
height="116.22474"
x="534.25354"
y="362.54782"
ry="15.238461"
rx="15.238461" /><rect
style="display:inline;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1845-5"
width="45.984451"
height="62.446701"
x="448.10367"
y="492.0787"
ry="2.0723352"
rx="1.7443042" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 797.4128,317.7506 177.46899,73.76384"
id="path1076-3-7-2-8-3-9" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 773.41353,532.0867 974.17655,453.94193"
id="path1076-3-7-2-8-3-9-3" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 769.5503,413.84253 -0.11195,98.88443"
id="path1076-3-7-2-8-3-9-1" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.999996px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 502.00607,594.03117 0.39909,-115.12291"
id="path1076-3-7-2-93-6-1-4-4" /><ellipse
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2586"
cx="842.2193"
cy="16.312605"
rx="15.294"
ry="8.6455069"
transform="matrix(0.92200433,0.38717956,-0.38512453,0.92286461,0,0)" /><path
id="rect2588"
style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
d="m 708.60436,322.87367 28.9865,0.11798 c 0,0 7.05368,11.6802 6.12407,22.83012 -1.29582,15.5423 -11.79702,23.20181 -20.47841,23.34588 -8.68138,0.14406 -19.12609,-8.92412 -20.26466,-22.12809 -1.1626,-13.48269 5.6325,-24.16589 5.6325,-24.16589 z" /><rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2591"
width="31.258133"
height="2.8399668"
x="707.59399"
y="319.94205" /><path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3379"
d="m 696.28885,339.36851 a 27.723545,29.856203 0 0 1 13.87194,-25.92888 27.723545,29.856203 0 0 1 27.78702,0.0523 27.723545,29.856203 0 0 1 13.78761,25.98099" /></g></svg>

After

Width:  |  Height:  |  Size: 16 KiB

+565
View File
@@ -0,0 +1,565 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="297.52466mm"
height="81.989235mm"
viewBox="0 0 297.52466 81.989235"
version="1.1"
id="svg8"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2" />
<metadata
id="metadata5">
<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>
<g
id="layer2"
style="display:inline"
transform="translate(-4.9919548e-6,-7.2188924)">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.072, 0.536, 0.268, 0.536;stroke-dashoffset:0;stroke-opacity:1"
d="m 297.50974,51.957452 c -2.54837,0.522337 -297.50950858727,0 -297.50950858727,0"
id="path857" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93889px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="14.994959"
y="111.1092"
id="text871" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93889px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="23.346582"
y="101.42891"
id="text875" />
<path
id="path876"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 131.94713,88.921381 C 79.538728,88.118693 40.621189,76.509143 13.138942,65.716597 9.4377657,64.26311 7.3577907,58.467555 7.3577929,51.986064 7.357795,45.504573 9.43777,39.709018 13.138946,38.255531 40.621193,27.462985 79.538732,15.853435 131.94713,15.050747 c 59.4702,-0.910847 118.43934,15.674887 150.19278,33.069941 3.21837,1.763079 4.91403,2.536369 4.93604,3.912148 0.0238,1.484392 -1.80221,2.289993 -5.07569,4.107787 -31.60892,17.55272 -90.65352,33.690523 -150.05313,32.780758 z" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922"
width="55.100632"
height="18.421066"
x="118.57415"
y="42.64901" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 173.64807,23.729136 -42.2967,-0.003"
id="path900-3-5" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 173.37561,78.984854 -42.2967,-0.003"
id="path900-3-5-6" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922-0"
width="56.489697"
height="18.421066"
x="46.009666"
y="42.387173" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922-0-9"
width="22.602045"
height="14.7169"
x="78.309814"
y="44.316753" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922-2"
width="20.111683"
height="18.421066"
x="173.69563"
y="42.598049" />
<g
id="g406"
transform="translate(-0.25790116,-0.22087206)">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264585px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 245.90312,11.151321 H 53.066858"
id="path92" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="50.922585"
y="10.01153"
id="text100"><tspan
id="tspan98"
x="50.922585"
y="10.01153"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">11</tspan></text>
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 53.198069,11.151321 v 2.14745"
id="path102" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 72.455332,11.151321 v 2.14745"
id="path102-6" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 91.712587,11.151321 v 2.14745"
id="path102-6-2" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 110.96984,11.151321 v 2.14745"
id="path102-6-5" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 130.2271,11.151321 v 2.14745"
id="path102-6-4" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 149.48435,11.151321 v 2.14745"
id="path102-6-49" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 168.74161,11.151321 v 2.14745"
id="path102-6-9" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 187.99886,11.151321 v 2.14745"
id="path102-6-3" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 207.25612,11.151321 v 2.14745"
id="path102-6-6" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 226.51337,11.151321 v 2.14745"
id="path102-6-0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 245.77062,11.151321 v 2.14745"
id="path102-6-50" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="70.128586"
y="10.058039"
id="text100-9"><tspan
id="tspan98-4"
x="70.128586"
y="10.058039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">10</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="90.65728"
y="10.058039"
id="text100-3"><tspan
id="tspan98-5"
x="90.65728"
y="10.058039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">9</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="109.82691"
y="10.058039"
id="text100-1"><tspan
id="tspan98-7"
x="109.82691"
y="10.058039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">8</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="129.16252"
y="10.01153"
id="text100-1-4"><tspan
id="tspan98-7-3"
x="129.16252"
y="10.01153"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">7</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="148.35144"
y="10.058039"
id="text100-1-1"><tspan
id="tspan98-7-4"
x="148.35144"
y="10.058039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">6</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="167.61243"
y="10.01153"
id="text100-1-6"><tspan
id="tspan98-7-9"
x="167.61243"
y="10.01153"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">5</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="186.88721"
y="10.01153"
id="text100-1-42"><tspan
id="tspan98-7-2"
x="186.88721"
y="10.01153"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">4</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="206.12114"
y="10.058039"
id="text100-1-42-6"><tspan
id="tspan98-7-2-4"
x="206.12114"
y="10.058039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">3</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="225.43767"
y="10.058039"
id="text100-1-42-1"><tspan
id="tspan98-7-2-2"
x="225.43767"
y="10.058039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">2</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="244.58755"
y="10.01153"
id="text100-1-42-8"><tspan
id="tspan98-7-2-8"
x="244.58755"
y="10.01153"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.264583px">1</tspan></text>
</g>
<rect
style="display:inline;fill:none;stroke:#000000;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922-2-8"
width="8.7624807"
height="16.456635"
x="102.49936"
y="43.416161" />
<rect
style="display:inline;fill:none;stroke:#000000;stroke-width:0.499999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922-2-8-5"
width="7.256609"
height="16.456635"
x="111.26184"
y="43.416161" />
<rect
style="display:inline;fill:none;stroke:#000000;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922-2-8-9"
width="1.6719171"
height="9.3004932"
x="112.68187"
y="47.161346" />
<rect
style="display:inline;fill:none;stroke:#000000;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect922-2-8-9-7"
width="1.6719171"
height="9.3004932"
x="115.94128"
y="47.161343" />
<g
id="g1486">
<path
id="rect1480"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
d="m 85.503866,22.359685 c 2.139859,0.464897 1.683798,4.068416 1.683798,4.068416 l -12.348148,1.637026 c 3.058421,-3.032738 8.275821,-6.310859 10.66435,-5.705442 z" />
<circle
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="path1458"
cx="84.634697"
cy="24.598309"
r="1.9285824" />
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="path1458-5"
cx="84.610855"
cy="24.60216"
r="1.2737721" />
</g>
<use
x="0"
y="0"
xlink:href="#g1486"
id="use1488"
transform="matrix(1,0,0,-1,-0.137884,103.53458)"
width="100%"
height="100%" />
<path
id="rect1490"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
d="M 49.584679,35.969709 88.485831,29.511492 88.626147,42.079028 49.724995,42.04028 Z" />
<use
x="0"
y="0"
xlink:href="#rect1490"
id="use1493"
width="100%"
height="100%"
transform="matrix(1,0,0,-1,-0.24155501,103.19789)" />
</g>
<g
id="layer6"
transform="translate(-4.9919548e-6,-7.2188924)">
<path
id="rect1496"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
d="m 44.154934,34.871259 c 0,0 20.961465,-5.262667 30.684582,-6.806132 9.723117,-1.543465 27.510004,-2.665231 27.510004,-2.665231 l -0.0935,52.504457 c 0,0 -18.444758,-1.090784 -27.550542,-2.556283 C 64.474367,73.701466 44.412181,68.362831 44.412181,68.362831 Z" />
</g>
<g
id="layer5"
style="display:inline;opacity:1"
transform="translate(-4.9919548e-6,-7.2188924)">
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 193.80329,19.805607 0.008,64.370035"
id="path900-3-6-2" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 173.67838,16.943835 0.008,70.058576"
id="path900-3-6" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 102.4915,16.698879 0.008,70.455451"
id="path900-3-6-7" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 131.33705,15.077324 -0.0153,27.575113"
id="path900-3" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 131.3373,61.065148 131.322,88.897667"
id="path900" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1"
d="m 44.891171,27.169863 0.008,49.33839"
id="path900-3-6-7-4" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1"
d="m 91.276915,17.973278 0.008,68.060985"
id="path900-3-6-7-4-1" />
</g>
<g
id="layer4"
style="display:inline"
transform="translate(-4.9919548e-6,-7.2188924)">
<g
id="g930"
style="display:inline">
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.299999;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path868-3-6"
cx="185.99889"
cy="68.951302"
rx="5.6124234"
ry="5.4470596" />
<circle
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path868-3"
cx="185.99889"
cy="68.951302"
r="3.6280489" />
<circle
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path868"
cx="185.99889"
cy="68.951302"
r="0.98221546" />
</g>
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
id="rect1033"
width="10.869384"
height="19.97006"
x="103.68472"
y="21.482302" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect940"
width="9.5758209"
height="9.6164722"
x="104.2767"
y="30.339182"
ry="1.8851563"
rx="1.8851564" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path942"
cx="108.99713"
cy="32.778923"
rx="0.51535732"
ry="0.5191372" />
<g
id="g1376"
transform="translate(0.04677217,0.65481034)">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 105.29127,22.309601 v 5.661088 h 0.0346"
id="path1035" />
<use
x="0"
y="0"
xlink:href="#path1035"
id="use1355"
transform="translate(1.2550567)"
width="100%"
height="100%" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 107.80138,22.309601 v 5.661088 h 0.0346"
id="use1357" />
<use
x="0"
y="0"
xlink:href="#path1035"
id="use1361"
transform="translate(3.7651617)"
width="100%"
height="100%" />
<use
x="0"
y="0"
xlink:href="#path1035"
id="use1363"
transform="translate(5.0202163)"
width="100%"
height="100%" />
<use
x="0"
y="0"
xlink:href="#path1035"
id="use1365"
transform="translate(6.2752723)"
width="100%"
height="100%" />
<use
x="0"
y="0"
xlink:href="#path1035"
id="use1367"
transform="translate(7.5303204)"
width="100%"
height="100%" />
</g>
</g>
<g
id="layer3"
style="display:none"
transform="translate(-4.9919548e-6,-7.2188924)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="179.71281"
y="83.303185"
id="text879-0-0-0"><tspan
id="tspan1249"
x="179.71281"
y="83.303185">Bug </tspan><tspan
x="179.71281"
y="86.760406"
id="tspan1194">Verteilung</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="139.10905"
y="84.469315"
id="text879-0-0-0-5-3-0"><tspan
id="tspan1249-3-6-6"
x="139.10905"
y="84.469315">Schwalbennest</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="74.3414"
y="72.499023"
id="text879"><tspan
id="tspan959"
x="74.3414"
y="72.499023">STB Verteilung</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="77.559372"
y="29.988302"
id="text879-4"><tspan
id="tspan921"
x="77.559372"
y="29.988302">BB Verteilung</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="110.81398"
y="68.612701"
id="text879-0-0-0-5-9"><tspan
id="tspan1249-3-1"
x="110.81398"
y="68.612701">Karten-</tspan><tspan
x="110.81398"
y="72.069923"
id="tspan1072">tisch</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="111.57834"
y="29.485521"
id="text879-0-0-0-5"><tspan
id="tspan1249-3"
x="111.57834"
y="29.485521">Pantry</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="177.20976"
y="32.02417"
id="text879-0-0-0-5-2"><tspan
id="tspan1249-3-7"
x="177.20976"
y="32.02417">Schrank</tspan></text>
<rect
style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke:#000000;stroke-width:0.25147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect861-7-1-2-9"
width="4.7485304"
height="4.7485304"
x="174.03938"
y="75.748322" />
<rect
style="display:inline;opacity:1;fill:#8f8f8f;fill-opacity:1;stroke:#000000;stroke-width:0.25147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect861-8"
width="4.7485304"
height="4.7485304"
x="92.417618"
y="74.289474" />
<rect
style="display:inline;opacity:1;fill:#8f8f8f;fill-opacity:1;stroke:#000000;stroke-width:0.25147;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect861-7"
width="4.7485304"
height="4.7485304"
x="85.710884"
y="31.789" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52778px;line-height:98%;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="136.93524"
y="20.967636"
id="text879-0-0-0-5-3"><tspan
id="tspan1249-3-6"
x="136.93524"
y="20.967636">Schwalbennest</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

+26
View File
@@ -0,0 +1,26 @@
<svg
width="680.8349"
height="205.42085"
viewBox="0 0 180.13756 54.350934"
version="1.1"
id="svg5"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs2" />
<g
id="layer1"
transform="translate(-18.454117,-34.670903)">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 18.719809,61.846371 18.587517,51.734929 c 0,0 14.698452,-6.829606 22.491781,-8.894215 18.280597,-4.842895 36.646466,-7.606499 56.167649,-7.993756 29.649633,-0.588182 48.780143,4.813228 71.891193,12.372959 10.39946,3.401709 29.38622,14.626454 29.38622,14.626454"
id="path245" />
<use
x="0"
y="0"
xlink:href="#path245"
id="use461"
transform="matrix(1,0,0,-1,-4.9118388e-8,123.69274)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 949 B

+119
View File
@@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="1024"
height="320"
viewBox="0 0 1024 320"
version="1.1"
id="svg5"
xml:space="preserve"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs2" /><g
id="layer1"
style="display:inline"><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 4.7564394,161.20719 c 0,0 0.471033,-35.03817 3.084833,-52.12129 C 10.455072,92.002775 19.113066,54.019854 19.113066,54.019854 c 0,0 237.386924,-50.9732159 427.508914,-51.3200985 112.69642,-0.2056176 229.53573,21.3637835 337.85718,53.4145115 83.65608,24.752606 206.75846,89.855223 230.78264,102.898213 2.7308,1.48254 3.0541,2.34797 3.0541,2.34797"
id="path304" /><use
x="0"
y="0"
xlink:href="#path304"
id="use1010"
transform="matrix(1,0,0,-1,0,322.41438)" /><path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.00001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:8, 4, 2.00001, 4;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,161.20719 H 1024"
id="path399-3" /></g><g
id="layer3"><circle
style="fill:none;stroke:#000000;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="path1472"
cx="343.1806"
cy="119.22655"
r="3.5" /><circle
style="fill:none;stroke:#000000;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="path1472-6"
cx="343.2038"
cy="202.40048"
r="3.5" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 232.25513,118.60427 231.34436,59.736949"
id="path1496-7" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 381.04311,253.78696 380.13234,72.230698"
id="path1496-7-27" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 453.57003,37.786467 c 0,0 -30.36192,-14.636655 -46.76443,-17.370472 C 363.74318,13.238754 288.41087,18.892796 249.35508,23.196034 219.20215,26.51834 78.463947,48.185465 39.149362,58.274585 36.081163,59.061963 32.037918,62.71344 30.243447,70.899764 22.663066,105.48124 19.556535,161.10115 19.556535,161.10115"
id="path1496-7-1" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 771.95393,161.20248 c 0,0 -1.10538,-18.71346 -3.49712,-35.38421 C 766.06508,109.14752 763.26259,93.314939 753.92892,88.955435 749.23125,86.761284 698.5793,66.74329 623.59957,53.258522 548.61984,39.773754 453.58138,37.676108 453.58138,37.676108"
id="path1496-7-9" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 136.36462,72.064778 c 0,0 63.25256,-9.091711 95.09427,-12.671006 31.84171,-3.579295 95.91662,-8.792407 95.91662,-8.792407 0,0 17.01762,-0.619404 28.50061,8.580214 11.48299,9.199618 13.44951,20.352359 13.44951,20.352359 l 0.16541,28.896742 -14.94897,0.67359"
id="path1496-7-2" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
d="M 880.08002,229.73576 879.31196,92.451081"
id="path1496-7-56" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 232.74626,264.01575 231.9782,204.9673"
id="path1496-7-5" /><path
id="rect1619"
style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
d="M 136.42508,126.03884 351.62653,109.93087 351.29824,211.56055 135.86795,195.57361 Z" /><path
id="rect1619-3"
style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
d="M 54.054357,84.18244 135.95721,72.242986 135.6778,250.37958 55.043999,237.67291 c 0,0 -8.488883,-50.82604 -8.661692,-76.48264 -0.173746,-25.79577 7.67205,-77.00783 7.67205,-77.00783 z" /><rect
style="fill:none;stroke:#000000;stroke-width:0.999998;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect1644"
width="20.164557"
height="22.050278"
x="662.35199"
y="149.83586"
ry="0.84162629"
rx="0.61463451" /><path
id="rect1668"
style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
d="m 885.10233,109.2702 c 1.06982,-0.14057 1.84632,0.13022 1.84632,0.13022 l 41.9788,17.62003 c 0,0 2.40087,1.28572 3.09844,2.38722 0.83178,1.31345 0.99389,4.55688 0.99389,4.55688 l -0.0312,57.1741 c 0,0 -0.18636,2.44979 -0.85345,3.41508 -0.7284,1.054 -3.15865,2.19008 -3.15865,2.19008 l -41.27782,17.01483 c 0,0 -1.8563,0.68346 -2.72215,0.17495 -0.53646,-0.31507 -0.59181,-1.82719 -0.59181,-1.82719 l -0.45513,-101.26662 c 0,0 -0.13024,-1.39838 1.17275,-1.56958 z" /><use
x="0"
y="0"
xlink:href="#path1496-7-2"
id="use1715"
transform="matrix(1,0,0,-1,-1.3136392,322.94607)" /><use
x="0"
y="0"
xlink:href="#path1496-7-9"
id="use1763"
transform="matrix(1,0,0,-1,0.00263093,322.33472)" /><use
x="0"
y="0"
xlink:href="#path1496-7-1"
id="use1813"
transform="matrix(1,0,0,-1,0.13383714,322.45901)" /><rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect1865"
width="8.6227942"
height="4.0267859"
x="607.23108"
y="-83.712563"
transform="rotate(9.7314504)" /><rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect1865-9"
width="8.6227942"
height="4.0267859"
x="552.1145"
y="-400.11908"
transform="matrix(0.98561083,-0.16903042,-0.16903042,-0.98561083,0,0)" /><rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect1865-0"
width="8.6227942"
height="4.0267859"
x="665.78137"
y="-81.791229"
transform="rotate(9.7314504)" /><rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect1865-0-3"
width="8.6227942"
height="4.0267859"
x="610.72351"
y="-399.48615"
transform="matrix(0.98561083,-0.16903042,-0.16903042,-0.98561083,0,0)" /></g></svg>

After

Width:  |  Height:  |  Size: 7.0 KiB