MrDraw/SkeinPyPy/models/xml_models/creation/gear/ring.svg

701 lines
246 KiB
XML
Raw Normal View History

<?xml version='1.0' standalone='no'?>
<!--Written in KDevelop (http://www.kdevelop.org/)-->
<svg baseProfile='full' contentScriptType='text/ecmascript' contentStyleType='text/css' height='31758.3423px' onload='init()' preserveAspectRatio='xMidYMid meet' version='1.0' width='543.8527px' xmlns='http://www.w3.org/2000/svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:slice='http://www.reprap.org/slice' xmlns:xlink='http://www.w3.org/1999/xlink' zoomAndPan='magnify'>
<metadata>
<slice:layers id='sliceData' controlBoxHeight='720' controlBoxWidth='240' decimalPlacesCarried='4' layerThickness='0.4' margin='20' marginTop='60' maxX='73.4936' maxY='21.8248' maxZ='15.2' minX='-73.4936' minY='-191.9792' minZ='-0.0' perimeterWidth='0.72' procedureName='carve' svgMinWidth='516' template='svg_layer' textHeight='22.5' unitScale='3.7' version='0.1' yAxisPointingUpward='true' />
</metadata>
<script type='text/ecmascript'>
<![CDATA[
globalMetadata = document.getElementsByTagNameNS('http://www.reprap.org/slice', 'layers')[0];
globalSliceMinX = globalMetadata.getAttribute('minX') * 1;
globalSliceMaxX = globalMetadata.getAttribute('maxX') * 1;
globalSliceMinY = globalMetadata.getAttribute('minY') * 1;
globalSliceMaxY = globalMetadata.getAttribute('maxY') * 1;
globalSliceMinZ = globalMetadata.getAttribute('minZ') * 1;
globalSliceMaxZ = globalMetadata.getAttribute('maxZ') * 1;
//Control var's
globalLayerIndex = 0; //Number of currently viewed layer (zero index)
globalLatitude = 60.0;
globalLongitude = 45.0;
globalControlBoxHeight = globalMetadata.getAttribute('controlBoxHeight') * 1;
globalControlBoxWidth = globalMetadata.getAttribute('controlBoxWidth') * 1;
globalSliding = false;
globalObserving = false
//Display var's
globalMargin = globalMetadata.getAttribute('margin') * 1;
globalMarginTop = globalMetadata.getAttribute('marginTop') * 1;
globalDimensionX = globalSliceMaxX - globalSliceMinX;
globalDimensionY = globalSliceMaxY - globalSliceMinY;
globalDimensionZ = globalSliceMaxZ - globalSliceMinZ;
magnitudeXYSquared = globalDimensionX * globalDimensionX + globalDimensionY * globalDimensionY;
globalDimensionMagnitude = Math.sqrt(magnitudeXYSquared + globalDimensionZ * globalDimensionZ);
globalGlobeTravelRadian = 0.0;
globalGlobeInnerObserverRadius = 0.0;
globalTextHeight = globalMetadata.getAttribute('textHeight') * 1.0;
globalUnitScale = globalMetadata.getAttribute('unitScale') * 1.0;
globalXOffset = globalControlBoxWidth + globalMargin + globalMargin;
globalYOffset = globalMargin + globalMarginTop;
globalZoomScale = 1.0; //Default 1:1 may need smaller scale for large objects
globalScale = globalUnitScale * globalZoomScale;
//Globals to be set in init
globalLayers = [];
globalSlider = 0;
globalThumb = 0;
globalThumbRadius = 0.0;
globalSliderWidthMinusDiameter = 0.0;
function changeScale(newScale) {
globalZoomScale = newScale;
globalScale = globalUnitScale * globalZoomScale;
if (globalZoomScale >=1) { //dont scale line thickness for large display scale
document.getElementById('layerData').setAttributeNS(null, 'stroke-width', 2.0 / (globalScale));
}
}
function changeScaleIso(newScale) {
changeScale(newScale);
viewIso();
}
function changeScaleLayer(newScale) {
changeScale(newScale);
viewLayer();
}
function changeScaleScroll(newScale) {
changeScale(newScale);
viewScroll();
}
function displayIso(latitude, longitude) {
latitude = Math.max(0.0, latitude);
latitude = Math.min(89.0, latitude);
globalLatitude = Math.round(latitude);
globalLongitude = Math.round((longitude + 540.0) % 360.0) - 180.0;
latitudeRadians = getRadians(globalLatitude);
longitudeWiddershinsRadians = getRadians(90.0 - globalLongitude);
unitX = Math.cos(longitudeWiddershinsRadians);
unitY = Math.sin(longitudeWiddershinsRadians);
latitudeOverLayers = globalDimensionZ / globalLayers.length;
globalOneOverUnitScaleString = (1.0 / globalUnitScale).toString();
yScale = -1.0 * globalScale * Math.cos(latitudeRadians);
scaleRotateCenterString = ' scale(' + globalScale + ', ' + yScale + ')';
scaleRotateCenterString += ' rotate(' + (-1.0 * globalLongitude).toString() + ')';
centerX = (-0.5 * globalDimensionX - globalSliceMinX).toString();
centerY = (-0.5 * globalDimensionY - globalSliceMinY).toString();
scaleRotateCenterString += ' translate(' + centerX + ', ' + centerY + ')';
x = 0.5 * globalDimensionMagnitude * globalScale + globalXOffset;
halfLengthMinusOne = 0.5 * (globalLayers.length - 1);
for (var i in globalLayers) {
latitudeZSin = Math.sin(latitudeRadians) * (i - halfLengthMinusOne) * latitudeOverLayers
y = globalScale * (0.5 * globalDimensionMagnitude - latitudeZSin) + globalYOffset;
// y = globalDimensionY * globalScale + globalYOffset - i * unitY * latitudeOverLayers;
transformString = ' translate(' + x + ', ' + y + ')';
globalLayers[i].setAttributeNS(null, 'transform', transformString + scaleRotateCenterString);
}
setText('latitudeIso', 'Latitude: ' + globalLatitude.toString() + '°');
setText('longitudeIso', 'Longitude: ' + globalLongitude.toString() + '°');
globeMoveableRadius = globalGlobeTravelRadian * latitudeRadians + globalGlobeInnerObserverRadius;
globalObserver.setAttribute('cx', globalGlobeCenterX + unitX * globeMoveableRadius);
globalObserver.setAttribute('cy', globalGlobeCenterY - unitY * globeMoveableRadius);
}
function displayIsoByLatitude(latitude) {
displayIso(latitude, globalLongitude);
}
function displayIsoByLongitude(longitude) {
displayIso(globalLatitude, longitude);
}
function displayLayer(layerNum) {
if (globalLayers.length <= 1) {
document.getElementById('maxIndexLayer').setAttributeNS(null, 'visibility', 'hidden');
document.getElementById('minIndexLayer').setAttributeNS(null, 'visibility', 'hidden');
globalSlider.setAttributeNS(null, 'visibility', 'hidden');
globalThumb.setAttributeNS(null, 'visibility', 'hidden');
}
if (layerNum <= 0) {
document.getElementById('decreaseLayerIndex').setAttributeNS(null, 'visibility', 'hidden');
}
else {
document.getElementById('decreaseLayerIndex').setAttributeNS(null, 'visibility', 'visible');
}
if (layerNum >= globalLayers.length - 1) {
document.getElementById('increaseLayerIndex').setAttributeNS(null, 'visibility', 'hidden');
}
else {
document.getElementById('increaseLayerIndex').setAttributeNS(null, 'visibility', 'visible');
}
if (layerNum < 0 || layerNum >= globalLayers.length) {
return
}
globalLayers[globalLayerIndex].setAttributeNS(null, 'visibility', 'hidden');
currentLayerElement = globalLayers[layerNum]
currentLayerElement.setAttributeNS(null, 'visibility', 'visible');
globalLayerIndex = layerNum;
setText('currentIndexLayer', 'Layer: ' + globalLayerIndex.toString() + ', ' + currentLayerElement.getAttribute('id'));
//Slider
if (!globalSliding) {
placeThumb(globalSliderWidthMinusDiameter / (globalLayers.length - 1) * globalLayerIndex + globalThumbRadius);
}
}
function getDegrees(radians) {
return radians / Math.PI * 180.0;
}
function getRadians(degrees) {
return degrees / 180.0 * Math.PI;
}
function getScaleTransformString(scale) {
scaleTransformString = 'scale(' + scale + ' ' + (scale * - 1)
return scaleTransformString + ') translate(' + (globalSliceMinX * - 1) + ' ' + (globalSliceMinY * - 1) + ')';
}
function getWidth() {
return (globalDimensionX * globalScale) + globalXOffset
}
function hideElements(elementNames) {
for (var elementNameIndex in elementNames) {
document.getElementById(elementNames[elementNameIndex]).setAttributeNS(null, 'visibility', 'hidden');
}
}
function init() {
//Find only layer groups
globe = document.getElementById('globe');
globalGlobeCenterX = globe.getAttribute('cx') * 1;
globalGlobeCenterXWindow = globalGlobeCenterX + globalMargin;
globalGlobeCenterY = globe.getAttribute('cy') * 1;
globalGlobeCenterYWindow = globalGlobeCenterX + globalMarginTop;
globalObserver = document.getElementById('observer');
globeRadius = globe.getAttribute('r') * 1.0;
observerRadius = globalObserver.getAttribute('r') * 1.0;
globalGlobeInnerObserverRadius = document.getElementById('cover').getAttribute('r') * 1.0 + observerRadius;
globalGlobeTravelRadian = getDegrees(globeRadius - globalGlobeInnerObserverRadius - observerRadius) / 89.0;
globalSlider = document.getElementById('slider');
globalSliderX = globalSlider.getAttribute('x') * 1;
globalSliderXWindow = globalSliderX + globalMargin
globalThumb = document.getElementById('thumb');
globalThumbRadius = globalThumb.getAttribute('r') * 1;
globalSliderWidthMinusRadius = globalSlider.getAttribute('width') * 1 - globalThumbRadius;
globalSliderWidthMinusDiameter = globalSliderWidthMinusRadius - globalThumbRadius;
var allGroups = document.getElementsByTagName('g');
for (var i = 0; i < allGroups.length; i++) {
if (allGroups[i].id.indexOf('z:') == 0) {
globalLayers.push(allGroups[i]);
}
}
//Slider
layerControlBox = document.getElementById('layerControlBox');
layerControlBox.addEventListener('mouseup', sliderUp, false);
layerControlBox.addEventListener('mousemove', sliderMove, false);
globalSlider.addEventListener('mousedown', sliderDownMove, false);
globalThumb.addEventListener('mousedown', sliderDownMove, false);
//Observer
isoControlBox = document.getElementById('isoControlBox');
isoControlBox.addEventListener('mouseup', observerUp, false);
isoControlBox.addEventListener('mousemove', observerMove, false);
globe.addEventListener('mousedown', observerDownMove, false);
globalObserver.addEventListener('mousedown', observerDownMove, false);
//Control box data
setText('maxIndexLayer', globalLayers.length - 1);
changeScaleLayer(globalZoomScale);
}
function observerDown(event) {
globalObserving = true;
}
function observerDownMove(event) {
globalObserving = true;
observerMove(event);
}
function observerMove(event) {
if (!globalObserving) {
return;
}
observerX = event.clientX - globalGlobeCenterXWindow + window.pageXOffset;
observerY = event.clientY - globalGlobeCenterYWindow + window.pageYOffset;
distanceFromCenter = Math.sqrt(observerX * observerX + observerY * observerY);
latitudeRadians = (distanceFromCenter - globalGlobeInnerObserverRadius) / globalGlobeTravelRadian;
longitudeRadians = Math.atan2(observerX, -observerY);
displayIso(getDegrees(latitudeRadians), getDegrees(longitudeRadians));
}
function observerUp(event) {
globalObserving = false;
}
function placeThumb(value) {
if (globalLayers.length > 1) {
globalThumb.setAttribute('cx', globalSliderX + value);
}
}
function setScaleText(scaleID) {
setText(scaleID, ': ' + globalZoomScale);
}
function setSVG(width, height) {
rootSVG = document.getElementsByTagName('svg')[0];
svgMinWidth = globalMetadata.getAttribute('svgMinWidth') * 1;
height = Math.max(globalControlBoxHeight + globalMargin + globalMarginTop, height);
width = Math.max(svgMinWidth, width);
rootSVG.setAttributeNS(null, 'width', width + 'px')
rootSVG.setAttributeNS(null, 'height', height + 'px')
}
function setText(id, str) {
e = document.getElementById(id)
if (e != null)
e.firstChild.nodeValue = str;
}
function showElements(elementNames) {
for (var elementNameIndex in elementNames) {
document.getElementById(elementNames[elementNameIndex]).setAttributeNS(null, 'visibility', 'visible');
}
}
function sliderDown(event) {
globalSliding = true;
}
function sliderDownMove(event) {
globalSliding = true;
sliderMove(event);
}
function sliderMove(event) {
if (!globalSliding) {
return;
}
value = event.clientX - globalSliderXWindow + window.pageXOffset;
if (value >= globalThumbRadius && value <= globalSliderWidthMinusRadius) {
placeThumb(value);
zoneWidth = globalSliderWidthMinusDiameter / (globalLayers.length);
newLayer = Math.round((value - globalThumbRadius - 0.5 * zoneWidth) / zoneWidth)
if (newLayer != globalLayerIndex) {
displayLayer(newLayer)
}
}
}
function sliderUp(event) {
globalSliding = false;
}
function viewIso() {
height = (globalDimensionMagnitude * globalScale) + globalYOffset;
setSVG((globalDimensionMagnitude * globalScale) + globalXOffset, height);
for (var i in globalLayers) {
// globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + globalMargin + ' ' + height + ')');
globalLayers[i].setAttributeNS(null, 'visibility', 'visible');
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'hidden');
pathElements = globalLayers[i].getElementsByTagName('path');
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
pathElements[pathElementIndex].setAttributeNS(null, 'transform', '');
}
}
//show control box
hideElements(['decreaseLayerIndex', 'increaseLayerIndex', 'isoViewButton', 'layerControlBox', 'layerViewLabel', 'scrollControlBox', 'scrollViewLabel']);
showElements(['isoControlBox', 'isoViewLabel', 'layerViewButton', 'scrollViewButton']);
displayIso(globalLatitude, globalLongitude);
setScaleText('scaleIso');
}
function viewLayer() {
//Set svg size and view port
height = (globalDimensionY * globalScale) + globalYOffset;
setSVG(getWidth(), height);
//move and hide all layers
for (var i in globalLayers) {
globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + globalXOffset + ' ' + height + ')');
globalLayers[i].setAttributeNS(null, 'visibility', 'hidden');
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'hidden');
transform = getScaleTransformString(globalScale);
pathElements = globalLayers[i].getElementsByTagName('path');
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
pathElements[pathElementIndex].setAttributeNS(null, 'transform', transform);
}
}
//show control box
hideElements(['isoControlBox', 'isoViewLabel', 'layerViewButton', 'scrollControlBox', 'scrollViewLabel'])
showElements(['isoViewButton', 'layerControlBox', 'layerViewLabel', 'scrollViewButton'])
//show current layer
displayLayer(globalLayerIndex);
setScaleText('scaleLayer');
}
function viewScroll() {
//Set svg size and view port
yDimensionScale = globalDimensionY * globalScale
singleHeight = (globalMargin + yDimensionScale + globalTextHeight)
height = globalLayers.length * singleHeight + globalMargin + globalMargin + globalYOffset;
setSVG(getWidth(), height);
//move and show all layers
for (var i in globalLayers) {
x = globalXOffset;
y = i * singleHeight + yDimensionScale + globalYOffset;
transform = getScaleTransformString(globalScale);
globalLayers[i].setAttributeNS(null, 'transform', 'translate(' + x + ', ' + y + ')');
pathElements = globalLayers[i].getElementsByTagName('path');
for (var pathElementIndex = 0; pathElementIndex < pathElements.length; pathElementIndex++) {
pathElements[pathElementIndex].setAttributeNS(null, 'transform', transform);
}
globalLayers[i].setAttributeNS(null, 'visibility', 'visible');
globalLayers[i].getElementsByTagName('text')[0].setAttributeNS(null, 'visibility', 'visible');
}
//show control box
hideElements(['isoControlBox', 'isoViewLabel', 'layerControlBox', 'layerViewLabel', 'scrollViewButton'])
showElements(['isoViewButton', 'layerViewButton', 'scrollControlBox', 'scrollViewLabel'])
setScaleText('scaleScroll');
}
]]>
</script>
<title >ring.xml - Slice Layers</title>
<!--Begin Layer Data -->
<g id='layerData' fill='#556B2F' fill-rule='evenodd' font-family='Arial' font-size='15px' font-weight='bold' inkscape:groupmode='layer' inkscape:label='Slice Layers' stroke='#00F' stroke-width='0.54px'>
<!--id='sliceElementTemplate' must be there or else the slice template will not be found-->
<g id='z:0.2' inkscape:groupmode='layer' inkscape:label='Layer 0, z:0.2' transform='translate(280.0, 871.0748)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate0.2' fill='#000' stroke='none' y='15' >Layer 0, z:0.2</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.1915 20.7384 L -4.3996 19.8364 L -4.494 18.6262 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.9422 15.2752 L -12.7801 15.8154 L -13.6095 16.2112 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8272 9.6531 L -17.9899 8.6479 L -17.3645 8.0997 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.167 0.2351 L -20.3332 -0.1311 L -21.1598 -0.5328 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2857 -8.7011 L -17.6501 -8.6298 L -16.8832 -8.4372 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.1342 -14.8388 L -12.575 -15.9789 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -4.9061 -20.129 L -4.1274 -18.935 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0358 -18.7387 L 4.4357 -19.4752 L 4.9177 -20.1435 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7744 -16.866 L 12.5706 -15.9631 L 12.1305 -14.8317 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 17.0004 -8.4788 L 17.992 -8.6746 L 19.2955 -8.7008 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1511 -0.5283 L 20.3181 -0.1247 L 19.1592 0.2366 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.3709 8.1044 L 18.2627 8.9404 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1539 16.007 L 12.4342 15.6145 L 11.7606 15.1268 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.4943 18.6341 L 4.4535 19.4712 L 4.189 20.7479 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:0.6' inkscape:groupmode='layer' inkscape:label='Layer 1, z:0.6' transform='translate(280.0, 1704.6496)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate0.6' fill='#000' stroke='none' y='15' >Layer 1, z:0.6</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0525 -14.6935 L -12.4653 -15.6253 L -12.6865 -16.4233 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.209 -20.4882 L -4.6342 -19.7682 L -4.03 -18.7251 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 3.9693 -18.5747 L 4.4314 -19.4689 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.3431 -15.2924 L 11.981 -14.5803 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.6519 0.1156 L 18.8693 0.2764 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.2257 8.003 L 17.9947 8.6525 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:1.0' inkscape:groupmode='layer' inkscape:label='Layer 2, z:1.0' transform='translate(280.0, 2538.2244)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate1.0' fill='#000' stroke='none' y='15' >Layer 2, z:1.0</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.0092 0.2607 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1459 -8.5221 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.3431 -15.2924 L -12.5729 -15.9704 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.4314 -19.4689 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 3.9693 -18.5747 L 4.2603 -19.1849 L 4.6471 -19.7873 L 5.228 -20.5107 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.4584 -15.6033 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.6556 -8.6308 L 18.3677 -8.7039 L 19.2955 -8.7008 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 19.9668 0.0119 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.2399 8.0129 L 17.7559 8.4225 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.4398 15.6181 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:1.4' inkscape:groupmode='layer' inkscape:label='Layer 3, z:1.4' transform='translate(280.0, 3371.7992)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate1.4' fill='#000' stroke='none' y='15' >Layer 3, z:1.4</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.4547 19.4636 L -4.497 18.8551 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.7631 15.1291 L -12.1624 15.4366 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -17.9947 8.6525 L -17.5454 8.2401 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.1626 0.2361 L -19.6519 0.1156 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -17.9843 -8.674 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.1322 -14.8347 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.4314 -19.4689 L -4.1293 -18.9391 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.2603 -19.1849 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.4584 -15.6033 L 12.2326 -15.0367 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 17.1625 -8.527 L 17.6556 -8.6308 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 19.9668 0.0119 L 19.3831 0.1886 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.3673 8.1016 L 17.7559 8.4225 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.4398 15.6181 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.4942 18.6296 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:1.8' inkscape:groupmode='layer' inkscape:label='Layer 4, z:1.8' transform='translate(280.0, 4205.374)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate1.8' fill='#000' stroke='none' y='15' >Layer 4, z:1.8</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:2.2' inkscape:groupmode='layer' inkscape:label='Layer 5, z:2.2' transform='translate(280.0, 5038.9488)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate2.2' fill='#000' stroke='none' y='15' >Layer 5, z:2.2</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:2.6' inkscape:groupmode='layer' inkscape:label='Layer 6, z:2.6' transform='translate(280.0, 5872.5236)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate2.6' fill='#000' stroke='none' y='15' >Layer 6, z:2.6</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:3.0' inkscape:groupmode='layer' inkscape:label='Layer 7, z:3.0' transform='translate(280.0, 6706.0984)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate3.0' fill='#000' stroke='none' y='15' >Layer 7, z:3.0</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:3.4' inkscape:groupmode='layer' inkscape:label='Layer 8, z:3.4' transform='translate(280.0, 7539.6732)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate3.4' fill='#000' stroke='none' y='15' >Layer 8, z:3.4</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.4547 19.4636 L -4.497 18.8551 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.7631 15.1291 L -12.1624 15.4366 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -17.9947 8.6525 L -17.5454 8.2401 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.1626 0.2361 L -19.6519 0.1156 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -17.9843 -8.674 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.1322 -14.8347 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.4314 -19.4689 L -4.1293 -18.9391 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.2603 -19.1849 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.4584 -15.6033 L 12.2326 -15.0367 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 17.1625 -8.527 L 17.6556 -8.6308 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 19.9668 0.0119 L 18.9518 0.2678 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.3673 8.1016 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1617 16.0109 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.4942 18.6296 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:3.8' inkscape:groupmode='layer' inkscape:label='Layer 9, z:3.8' transform='translate(280.0, 8373.248)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate3.8' fill='#000' stroke='none' y='15' >Layer 9, z:3.8</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M 5.9165 -154.6965 L -1.3806 -162.9332 L -11.6696 -166.8353 L -22.5934 -165.5089 L -31.6496 -159.2579 L -36.7635 -149.5143 L -36.7635 -138.5102 L -31.6496 -128.7665 L -22.5934 -122.5155 L -11.6696 -121.1891 L -1.3806 -125.0912 L 5.9165 -133.3279 L 8.5499 -144.0122 z M 5.9165 -104.6721 L -1.3806 -112.9088 L -11.6696 -116.8109 L -22.5934 -115.4845 L -31.6496 -109.2335 L -36.7635 -99.4898 L -36.7635 -88.4857 L -31.6496 -78.7421 L -22.5934 -72.4911 L -11.6696 -71.1647 L -1.3806 -75.0668 L 5.9165 -83.3035 L 8.5499 -93.9878 z M 49.2389 -129.6843 L 41.9418 -137.921 L 31.6528 -141.8231 L 20.729 -140.4967 L 11.6728 -134.2457 L 6.559 -124.502 L 6.559 -113.498 L 11.6728 -103.7543 L 20.729 -97.5033 L 31.6528 -96.1769 L 41.9418 -100.079 L 49.2389 -108.3157 L 51.8723 -119.0 z' transform='scale(3.7, -3.7) translate(73.4936, 191.9792)' />
</g>
<g id='z:4.2' inkscape:groupmode='layer' inkscape:label='Layer 10, z:4.2' transform='translate(280.0, 9206.8228)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate4.2' fill='#000' stroke='none' y='15' >Layer 10, z:4.2</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M -4.9937 -55.1198 L -4.2954 -52.5584 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5458 -53.3442 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.0698 -54.9855 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0689 -56.3236 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.8519 -59.9992 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.8294 -65.872 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 44.9996 -70.8058 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.4218 -76.9147 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 57.0163 -84.6187 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 59.9266 -93.2619 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.4895 -101.203 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2074 -110.0926 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.3347 -118.7723 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968
</g>
<g id='z:4.6' inkscape:groupmode='layer' inkscape:label='Layer 11, z:4.6' transform='translate(280.0, 10040.3976)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate4.6' fill='#000' stroke='none' y='15' >Layer 11, z:4.6</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 L -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 z M -4.9937 -55.1198 L -4.2013 -52.2837 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.3841 -52.8268 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.1343 -54.8789 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.066 -56.2536 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.4293 -60.3629 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.7953 -65.9864 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.8911 -70.3921 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.6966 -78.1493 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5991 -84.6861 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 61.2716 -91.9262 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.758 -101.2288 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 64.5415 -110.4375 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.4522 -118.8138 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968
</g>
<g id='z:5.0' inkscape:groupmode='layer' inkscape:label='Layer 12, z:5.0' transform='translate(280.0, 10873.9724)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate5.0' fill='#000' stroke='none' y='15' >Layer 12, z:5.0</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -53.8371 -68.7193 L -65.4062 -85.1089 L -72.1245 -104.0121 L -73.4936 -124.0268 L -69.412 -143.6687 L -60.1825 -161.4811 L -46.4895 -176.1428 L -29.3486 -186.5665 L -10.031 -191.9791 L 10.0305 -191.9792 L 29.3481 -186.5668 L 46.4891 -176.1432 L 60.1822 -161.4816 L 69.4118 -143.6693 L 73.4936 -124.0274 L 72.1246 -104.0126 L 65.4065 -85.1094 L 53.8374 -68.7197 L 38.2755 -56.0591 L 19.8749 -48.0665 L 0.0003 -45.3347 L -19.8744 -48.0663 L -38.2751 -56.0588 z M -4.9937 -55.1198 L -4.3189 -52.6271 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2957 -49.5847 L 3.509 -50.4249 L 4.7025 -53.8931 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.554 -54.2143 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.066 -56.2536 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.5304 -60.2736 L 32.6323 -58.585 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2313 L 37.8464 -65.8147 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.984 -71.7275 L 43.2774 -71.7488 L 45.2424 -70.6883 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2981 -73.2981 L 52.5122 -74.7584 L 51.1193 -77.4528 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.9445 -84.6294 L 59.2724 -84.3355 L 60.5766 -85.0261 L 62.689 -89.1027 L 62.5011 -90.5666 L 60.9185 -92.2989 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.0991 -101.1702 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1247 L 67.8547 -108.4836 L 64.7019 -110.3577 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.1883 -119.0895 L 68.6546 -120.1789 L 69.4102 -121.4466 L 6
</g>
<g id='z:5.4' inkscape:groupmode='layer' inkscape:label='Layer 13, z:5.4' transform='translate(280.0, 11707.5471)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate5.4' fill='#000' stroke='none' y='15' >Layer 13, z:5.4</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.3142 -52.6134 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.7055 -53.9047 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.5618 -54.2027 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0666 -56.2676 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.2878 -60.4879 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.843 -65.8262 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2551 -70.6824 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.1127 -77.4639 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.9589 -84.6273 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.4236 -92.7943 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 64.481 -101.3148 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2532 -110.0681 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.5263 -119.2262 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968
</g>
<g id='z:5.8' inkscape:groupmode='layer' inkscape:label='Layer 14, z:5.8' transform='translate(280.0, 12541.1219)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate5.8' fill='#000' stroke='none' y='15' >Layer 14, z:5.8</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.3095 -52.5996 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.7086 -53.9162 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.5696 -54.191 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0672 -56.2816 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.2979 -60.479 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.8396 -65.8376 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2678 -70.6765 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.1061 -77.4751 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.9732 -84.6251 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.4143 -92.8032 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 62.5141 -101.1352 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2417 -110.0743 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.5397 -119.2318 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968
</g>
<g id='z:6.2' inkscape:groupmode='layer' inkscape:label='Layer 15, z:6.2' transform='translate(280.0, 13374.6967)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate6.2' fill='#000' stroke='none' y='15' >Layer 15, z:6.2</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.6519 0.1156 L 18.9922 0.2634 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1617 16.0109 L 12.1624 15.4366 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.3048 -52.5859 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5384 -53.3193 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.9805 -53.5875 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0906 -56.9794 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.8296 -60.0178 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.0044 -65.2392 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2805 -70.6706 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.0995 -77.4863 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.9876 -84.623 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.4049 -92.8122 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 62.526 -101.1358 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2303 -110.0804 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.5531 -119.2375 L 68.6546 -120.1
</g>
<g id='z:6.6' inkscape:groupmode='layer' inkscape:label='Layer 16, z:6.6' transform='translate(280.0, 14208.2715)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate6.6' fill='#000' stroke='none' y='15' >Layer 16, z:6.6</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.4547 19.4636 L -4.497 18.8551 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.7631 15.1291 L -12.1624 15.4366 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -17.9947 8.6525 L -17.5454 8.2401 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.1626 0.2361 L -19.6519 0.1156 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -17.9843 -8.674 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.1322 -14.8347 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.4314 -19.4689 L -4.1293 -18.9391 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.2603 -19.1849 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.4584 -15.6033 L 12.2326 -15.0367 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 17.1625 -8.527 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.3831 0.1886 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.2257 8.003 L 17.7559 8.4225 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1617 16.0109 L 12.4398 15.6181 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.4942 18.6296 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.3001 -52.5722 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5421 -53.3318 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.9892 -53.5752 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0907 -56.9923 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.8407 -60.0085 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.001 -65.2518 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2932 -70.6647 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.0929 -77.4975 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 57.002 -84.6209 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.3955 -92.8212 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 62.5379 -101.1365 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2189 -110.0865 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.5664 -119.243
</g>
<g id='z:7.0' inkscape:groupmode='layer' inkscape:label='Layer 17, z:7.0' transform='translate(280.0, 15041.8463)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate7.0' fill='#000' stroke='none' y='15' >Layer 17, z:7.0</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.1624 15.4366 L -12.7723 15.8114 L -13.6095 16.2112 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.5383 9.2689 L -17.7559 8.4225 L -17.1241 7.94 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.6519 0.1156 L -20.3252 -0.1275 L -21.1598 -0.5328 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -18.8052 -8.7147 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.2603 -19.1849 L -3.9304 -18.4616 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.4314 -19.4689 L 5.228 -20.5107 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.6556 -8.6308 L 18.3677 -8.7039 L 19.2955 -8.7008 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 20.724 -0.3076 L 19.9668 0.0119 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.2257 8.003 L 17.7559 8.4225 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1617 16.0109 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.2954 -52.5584 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5458 -53.3442 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.0698 -54.9855 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0689 -56.3236 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.8519 -59.9992 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.8294 -65.872 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 44.9996 -70.8058 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.4218 -76.9147 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 57.0163 -84.6187 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 59.9266 -93.2619 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.4895 -101.203 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2074 -110.0926 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484
</g>
<g id='z:7.4' inkscape:groupmode='layer' inkscape:label='Layer 18, z:7.4' transform='translate(280.0, 15875.4211)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate7.4' fill='#000' stroke='none' y='15' >Layer 18, z:7.4</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.1624 15.4366 L -12.7723 15.8114 L -13.6095 16.2112 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.5383 9.2689 L -17.7559 8.4225 L -17.1241 7.94 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.6519 0.1156 L -20.3252 -0.1275 L -21.1598 -0.5328 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -18.8052 -8.7147 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.2603 -19.1849 L -3.9304 -18.4616 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.4314 -19.4689 L 5.228 -20.5107 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.6556 -8.6308 L 18.3677 -8.7039 L 19.2955 -8.7008 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 20.724 -0.3076 L 19.9668 0.0119 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.2257 8.003 L 17.7559 8.4225 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1617 16.0109 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.2907 -52.5447 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5494 -53.3566 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.0762 -54.9748 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0695 -56.3376 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.8631 -59.9899 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.8259 -65.8834 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.0117 -70.7999 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.415 -76.927 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 57.0307 -84.6166 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 59.9177 -93.2699 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.5029 -101.2043 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.196 -110.0987 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L
</g>
<g id='z:7.8' inkscape:groupmode='layer' inkscape:label='Layer 19, z:7.8' transform='translate(280.0, 16708.9959)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate7.8' fill='#000' stroke='none' y='15' >Layer 19, z:7.8</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.1624 15.4366 L -12.7723 15.8114 L -13.6095 16.2112 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.5383 9.2689 L -17.7559 8.4225 L -17.1241 7.94 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.6519 0.1156 L -20.3252 -0.1275 L -21.1598 -0.5328 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -18.8052 -8.7147 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.2603 -19.1849 L -3.9304 -18.4616 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.4314 -19.4689 L 5.228 -20.5107 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.6556 -8.6308 L 18.3677 -8.7039 L 19.2955 -8.7008 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 20.724 -0.3076 L 19.9668 0.0119 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.2257 8.003 L 17.7559 8.4225 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1617 16.0109 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.286 -52.531 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.7237 -53.974 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.4222 -54.4182 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0912 -57.0313 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.8742 -59.9806 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.8225 -65.8949 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.0239 -70.794 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.0731 -77.531 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 57.045 -84.6144 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 59.9089 -93.2779 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.5163 -101.2056 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.1845 -110.1048 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64
</g>
<g id='z:8.2' inkscape:groupmode='layer' inkscape:label='Layer 20, z:8.2' transform='translate(280.0, 17542.5707)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate8.2' fill='#000' stroke='none' y='15' >Layer 20, z:8.2</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.1624 15.4366 L -12.7723 15.8114 L -13.6095 16.2112 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.5383 9.2689 L -17.7559 8.4225 L -17.1241 7.94 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.6519 0.1156 L -20.3252 -0.1275 L -21.1598 -0.5328 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -18.8052 -8.7147 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.0474 -14.6844 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.2603 -19.1849 L -3.9304 -18.4616 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.4314 -19.4689 L 5.228 -20.5107 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.6556 -8.6308 L 18.3677 -8.7039 L 19.2955 -8.7008 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 20.724 -0.3076 L 19.9668 0.0119 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.2257 8.003 L 17.7559 8.4225 L 18.2571 8.9337 L 18.8331 9.661 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.1617 16.0109 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.2813 -52.5172 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.7268 -53.9855 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.8143 -53.8275 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0922 -57.6717 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.3586 -60.4254 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.3056 -63.9288 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.036 -70.7882 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.7412 -78.0786 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.3734 -84.7266 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 61.3432 -91.8491 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.5297 -101.2069 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.1731 -110.111 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484
</g>
<g id='z:8.6' inkscape:groupmode='layer' inkscape:label='Layer 21, z:8.6' transform='translate(280.0, 18376.1455)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate8.6' fill='#000' stroke='none' y='15' >Layer 21, z:8.6</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.4547 19.4636 L -4.497 18.8551 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.7631 15.1291 L -12.1624 15.4366 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -17.9947 8.6525 L -17.5454 8.2401 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.1626 0.2361 L -19.6519 0.1156 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -17.9843 -8.674 L -17.3817 -8.5799 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.1322 -14.8347 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.4314 -19.4689 L -4.1293 -18.9391 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.2603 -19.1849 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.4584 -15.6033 L 12.2326 -15.0367 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 17.1625 -8.527 L 17.6556 -8.6308 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 19.9668 0.0119 L 19.3831 0.1886 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.3673 8.1016 L 17.7559 8.4225 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.4398 15.6181 L 11.9377 15.2719 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.4942 18.6296 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.2013 -52.2837 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.7298 -53.9971 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.9543 -53.6242 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.092 -57.6836 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.3687 -60.4165 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.3297 -63.8109 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.3567 -70.6351 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.06 -77.5533 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.7234 -84.6657 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 59.8912 -93.2939 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.8832 -101.2427 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.1617 -110.1171 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.6333 -119.2713 L 68.6546 -120
</g>
<g id='z:9.0' inkscape:groupmode='layer' inkscape:label='Layer 22, z:9.0' transform='translate(280.0, 19209.7203)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate9.0' fill='#000' stroke='none' y='15' >Layer 22, z:9.0</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.3985 19.844 L -4.4942 18.6296 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.6355 15.013 L -12.4398 15.6181 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -18.2571 8.9337 L -17.3673 8.1016 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -18.9922 0.2634 L -19.9668 0.0119 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -18.3677 -8.7039 L -17.1625 -8.527 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.041 -14.6744 L -12.4584 -15.6033 L -12.7763 -16.8756 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.6471 -19.7873 L -4.0339 -18.7347 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.1293 -18.9391 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.5729 -15.9704 L 12.1322 -14.8347 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 16.9971 -8.4778 L 17.9843 -8.674 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 20.3252 -0.1275 L 19.1626 0.2361 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.5454 8.2401 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.7723 15.8114 L 11.7631 15.1291 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.483 18.4574 L 4.4547 19.4636 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.2013 -52.2837 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.4275 -52.9599 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.4442 -54.3842 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0918 -57.6956 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 31.075 -59.8134 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.0963 -64.8746 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 44.9389 -70.8351 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.7285 -78.0988 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.2671 -84.7456 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.9185 -92.2989 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 62.9127 -101.1578 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.5596 -109.8987 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.8738 -118.9679 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968
</g>
<g id='z:9.4' inkscape:groupmode='layer' inkscape:label='Layer 23, z:9.4' transform='translate(280.0, 20043.2951)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate9.4' fill='#000' stroke='none' y='15' >Layer 23, z:9.4</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.189 20.7479 L -4.4547 19.4636 L -4.497 18.8551 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.7631 15.1291 L -12.1624 15.4366 L -13.1617 16.0109 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8331 9.661 L -17.9947 8.6525 L -17.5454 8.2401 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.1524 0.2377 L -19.6358 0.12 L -20.724 -0.3076 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.2955 -8.7008 L -17.9843 -8.674 L -17.3982 -8.583 L -16.8912 -8.4401 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.1322 -14.8347 L -12.3431 -15.2924 L -12.6808 -16.3945 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.228 -20.5107 L -4.4314 -19.4689 L -4.1293 -18.9391 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0339 -18.7347 L 4.2603 -19.1849 L 4.9114 -20.136 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7763 -16.8756 L 12.4584 -15.6033 L 12.2326 -15.0367 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 17.1625 -8.527 L 17.6556 -8.6308 L 18.8052 -8.7147 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1598 -0.5328 L 19.9668 0.0119 L 19.3831 0.1886 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.3588 8.0957 L 17.7433 8.4115 L 18.5383 9.2689 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6095 16.2112 L 12.4398 15.6181 L 11.9512 15.2818 L 11.5564 14.9331 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.4942 18.6296 L 4.4857 19.1335 L 4.3117 20.2729 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.619 -53.5931 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.3667 -52.7735 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.9543 -53.6242 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.066 -56.2536 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.3889 -60.3986 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.8464 -65.8147 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2424 -70.6883 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.4556 -76.8534 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5991 -84.6861 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 59.8735 -93.3099 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.758 -101.2288 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2646 -110.062 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L
</g>
<g id='z:9.8' inkscape:groupmode='layer' inkscape:label='Layer 24, z:9.8' transform='translate(280.0, 20876.8699)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate9.8' fill='#000' stroke='none' y='15' >Layer 24, z:9.8</text>
<path d='M 3.6364 21.8248 L -3.6364 21.8248 L -3.8789 21.6567 L -4.1858 20.7582 L -4.4535 19.4712 L -4.4968 18.8607 L -4.1444 16.4372 L -4.802 15.163 L -8.8609 13.2083 L -10.2672 13.4886 L -11.7606 15.1268 L -12.1579 15.4333 L -13.1539 16.007 L -14.5134 16.5354 L -14.7961 16.4505 L -19.3305 10.7645 L -19.3504 10.4701 L -18.8392 9.67 L -17.9999 8.6582 L -17.5496 8.2437 L -15.4351 7.0082 L -14.8489 5.6996 L -15.8514 1.3075 L -16.9473 0.3828 L -19.1592 0.2366 L -19.6465 0.1171 L -20.7161 -0.304 L -21.9769 -1.0374 L -22.0868 -1.3113 L -20.4684 -8.4017 L -20.2506 -8.6007 L -19.3064 -8.6999 L -17.992 -8.6746 L -17.3872 -8.5809 L -15.1029 -7.6981 L -13.7143 -8.0557 L -10.9054 -11.5778 L -10.8658 -13.0113 L -12.1305 -14.8317 L -12.3409 -15.2873 L -12.6786 -16.386 L -12.8913 -17.829 L -12.7457 -18.0857 L -6.1932 -21.2412 L -5.9017 -21.195 L -5.2354 -20.5186 L -4.4357 -19.4752 L -4.1319 -18.944 L -3.3979 -16.6076 L -2.2525 -15.7449 L 2.2525 -15.7449 L 3.3979 -16.6076 L 4.0326 -18.7315 L 4.2576 -19.18 L 4.9061 -20.129 L 5.9017 -21.195 L 6.1932 -21.2412 L 12.7457 -18.0857 L 12.8913 -17.829 L 12.7779 -16.8864 L 12.4607 -15.6106 L 12.2348 -15.0418 L 10.8658 -13.0113 L 10.9054 -11.5778 L 13.7143 -8.0557 L 15.1029 -7.6981 L 17.1591 -8.526 L 17.6501 -8.6298 L 18.7964 -8.7145 L 20.2506 -8.6007 L 20.4684 -8.4017 L 22.0868 -1.3113 L 21.9769 -1.0374 L 21.1692 -0.5383 L 19.974 0.0091 L 19.3884 0.1871 L 16.9473 0.3828 L 15.8514 1.3075 L 14.8489 5.6996 L 15.4351 7.0082 L 17.3645 8.0997 L 17.7517 8.4188 L 18.5326 9.2622 L 19.3504 10.4701 L 19.3305 10.7645 L 14.7961 16.4505 L 14.5134 16.5354 L 13.6197 16.2151 L 12.4464 15.622 L 11.9422 15.2752 L 10.2672 13.4886 L 8.8609 13.2083 L 4.802 15.163 L 4.1444 16.4372 L 4.494 18.6262 L 4.4859 19.1279 L 4.3134 20.2643 L 3.8789 21.6567 z M 8.8732 -1.4951 L 7.8521 -2.6477 L 6.4123 -3.1938 L 4.8836 -3.0081 L 3.6164 -2.1334 L 2.9007 -0.7699 L 2.9007 0.7699 L 3.6164 2.1334 L 4.8836 3.0081 L 6.4123 3.1938 L 7.8521 2.6477 L 8.8732 1.4951 L 9.2417 0.0 z M -0.1635 -6.7125 L -1.1846 -7.8651 L -2.6244 -8.4111 L -4.1531 -8.2255 L -5.4204 -7.3508 L -6.136 -5.9873 L -6.136 -4.4474 L -5.4204 -3.0839 L -4.1531 -2.2092 L -2.6244 -2.0236 L -1.1846 -2.5696 L -0.1635 -3.7222 L 0.205 -5.2173 z M -0.1635 3.7222 L -1.1846 2.5696 L -2.6244 2.0236 L -4.1531 2.2092 L -5.4204 3.0839 L -6.136 4.4474 L -6.136 5.9873 L -5.4204 7.3508 L -4.1531 8.2255 L -2.6244 8.4111 L -1.1846 7.8651 L -0.1635 6.7125 L 0.205 5.2173 z M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.3189 -52.6271 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.7389 -54.0317 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.371 -54.4975 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.066 -56.2536 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.5304 -60.2736 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.8055 -65.9521 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 44.9389 -70.8351 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.2865 -77.1599 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 57.3035 -84.5759 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.5578 -92.6621 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 64.4661 -101.3127 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.5596 -109.8987 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.5129 -119.2206 L 68.6546 -120.1789
</g>
<g id='z:10.2' inkscape:groupmode='layer' inkscape:label='Layer 25, z:10.2' transform='translate(280.0, 21710.4447)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate10.2' fill='#000' stroke='none' y='15' >Layer 25, z:10.2</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.619 -53.5931 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.3189 -52.6271 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.7484 -53.9232 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.094 -57.4267 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.2777 -60.4969 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.2544 -64.1792 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2424 -70.6883 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.0336 -77.598 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5991 -84.6861 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 59.9709 -93.2219 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.4223 -101.1965 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.4062 -109.9836 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.5129 -119.2206 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.584 -127.924 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 64.2711 -137.3832 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.9123 -145.2918 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0992 -152.9453 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.734 -160.8044 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 45.2374 -167.7606 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 37.5624 -172.5583 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3348 -177.4736 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 22.7264 -181.8667 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.3788 -183.8221 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.3941 -184.5686 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.6061 -185.0279 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.4339 -183.4894 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.4817 -181.5986 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.1816 -176.4018 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -38.5369 -173.2118 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -44.6126 -166.2646 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -52.0824 -160.9063 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -55.8023 -152.5853 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.7443 -145.2874 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.9869 -137.1574 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -65.2559 -128.0016 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -65.417 -118.8013 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.8634 -109.7246 L -67.8547 -108.4836 L -68.
</g>
<g id='z:10.6' inkscape:groupmode='layer' inkscape:label='Layer 26, z:10.6' transform='translate(280.0, 22544.0195)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate10.6' fill='#000' stroke='none' y='15' >Layer 26, z:10.6</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.619 -53.5931 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.3189 -52.6271 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.4735 -54.3389 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0889 -57.8747 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 31.075 -59.8134 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.7612 -66.1009 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2424 -70.6883 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.027 -77.6092 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5991 -84.6861 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.9185 -92.2989 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 62.9624 -101.1611 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.8634 -109.7246 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 66.1883 -119.0895 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 64.341 -128.1905 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 64.2711 -137.3832 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 59.6063 -145.2198 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.928 -154.0416 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 50.4785 -160.3877 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 45.0563 -167.2962 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.5369 -173.2118 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.2948 -177.1518 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 21.4409 -180.3556 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.3788 -183.8221 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.3888 -184.5568 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.6061 -185.0279 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.3165 -184.1666 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -21.7353 -180.7257 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.4044 -178.1573 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -38.2426 -173.0222 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -44.9858 -167.121 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -52.0824 -160.9063 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.5981 -153.5903 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.0836 -145.2557 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.9869 -137.1574 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -65.4396 -127.9581 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -64.9931 -118.6562 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -66.1756 -109.5396 L -67.8547 -108.4836 L -68
</g>
<g id='z:11.0' inkscape:groupmode='layer' inkscape:label='Layer 27, z:11.0' transform='translate(280.0, 23377.5943)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate11.0' fill='#000' stroke='none' y='15' >Layer 27, z:11.0</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.2013 -52.2837 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.3841 -52.8268 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.1343 -54.8789 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.066 -56.2536 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.4293 -60.3629 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.7953 -65.9864 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.8911 -70.3921 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.6966 -78.1493 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5991 -84.6861 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 61.2716 -91.9262 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.758 -101.2288 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 64.5415 -110.4375 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.4522 -118.8138 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 64.4583 -128.1682 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.7097 -136.9436 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 61.0943 -145.2965 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0204 -152.8488 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.5333 -160.7425 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 45.3628 -168.1012 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 37.2958 -172.3662 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3568 -177.6747 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 22.4817 -181.5986 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.499 -183.0453 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.7591 -185.3428 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.6061 -185.0279 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.5456 -182.6823 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.2494 -181.3366 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.4044 -178.1573 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -37.5929 -172.5799 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -44.9858 -167.121 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -51.3995 -160.7012 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -55.7869 -152.567 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -61.4572 -145.3006 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.8206 -137.0291 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -64.8172 -128.0969 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -66.5129 -119.2206 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -66.0507 -109.6136 L -67.8547 -108.4836 L -6
</g>
<g id='z:11.4' inkscape:groupmode='layer' inkscape:label='Layer 28, z:11.4' transform='translate(280.0, 24211.1691)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate11.4' fill='#000' stroke='none' y='15' >Layer 28, z:11.4</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.649 -53.7011 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.586 -53.4811 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.8802 -53.7318 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0928 -57.148 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 29.956 -60.7918 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.961 -65.4022 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 44.5496 -71.0323 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.3474 -77.0496 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 55.8391 -84.8304 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 61.1693 -92.0364 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.6371 -101.2172 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 64.5308 -110.4429 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.4639 -118.8179 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.7062 -127.8931 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.6125 -136.8709 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 61.5926 -145.3002 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.4321 -153.3706 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 50.2996 -160.3207 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.8157 -166.7191 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 37.7908 -172.7179 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.4229 -178.3889 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 21.8964 -180.9218 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.4973 -183.0577 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.6612 -185.1412 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.2858 -184.3238 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.3563 -183.9461 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.1703 -181.2446 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3092 -177.2676 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -38.734 -173.3348 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -44.9056 -166.9296 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -51.957 -160.8696 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.1717 -153.0368 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -61.3266 -145.2992 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.2717 -136.6197 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -66.1478 -127.7782 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -65.6791 -118.8958 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.4534 -109.9575 L -67.8547 -108.4836 L -68.
</g>
<g id='z:11.8' inkscape:groupmode='layer' inkscape:label='Layer 29, z:11.8' transform='translate(280.0, 25044.7439)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate11.8' fill='#000' stroke='none' y='15' >Layer 29, z:11.8</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.6457 -53.6891 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.3928 -52.8534 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.1472 -54.8576 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.076 -56.4915 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.4495 -60.345 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.7884 -66.0093 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.1453 -70.7353 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.6813 -76.4261 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 55.2639 -84.9582 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 61.2511 -91.9483 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.6506 -101.2185 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.0701 -110.166 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.4757 -118.8221 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.6926 -127.8966 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.0957 -136.4938 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.8563 -145.2903 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0361 -152.8681 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.5065 -160.7342 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.8207 -166.7306 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.3368 -173.0829 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3597 -177.7015 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 21.8881 -180.9118 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.269 -184.4088 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.3729 -184.5213 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.5604 -184.9301 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.4667 -183.2714 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.6481 -181.781 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3076 -177.2547 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -37.6132 -172.5943 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1518 -167.5384 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.678 -160.4589 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.573 -153.5567 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -59.9842 -145.2488 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.7984 -137.012 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -64.8416 -128.0918 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -66.2922 -119.1315 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.4652 -109.951 L -67.8547 -108.4836 L -68.43
</g>
<g id='z:12.2' inkscape:groupmode='layer' inkscape:label='Layer 30, z:12.2' transform='translate(280.0, 25878.3187)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate12.2' fill='#000' stroke='none' y='15' >Layer 30, z:12.2</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.6424 -53.6771 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.3971 -52.8667 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.1537 -54.8469 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0766 -56.5055 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.4596 -60.3361 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.785 -66.0207 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.1574 -70.7294 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.6744 -76.4394 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 55.275 -84.9555 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 61.2409 -91.9593 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.664 -101.2198 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.0587 -110.1721 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.4874 -118.8263 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.679 -127.9 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.1059 -136.501 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.8423 -145.2899 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.044 -152.8778 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.4931 -160.7301 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.8256 -166.742 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.325 -173.0753 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3612 -177.7149 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 21.8798 -180.9019 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.2662 -184.4231 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.3675 -184.5095 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.5662 -184.9423 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.4687 -183.2585 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.6578 -181.7917 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.306 -177.2419 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -37.6234 -172.6015 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1468 -167.5253 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.6897 -160.4631 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.5646 -153.5454 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -59.9966 -145.2496 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.7873 -137.0034 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -64.8538 -128.0893 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -66.2792 -119.1262 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.477 -109.9444 L -67.8547 -108.4836 L -68.4305 -
</g>
<g id='z:12.6' inkscape:groupmode='layer' inkscape:label='Layer 31, z:12.6' transform='translate(280.0, 26711.8935)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate12.6' fill='#000' stroke='none' y='15' >Layer 31, z:12.6</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.639 -53.6651 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.4015 -52.88 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.1602 -54.8363 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0772 -56.5195 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.4697 -60.3272 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.2725 -64.0908 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.1696 -70.7236 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.6711 -78.1897 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5194 -84.7004 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 61.2306 -91.9703 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.6774 -101.2211 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.0473 -110.1782 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.4992 -118.8304 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.6654 -127.9034 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.116 -136.5082 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.8283 -145.2896 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0519 -152.8874 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.4798 -160.726 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.8306 -166.7534 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.3132 -173.0677 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.4264 -178.4323 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 21.8715 -180.8919 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.2634 -184.4373 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.3622 -184.4976 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.8832 -185.5892 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.4706 -183.2457 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.6676 -181.8024 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3044 -177.229 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -37.6335 -172.6087 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1418 -167.5123 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.7014 -160.4673 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.5563 -153.5342 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.009 -145.2505 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.7762 -136.9949 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -64.866 -128.0868 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -66.2662 -119.121 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.4888 -109.9379 L -67.8547 -108.4836 L -68.43
</g>
<g id='z:13.0' inkscape:groupmode='layer' inkscape:label='Layer 32, z:13.0' transform='translate(280.0, 27545.4683)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate13.0' fill='#000' stroke='none' y='15' >Layer 32, z:13.0</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.6357 -53.6531 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.4058 -52.8934 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.1666 -54.8256 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0778 -56.5334 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.4798 -60.3182 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.9476 -65.4523 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.1817 -70.7177 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 51.6607 -76.4662 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5327 -84.698 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.2457 -92.9648 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.6909 -101.2224 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.0358 -110.1844 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.5109 -118.8346 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.6519 -127.9068 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.1262 -136.5153 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.8143 -145.2892 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0598 -152.8971 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.4664 -160.7218 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.8356 -166.7648 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.3015 -173.0601 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3641 -177.7417 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 21.4778 -180.4026 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.3898 -183.7556 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.3569 -184.4858 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.5776 -184.9668 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.2312 -184.5964 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.2055 -181.2855 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3028 -177.2161 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -37.6437 -172.6159 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1368 -167.4992 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.7131 -160.4715 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.5479 -153.523 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.0214 -145.2514 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.7651 -136.9863 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -64.8782 -128.0843 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -66.2532 -119.1157 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.5006 -109.9314 L -67.8547 -108.4836 L
</g>
<g id='z:13.4' inkscape:groupmode='layer' inkscape:label='Layer 33, z:13.4' transform='translate(280.0, 28379.0431)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate13.4' fill='#000' stroke='none' y='15' >Layer 33, z:13.4</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.6323 -53.6411 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5115 -53.2304 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.7173 -53.9697 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0896 -57.8269 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.49 -60.3093 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 38.1889 -64.477 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 44.8925 -70.8584 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.9808 -77.6873 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 55.9 -84.8177 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.9586 -92.2569 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 62.7407 -101.147 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.6082 -109.8708 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.5227 -118.8387 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.9795 -127.8233 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.3977 -136.7111 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 59.523 -145.2127 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.4732 -153.4241 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 50.5255 -160.4044 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.9658 -167.0731 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.2897 -173.0525 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.2879 -177.1024 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 22.5208 -181.6415 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.3265 -184.1115 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.6306 -185.0783 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.5833 -184.979 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.5174 -182.9095 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -21.9962 -181.0412 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.4372 -178.5792 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -38.1977 -172.9923 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.006 -167.1711 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.4338 -160.3709 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.5395 -153.5117 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.0339 -145.2522 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -64.0324 -137.1935 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -65.8691 -127.852 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -65.6183 -118.8733 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.5124 -109.9248 L -67.8547 -108.4836 L -68.4305
</g>
<g id='z:13.8' inkscape:groupmode='layer' inkscape:label='Layer 34, z:13.8' transform='translate(280.0, 29212.6179)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate13.8' fill='#000' stroke='none' y='15' >Layer 34, z:13.8</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.629 -53.6291 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5155 -53.2433 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.7251 -53.9581 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0938 -57.2258 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.2489 -60.523 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.9409 -65.4774 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.206 -70.7059 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.8116 -77.9659 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5592 -84.6933 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.9486 -92.2674 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.3835 -101.1934 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.5961 -109.8778 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.2421 -118.7401 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.6247 -127.9137 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.1466 -136.5297 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 61.1378 -145.297 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0755 -152.9164 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.1172 -160.6096 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 45.2223 -167.7214 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 37.2283 -172.3169 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.33 -177.435 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 22.7573 -181.8996 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.3854 -183.7822 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.2215 -184.1751 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.589 -184.9912 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.3081 -184.2093 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.0046 -181.0512 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3754 -177.8506 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -37.4115 -172.4507 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1267 -167.4731 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.7366 -160.4799 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.7408 -153.7828 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.0463 -145.2531 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.4721 -136.7658 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -65.8827 -127.8486 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -65.6061 -118.8688 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.2303 -110.0804 L -67.8547 -108.4836 L -68.4
</g>
<g id='z:14.2' inkscape:groupmode='layer' inkscape:label='Layer 35, z:14.2' transform='translate(280.0, 30046.1927)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate14.2' fill='#000' stroke='none' y='15' >Layer 35, z:14.2</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.6257 -53.6171 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5195 -53.2562 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.7329 -53.9464 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0939 -57.2388 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.2585 -60.5143 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.9376 -65.4899 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2181 -70.7001 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.8051 -77.9766 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5725 -84.6909 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.9386 -92.2779 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.3965 -101.1944 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.5839 -109.8848 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.2534 -118.7439 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.6111 -127.9171 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.1568 -136.5368 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.4343 -145.2748 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0834 -152.926 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.1044 -160.6054 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.7261 -166.5147 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.8706 -173.4195 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3316 -177.4478 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 21.4557 -180.3744 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.3832 -183.7955 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.2166 -184.1637 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.5947 -185.0034 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.5207 -182.8849 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.0129 -181.0611 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3741 -177.8367 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -38.5133 -173.1967 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1217 -167.46 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.7483 -160.4841 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.7323 -153.771 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.0587 -145.254 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.4613 -136.7578 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -64.6107 -128.1391 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -65.594 -118.8643 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.2417 -110.0743 L -67.8547 -108.4836 L -68
</g>
<g id='z:14.6' inkscape:groupmode='layer' inkscape:label='Layer 36, z:14.6' transform='translate(280.0, 30879.7675)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate14.6' fill='#000' stroke='none' y='15' >Layer 36, z:14.6</text>
<path d='M -60.1824 -161.4814 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0308 -191.9792 L 29.3484 -186.5667 L 46.4893 -176.143 L 60.1824 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0123 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8747 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4064 -85.1092 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.6223 -53.6051 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2958 -49.5847 L 3.509 -50.425 L 4.5234 -53.2691 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.7406 -53.9348 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.0941 -57.2518 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.2681 -60.5056 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.9343 -65.5025 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.2303 -70.6942 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.7987 -77.9872 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.5858 -84.6885 L 59.2724 -84.3354 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.9285 -92.2884 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9434 L 61.5281 -101.1139 L 63.4094 -101.1955 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.5718 -109.8917 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1484 L 64.072 -118.3773 L 65.2647 -118.7477 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.5976 -127.9205 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 63.167 -136.544 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.4209 -145.2742 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.0913 -152.9357 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 51.0916 -160.6012 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1099 L 44.1877 -165.4011 L 44.731 -166.5256 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 38.8577 -173.4117 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3332 -177.4607 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5494 -183.5831 L 24.1019 -183.2958 L 22.7367 -181.8777 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.381 -183.8088 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.2116 -184.1522 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.6004 -185.0156 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.5224 -182.8725 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.0212 -181.0711 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3728 -177.8227 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -38.5251 -173.2043 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1166 -167.4469 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.7601 -160.4883 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6791 L -56.7238 -153.7593 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.0711 -145.2549 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -63.4505 -136.7497 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -64.6225 -128.1368 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -65.5818 -118.8598 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.2532 -110.0681 L -67.8547 -108.4836 L -
</g>
<g id='z:15.0' inkscape:groupmode='layer' inkscape:label='Layer 37, z:15.0' transform='translate(280.0, 31713.3423)'>
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
<text id='layerTextTemplate15.0' fill='#000' stroke='none' y='15' >Layer 37, z:15.0</text>
<path d='M -60.1824 -161.4813 L -46.4893 -176.143 L -29.3484 -186.5667 L -10.0308 -191.9792 L 10.0307 -191.9792 L 29.3483 -186.5667 L 46.4893 -176.143 L 60.1823 -161.4814 L 69.412 -143.669 L 73.4936 -124.0271 L 72.1246 -104.0124 L 65.4064 -85.1092 L 53.8373 -68.7195 L 38.2753 -56.0589 L 19.8747 -48.0664 L 0.0 -45.3347 L -19.8746 -48.0664 L -38.2753 -56.0589 L -53.8373 -68.7195 L -65.4063 -85.1091 L -72.1246 -104.0123 L -73.4936 -124.0271 L -69.412 -143.669 z M -4.9937 -55.1198 L -4.3189 -52.6271 L -3.509 -50.425 L -2.2958 -49.5847 L 2.2957 -49.5847 L 3.509 -50.425 L 4.7025 -53.8931 L 4.9937 -55.1198 L 5.2095 -55.3197 L 12.1644 -56.2757 L 12.4261 -56.1414 L 13.554 -54.2143 L 15.1225 -52.0212 L 16.5174 -51.5394 L 20.9386 -52.7782 L 21.8802 -53.9146 L 22.066 -56.2536 L 22.0432 -58.836 L 22.197 -59.0867 L 28.6362 -61.8836 L 28.9244 -61.8249 L 30.5304 -60.2736 L 32.6324 -58.5849 L 34.1055 -58.4974 L 38.0286 -60.883 L 38.6286 -62.2314 L 37.9309 -65.515 L 37.4578 -67.0142 L 37.5383 -67.2971 L 42.9841 -71.7276 L 43.2775 -71.7488 L 45.5598 -70.5405 L 47.722 -69.6294 L 49.1642 -69.9425 L 52.2982 -73.2982 L 52.5122 -74.7584 L 50.9544 -77.732 L 50.0944 -79.048 L 50.0956 -79.3421 L 54.1441 -85.0775 L 54.4208 -85.1771 L 56.9445 -84.6294 L 59.2724 -84.3355 L 60.5766 -85.0261 L 62.689 -89.1028 L 62.5011 -90.5666 L 60.433 -92.7853 L 59.0157 -94.0448 L 58.9375 -94.3284 L 61.2884 -100.9433 L 61.5281 -101.1139 L 64.4661 -101.3127 L 66.4268 -101.6124 L 67.4963 -102.6293 L 68.4305 -107.1248 L 67.8547 -108.4836 L 65.2646 -110.062 L 63.5601 -110.8925 L 63.4082 -111.1444 L 63.8873 -118.1483 L 64.072 -118.3773 L 66.8475 -119.3614 L 68.6546 -120.1789 L 69.4102 -121.4467 L 69.0968 -126.0275 L 68.1757 -127.1805 L 65.584 -127.924 L 63.3905 -128.3414 L 63.1763 -128.543 L 61.748 -135.4165 L 61.8641 -135.6868 L 62.9225 -136.372 L 65.7907 -138.658 L 66.1761 -140.0826 L 64.6385 -144.409 L 63.4405 -145.2708 L 60.7443 -145.2874 L 58.5195 -145.0975 L 58.2589 -145.2339 L 55.0291 -151.4672 L 55.0679 -151.7587 L 56.7153 -153.7475 L 58.0473 -155.6791 L 58.0341 -157.1549 L 55.3863 -160.906 L 54.0002 -161.4126 L 50.4785 -160.3877 L 49.3084 -159.9181 L 49.0206 -159.9791 L 44.2289 -165.1098 L 44.1877 -165.4011 L 45.1116 -167.4339 L 45.9988 -169.98 L 45.588 -171.3974 L 42.0263 -174.2951 L 40.5549 -174.4089 L 37.4404 -172.4718 L 36.4403 -171.704 L 36.1468 -171.6851 L 30.1485 -175.3328 L 30.0302 -175.6021 L 30.3714 -177.8088 L 30.5388 -180.4998 L 29.7608 -181.7539 L 25.5495 -183.5831 L 24.1019 -183.2958 L 21.8216 -180.8322 L 20.8696 -179.5811 L 20.5921 -179.4837 L 13.8321 -181.3778 L 13.6455 -181.6052 L 13.3165 -184.1666 L 12.8139 -186.4585 L 11.7264 -187.4562 L 7.1777 -188.0814 L 5.8613 -187.4141 L 4.3303 -184.4267 L 3.7512 -182.9652 L 3.5102 -182.7965 L -3.5102 -182.7965 L -3.7512 -182.9652 L -4.7591 -185.3428 L -5.8613 -187.4141 L -7.1777 -188.0814 L -11.7264 -187.4562 L -12.8139 -186.4585 L -13.4339 -183.4894 L -13.6455 -181.6052 L -13.8321 -181.3778 L -20.5921 -179.4837 L -20.8696 -179.5811 L -22.7264 -181.8667 L -24.1019 -183.2958 L -25.5494 -183.5831 L -29.7608 -181.7539 L -30.5388 -180.4998 L -30.3348 -177.4736 L -30.0302 -175.6021 L -30.1485 -175.3328 L -36.1468 -171.6851 L -36.4403 -171.704 L -38.8449 -173.404 L -40.5549 -174.4089 L -42.0263 -174.2951 L -45.588 -171.3974 L -45.9988 -169.98 L -45.1116 -167.4339 L -44.1877 -165.4011 L -44.2289 -165.1099 L -49.0206 -159.9791 L -49.3084 -159.9181 L -50.4785 -160.3877 L -54.0002 -161.4126 L -55.3863 -160.906 L -58.0341 -157.1549 L -58.0473 -155.6792 L -56.506 -153.4668 L -55.0679 -151.7587 L -55.0291 -151.4672 L -58.2589 -145.2339 L -58.5195 -145.0975 L -60.4074 -145.2737 L -63.4405 -145.2708 L -64.6385 -144.409 L -66.1761 -140.0826 L -65.7907 -138.658 L -62.9225 -136.372 L -61.8641 -135.6868 L -61.748 -135.4165 L -63.1763 -128.543 L -63.3905 -128.3414 L -65.584 -127.924 L -68.1757 -127.1805 L -69.0968 -126.0275 L -69.4102 -121.4467 L -68.6546 -120.1789 L -65.276 -118.7515 L -64.072 -118.3773 L -63.8873 -118.1484 L -63.4082 -111.1444 L -63.5601 -110.8925 L -65.5596 -109.8987 L -67.8547 -108.4836 L -68.4305 -10
</g>
</g>
<!--End Layer Data-->
<!--beginningOfControlSection='true' must be there or else the control boxes will be carved-->
<g id='controls' beginningOfControlSection='true' inkscape:groupmode='layer' inkscape:label='Controls'>
<!--id='isoControlBox' must be there so that the controls could be removed if necessary-->
<g id='isoControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='hidden'>
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
<circle id='globe' cx='120' cy='120' fill='gray' r='100' />
<circle id='cover' cx='120' cy='120' fill='silver' r='33' />
<circle id='observer' fill='darkslateblue' r='12' />
<text id='latitudeIso' x='20' y='260' >Latitude</text>
<text fill='darkslateblue' onclick='displayIsoByLatitude(globalLatitude-1.0)' x='198' y='260' >&lt;</text>
<text fill='darkslateblue' onclick='displayIsoByLatitude(globalLatitude+1.0)' x='213' y='260' >&gt;</text>
<text id='longitudeIso' x='20' y='280' >Longitude</text>
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude-1.0)' x='198' y='280' >&lt;</text>
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude+1.0)' x='213' y='280' >&gt;</text>
<text x='20' y='300' >Scale</text>
<text id='scaleIso' x='65' y='300' >1</text>
<text fill='darkslateblue' onclick='changeScaleIso(globalZoomScale/2)' x='198' y='300' >&lt;</text>
<text fill='darkslateblue' onclick='changeScaleIso(globalZoomScale*2)' x='213' y='300' >&gt;</text>
<g transform='translate(20, 340)'>
<text >Min</text>
<text id='minXIso' y='20' >X: -73.4936 mm</text>
<text id='minYIso' y='40' >Y: -191.9792 mm</text>
<text id='minZIso' y='60' >Z: -0.0 mm</text>
</g>
<g transform='translate(20, 440)'>
<text >Max</text>
<text id='maxXIso' y='20' >X: 73.4936 mm</text>
<text id='maxYIso' y='40' >Y: 21.8248 mm</text>
<text id='maxZIso' y='60' >Z: 15.2 mm</text>
</g>
<g transform='translate(20, 540)'>
<text >Dimension</text>
<text id='dimXIso' y='20' >X: 146.9872 mm</text>
<text id='dimYIso' y='40' >Y: 213.804 mm</text>
<text id='dimZIso' y='60' >Z: 15.2 mm</text>
</g>
<g transform='translate(20, 640)'>
<text >Statistics</text>
<text id='layerThicknessIso' y='20' >Layer Thickness: 0.4 mm</text>
<text id='numberOfLayersIso' y='40' >Number of Layers: 38</text>
<text id='volumeIso' y='60' >Volume: 230.2172 cm3</text>
</g>
</g>
<!--id='layerControlBox' must be there so that the controls could be removed if necessary-->
<g id='layerControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='hidden'>
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
<path d='M 66 164 h76 v6 l18 -9 l-18 -9 v6 h-70 v-70 h6 l-9 -18 l-9 18 h6 z' stroke-width='0' />
<!--<path stroke='#000' stroke-width='3' d='M 20 20 h5 l-5 -10 l-5 10 h5 v35 h35 v-5 l10 5 l-10 5 v-5 h-35 z'/>-->
<text text-anchor='middle' x='68' y='64' >Y</text>
<text x='165' y='166' >X</text>
<text id='minIndexLayer' x='20' y='245' >0</text>
<rect id='slider' fill='gray' height='24' width='170' x='32' y='230' />
<circle id='thumb' cx='42' cy='242' fill='darkslateblue' r='12' />
<text id='maxIndexLayer' x='203' y='245' >1</text>
<text id='currentIndexLayer' x='20' y='280' >Layer</text>
<text id='decreaseLayerIndex' fill='darkslateblue' onclick='displayLayer(globalLayerIndex-1)' x='198' y='280' >&lt;</text>
<text id='increaseLayerIndex' fill='darkslateblue' onclick='displayLayer(globalLayerIndex+1)' x='213' y='280' >&gt;</text>
<text x='20' y='300' >Scale</text>
<text id='scaleLayer' x='65' y='300' >1</text>
<text fill='darkslateblue' onclick='changeScaleLayer(globalZoomScale/2)' x='198' y='300' >&lt;</text>
<text fill='darkslateblue' onclick='changeScaleLayer(globalZoomScale*2)' x='213' y='300' >&gt;</text>
<g transform='translate(20, 340)'>
<text >Min</text>
<text id='minXLayer' y='20' >X: -73.4936 mm</text>
<text id='minYLayer' y='40' >Y: -191.9792 mm</text>
<text id='minZLayer' y='60' >Z: -0.0 mm</text>
</g>
<g transform='translate(20, 440)'>
<text >Max</text>
<text id='maxXLayer' y='20' >X: 73.4936 mm</text>
<text id='maxYLayer' y='40' >Y: 21.8248 mm</text>
<text id='maxZLayer' y='60' >Z: 15.2 mm</text>
</g>
<g transform='translate(20, 540)'>
<text >Dimension</text>
<text id='dimXLayer' y='20' >X: 146.9872 mm</text>
<text id='dimYLayer' y='40' >Y: 213.804 mm</text>
<text id='dimZLayer' y='60' >Z: 15.2 mm</text>
</g>
<g transform='translate(20, 640)'>
<text >Statistics</text>
<text id='layerThicknessLayer' y='20' >Layer Thickness: 0.4 mm</text>
<text id='numberOfLayersLayer' y='40' >Number of Layers: 38</text>
<text id='volumeLayer' y='60' >Volume: 230.2172 cm3</text>
</g>
</g>
<!--id='scrollControlBox' must be there so that the controls could be removed if necessary-->
<g id='scrollControlBox' fill='#000' font-family='Arial' font-size='15px' font-weight='bold' transform='translate(20, 60)' visibility='visible'>
<rect fill='silver' height='720' stroke='gray' stroke-width='4px' width='240' />
<path d='M 66 164 h76 v6 l18 -9 l-18 -9 v6 h-70 v-70 h6 l-9 -18 l-9 18 h6 z' stroke-width='0' />
<text text-anchor='middle' x='68' y='64' >Y</text>
<text x='165' y='166' >X</text>
<text x='20' y='300' >Scale</text>
<text id='scaleScroll' x='65' y='300' >: 1</text>
<text fill='darkslateblue' onclick='changeScaleScroll(globalZoomScale/2)' x='198' y='300' >&lt;</text>
<text fill='darkslateblue' onclick='changeScaleScroll(globalZoomScale*2)' x='213' y='300' >&gt;</text>
<g transform='translate(20, 340)'>
<text >Min</text>
<text id='minXScroll' y='20' >X: -73.4936 mm</text>
<text id='minYScroll' y='40' >Y: -191.9792 mm</text>
<text id='minZScroll' y='60' >Z: -0.0 mm</text>
</g>
<g transform='translate(20, 440)'>
<text >Max</text>
<text id='maxXScroll' y='20' >X: 73.4936 mm</text>
<text id='maxYScroll' y='40' >Y: 21.8248 mm</text>
<text id='maxZScroll' y='60' >Z: 15.2 mm</text>
</g>
<g transform='translate(20, 540)'>
<text >Dimension</text>
<text id='dimXScroll' y='20' >X: 146.9872 mm</text>
<text id='dimYScroll' y='40' >Y: 213.804 mm</text>
<text id='dimZScroll' y='60' >Z: 15.2 mm</text>
</g>
<g transform='translate(20, 640)'>
<text >Statistics</text>
<text id='layerThicknessScroll' y='20' >Layer Thickness: 0.4 mm</text>
<text id='numberOfLayersScroll' y='40' >Number of Layers: 38</text>
<text id='volumeScroll' y='60' >Volume: 230.2172 cm3</text>
</g>
</g>
<text id='isoViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewIso()' text-anchor='middle' visibility='visible' x='80' y='30' >[Iso View]</text>
<text id='isoViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='hidden' x='76' y='30' >Iso View</text>
<text id='layerViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewLayer()' text-anchor='middle' visibility='visible' x='240' y='30' >[Layer View]</text>
<text id='layerViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='hidden' x='236' y='30' >Layer View</text>
<text id='scrollViewButton' fill='darkslateblue' font-size='18px' font-weight='normal' onclick='viewScroll()' text-anchor='middle' visibility='hidden' x='400' y='30' >[Scroll View]</text>
<text id='scrollViewLabel' fill='darkslateblue' font-size='24px' font-weight='bold' text-anchor='middle' visibility='visible' x='396' y='30' >Scroll View</text>
</g>
<!-- Original XML Text:
<fabmetheus>
<gear teethComplement='-23' />
</fabmetheus>
-->
</svg>