map online
This commit is contained in:
parent
c2756a77a9
commit
30ffbfe964
Binary file not shown.
|
@ -0,0 +1,20 @@
|
||||||
|
:root {
|
||||||
|
--b9h-color-bg: #1c2729;
|
||||||
|
--b9h-color-bg-alpha: rgba(28,39,41,0.8);
|
||||||
|
--b9h-color-fg: #b3bfb6;
|
||||||
|
--b9h-color-accent: #ff5821;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: var(--b9h-color-bg);
|
||||||
|
color: var(--b9h-color-fg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.marker {
|
||||||
|
background-color: var(--b9h-color-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: LemonMilk;
|
||||||
|
src: url("../fonts/LemonMilk/LEMONMILK-Bold.otf");
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: LemonMilk;
|
||||||
|
src: url("../fonts/LemonMilk/LEMONMILK-Light.otf");
|
||||||
|
font-weight: 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Inter;
|
||||||
|
src: url("../fonts/inter/Inter-Light.woff");
|
||||||
|
font-weight: 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Inter;
|
||||||
|
src: url("../fonts/inter/Inter-Regular.woff");
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-family: Inter;
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -0,0 +1,109 @@
|
||||||
|
@import url("https://file.brz9.dev/web/css/normalize.css");
|
||||||
|
@import url("./color.css");
|
||||||
|
@import url("./map.css");
|
||||||
|
@import url("./font.css");
|
||||||
|
|
||||||
|
header {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
height: 100vh;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
section#logo {
|
||||||
|
position: fixed;
|
||||||
|
left: 5px;
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
section#lang {
|
||||||
|
position: fixed;
|
||||||
|
right: 5px;
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
section#map-container {
|
||||||
|
position: fixed;
|
||||||
|
top: 40px;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#map {
|
||||||
|
height: 300px;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
position: fixed;
|
||||||
|
top: 340px;
|
||||||
|
bottom: 0px;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#list {
|
||||||
|
overflow-y: scroll;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-top: 10px
|
||||||
|
scrollbar-width: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#list::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.marker {
|
||||||
|
position: absolute;
|
||||||
|
height: 5px;
|
||||||
|
left: 0;
|
||||||
|
width: 0;
|
||||||
|
bottom: -10px;
|
||||||
|
transition: 0.5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.listchild {
|
||||||
|
height: 0%;
|
||||||
|
max-height: 0px;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: height 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.listchild.active {
|
||||||
|
height: 100%;
|
||||||
|
max-height: none;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.listname {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.listname h3 {
|
||||||
|
margin: 0px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.listname span.listicon {
|
||||||
|
margin: 5px;
|
||||||
|
float: left;
|
||||||
|
transform: rotate(0deg);
|
||||||
|
transition: transform 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.listname.active span.listicon {
|
||||||
|
float: left;
|
||||||
|
transform: rotate(-180deg);
|
||||||
|
transition: transform 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
section.listchild {
|
||||||
|
display: block;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
d3e57bdb-3b07-4115-9278-c37ec26a282a
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 140 KiB |
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
Binary file not shown.
After Width: | Height: | Size: 486 KiB |
|
@ -0,0 +1,34 @@
|
||||||
|
LEMON MILK.otf ver 5.0 (donationware)
|
||||||
|
|
||||||
|
Need lowercases of LEMON MILK?
|
||||||
|
|
||||||
|
Wait no more! LEMON MILK Pro is available now.
|
||||||
|
Get LEMON MILK with lowercases, covering extended Latin, Cyrillic, and Greek.
|
||||||
|
Moreover, it now has 18 fonts + 2 variable fonts ranging from thin to heavy.
|
||||||
|
|
||||||
|
>> Go check https://www.marsnev.com now to learn more. <<
|
||||||
|
|
||||||
|
|
||||||
|
----------IMPORTANT NOTE----------
|
||||||
|
|
||||||
|
This version of LEMON MILK is absolutely free for personal, educational, non-profit, or charitable use.
|
||||||
|
For commercial use, kindly donate me (pay as you want) as an appreciation. If you want to donate, my PayPal address is marsnev@marsnev.com
|
||||||
|
Every donation is greatly appreciated.
|
||||||
|
|
||||||
|
If you need further information,
|
||||||
|
kindly check my F.A.Q page at: http://blog.marsnev.com/p/faq.html
|
||||||
|
|
||||||
|
if you cannot get the answers there,
|
||||||
|
kindly contact me at:
|
||||||
|
email address: marsnev@marsnev.com
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Thanks for being supportive,
|
||||||
|
MARSNEV
|
||||||
|
|
||||||
|
https://www.marsnev.com
|
||||||
|
twitter.com/MARSNEV
|
||||||
|
instagram.com/MARSNEV
|
||||||
|
behance.com/MARSNEV
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
|
||||||
|
|
||||||
|
To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
|
||||||
|
|
||||||
|
You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
|
||||||
|
|
||||||
|
You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
|
|
@ -0,0 +1,164 @@
|
||||||
|
body {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: 1em;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #555;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 1.5em;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
small {
|
||||||
|
font-size: .66666667em;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #e74c3c;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
a:hover, a:focus {
|
||||||
|
box-shadow: 0 1px #e74c3c;
|
||||||
|
}
|
||||||
|
.bshadow0, input {
|
||||||
|
box-shadow: inset 0 -2px #e7e7e7;
|
||||||
|
}
|
||||||
|
input:hover {
|
||||||
|
box-shadow: inset 0 -2px #ccc;
|
||||||
|
}
|
||||||
|
input, fieldset {
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: 1em;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
color: inherit;
|
||||||
|
line-height: 1.5;
|
||||||
|
height: 1.5em;
|
||||||
|
padding: .25em 0;
|
||||||
|
}
|
||||||
|
input:focus {
|
||||||
|
outline: none;
|
||||||
|
box-shadow: inset 0 -2px #449fdb;
|
||||||
|
}
|
||||||
|
.glyph {
|
||||||
|
font-size: 16px;
|
||||||
|
width: 15em;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
margin-right: 4em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
float: left;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.liga {
|
||||||
|
width: 80%;
|
||||||
|
width: calc(100% - 2.5em);
|
||||||
|
}
|
||||||
|
.talign-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.talign-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.bgc1 {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
.fgc1 {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
.fgc0 {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
.mvm {
|
||||||
|
margin-top: .75em;
|
||||||
|
margin-bottom: .75em;
|
||||||
|
}
|
||||||
|
.mtn {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
.mtl, .mal {
|
||||||
|
margin-top: 1.5em;
|
||||||
|
}
|
||||||
|
.mbl, .mal {
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
.mal, .mhl {
|
||||||
|
margin-left: 1.5em;
|
||||||
|
margin-right: 1.5em;
|
||||||
|
}
|
||||||
|
.mhmm {
|
||||||
|
margin-left: 1em;
|
||||||
|
margin-right: 1em;
|
||||||
|
}
|
||||||
|
.mls {
|
||||||
|
margin-left: .25em;
|
||||||
|
}
|
||||||
|
.ptl {
|
||||||
|
padding-top: 1.5em;
|
||||||
|
}
|
||||||
|
.pbs, .pvs {
|
||||||
|
padding-bottom: .25em;
|
||||||
|
}
|
||||||
|
.pvs, .pts {
|
||||||
|
padding-top: .25em;
|
||||||
|
}
|
||||||
|
.unit {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.unitRight {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.size1of2 {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
.size1of1 {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.clearfix:before, .clearfix:after {
|
||||||
|
content: " ";
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
.clearfix:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
.hidden-true {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.textbox0 {
|
||||||
|
width: 3em;
|
||||||
|
background: #f1f1f1;
|
||||||
|
padding: .25em .5em;
|
||||||
|
line-height: 1.5;
|
||||||
|
height: 1.5em;
|
||||||
|
}
|
||||||
|
#testDrive {
|
||||||
|
display: block;
|
||||||
|
padding-top: 24px;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
.fs0 {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.fs1 {
|
||||||
|
font-size: 32px;
|
||||||
|
}
|
||||||
|
.fs2 {
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
.fs3 {
|
||||||
|
font-size: 32px;
|
||||||
|
}
|
||||||
|
.fs4 {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
.fs5 {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
if (!('boxShadow' in document.body.style)) {
|
||||||
|
document.body.setAttribute('class', 'noBoxShadow');
|
||||||
|
}
|
||||||
|
|
||||||
|
document.body.addEventListener("click", function(e) {
|
||||||
|
var target = e.target;
|
||||||
|
if (target.tagName === "INPUT" &&
|
||||||
|
target.getAttribute('class').indexOf('liga') === -1) {
|
||||||
|
target.select();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var fontSize = document.getElementById('fontSize'),
|
||||||
|
testDrive = document.getElementById('testDrive'),
|
||||||
|
testText = document.getElementById('testText');
|
||||||
|
function updateTest() {
|
||||||
|
testDrive.innerHTML = testText.value || String.fromCharCode(160);
|
||||||
|
if (window.icomoonLiga) {
|
||||||
|
window.icomoonLiga(testDrive);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function updateSize() {
|
||||||
|
testDrive.style.fontSize = fontSize.value + 'px';
|
||||||
|
}
|
||||||
|
fontSize.addEventListener('change', updateSize, false);
|
||||||
|
testText.addEventListener('input', updateTest, false);
|
||||||
|
testText.addEventListener('change', updateTest, false);
|
||||||
|
updateSize();
|
||||||
|
}());
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 378 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,200 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 100;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-Thin.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-Thin.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 100;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-ThinItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-ThinItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 200;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-ExtraLight.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-ExtraLight.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 200;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-ExtraLightItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-ExtraLightItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-Light.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-Light.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 300;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-LightItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-LightItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-Regular.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-Regular.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 400;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-Italic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-Italic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-Medium.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-Medium.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 500;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-MediumItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-MediumItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-SemiBold.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-SemiBold.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 600;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-SemiBoldItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-SemiBoldItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-Bold.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-Bold.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 700;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-BoldItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-BoldItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 800;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-ExtraBold.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-ExtraBold.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 800;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-ExtraBoldItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-ExtraBoldItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 900;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-Black.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-Black.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 900;
|
||||||
|
font-display: swap;
|
||||||
|
src: url("Inter-BlackItalic.woff2?v=3.19") format("woff2"),
|
||||||
|
url("Inter-BlackItalic.woff?v=3.19") format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------------------
|
||||||
|
Variable font.
|
||||||
|
Usage:
|
||||||
|
|
||||||
|
html { font-family: 'Inter', sans-serif; }
|
||||||
|
@supports (font-variation-settings: normal) {
|
||||||
|
html { font-family: 'Inter var', sans-serif; }
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter var';
|
||||||
|
font-weight: 100 900;
|
||||||
|
font-display: swap;
|
||||||
|
font-style: normal;
|
||||||
|
font-named-instance: 'Regular';
|
||||||
|
src: url("Inter-roman.var.woff2?v=3.19") format("woff2");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter var';
|
||||||
|
font-weight: 100 900;
|
||||||
|
font-display: swap;
|
||||||
|
font-style: italic;
|
||||||
|
font-named-instance: 'Italic';
|
||||||
|
src: url("Inter-italic.var.woff2?v=3.19") format("woff2");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------
|
||||||
|
[EXPERIMENTAL] Multi-axis, single variable font.
|
||||||
|
|
||||||
|
Slant axis is not yet widely supported (as of February 2019) and thus this
|
||||||
|
multi-axis single variable font is opt-in rather than the default.
|
||||||
|
|
||||||
|
When using this, you will probably need to set font-variation-settings
|
||||||
|
explicitly, e.g.
|
||||||
|
|
||||||
|
* { font-variation-settings: "slnt" 0deg }
|
||||||
|
.italic { font-variation-settings: "slnt" 10deg }
|
||||||
|
|
||||||
|
*/
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Inter var experimental';
|
||||||
|
font-weight: 100 900;
|
||||||
|
font-display: swap;
|
||||||
|
font-style: oblique 0deg 10deg;
|
||||||
|
src: url("Inter.var.woff2?v=3.19") format("woff2");
|
||||||
|
}
|
Binary file not shown.
|
@ -0,0 +1,53 @@
|
||||||
|
{
|
||||||
|
"resto":
|
||||||
|
{
|
||||||
|
"fr": "Restaurants",
|
||||||
|
"en": "Restaurants",
|
||||||
|
"it": "Ristoranti",
|
||||||
|
"list" : [
|
||||||
|
"gastro" : {
|
||||||
|
"fr": "Gastronomique",
|
||||||
|
"en": "Gastronomic",
|
||||||
|
"it": "Gastronomico",
|
||||||
|
"list": [
|
||||||
|
"g1" : {
|
||||||
|
"name": "San Telmo",
|
||||||
|
"xy": [232.32,3232.32],
|
||||||
|
"fr" : "Sur la Rue Hoche, bonne pizza, blablablablabla",
|
||||||
|
"en" : "smfdlkmlsk fmlskd fmlk msdlkf mlskdf m",
|
||||||
|
"it" : "msdfmlskdfmlksmdlfkmsdlfkmslkdf",
|
||||||
|
"addresse": ["23", "Rue Hoche", "06400", "Cannes"],
|
||||||
|
"menu_fr" : [
|
||||||
|
["Pizza Diavola", ["sauce tomate","mozza","chorizo"], "pizza"]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"db" :
|
||||||
|
{"cat": [{"resto" :
|
||||||
|
["italien":
|
||||||
|
["San telmo", "Salsa"]
|
||||||
|
]},
|
||||||
|
{"bar" :
|
||||||
|
["vin"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
"db" : {
|
||||||
|
"cat" : {
|
||||||
|
"resto" : {
|
||||||
|
"italien" : {
|
||||||
|
"SanTelmo" : {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"végé" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,120 @@
|
||||||
|
Vue.component('Accordeon', {
|
||||||
|
template : `
|
||||||
|
<section v-bind:id="this.list.id">
|
||||||
|
<a v-bind:href="this.href">
|
||||||
|
<span
|
||||||
|
v-on:click="toggleActive()"
|
||||||
|
class="listname"
|
||||||
|
:class="{ active: isActive }">
|
||||||
|
|
||||||
|
<h3 class="b9h-lang-fr">{{ this.list.nameFR }}</h3>
|
||||||
|
<h3 class="b9h-lang-en">{{ this.list.nameEN }}</h3>
|
||||||
|
<h3 class="b9h-lang-it">{{ this.list.nameIT }}</h3>
|
||||||
|
<span class="byl-icon-chevron-down listicon">
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
<section class="listchild" :class="{ active: isActive }">
|
||||||
|
<h3 v-for="i in this.list.sub"> {{ i.nameFR }} </h3>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
`,
|
||||||
|
props : {
|
||||||
|
list : Object
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
isActive : false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
href: function () {
|
||||||
|
return "#" + this.list.id;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods : {
|
||||||
|
donothing () {
|
||||||
|
},
|
||||||
|
toggleActive () {
|
||||||
|
this.isActive = !this.isActive
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
const jsonurl = "http://localhost:8080/asset/db.json"
|
||||||
|
let db2 = fetch(jsonurl)
|
||||||
|
|
||||||
|
let vm = new Vue({
|
||||||
|
el: '#root',
|
||||||
|
data: {
|
||||||
|
currentLang: 'fr',
|
||||||
|
db : {
|
||||||
|
restaurants : {
|
||||||
|
id : "resto",
|
||||||
|
nameFR : "Restaurant",
|
||||||
|
nameEN : "Restaurant",
|
||||||
|
nameIT : "Ristoranti",
|
||||||
|
sub : {
|
||||||
|
italiens : {
|
||||||
|
id: "restoital",
|
||||||
|
nameFR : "Italien",
|
||||||
|
nameEN : "Italian",
|
||||||
|
nameIT : "Italiano",
|
||||||
|
SanTelmo : {
|
||||||
|
name: "San Telmo"
|
||||||
|
},
|
||||||
|
Salsamenteria : {
|
||||||
|
name: "Salsamenteria di Parma"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
vege : {
|
||||||
|
id : "restovege",
|
||||||
|
nameFR : "Végétarien",
|
||||||
|
nameEN : "Vegan",
|
||||||
|
nameIT : "Vegetariano",
|
||||||
|
SanTelmo : {
|
||||||
|
name: "San Telmo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
hidelang: function(lang) {
|
||||||
|
langClass = "b9h-lang-" + lang;
|
||||||
|
langElms = document.getElementsByClassName(langClass);
|
||||||
|
for (i = 0; i < langElms.length; i++) {
|
||||||
|
langElms[i].style.display = 'none';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
hidelangs: function() {
|
||||||
|
this.hidelang('fr');
|
||||||
|
this.hidelang('en');
|
||||||
|
this.hidelang('it');
|
||||||
|
},
|
||||||
|
showlang: function(lang) {
|
||||||
|
this.hidelangs();
|
||||||
|
langClass = "b9h-lang-" + lang;
|
||||||
|
langElms = document.getElementsByClassName(langClass);
|
||||||
|
for (i = 0; i < langElms.length; i++) {
|
||||||
|
langElms[i].style.display = 'revert';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
setlang: function (lang) {
|
||||||
|
target = document.querySelector("#"+"tab-"+lang);
|
||||||
|
marker = document.querySelector("#lang-marker");
|
||||||
|
marker.style.left = target.offsetLeft + "px";
|
||||||
|
marker.style.width = target.offsetWidth + "px";
|
||||||
|
this.showlang(lang);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted: function() {
|
||||||
|
console.log("mounting");
|
||||||
|
this.setlang('fr');
|
||||||
|
console.log("mounted");
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
|
@ -25,5 +25,6 @@ console.log("getMaxZoom:")
|
||||||
console.log(map.getMaxZoom())
|
console.log(map.getMaxZoom())
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
min/max = 163
|
||||||
map.setView([-163,-163],2)
|
map.setView([-163,-163],2)
|
||||||
*/
|
*/
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"db" : {
|
||||||
|
"restaurants" : {
|
||||||
|
"id" : "resto",
|
||||||
|
"nameFR" : "Restaurant",
|
||||||
|
"nameEN" : "Restaurant",
|
||||||
|
"nameIT" : "Ristoranti",
|
||||||
|
"sub" : {
|
||||||
|
"italiens" : {
|
||||||
|
"id": "restoital",
|
||||||
|
"nameFR" : "Italien",
|
||||||
|
"nameEN" : "Italian",
|
||||||
|
"nameIT" : "Italiano",
|
||||||
|
"SanTelmo" : {
|
||||||
|
"name": "San Telmo"
|
||||||
|
},
|
||||||
|
"Salsamenteria" : {
|
||||||
|
"name": "Salsamenteria di Parma"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"vege" : {
|
||||||
|
"id" : "restovege",
|
||||||
|
"nameFR" : "Végétarien",
|
||||||
|
"nameEN" : "Vegan",
|
||||||
|
"nameIT" : "Vegetariano",
|
||||||
|
"SanTelmo" : {
|
||||||
|
"name": "San Telmo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -40,13 +40,13 @@
|
||||||
id="namedview3459"
|
id="namedview3459"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:snap-page="true"
|
inkscape:snap-page="true"
|
||||||
inkscape:zoom="3.7765109"
|
inkscape:zoom="3.3149742"
|
||||||
inkscape:cx="1210.6275"
|
inkscape:cx="1130.1114"
|
||||||
inkscape:cy="1049.6552"
|
inkscape:cy="1139.6495"
|
||||||
inkscape:window-x="0"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="21"
|
inkscape:window-y="21"
|
||||||
inkscape:window-maximized="0"
|
inkscape:window-maximized="0"
|
||||||
inkscape:current-layer="g6779"
|
inkscape:current-layer="layer9"
|
||||||
inkscape:snap-global="false"
|
inkscape:snap-global="false"
|
||||||
showguides="true"
|
showguides="true"
|
||||||
inkscape:guide-bbox="true"
|
inkscape:guide-bbox="true"
|
||||||
|
@ -60,7 +60,8 @@
|
||||||
inkscape:bbox-paths="true"
|
inkscape:bbox-paths="true"
|
||||||
inkscape:snap-smooth-nodes="true"
|
inkscape:snap-smooth-nodes="true"
|
||||||
inkscape:document-rotation="0"
|
inkscape:document-rotation="0"
|
||||||
inkscape:pagecheckerboard="true"><sodipodi:guide
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:snap-object-midpoints="true"><sodipodi:guide
|
||||||
position="0,2048"
|
position="0,2048"
|
||||||
orientation="1,0"
|
orientation="1,0"
|
||||||
id="guide3050" /><sodipodi:guide
|
id="guide3050" /><sodipodi:guide
|
||||||
|
@ -100,7 +101,7 @@
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer5"
|
id="layer5"
|
||||||
inkscape:label="ground"
|
inkscape:label="ground"
|
||||||
style="display:inline;opacity:0.7354029"
|
style="display:inline;opacity:1"
|
||||||
sodipodi:insensitive="true"><path
|
sodipodi:insensitive="true"><path
|
||||||
style="display:inline;opacity:1;fill:#1c2729;fill-opacity:0.989716;stroke:none;stroke-width:0.448;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;opacity:1;fill:#1c2729;fill-opacity:0.989716;stroke:none;stroke-width:0.448;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 992.16081,1183.1367 42.56099,-5.2249 13.4382,91.2049 -26.6602,39.6693 10.6288,7.1483 22.8685,-32.9555 17.5173,-10.7603 18.4781,0.9283 4.6673,-6.821 -4.8023,-0.2681 0.4446,-5.4868 3.9389,-7.2506 17.3551,-16.8868 22.4927,-8.5491 0.067,17.3491 -1.8552,-0.015 -0.7027,2.9571 9.1614,0.1981 -0.688,-3.0676 -1.8125,-0.091 -0.063,-17.9929 10.9268,-2.4662 23.4124,0.6007 0.4437,16.21 3.0319,0.024 -0.1983,-9.8439 30.5174,0.3705 52.7175,11.7149 7.4327,-1.1709 -4.5659,13.6208 -1.1712,-0.4322 -1.4998,3.9066 4.9114,1.4843 1.2396,-3.7754 -1.0333,-0.3511 4.6849,-13.9254 55.8877,25.6357 -4.9806,9.5665 2.472,1.3721 5.5907,-10.7167 92.3163,53.7084 -8.4089,13.2993 2.4267,1.6037 7.7598,-12.3973 2.0466,1.0915 77.647,50.9203 2.5232,69.2302 50.9332,4.2029 -2.8261,28.2204 -20.9097,-0.4002 -2.6434,39.0979 18.7288,0.6015 -6.7909,59.9332 -14.873,-1.5178 -5.5836,36.1869 -21.8286,-10.8136 -6.0409,10.8712 19.0717,10.9411 -19.0699,39.1337 -48.3133,-22.0614 -22.8255,-77.6189 -11.9615,4.5929 25.7184,83.1203 62.8423,30.3373 4.2559,-13.7464 14.5444,-18.7343 35.1273,14.7014 -3.7486,11.8404 11.2696,9.5324 0.9648,-11.9352 8.3258,-10.0408 23.208,22.3479 4.6891,16.1465 -6.5224,7.9331 4.6767,3.1095 23.7841,-4.9108 2.1069,15.2802 -13.4592,15.1714 -7.0745,49.8705 43.0355,29.3179 29.4472,-2.5923 11.7715,-26.6718 -0.6468,-28.1948 -8.0501,-10.0293 4.0365,-43.6874 36.1213,-67.2362 27.1291,-89.4018 78.9182,-52.723 144.2315,-153.3081 72.9493,-5.6828 7.9548,-1.3315 C 2048,0 2048,1336.3547 2048,0 H 0 c -1.450955,1329.8191 0,0 0,1329.8191 l 81.148711,-26.2576 163.506899,-36.737 115.6599,-6.4567 113.5235,-0.7274 62.6093,1.6176 45.4964,1.8258 -2.3442,19.036 7.593,1.0933 3.059,-19.7868 57.7435,5.3741 -2.4129,17.4382 8.0583,2.1348 3.7095,-18.2954 125.7984,14.1007 68.1162,17.0228 -4.1856,16.7451 10.0532,2.2352 3.6318,-16.4262 11.7504,-0.5304 23.1118,14.7458 3.7837,12.6108 -17.8462,4.4606 2.8206,8.4389 29.0281,-7.9869 118.10489,89.4645 7.3755,-15.3663 -66.99529,-55.6187 18.3059,-27.619 -61.3617,-44.9159 -10.5326,-85.233 z"
|
d="m 992.16081,1183.1367 42.56099,-5.2249 13.4382,91.2049 -26.6602,39.6693 10.6288,7.1483 22.8685,-32.9555 17.5173,-10.7603 18.4781,0.9283 4.6673,-6.821 -4.8023,-0.2681 0.4446,-5.4868 3.9389,-7.2506 17.3551,-16.8868 22.4927,-8.5491 0.067,17.3491 -1.8552,-0.015 -0.7027,2.9571 9.1614,0.1981 -0.688,-3.0676 -1.8125,-0.091 -0.063,-17.9929 10.9268,-2.4662 23.4124,0.6007 0.4437,16.21 3.0319,0.024 -0.1983,-9.8439 30.5174,0.3705 52.7175,11.7149 7.4327,-1.1709 -4.5659,13.6208 -1.1712,-0.4322 -1.4998,3.9066 4.9114,1.4843 1.2396,-3.7754 -1.0333,-0.3511 4.6849,-13.9254 55.8877,25.6357 -4.9806,9.5665 2.472,1.3721 5.5907,-10.7167 92.3163,53.7084 -8.4089,13.2993 2.4267,1.6037 7.7598,-12.3973 2.0466,1.0915 77.647,50.9203 2.5232,69.2302 50.9332,4.2029 -2.8261,28.2204 -20.9097,-0.4002 -2.6434,39.0979 18.7288,0.6015 -6.7909,59.9332 -14.873,-1.5178 -5.5836,36.1869 -21.8286,-10.8136 -6.0409,10.8712 19.0717,10.9411 -19.0699,39.1337 -48.3133,-22.0614 -22.8255,-77.6189 -11.9615,4.5929 25.7184,83.1203 62.8423,30.3373 4.2559,-13.7464 14.5444,-18.7343 35.1273,14.7014 -3.7486,11.8404 11.2696,9.5324 0.9648,-11.9352 8.3258,-10.0408 23.208,22.3479 4.6891,16.1465 -6.5224,7.9331 4.6767,3.1095 23.7841,-4.9108 2.1069,15.2802 -13.4592,15.1714 -7.0745,49.8705 43.0355,29.3179 29.4472,-2.5923 11.7715,-26.6718 -0.6468,-28.1948 -8.0501,-10.0293 4.0365,-43.6874 36.1213,-67.2362 27.1291,-89.4018 78.9182,-52.723 144.2315,-153.3081 72.9493,-5.6828 7.9548,-1.3315 C 2048,0 2048,1336.3547 2048,0 H 0 c -1.450955,1329.8191 0,0 0,1329.8191 l 81.148711,-26.2576 163.506899,-36.737 115.6599,-6.4567 113.5235,-0.7274 62.6093,1.6176 45.4964,1.8258 -2.3442,19.036 7.593,1.0933 3.059,-19.7868 57.7435,5.3741 -2.4129,17.4382 8.0583,2.1348 3.7095,-18.2954 125.7984,14.1007 68.1162,17.0228 -4.1856,16.7451 10.0532,2.2352 3.6318,-16.4262 11.7504,-0.5304 23.1118,14.7458 3.7837,12.6108 -17.8462,4.4606 2.8206,8.4389 29.0281,-7.9869 118.10489,89.4645 7.3755,-15.3663 -66.99529,-55.6187 18.3059,-27.619 -61.3617,-44.9159 -10.5326,-85.233 z"
|
||||||
|
@ -200,8 +201,9 @@
|
||||||
d="m 1766.6012,1138.7538 -89.3711,-56.2419 -218.6933,3.5847 -60.9724,-23.6465 -110.1112,-13.4541"
|
d="m 1766.6012,1138.7538 -89.3711,-56.2419 -218.6933,3.5847 -60.9724,-23.6465 -110.1112,-13.4541"
|
||||||
id="path11294" /><path
|
id="path11294" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2294.2506,766.21103 -27.7654,7.58516 -17.9915,-42.24541 17.9582,-68.51274 27.8896,-19.99802 13.6006,-22.63215 6.4236,-0.56192 -0.519,23.54721 -19.7765,33.55415 16.2623,24.76754 16.7749,7.74045"
|
d="m 2294.2506,766.21103 -27.7654,7.58516 -17.9915,-42.24541 17.9582,-68.51274 27.8896,-19.99802 13.6006,-22.63215 6.4236,-0.56192 -0.519,23.54721 -19.7765,33.55415 16.2623,24.76754 17.3107,7.95071"
|
||||||
id="path11296" /><path
|
id="path11296"
|
||||||
|
sodipodi:nodetypes="ccccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2313.9467,638.85466 52.6843,-30.49579 29.1598,-9.96149 15.7927,-11.88707 36.9076,-46.72225"
|
d="m 2313.9467,638.85466 52.6843,-30.49579 29.1598,-9.96149 15.7927,-11.88707 36.9076,-46.72225"
|
||||||
id="path11298"
|
id="path11298"
|
||||||
|
@ -324,8 +326,9 @@
|
||||||
d="m 2715.3554,1699.3076 -8.6205,-68.3303"
|
d="m 2715.3554,1699.3076 -8.6205,-68.3303"
|
||||||
id="path11477" /><path
|
id="path11477" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2711.4196,1668.1107 -28.4558,6.3715"
|
d="m 2711.4196,1668.1107 -27.0185,6.0497 -4.1012,0.8009"
|
||||||
id="path11479" /><path
|
id="path11479"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2709.3327,1651.5687 26.4527,-23.2051"
|
d="m 2709.3327,1651.5687 26.4527,-23.2051"
|
||||||
id="path11481" /><path
|
id="path11481" /><path
|
||||||
|
@ -342,14 +345,16 @@
|
||||||
d="m 2652.896,1570.5986 26.7407,14.8767"
|
d="m 2652.896,1570.5986 26.7407,14.8767"
|
||||||
id="path11489" /><path
|
id="path11489" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2673.5215,1615.8848 -32.775,-23.0198 -16.8184,-10.4868 -30.9466,-11.8275 -38.5808,-5.3187"
|
d="m 2673.5215,1615.8848 -32.775,-23.0198 -16.8184,-10.4868 -30.9466,-11.8275 -37.8292,-5.2151 -2.6908,-0.155"
|
||||||
id="path11491" /><path
|
id="path11491"
|
||||||
|
sodipodi:nodetypes="cccccc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2620.9565,1581.2425 14.9003,-41.1332 28.4647,9.5497"
|
d="m 2620.9565,1581.2425 14.9003,-41.1332 28.4647,9.5497"
|
||||||
id="path11493" /><path
|
id="path11493" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2635.8568,1540.1093 -89.2478,10.9079"
|
d="m 2635.8793,1541.0088 -3.8176,-0.4357 -85.4527,10.4441"
|
||||||
id="path11495" /><path
|
id="path11495"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2592.9815,1570.5507 1.0872,-8.4068 -5.8412,-16.2133"
|
d="m 2592.9815,1570.5507 1.0872,-8.4068 -5.8412,-16.2133"
|
||||||
id="path11497" /><path
|
id="path11497" /><path
|
||||||
|
@ -399,8 +404,9 @@
|
||||||
d="m 2748.5261,1708.0353 20.8825,-39.2349 15.1229,-11.4294"
|
d="m 2748.5261,1708.0353 20.8825,-39.2349 15.1229,-11.4294"
|
||||||
id="path11527" /><path
|
id="path11527" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2738.8384,1704.4049 18.5061,-41.5833 -12.4865,-6.5855"
|
d="m 2738.4931,1705.369 0.8302,-2.0537 18.0212,-40.4937 -12.4865,-6.5855"
|
||||||
id="path11529" /><path
|
id="path11529"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2807.4034,1885.7266 1.066,-89.6276 20.9412,-30.7059"
|
d="m 2807.4034,1885.7266 1.066,-89.6276 20.9412,-30.7059"
|
||||||
id="path11531" /><path
|
id="path11531" /><path
|
||||||
|
@ -420,14 +426,16 @@
|
||||||
d="m 2855.1886,1826.232 15.7633,-1.5699"
|
d="m 2855.1886,1826.232 15.7633,-1.5699"
|
||||||
id="path11541" /><path
|
id="path11541" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2856.9172,1848.3221 22.8146,-0.2259 8.0875,-3.9787"
|
d="m 2856.9172,1848.3221 22.8146,-0.2259 6.5352,-3.2151 2.4792,-0.8558"
|
||||||
id="path11543" /><path
|
id="path11543"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2918.5083,1888.9559 14.9879,-82.9644"
|
d="m 2918.5083,1888.9559 14.9879,-82.9644"
|
||||||
id="path11545" /><path
|
id="path11545" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2887.8193,1844.1175 38.183,3.3562"
|
d="m 2887.883,1844.118 38.1193,3.3557"
|
||||||
id="path11547" /><path
|
id="path11547"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2858.3968,1867.2286 23.4738,-1.346 7.9044,-2.0752 32.1925,6.0006"
|
d="m 2858.3968,1867.2286 23.4738,-1.346 7.9044,-2.0752 32.1925,6.0006"
|
||||||
id="path11549" /><path
|
id="path11549" /><path
|
||||||
|
@ -528,11 +536,13 @@
|
||||||
d="m 2853.2684,1705.972 16.1593,-17.4326 6.2367,1.0595 -5.2277,21.3163 12.1898,3.8117 14.0171,-15.0879 14.8323,0.047"
|
d="m 2853.2684,1705.972 16.1593,-17.4326 6.2367,1.0595 -5.2277,21.3163 12.1898,3.8117 14.0171,-15.0879 14.8323,0.047"
|
||||||
id="path11613" /><path
|
id="path11613" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2854.4852,1782.562 -0.1723,-25.099 -6.4856,-25.9323 4.5522,-5.734 7.138,1.6207 8.3283,21.3599 12.4389,9.1616 13.7056,-0.3056 6.7649,-7.7869 -2.9484,-1.5498"
|
d="m 2854.4422,1784.5779 -0.1293,-27.1149 -6.4856,-25.9323 4.5522,-5.734 7.138,1.6207 8.3283,21.3599 12.4389,9.1616 13.7056,-0.3056 6.7649,-7.7869 -2.9635,-2.7358"
|
||||||
id="path11615" /><path
|
id="path11615"
|
||||||
|
sodipodi:nodetypes="cccccccccc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2867.4483,1785.3046 26.542,-27.6713 14.6546,-4.0576 8.5036,-37.9275 13.5424,-26.7154 10.5068,1.6106 2.8691,-2.7504 1.6551,-25.6232"
|
d="m 2864.4227,1787.9865 29.5676,-30.3532 14.6546,-4.0576 8.5036,-37.9275 13.5424,-26.7154 10.5068,1.6106 2.8691,-2.7504 1.6551,-25.6232"
|
||||||
id="path11617" /><path
|
id="path11617"
|
||||||
|
sodipodi:nodetypes="cccccccc" /><path
|
||||||
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="display:inline;fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2934.7202,1802.9647 2.2036,-6.0488 23.7546,-0.9888 0.9973,-3.9291 -12.7115,-9.1259 -1.0965,-30.7183 9.8935,-9.3222 5.3532,-13.9805 -5.6399,-12.9034 2.2771,-16.2871 9.7235,-25.385 -7.6172,-9.5333 -16.136,-2.5725"
|
d="m 2934.7202,1802.9647 2.2036,-6.0488 23.7546,-0.9888 0.9973,-3.9291 -12.7115,-9.1259 -1.0965,-30.7183 9.8935,-9.3222 5.3532,-13.9805 -5.6399,-12.9034 2.2771,-16.2871 9.7235,-25.385 -7.6172,-9.5333 -16.136,-2.5725"
|
||||||
id="path11619" /><path
|
id="path11619" /><path
|
||||||
|
@ -638,8 +648,9 @@
|
||||||
d="m 2154.1022,1690.5576 47.4903,-25.6525"
|
d="m 2154.1022,1690.5576 47.4903,-25.6525"
|
||||||
id="path5743" /><path
|
id="path5743" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2156.9079,1699.5214 -2.8057,-8.9638 -14.8312,-19.3863 10.6421,-7.3674 -13.0309,-23.057"
|
d="m 2158.7651,1701.2936 -4.6629,-10.736 -14.8312,-19.3863 10.6421,-7.3674 -13.0309,-23.057"
|
||||||
id="path5745" /><path
|
id="path5745"
|
||||||
|
sodipodi:nodetypes="ccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2149.9131,1663.8039 17.4427,27.5652"
|
d="m 2149.9131,1663.8039 17.4427,27.5652"
|
||||||
id="path5747" /><path
|
id="path5747" /><path
|
||||||
|
@ -656,12 +667,13 @@
|
||||||
d="m 2167.1355,1657.4578 -15.8661,-20.1519"
|
d="m 2167.1355,1657.4578 -15.8661,-20.1519"
|
||||||
id="path5755" /><path
|
id="path5755" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2066.3787,1746.4589 18.2653,-27.429 11.5454,-0.8122 7.5314,5.2476 -2.0092,31.4958 12.3138,9.9881 12.4159,3.7492 8.3701,-5.092 2.2839,-42.7602 4.6485,0.3645 4.2743,23.8549 4.0903,-0.094 1.0667,-29.1032"
|
d="m 2066.3787,1746.4589 18.2653,-27.429 11.5454,-0.8122 7.5314,5.2476 -2.0092,31.4958 12.3138,9.9881 12.4159,3.7492 8.3701,-5.092 2.2839,-42.7602 4.6485,0.3645 4.2743,23.8549 4.0903,-0.094 1.0265,-28.0062 2.8165,-3.1205"
|
||||||
id="path5757"
|
id="path5757"
|
||||||
sodipodi:nodetypes="ccccccccccccc" /><path
|
sodipodi:nodetypes="cccccccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2075.8839,1764.1023 16.7479,-27.9494 3.5576,-17.9352 3.4965,-23.1434 -2.795,-4.2776 -44.8543,15.3414"
|
d="m 2075.8839,1764.1023 16.7479,-27.9494 3.5576,-17.9352 3.4965,-23.1434 -2.795,-4.2776 -42.2946,14.4659 -6.261,0.2049"
|
||||||
id="path5759" /><path
|
id="path5759"
|
||||||
|
sodipodi:nodetypes="ccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2107.8685,1759.9551 2.8352,-28.1776 3.1256,-6.3398 -0.1637,-14.4398 13.0459,-0.3634 10.3838,10.2117"
|
d="m 2107.8685,1759.9551 2.8352,-28.1776 3.1256,-6.3398 -0.1637,-14.4398 13.0459,-0.3634 10.3838,10.2117"
|
||||||
id="path5761" /><path
|
id="path5761" /><path
|
||||||
|
@ -669,8 +681,9 @@
|
||||||
d="m 2139.271,1671.1713 -8.6514,6.7307 -10.917,-10.0544 -14.5674,-4.059"
|
d="m 2139.271,1671.1713 -8.6514,6.7307 -10.917,-10.0544 -14.5674,-4.059"
|
||||||
id="path5763" /><path
|
id="path5763" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2151.0475,1710.1501 -6.91,-8.2582 -6.7947,-14.3206 -7.5766,-5.2735 -15.3005,4.3332 -17.5748,4.1657"
|
d="m 2153.5181,1712.7681 -9.3806,-10.8762 -6.7947,-14.3206 -7.5766,-5.2735 -15.3005,4.3332 -17.5748,4.1657"
|
||||||
id="path5765" /><path
|
id="path5765"
|
||||||
|
sodipodi:nodetypes="cccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2109.1595,1687.8887 -5.7126,-21.0415"
|
d="m 2109.1595,1687.8887 -5.7126,-21.0415"
|
||||||
id="path5767" /><path
|
id="path5767" /><path
|
||||||
|
@ -684,23 +697,27 @@
|
||||||
d="m 2165.8623,1800.5068 3.4176,-21.8498 -2.8202,-22.1304"
|
d="m 2165.8623,1800.5068 3.4176,-21.8498 -2.8202,-22.1304"
|
||||||
id="path5773" /><path
|
id="path5773" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2048.1245,1792.2892 -5.4038,-20.4857 13.3532,-27.5092"
|
d="m 2048.4656,1793.6341 -0.7473,-2.8849 -4.9976,-18.9457 13.3532,-27.5092"
|
||||||
id="path5775" /><path
|
id="path5775"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2042.7207,1771.8035 -23.3565,-18.2725 -12.1624,13.9745 -5.2602,18.8544"
|
d="m 2042.7207,1771.8035 -23.3565,-18.2725 -12.1624,13.9745 -5.5175,20.9823"
|
||||||
id="path5777" /><path
|
id="path5777"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 1932.3464,1784.9036 2.3434,-69.5361"
|
d="m 1932.3464,1784.9036 2.3434,-69.5361"
|
||||||
id="path5779" /><path
|
id="path5779" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 1958.678,1782.181 1.1437,-11.0625 1.3646,-23.5039 10.4598,-8.2028 1.1616,-21.6736"
|
d="m 1958.4351,1784.4112 1.3866,-13.2927 1.3646,-23.5039 10.4598,-8.2028 1.1616,-21.6736"
|
||||||
id="path5781" /><path
|
id="path5781"
|
||||||
|
sodipodi:nodetypes="ccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 1890.2468,1780.8667 2.6276,-33.5101 -9.6411,-6.0578 2.8345,-25.2759"
|
d="m 1890.2468,1780.8667 2.6276,-33.5101 -9.6411,-6.0578 2.8345,-25.2759"
|
||||||
id="path5783" /><path
|
id="path5783" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 1842.2956,1720.2931 -2.7457,46.2665 10.0066,10.6496"
|
d="m 1842.2956,1720.2931 -2.7457,46.2665 12.5345,13.0755"
|
||||||
id="path5785" /><path
|
id="path5785"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 1802.9649,1774.2969 8.6649,-57.2707"
|
d="m 1802.9649,1774.2969 8.6649,-57.2707"
|
||||||
id="path5787" /><path
|
id="path5787" /><path
|
||||||
|
@ -711,8 +728,9 @@
|
||||||
d="m 1688.6948,1776.2145 0.6876,-24.3487 -15.2184,-8.7739 -9.1613,-17.7067"
|
d="m 1688.6948,1776.2145 0.6876,-24.3487 -15.2184,-8.7739 -9.1613,-17.7067"
|
||||||
id="path5791" /><path
|
id="path5791" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 1644.1285,1771.8564 -4.0008,-44.9843"
|
d="m 1644.4163,1775.7992 -4.2886,-48.9271"
|
||||||
id="path5793" /><path
|
id="path5793"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 1492.5441,1729.7976 11.448,53.9806"
|
d="m 1492.5441,1729.7976 11.448,53.9806"
|
||||||
id="path5795" /><path
|
id="path5795" /><path
|
||||||
|
@ -726,8 +744,9 @@
|
||||||
d="m 2142.4937,1607.5844 -42.7176,-10.3924 -42.0485,6.6807 7.5936,49.8051 22.1562,21.0573"
|
d="m 2142.4937,1607.5844 -42.7176,-10.3924 -42.0485,6.6807 7.5936,49.8051 22.1562,21.0573"
|
||||||
id="path5801" /><path
|
id="path5801" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2130.6851,1632.1854 -16.1009,-31.3909 42.1325,-15.2538 6.066,16.0079"
|
d="m 2132.5134,1635.9491 -17.9292,-35.1546 42.1325,-15.2538 6.066,16.0079"
|
||||||
id="path5803" /><path
|
id="path5803"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2131.3961,1594.7079 9.7897,-51.8913"
|
d="m 2131.3961,1594.7079 9.7897,-51.8913"
|
||||||
id="path5805" /><path
|
id="path5805" /><path
|
||||||
|
@ -756,8 +775,9 @@
|
||||||
d="m 2279.7325,1555.6389 36.1923,-19.751"
|
d="m 2279.7325,1555.6389 36.1923,-19.751"
|
||||||
id="path5821" /><path
|
id="path5821" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2295.0051,1547.3043 17.6007,24.13"
|
d="m 2295.0051,1547.3043 20.1333,27.7805"
|
||||||
id="path5823" /><path
|
id="path5823"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2273.5393,1550.2608 26.6309,-90.0007 -3.0034,-15.799 -18.8967,-14.8955 -12.2243,-22.2604 -27.6941,-15.6101 -22.9007,-27.8485 -6.7292,-42.2071 -6.7908,-91.8642 -29.2498,-53.072 -1.2857,-22.6411 -21.3415,-11.1241 -16.0972,-18.7776 -42.05,-7.6849 -42.3293,24.3571 -41.0838,-1.9627"
|
d="m 2273.5393,1550.2608 26.6309,-90.0007 -3.0034,-15.799 -18.8967,-14.8955 -12.2243,-22.2604 -27.6941,-15.6101 -22.9007,-27.8485 -6.7292,-42.2071 -6.7908,-91.8642 -29.2498,-53.072 -1.2857,-22.6411 -21.3415,-11.1241 -16.0972,-18.7776 -42.05,-7.6849 -42.3293,24.3571 -41.0838,-1.9627"
|
||||||
id="path5825" /><path
|
id="path5825" /><path
|
||||||
|
@ -786,8 +806,9 @@
|
||||||
d="m 2292.4345,1413.3666 1.5688,-55.2643"
|
d="m 2292.4345,1413.3666 1.5688,-55.2643"
|
||||||
id="path5841" /><path
|
id="path5841" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2305.2878,1357.3948 -42.1006,2.5934 -0.6255,10.3187 26.0922,50.6911"
|
d="m 2306.9988,1357.2888 -43.8116,2.6994 -0.6255,10.3187 26.0922,50.6911"
|
||||||
id="path5843" /><path
|
id="path5843"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2264.4796,1374.033 45.9915,-1.1993"
|
d="m 2264.4796,1374.033 45.9915,-1.1993"
|
||||||
id="path5845" /><path
|
id="path5845" /><path
|
||||||
|
@ -801,8 +822,9 @@
|
||||||
d="m 2250.0257,1344.3786 -37.9393,-1.6356"
|
d="m 2250.0257,1344.3786 -37.9393,-1.6356"
|
||||||
id="path5851" /><path
|
id="path5851" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2525.8908,1511.9031 -105.7538,35.7106 -41.8584,29.3033"
|
d="m 2525.8908,1511.9031 -105.7538,35.7106 -40.4951,28.3489 -2.9471,2.0787"
|
||||||
id="path5853" /><path
|
id="path5853"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2491.6922,1582.1127 6.7578,-60.9435 8.165,-21.3535"
|
d="m 2491.6922,1582.1127 6.7578,-60.9435 8.165,-21.3535"
|
||||||
id="path5855" /><path
|
id="path5855" /><path
|
||||||
|
@ -810,11 +832,13 @@
|
||||||
d="m 2470.8348,1550.6344 73.4163,2.881"
|
d="m 2470.8348,1550.6344 73.4163,2.881"
|
||||||
id="path5857" /><path
|
id="path5857" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2469.1883,1577.4928 1.6465,-26.8584 -11.11,-16.3886"
|
d="m 2469.0567,1579.097 0.1864,-2.4982 1.5917,-25.9644 -11.11,-16.3886"
|
||||||
id="path5859" /><path
|
id="path5859"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2481.2833,1579.3725 3.9992,-28.1711"
|
d="m 2481.115,1580.3125 0.2631,-1.6079 3.9044,-27.5032"
|
||||||
id="path5861" /><path
|
id="path5861"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2533.6844,1586.7512 2.4494,-33.5543"
|
d="m 2533.6844,1586.7512 2.4494,-33.5543"
|
||||||
id="path5863" /><path
|
id="path5863" /><path
|
||||||
|
@ -855,11 +879,13 @@
|
||||||
d="m 2531.156,1270.9075 13.5683,-31.3584 11.3694,-22.5534 25.203,-20.8044 4.1257,-43.5736 -1.3999,-25.2478 -0.6572,-21.9396 -6.4416,-22.2692 -15.6053,4.5277 -41.8354,-10.4092"
|
d="m 2531.156,1270.9075 13.5683,-31.3584 11.3694,-22.5534 25.203,-20.8044 4.1257,-43.5736 -1.3999,-25.2478 -0.6572,-21.9396 -6.4416,-22.2692 -15.6053,4.5277 -41.8354,-10.4092"
|
||||||
id="path5887" /><path
|
id="path5887" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2480.9881,1092.7462 29.4455,-8.0524 9.0494,-7.4142 0.079,-11.2412 -8.6872,-17.9354"
|
d="m 2475.3328,1093.4019 7.9042,-1.2707 27.1966,-7.4374 9.0494,-7.4142 0.079,-11.2412 -8.6872,-17.9354"
|
||||||
id="path5889" /><path
|
id="path5889"
|
||||||
|
sodipodi:nodetypes="cccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2438.9788,1179.4549 37.0783,0.8348 16.579,-7.8363 -11.6175,-31.3687 13.48,-10.1723 7.2887,-23.865 13.9349,-5.9018"
|
d="m 2437.0467,1179.4458 3.3793,0.042 35.6311,0.8022 16.579,-7.8363 -11.6175,-31.3687 13.48,-10.1723 7.2887,-23.865 13.9349,-5.9018"
|
||||||
id="path5891" /><path
|
id="path5891"
|
||||||
|
sodipodi:nodetypes="cccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2487.9061,1174.6891 -65.6045,-32.0962"
|
d="m 2487.9061,1174.6891 -65.6045,-32.0962"
|
||||||
id="path5893" /><path
|
id="path5893" /><path
|
||||||
|
@ -876,11 +902,13 @@
|
||||||
d="m 2535.6656,1395.8385 21.9854,-30.5107"
|
d="m 2535.6656,1395.8385 21.9854,-30.5107"
|
||||||
id="path5901" /><path
|
id="path5901" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2588.6621,1298.0995 -25.9088,-23.4438 -48.0412,-3.6028 -28.454,28.0209 -18.5356,29.7259 12.8641,19.8823 -4.2559,21.4883 -12.2702,29.5419"
|
d="m 2588.6621,1298.0995 -25.9088,-23.4438 -48.0412,-3.6028 -28.454,28.0209 -18.5356,29.7259 12.8641,19.8823 -4.2559,21.4883 -11.3977,27.4412 -1.5745,2.2583"
|
||||||
id="path5903" /><path
|
id="path5903"
|
||||||
|
sodipodi:nodetypes="ccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2470.3526,1413.7297 33.6291,-6.6642"
|
d="m 2467.4369,1414.5202 4.8606,-1.1759 31.6842,-6.2788"
|
||||||
id="path5905" /><path
|
id="path5905"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2502.1034,1440.8906 21.4297,-5.9675 -3.963,-15.0629 -49.9213,12.2479 -33.7281,9.7247 -18.7161,5.8909"
|
d="m 2502.1034,1440.8906 21.4297,-5.9675 -3.963,-15.0629 -49.9213,12.2479 -33.7281,9.7247 -18.7161,5.8909"
|
||||||
id="path5907" /><path
|
id="path5907" /><path
|
||||||
|
@ -891,8 +919,9 @@
|
||||||
d="m 2461.9617,1416.4523 -52.8665,12.0964 -69.8265,26.3562 -26.0332,0.5796"
|
d="m 2461.9617,1416.4523 -52.8665,12.0964 -69.8265,26.3562 -26.0332,0.5796"
|
||||||
id="path5911" /><path
|
id="path5911" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2362.8066,1582.8484 -12.9721,-54.6673 3.8806,-16.4773 -8.6718,-18.9572 4.1469,-27.4791 -12.5226,-16.5317 -1.2633,-29.5583 -3.1904,-13.6724 -10.9847,-26.4334 8.9532,-14.6977 4.3135,-22.5547 -1.1193,-47.7554 -5.4311,-87.7024 -18.6568,0.6255"
|
d="m 2362.8066,1582.8484 -12.9721,-54.6673 3.8806,-16.4773 -8.6718,-18.9572 4.1469,-27.4791 -12.5226,-16.5317 -1.2633,-29.5583 -3.1904,-13.6724 -10.9847,-26.4334 8.9532,-14.6977 4.3135,-22.5547 -1.1193,-47.7554 -5.4311,-87.7024 -19.8747,0.6085"
|
||||||
id="path5913" /><path
|
id="path5913"
|
||||||
|
sodipodi:nodetypes="cccccccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2320.5605,1566.7583 37.5488,-3.7054"
|
d="m 2320.5605,1566.7583 37.5488,-3.7054"
|
||||||
id="path5915" /><path
|
id="path5915" /><path
|
||||||
|
@ -903,8 +932,9 @@
|
||||||
d="m 2322.9816,1541.4384 17.365,-37.6177"
|
d="m 2322.9816,1541.4384 17.365,-37.6177"
|
||||||
id="path5919" /><path
|
id="path5919" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2374.0979,1577.0279 -2.2579,-48.2298 -8.674,-82.9133"
|
d="m 2374.1798,1577.8197 -0.1056,-1.2986 -2.2342,-47.723 -8.674,-82.9133"
|
||||||
id="path5921" /><path
|
id="path5921"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2372.1157,1534.6874 45.1064,-9.7837 27.8377,-8.1419"
|
d="m 2372.1157,1534.6874 45.1064,-9.7837 27.8377,-8.1419"
|
||||||
id="path5923" /><path
|
id="path5923" /><path
|
||||||
|
@ -942,8 +972,9 @@
|
||||||
d="m 2205.6273,1279.7775 20.2454,-12.1934 32.9527,14.9539 18.8237,-0.4655 5.303,7.1709 -0.027,7.682 5.8311,-0.093 1.19,-14.5291 13.8111,-0.1968"
|
d="m 2205.6273,1279.7775 20.2454,-12.1934 32.9527,14.9539 18.8237,-0.4655 5.303,7.1709 -0.027,7.682 5.8311,-0.093 1.19,-14.5291 13.8111,-0.1968"
|
||||||
id="path5945" /><path
|
id="path5945" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2316.4137,1392.0145 10.3079,0.2739 32.2697,-52.0409 -0.182,-15.1008 23.7173,-2.3572 5.1578,19.4427 35.7492,1.9901"
|
d="m 2314.1954,1391.9823 12.5262,0.3061 32.2697,-52.0409 -0.182,-15.1008 23.7173,-2.3572 5.1578,19.4427 35.7492,1.9901"
|
||||||
id="path5947" /><path
|
id="path5947"
|
||||||
|
sodipodi:nodetypes="ccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2313.4441,1345.9826 20.4056,-0.7845 32.276,-51.9652 40.6546,-82.7078 -10.2484,-67.6583 -6.4739,-110.2338 0.046,-25.2082 -3.4983,-19.30735 -5.15,-54.50553 11.0676,-36.07008 1.9091,-38.70757 64.113,-120.99611 14.5584,-3.7875"
|
d="m 2313.4441,1345.9826 20.4056,-0.7845 32.276,-51.9652 40.6546,-82.7078 -10.2484,-67.6583 -6.4739,-110.2338 0.046,-25.2082 -3.4983,-19.30735 -5.15,-54.50553 11.0676,-36.07008 1.9091,-38.70757 64.113,-120.99611 14.5584,-3.7875"
|
||||||
id="path5949" /><path
|
id="path5949" /><path
|
||||||
|
@ -954,23 +985,27 @@
|
||||||
d="m 2347.523,727.21054 -14.0407,26.75376 -1.3498,14.62105 -17.8222,25.36703 8.9892,14.7508 19.1687,33.98196 10.3288,33.90732 16.4975,40.07308 12.1612,16.94638"
|
d="m 2347.523,727.21054 -14.0407,26.75376 -1.3498,14.62105 -17.8222,25.36703 8.9892,14.7508 19.1687,33.98196 10.3288,33.90732 16.4975,40.07308 12.1612,16.94638"
|
||||||
id="path5953" /><path
|
id="path5953" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2309.0741,869.99377 60.2204,46.67177"
|
d="m 2308.352,869.50335 60.9425,47.16219"
|
||||||
id="path5955" /><path
|
id="path5955"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2326.218,883.28053 7.4357,196.96747 30.8436,15.6616 3.9104,7.7632 1.216,17.3978 15.1218,2.5284 2.2292,19.3693 0.016,15.1442 -5.2096,20.7842 5.7084,20.1559 -26.0311,21.9724 -1.2183,13.1184"
|
d="m 2326.218,883.28053 7.4357,196.96747 30.8436,15.6616 3.9104,7.7632 1.216,17.3978 15.1218,2.5284 2.2292,19.3693 0.016,15.1442 -5.2096,20.7842 5.7084,20.1559 -26.0311,21.9724 -1.2183,13.1184"
|
||||||
id="path5957" /><path
|
id="path5957" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2311.1709,1236.5038 84.3539,-3.0804"
|
d="m 2309.2011,1236.6138 86.3237,-3.1904"
|
||||||
id="path5959" /><path
|
id="path5959"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2312.0357,1264.1615 125.4024,-0.7546"
|
d="m 2310.3076,1264.0881 127.1305,-0.6812"
|
||||||
id="path5961" /><path
|
id="path5961"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2363.3258,1297.7408 12.6656,25.6982"
|
d="m 2363.3258,1297.7408 12.6656,25.6982"
|
||||||
id="path5963" /><path
|
id="path5963" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2369.6586,1310.5899 69.2166,-0.4199"
|
d="m 2369.6586,1310.5899 67.1222,-0.4072 2.8181,0.3266"
|
||||||
id="path5965" /><path
|
id="path5965"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2404.2669,1310.38 -2.0696,-46.761"
|
d="m 2404.2669,1310.38 -2.0696,-46.761"
|
||||||
id="path5967" /><path
|
id="path5967" /><path
|
||||||
|
@ -978,8 +1013,9 @@
|
||||||
d="m 2403.0359,1282.5667 22.2469,-0.7097"
|
d="m 2403.0359,1282.5667 22.2469,-0.7097"
|
||||||
id="path5969" /><path
|
id="path5969" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2393.2201,1207.988 14.7342,7.4152 21.156,24.8045"
|
d="m 2393.2201,1207.988 14.7342,7.4152 19.2837,22.6093 2.9579,2.5898"
|
||||||
id="path5971" /><path
|
id="path5971"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2347.4227,1125.598 21.593,-13.2263"
|
d="m 2347.4227,1125.598 21.593,-13.2263"
|
||||||
id="path5973" /><path
|
id="path5973" /><path
|
||||||
|
@ -987,17 +1023,20 @@
|
||||||
d="m 2332.8344,1115.4884 10.6947,-30.2259"
|
d="m 2332.8344,1115.4884 10.6947,-30.2259"
|
||||||
id="path5975" /><path
|
id="path5975" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2306.5819,1082.8086 27.0718,-2.5606"
|
d="m 2304.0329,1083.1455 29.6208,-2.8975"
|
||||||
id="path5977" /><path
|
id="path5977"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2307.3613,1098.5313 30.8205,1.8442"
|
d="m 2304.0424,1098.2246 34.1394,2.1509"
|
||||||
id="path5979" /><path
|
id="path5979"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2303.1476,1058.7265 29.6872,-0.1718"
|
d="m 2303.1476,1058.7265 29.6872,-0.1718"
|
||||||
id="path5981" /><path
|
id="path5981" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2303.466,1035.2303 71.3844,-1.453 1.5343,-25.4294 -13.6301,-23.93802 -62.2424,2.56144"
|
d="m 2302.1759,1035.2316 72.6745,-1.4543 1.5343,-25.4294 -13.6301,-23.93802 -62.2424,2.56144"
|
||||||
id="path5983" /><path
|
id="path5983"
|
||||||
|
sodipodi:nodetypes="ccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2301.3486,1009.9969 29.6826,0.7826"
|
d="m 2301.3486,1009.9969 29.6826,0.7826"
|
||||||
id="path5985" /><path
|
id="path5985" /><path
|
||||||
|
@ -1047,8 +1086,9 @@
|
||||||
d="m 2391.4915,740.6911 20.2126,31.36087 -23.0036,30.82346"
|
d="m 2391.4915,740.6911 20.2126,31.36087 -23.0036,30.82346"
|
||||||
id="path6019" /><path
|
id="path6019" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2328.0613,774.38 -10.1313,-20.99225 8.2994,-34.28979"
|
d="m 2328.0613,774.38 -10.1313,-20.99225 7.7779,-32.13529 -0.2666,-4.31857"
|
||||||
id="path6021" /><path
|
id="path6021"
|
||||||
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2265.1677,770.70263 20.7297,-42.27382 -5.6468,-24.24613 13.8196,-27.23537"
|
d="m 2265.1677,770.70263 20.7297,-42.27382 -5.6468,-24.24613 13.8196,-27.23537"
|
||||||
id="path6023" /><path
|
id="path6023" /><path
|
||||||
|
@ -1068,8 +1108,9 @@
|
||||||
d="m 2504.9112,803.38222 -37.7988,-9.88566"
|
d="m 2504.9112,803.38222 -37.7988,-9.88566"
|
||||||
id="path6033" /><path
|
id="path6033" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2456.6652,741.38663 41.3298,17.18286"
|
d="m 2456.6652,741.38663 39.046,16.23338 6.7128,-0.27138"
|
||||||
id="path6035" /><path
|
id="path6035"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2477.3301,749.97806 -5.3775,15.35126"
|
d="m 2477.3301,749.97806 -5.3775,15.35126"
|
||||||
id="path6037" /><path
|
id="path6037" /><path
|
||||||
|
@ -1086,8 +1127,9 @@
|
||||||
d="m 2372.3385,920.90734 18.442,-17.68567"
|
d="m 2372.3385,920.90734 18.442,-17.68567"
|
||||||
id="path6045" /><path
|
id="path6045" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2540.7657,1005.4054 -33.5019,-7.05864 -11.0665,-20.82879 4.8663,-17.29143 15.9229,-9.03994 22.182,-4.6338 8.9616,-11.1637 -3.622,-11.13929"
|
d="m 2542.4242,1006.2785 -3.4491,-1.2504 -31.7113,-6.68134 -11.0665,-20.82879 4.8663,-17.29143 15.9229,-9.03994 22.182,-4.6338 8.9616,-11.1637 -3.622,-11.13929"
|
||||||
id="path6047" /><path
|
id="path6047"
|
||||||
|
sodipodi:nodetypes="ccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2516.9865,951.1866 -15.0866,-27.1273 -13.2123,-4.63803 -39.5598,9.20217 -17.8165,29.96368 18.554,39.18914 -1.6031,25.41034 -11.3782,27.3115 2.698,37.1827 -13.3385,15.1315 -30.9471,19.0166"
|
d="m 2516.9865,951.1866 -15.0866,-27.1273 -13.2123,-4.63803 -39.5598,9.20217 -17.8165,29.96368 18.554,39.18914 -1.6031,25.41034 -11.3782,27.3115 2.698,37.1827 -13.3385,15.1315 -30.9471,19.0166"
|
||||||
id="path6049" /><path
|
id="path6049" /><path
|
||||||
|
@ -1101,8 +1143,9 @@
|
||||||
d="m 2369.4455,1118.5208 25.3382,-5.4216"
|
d="m 2369.4455,1118.5208 25.3382,-5.4216"
|
||||||
id="path6055" /><path
|
id="path6055" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2477.6396,731.59881 24.954,2.00275 10.5095,-7.28962 10.3066,2.66574 42.3705,-29.50906 9.0987,3.95646 -0.072,22.86552 17.6492,12.89853 2.3663,15.62027 41.0088,11.46133 -8.2271,30.6129 4.6316,28.08228 -2.9982,8.03957 3.0885,18.55286 -14.9417,17.99392 -3.0183,18.21914 10.8135,38.45997 14.9601,12.86718 -6.1299,14.35148 2.9806,25.82582 -10.0738,7.37933 -9.0573,72.74952 7.6171,31.6839"
|
d="m 2473.8442,732.64042 6.0396,-0.8615 22.7098,1.82264 10.5095,-7.28962 10.3066,2.66574 42.3705,-29.50906 9.0987,3.95646 -0.072,22.86552 17.6492,12.89853 2.3663,15.62027 41.0088,11.46133 -8.2271,30.6129 4.6316,28.08228 -2.9982,8.03957 3.0885,18.55286 -14.9417,17.99392 -3.0183,18.21914 10.8135,38.45997 14.9601,12.86718 -6.1299,14.35148 2.9806,25.82582 -10.0738,7.37933 -9.0573,72.74952 7.6171,31.6839"
|
||||||
id="path6057" /><path
|
id="path6057"
|
||||||
|
sodipodi:nodetypes="cccccccccccccccccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2626.9165,986.65518 -18.9875,-41.56811 -28.783,1.68189 -21.5153,23.53245"
|
d="m 2626.9165,986.65518 -18.9875,-41.56811 -28.783,1.68189 -21.5153,23.53245"
|
||||||
id="path6059" /><path
|
id="path6059" /><path
|
||||||
|
@ -1147,11 +1190,13 @@
|
||||||
d="m 2282.372,926.77285 -11.639,-33.61523 23.6402,-1.62257"
|
d="m 2282.372,926.77285 -11.639,-33.61523 23.6402,-1.62257"
|
||||||
id="path6085" /><path
|
id="path6085" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2276.0093,856.97505 -18.6195,0.41344 -14.9,-19.44105"
|
d="m 2277.6297,857.03022 -20.2399,0.35827 -14.9,-19.44105"
|
||||||
id="path6087" /><path
|
id="path6087"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2232.5705,905.62119 -44.9909,-1.59155"
|
d="m 2232.5705,905.62119 -46.7679,-3.27109"
|
||||||
id="path6089" /><path
|
id="path6089"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2222.0557,1239.1138 84.4616,15.5076"
|
d="m 2222.0557,1239.1138 84.4616,15.5076"
|
||||||
id="path6091" /><path
|
id="path6091" /><path
|
||||||
|
@ -1162,8 +1207,9 @@
|
||||||
d="m 2246.8609,1000.1428 -30.3146,-95.08846"
|
d="m 2246.8609,1000.1428 -30.3146,-95.08846"
|
||||||
id="path6095" /><path
|
id="path6095" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2248.8601,938.89594 44.6695,46.87353"
|
d="m 2248.8601,938.89594 43.8479,46.01137 2.0157,0.44884"
|
||||||
id="path6097" /><path
|
id="path6097"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2276.5896,967.99368 0.1972,69.24812"
|
d="m 2276.5896,967.99368 0.1972,69.24812"
|
||||||
id="path6099" /><path
|
id="path6099" /><path
|
||||||
|
@ -1206,11 +1252,13 @@
|
||||||
id="path6123"
|
id="path6123"
|
||||||
sodipodi:nodetypes="cccc" /><path
|
sodipodi:nodetypes="cccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2316.8985,1408.3022 15.9173,-0.2175"
|
d="m 2314.7765,1408.4419 18.0393,-0.3572"
|
||||||
id="path6125" /><path
|
id="path6125"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2318.141,1424.3373 17.4816,-0.053"
|
d="m 2315.5738,1424.4581 20.0488,-0.1738"
|
||||||
id="path6127" /><path
|
id="path6127"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2291.8897,1488.2444 54.0477,-1.4224 41.836,-8.0831"
|
d="m 2291.8897,1488.2444 54.0477,-1.4224 41.836,-8.0831"
|
||||||
id="path6129" /><path
|
id="path6129" /><path
|
||||||
|
@ -1347,8 +1395,9 @@
|
||||||
d="m 2061.4106,912.17326 14.9656,4.189"
|
d="m 2061.4106,912.17326 14.9656,4.189"
|
||||||
id="path6219" /><path
|
id="path6219" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2180.7457,1020.4731 -5.0406,-17.228 11.5771,-29.59066 -6.4461,-25.53798 -8.4606,1.80167 -25.9013,-35.8217 11.8865,-10.91061 -2.4919,-3.33448 37.1484,-40.40319 1.4015,-24.24574"
|
d="m 2180.7457,1020.4731 -5.0406,-17.228 11.5771,-29.59066 -6.4461,-25.53798 -8.4606,1.80167 -25.9013,-35.8217 11.8865,-10.91061 -2.4919,-3.33448 37.1484,-40.40319 1.2555,-21.71986 1.5968,-4.88399"
|
||||||
id="path6221" /><path
|
id="path6221"
|
||||||
|
sodipodi:nodetypes="ccccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2181.951,871.48396 5.6286,32.54568"
|
d="m 2181.951,871.48396 5.6286,32.54568"
|
||||||
id="path6224" /><path
|
id="path6224" /><path
|
||||||
|
@ -1416,8 +1465,9 @@
|
||||||
d="m 2136.2521,933.28043 21.2925,34.53791"
|
d="m 2136.2521,933.28043 21.2925,34.53791"
|
||||||
id="path6268" /><path
|
id="path6268" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2186.1091,729.11099 7.5316,-20.76552 27.789,-11.49195 9.9584,-31.18354 35.0638,-2.63194 -17.3414,-16.7023 -1.7172,-7.07429 -35.5918,-53.90866"
|
d="m 2182.2472,728.82317 4.7803,-2.24442 6.6132,-18.23328 27.789,-11.49195 9.9584,-31.18354 35.0638,-2.63194 -17.3414,-16.7023 -1.7172,-7.07429 -35.5918,-53.90866"
|
||||||
id="path6270" /><path
|
id="path6270"
|
||||||
|
sodipodi:nodetypes="ccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2248.2519,642.79859 13.4693,-4.44904 6.818,-30.34984 0.2605,0.20421"
|
d="m 2248.2519,642.79859 13.4693,-4.44904 6.818,-30.34984 0.2605,0.20421"
|
||||||
id="path6272" /><path
|
id="path6272" /><path
|
||||||
|
@ -1436,8 +1486,9 @@
|
||||||
d="m 2591.7063,896.36467 -6.875,3.44182 -4.2376,-2.84223 -4.9732,-21.80464 14.1887,-46.38602 -22.2928,-48.12779"
|
d="m 2591.7063,896.36467 -6.875,3.44182 -4.2376,-2.84223 -4.9732,-21.80464 14.1887,-46.38602 -22.2928,-48.12779"
|
||||||
id="path6280" /><path
|
id="path6280" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2552.5584,801.66977 6.0991,-8.42253 -18.3754,-39.81236 3.7794,-13.28613 9.2355,-15.96721 -10.8452,-8.46576"
|
d="m 2550.9787,802.71127 2.2528,-1.97099 5.426,-7.49304 -18.3754,-39.81236 3.7794,-13.28613 9.2355,-15.96721 -10.8452,-8.46576"
|
||||||
id="path6282" /><path
|
id="path6282"
|
||||||
|
sodipodi:nodetypes="ccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2567.5164,780.64581 -18.0466,-7.30475"
|
d="m 2567.5164,780.64581 -18.0466,-7.30475"
|
||||||
id="path6284" /><path
|
id="path6284" /><path
|
||||||
|
@ -1457,8 +1508,9 @@
|
||||||
d="m 2608.7307,714.03442 58.0126,33.42557"
|
d="m 2608.7307,714.03442 58.0126,33.42557"
|
||||||
id="path6294" /><path
|
id="path6294" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2689.7373,814.82097 0.9433,22.42866"
|
d="m 2689.2012,814.68232 0.9849,0.36892 0.4945,22.19839"
|
||||||
id="path6296" /><path
|
id="path6296"
|
||||||
|
sodipodi:nodetypes="ccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2660.3701,1033.6436 10.8857,-50.64444"
|
d="m 2660.3701,1033.6436 10.8857,-50.64444"
|
||||||
id="path6298" /><path
|
id="path6298" /><path
|
||||||
|
@ -1466,8 +1518,9 @@
|
||||||
d="m 2693.4948,1001.3152 9.824,-25.42257"
|
d="m 2693.4948,1001.3152 9.824,-25.42257"
|
||||||
id="path6300" /><path
|
id="path6300" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2711.2391,1036.1821 24.6452,6.466"
|
d="m 2710.1962,1035.4452 25.6881,7.2029"
|
||||||
id="path6302" /><path
|
id="path6302"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2711.513,1153.9751 8.206,-7.6015 -5.02,-21.1592 9.1255,-19.14 -6.7895,-5.7642 -12.4574,1.3102 -11.0565,-16.5493 -2.4997,-9.0905 -19.4149,-7.5612"
|
d="m 2711.513,1153.9751 8.206,-7.6015 -5.02,-21.1592 9.1255,-19.14 -6.7895,-5.7642 -12.4574,1.3102 -11.0565,-16.5493 -2.4997,-9.0905 -19.4149,-7.5612"
|
||||||
id="path6304" /><path
|
id="path6304" /><path
|
||||||
|
@ -1475,8 +1528,9 @@
|
||||||
d="m 2695.6464,1088.2523 15.6635,5.6464 19.4078,-2.1297 7.7203,20.3246 17.1233,6.3165 25.2874,29.9377 35.3415,11.7276 12.1491,-5.5584 35.6345,9.2208 7.2892,26.2082 39.5609,9.5519 38.3435,17.004 17.0282,-7.7745 43.3016,7.8867"
|
d="m 2695.6464,1088.2523 15.6635,5.6464 19.4078,-2.1297 7.7203,20.3246 17.1233,6.3165 25.2874,29.9377 35.3415,11.7276 12.1491,-5.5584 35.6345,9.2208 7.2892,26.2082 39.5609,9.5519 38.3435,17.004 17.0282,-7.7745 43.3016,7.8867"
|
||||||
id="path6306" /><path
|
id="path6306" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 3034.5959,1215.6498 20.7053,-18.6192 62.2615,-20.206 -102.7281,-31.351 -37.3416,-33.4641 -13.7743,0.261 -5.7459,28.8522 17.5268,8.9586 4.0918,10.9869"
|
d="m 3031.6897,1218.0866 4.4989,-3.869 19.1126,-17.187 62.2615,-20.206 -102.7281,-31.351 -37.3416,-33.4641 -13.7743,0.261 -5.7459,28.8522 17.5268,8.9586 4.0918,10.9869"
|
||||||
id="path6308" /><path
|
id="path6308"
|
||||||
|
sodipodi:nodetypes="cccccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2977.493,1112.0095 -50.0383,-24.7438 -17.3683,-4.6469 -16.7828,-13.946 -61.4826,-25.751 -16.7926,-45.34969 -17.4611,-54.88827 1.8279,-27.62535 -15.827,-21.72993 -28.6216,-36.97048 11.1911,-16.01859 -8.7812,-52.31524 -29.3583,-39.74008 -11.3024,5.95503 4.3108,16.58917 -17.5101,13.57616 -10.6188,-26.54805 -15.8749,2.59689"
|
d="m 2977.493,1112.0095 -50.0383,-24.7438 -17.3683,-4.6469 -16.7828,-13.946 -61.4826,-25.751 -16.7926,-45.34969 -17.4611,-54.88827 1.8279,-27.62535 -15.827,-21.72993 -28.6216,-36.97048 11.1911,-16.01859 -8.7812,-52.31524 -29.3583,-39.74008 -11.3024,5.95503 4.3108,16.58917 -17.5101,13.57616 -10.6188,-26.54805 -15.8749,2.59689"
|
||||||
id="path6310" /><path
|
id="path6310" /><path
|
||||||
|
@ -1529,8 +1583,9 @@
|
||||||
d="m 1966.8015,1493.217 90.2911,44.9712"
|
d="m 1966.8015,1493.217 90.2911,44.9712"
|
||||||
id="path6342" /><path
|
id="path6342" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2012.8996,1575.9647 -13.0999,-66.3123"
|
d="m 2013.8874,1577.3531 -14.0877,-67.7007"
|
||||||
id="path6344" /><path
|
id="path6344"
|
||||||
|
sodipodi:nodetypes="cc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 2008.4183,1553.2801 44.2872,20.9824 29.3709,-1.8558 18.3838,-6.2073"
|
d="m 2008.4183,1553.2801 44.2872,20.9824 29.3709,-1.8558 18.3838,-6.2073"
|
||||||
id="path6346" /><path
|
id="path6346" /><path
|
||||||
|
@ -1587,8 +1642,9 @@
|
||||||
d="m 75.694261,1181.9609 21.334877,-17.556 28.045552,-11.2323"
|
d="m 75.694261,1181.9609 21.334877,-17.556 28.045552,-11.2323"
|
||||||
id="path4420" /><path
|
id="path4420" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 103.497,1220.2908 18.68603,-35.4742 -3.64832,-13.6443 4.19092,-1.5837 7.82027,14.6049 0.63053,23.4617"
|
d="m 102.4861,1220.9886 1.74916,-2.0993 17.94777,-34.0727 -3.64832,-13.6443 4.19092,-1.5837 7.82027,14.6049 0.63053,23.4617"
|
||||||
id="path4422" /><path
|
id="path4422"
|
||||||
|
sodipodi:nodetypes="ccccccc" /><path
|
||||||
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="fill:none;stroke:#b3bfb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 54.781808,1025.3949 33.354495,-8.0189 12.531207,-10.7981 -0.5709,-8.54662 -11.406464,-7.22775 3.293089,-6.56534 10.995725,4.19102 21.45636,-7.71409"
|
d="m 54.781808,1025.3949 33.354495,-8.0189 12.531207,-10.7981 -0.5709,-8.54662 -11.406464,-7.22775 3.293089,-6.56534 10.995725,4.19102 21.45636,-7.71409"
|
||||||
id="path4424" /><path
|
id="path4424" /><path
|
||||||
|
@ -2061,55 +2117,55 @@
|
||||||
inkscape:label="streenames_big"
|
inkscape:label="streenames_big"
|
||||||
style="display:inline"><text
|
style="display:inline"><text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:10.6667px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:5.33333px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
||||||
x="1455.4248"
|
x="1494.3121"
|
||||||
y="805.90985"
|
y="803.98395"
|
||||||
id="text7456"
|
id="text7456"
|
||||||
transform="rotate(16.766663)"><tspan
|
transform="rotate(16.766663)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan7454"
|
id="tspan7454"
|
||||||
x="1455.4248"
|
x="1494.3121"
|
||||||
y="805.90985">Boulevard de la Croisette</tspan></text><text
|
y="803.98395">Boulevard de la Croisette</tspan></text><text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:8px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:5.33333px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
||||||
x="-1026.3435"
|
x="-1027.5132"
|
||||||
y="1353.6066"
|
y="1352.9006"
|
||||||
id="text7476"
|
id="text7476"
|
||||||
transform="rotate(-86.166102)"><tspan
|
transform="rotate(-86.166102)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan7474"
|
id="tspan7474"
|
||||||
x="-1026.3435"
|
x="-1027.5132"
|
||||||
y="1353.6066">Bd. de la République </tspan></text><text
|
y="1352.9006">Bd. de la République </tspan></text><text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:8px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:5.33333px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
||||||
x="1253.7491"
|
x="1283.2651"
|
||||||
y="925.19934"
|
y="924.36908"
|
||||||
id="text7484"
|
id="text7484"
|
||||||
transform="rotate(5.9909432)"><tspan
|
transform="rotate(5.9909432)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan7488"
|
id="tspan7488"
|
||||||
x="1253.7491"
|
x="1283.2651"
|
||||||
y="925.19934">Division Française Libre</tspan></text><text
|
y="924.36908">Bd. de la 1re Division Française Libre</tspan></text><text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:8px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:5.33333px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
||||||
x="933.36108"
|
x="910.18988"
|
||||||
y="1188.0265"
|
y="1187.5366"
|
||||||
id="text7492"
|
id="text7492"
|
||||||
transform="rotate(-7.3187382)"><tspan
|
transform="rotate(-7.3187382)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan7490"
|
id="tspan7490"
|
||||||
x="933.36108"
|
x="910.18988"
|
||||||
y="1188.0265">Bd. de la Première </tspan></text><text
|
y="1187.5366">Bd. de la 1re Division Française Libre </tspan></text><text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:8px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:5.33333px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
||||||
x="582.92407"
|
x="583.13171"
|
||||||
y="1300.3771"
|
y="1299.7529"
|
||||||
id="text7496"
|
id="text7496"
|
||||||
transform="rotate(-15.110875)"><tspan
|
transform="rotate(-15.110875)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan7498"
|
id="tspan7498"
|
||||||
x="582.92407"
|
x="583.13171"
|
||||||
y="1300.3771">Avenue Bachaga Saïd Boualam</tspan></text></g><g
|
y="1299.7529">Avenue Bachaga Saïd Boualam</tspan></text></g><g
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="g4027"
|
id="g4027"
|
||||||
inkscape:label="streenames_medium"
|
inkscape:label="streenames_medium"
|
||||||
|
@ -2167,15 +2223,15 @@
|
||||||
x="-1203.7717"
|
x="-1203.7717"
|
||||||
y="1123.4534">Rue des Serbes</tspan></text><text
|
y="1123.4534">Rue des Serbes</tspan></text><text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:8px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:5.33333px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
||||||
x="574.72168"
|
x="576.28479"
|
||||||
y="1394.345"
|
y="1393.0796"
|
||||||
id="text7502"
|
id="text7502"
|
||||||
transform="rotate(-15.698253)"><tspan
|
transform="rotate(-15.698253)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan7504"
|
id="tspan7504"
|
||||||
x="574.72168"
|
x="576.28479"
|
||||||
y="1394.345">Promenade de la Pantiero</tspan></text><text
|
y="1393.0796">Promenade de la Pantiero</tspan></text><text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:4px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:4px;line-height:1.25;font-family:Inter;-inkscape-font-specification:'Inter, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;display:inline;opacity:0.999987;fill:#1c2729;fill-opacity:1"
|
||||||
x="1292.4921"
|
x="1292.4921"
|
||||||
|
@ -2265,4 +2321,11 @@
|
||||||
id="tspan7526"
|
id="tspan7526"
|
||||||
x="-1097.444"
|
x="-1097.444"
|
||||||
y="1317.7566"
|
y="1317.7566"
|
||||||
style="stroke-width:0.544708">Rue du Batéguier</tspan></text></g></g></g></svg>
|
style="stroke-width:0.544708">Rue du Batéguier</tspan></text></g></g></g><g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer13"
|
||||||
|
inkscape:label="marker-test"><g
|
||||||
|
id="g5665"
|
||||||
|
transform="translate(-0.29521069,-0.24647212)"><g
|
||||||
|
id="g5768"
|
||||||
|
transform="matrix(0.05938789,0,0,0.05938789,1942.5487,1056.9796)" /></g></g></svg>
|
||||||
|
|
Before Width: | Height: | Size: 9.4 MiB After Width: | Height: | Size: 9.4 MiB |
|
@ -4,22 +4,43 @@
|
||||||
<title>Title</title>
|
<title>Title</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="style.css"/>
|
|
||||||
<link rel="stylesheet" href="asset/leaflet/leaflet.css"/>
|
<link rel="stylesheet" href="asset/leaflet/leaflet.css"/>
|
||||||
|
<link rel="stylesheet" href="asset/css/style.css"/>
|
||||||
|
<link rel="stylesheet" href="asset/fonts/byl-iconfont-v3.2/icons.css"/>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div id="root">
|
||||||
|
<header>
|
||||||
|
<section id="logo">Hôtel Machin</section>
|
||||||
|
|
||||||
<div id="map"></div>
|
<section id="lang">
|
||||||
|
<span id="lang-marker" class="marker"></span>
|
||||||
|
<span id="tab-fr" class="tablabel" v-on:click="setlang('fr')">FR</span>
|
||||||
|
<span id="tab-en" class="tablabel" v-on:click="setlang('en')">EN</span>
|
||||||
|
<span id="tab-it" class="tablabel" v-on:click="setlang('it')">IT</span>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
<section id="map-container">
|
||||||
|
<div id="map"></div>
|
||||||
|
</section>
|
||||||
|
<main>
|
||||||
|
<div id="list">
|
||||||
|
|
||||||
<style>
|
<Accordeon v-bind:list="db.restaurants"></Accordeon>
|
||||||
#map { height: 500px; }
|
|
||||||
</style>
|
</div>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<script src="asset/leaflet/leaflet.js"></script>
|
<script src="asset/leaflet/leaflet.js"></script>
|
||||||
|
<script src="asset/js/vue.min.js"></script>
|
||||||
|
|
||||||
|
<script src="asset/js/main.js"></script>
|
||||||
<script src="asset/js/map.js"></script>
|
<script src="asset/js/map.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
<Accordeon v-bind:list="this.list.sub"></Accordeon>
|
||||||
|
|
Loading…
Reference in New Issue