706 lines
290 KiB
XML
706 lines
290 KiB
XML
|
|
<?xml version='1.0' standalone='no'?>
|
||
|
|
<!--Written in KDevelop (http://www.kdevelop.org/)-->
|
||
|
|
<svg baseProfile='full' contentScriptType='text/ecmascript' contentStyleType='text/css' height='26363.6538px' onload='init()' preserveAspectRatio='xMidYMid meet' version='1.0' width='516.0px' 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='49.2741' maxY='21.6669' maxZ='15.6' minX='-49.2741' minY='-148.9752' 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 >bevel.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, 711.3757)'>
|
||
|
|
<!--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 4.2005 16.6599 L 4.5009 18.531 L 4.4916 19.159 L 4.3003 20.2194 L 3.8523 21.5083 L 3.61 21.6669 L -3.61 21.6669 L -3.8523 21.5083 L -4.1716 20.6617 L -4.4552 19.466 L -4.5078 18.9003 L -4.489 18.421 L -4.2005 16.6599 L -4.8889 15.4374 L -9.0212 13.4474 L -10.4062 13.6713 L -11.6819 15.0729 L -12.4414 15.6201 L -13.1269 15.9687 L -14.414 16.4221 L -14.689 16.3315 L -19.1906 10.6866 L -19.2178 10.3983 L -18.755 9.6209 L -18.235 8.9229 L -17.5874 8.2598 L -15.6442 7.1032 L -15.1176 5.8027 L -16.1382 1.3312 L -17.1769 0.388 L -19.068 0.2645 L -19.6781 0.1158 L -20.6693 -0.3067 L -21.8263 -1.0303 L -21.9269 -1.3018 L -20.3203 -8.3409 L -20.1118 -8.5418 L -19.2154 -8.6647 L -17.9866 -8.6751 L -17.4233 -8.6004 L -16.9602 -8.4755 L -15.3075 -7.8023 L -13.9625 -8.2015 L -11.1028 -11.7874 L -11.013 -13.1875 L -12.0955 -14.743 L -12.46 -15.6052 L -12.6473 -16.3512 L -12.8029 -17.7069 L -12.6534 -17.9548 L -6.1484 -21.0875 L -5.8613 -21.0498 L -5.2063 -20.4256 L -4.6415 -19.7634 L -4.1392 -18.9844 L -3.4439 -16.8325 L -2.2933 -16.0298 L 2.2933 -16.0298 L 3.4439 -16.8325 L 3.9852 -18.6488 L 4.2659 -19.2105 L 4.8984 -20.0829 L 5.8613 -21.0498 L 6.1484 -21.0875 L 12.6534 -17.9548 L 12.8029 -17.7069 L 12.7233 -16.8056 L 12.46 -15.6052 L 12.2619 -15.0727 L 12.0371 -14.649 L 11.013 -13.1875 L 11.1028 -11.7874 L 13.9625 -8.2015 L 15.3075 -7.8023 L 17.0649 -8.5116 L 17.9866 -8.6751 L 18.7555 -8.6917 L 20.1118 -8.5418 L 20.3203 -8.3409 L 21.9269 -1.3018 L 21.8263 -1.0303 L 21.072 -0.5306 L 20.3007 -0.1274 L 19.4295 0.189 L 17.1769 0.388 L 16.1382 1.3312 L 15.1176 5.8027 L 15.6442 7.1032 L 17.2944 8.035 L 17.7796 8.4337 L 18.4893 9.2445 L 19.2178 10.3983 L 19.1906 10.6866 L 14.689 16.3315 L 14.414 16.4221 L 13.553 16.1439 L 12.4414 15.6201 L 11.9663 15.3084 L 11.6032 14.995 L 10.4062 13.6713 L 9.0212 13.4474 L 4.8889 15.4374 z M 47.9701 -100.4863 L 48.8464 -99.7203 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.5995 -90.9836 L 47.064 -90.7075 L 46.6335 -90.5869 L 45.8156 -89.2154 L 45.7131 -89.1546 L 44.5754 -85.1561 L 44.6306 -85.0504 L 44.604 -83.4538 L 45.0041 -82.9817 L 45.2164 -82.608 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.1281 -74.3975 L 40.529 -74.3336 L 40.084 -74.3765 L 38.826 -73.3932 L 38.7084 -73.3735 L 36.2031 -70.056 L 36.2164 -69.9375 L 35.6148 -68.4583 L 35.6934 -68.2984 L 35.8521 -67.676 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.1021 -61.2692 L 28.5204 -61.426 L 28.121 -61.6268 L 26.5926 -61.1643 L 26.4759 -61.1885 L 22.9413 -59.0 L 22.9109 -58.8847 L 21.8157 -57.7227 L 21.7932 -57.1042 L 21.6984 -56.6851 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.1458 -53.3717 L 12.6599 -53.728 L 12.36 -54.0596 L 10.7678 -54.1804 L 10.6677 -54.2451 L 6.5812 -53.4812 L 6.5113 -53.3847 L 5.0702 -52.6969 L 4.9103 -52.2794 L 4.7185 -51.9589 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.586 -51.7717 L -4.9103 -52.2794 L -5.0702 -52.6969 L -6.5113 -53.3847 L -6.5812 -53.4812 L -10.6677 -54.2451 L -10.7678 -54.1804 L -12.36 -54.0596 L -12.7933 -53.6176 L -13.1458 -53.3717 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.6984 -56.6851 L -21.8174 -57.2757 L -21.8157 -57.7227 L -22.9109 -58.8847 L -22.9413 -59.0 L -26.4759 -61.1885 L -26.5926 -61.1643 L -28.121 -61.6268 L -28.5204 -61.426 L -29.6598 -61.1883 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.8521 -67.676 L -35.7779 -68.0421 L -35.6148 -68.4583 L -36.2164 -69.9375 L -36.2031 -70.056 L -38.7084 -73.3735 L -38.826 -73.3932 L -40.084 -74.3765 L -40.7019 -74.3418 L -41.1281 -74.3975 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.2164 -82.608 L -44.8163 -83.241 L -44.604 -83.4538 L -44.6306 -85.0504 L -44.5754 -85.1561 L -45.7131 -89.1546 L -45.8156 -89.2154 L -46.6335 -90.5869 L -47.064 -90.7075 L -48.0661 -91.2995 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -9
|
||
|
|
</g>
|
||
|
|
<g id='z:0.6' inkscape:groupmode='layer' inkscape:label='Layer 1, z:0.6' transform='translate(280.0, 1385.2515)'>
|
||
|
|
<!--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 4.509 18.6908 L 4.3932 19.8201 L 4.1716 20.6617 L 3.8523 21.5083 L 3.61 21.6669 L -3.61 21.6669 L -3.8523 21.5083 L -4.1716 20.6617 L -4.4552 19.466 L -4.5009 18.531 L -4.195 16.6382 L -4.8516 15.3197 L -8.9525 13.3448 L -10.3927 13.6536 L -11.8018 15.1788 L -12.7569 15.7923 L -13.553 16.1439 L -14.414 16.4221 L -14.689 16.3315 L -19.1906 10.6866 L -19.2178 10.3983 L -18.4893 9.2445 L -17.9969 8.6536 L -17.2944 8.035 L -15.6238 7.0939 L -15.0024 5.7585 L -16.0152 1.3211 L -17.1545 0.3875 L -19.2255 0.2368 L -20.3007 -0.1274 L -21.072 -0.5306 L -21.8263 -1.0303 L -21.9269 -1.3018 L -20.3203 -8.3409 L -20.1118 -8.5418 L -18.7555 -8.6917 L -17.9866 -8.6751 L -17.0649 -8.5116 L -15.2876 -7.7922 L -13.856 -8.139 L -11.0181 -11.6975 L -10.9987 -13.1704 L -12.1721 -14.8835 L -12.5577 -15.9511 L -12.7233 -16.8056 L -12.8029 -17.7069 L -12.6534 -17.9548 L -6.1484 -21.0875 L -5.8613 -21.0498 L -4.8984 -20.0829 L -4.432 -19.4713 L -3.9852 -18.6488 L -3.4395 -16.8107 L -2.2758 -15.9076 L 2.2758 -15.9076 L 3.4395 -16.8107 L 4.0472 -18.7962 L 4.6415 -19.7634 L 5.2063 -20.4256 L 5.8613 -21.0498 L 6.1484 -21.0875 L 12.6534 -17.9548 L 12.8029 -17.7069 L 12.7233 -16.8056 L 12.46 -15.6052 L 12.0955 -14.743 L 10.9987 -13.1704 L 11.0181 -11.6975 L 13.856 -8.139 L 15.2876 -7.7922 L 17.2188 -8.555 L 18.3456 -8.6934 L 19.2154 -8.6647 L 20.1118 -8.5418 L 20.3203 -8.3409 L 21.9269 -1.3018 L 21.8263 -1.0303 L 20.6693 -0.3067 L 19.9693 0.0119 L 19.068 0.2645 L 17.1545 0.3875 L 16.0152 1.3211 L 15.0024 5.7585 L 15.6238 7.0939 L 17.4244 8.1283 L 18.235 8.9229 L 18.755 9.6209 L 19.2178 10.3983 L 19.1906 10.6866 L 14.689 16.3315 L 14.414 16.4221 L 13.1269 15.9687 L 12.4414 15.6201 L 11.6819 15.0729 L 10.3927 13.6536 L 8.9525 13.3448 L 4.8516 15.3197 L 4.195 16.6382 z M 47.844 -100.5622 L 48.4458 -100.1165 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.5995 -90.9836 L 46.9261 -90.656 L 46.6335 -90.5869 L 46.0824 -89.6628 L 45.3645 -89.2373 L 44.2355 -85.2693 L 44.6219 -84.5296 L 44.604 -83.4538 L 44.8163 -83.241 L 45.2164 -82.608 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.1281 -74.3975 L 40.3818 -74.3353 L 40.084 -74.3765 L 39.2363 -73.7139 L 38.4132 -73.5765 L 35.927 -70.2843 L 36.0202 -69.455 L 35.6148 -68.4583 L 35.8173 -67.8735 L 35.9001 -67.1895 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.6469 -61.1894 L 28.6846 -61.3712 L 28.3838 -61.4808 L 28.121 -61.6268 L 27.0912 -61.3152 L 26.274 -61.4844 L 22.7664 -59.3126 L 22.5537 -58.5057 L 21.8157 -57.7227 L 21.8292 -57.4224 L 21.6984 -56.6851 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.3687 -53.2387 L 12.7933 -53.6176 L 12.36 -54.0596 L 11.2872 -54.141 L 10.5864 -54.594 L 6.5311 -53.8359 L 6.0412 -53.1604 L 5.0702 -52.6969 L 4.9743 -52.4119 L 4.586 -51.7717 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.2372 -51.3456 L -4.8259 -52.1283 L -4.9743 -52.4119 L -5.0702 -52.6969 L -6.0412 -53.1604 L -6.5311 -53.8359 L -10.5864 -54.594 L -11.2872 -54.141 L -12.36 -54.0596 L -12.5524 -53.8285 L -13.1458 -53.3717 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.6984 -56.6851 L -21.8292 -57.4224 L -21.8157 -57.7227 L -22.5537 -58.5057 L -22.7664 -59.3126 L -26.274 -61.4844 L -27.0912 -61.3152 L -28.121 -61.6268 L -28.6846 -61.3712 L -29.3581 -61.2257 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.9096 -66.8986 L -35.8173 -67.8735 L -35.7359 -68.1832 L -35.6148 -68.4583 L -36.0202 -69.455 L -35.927 -70.2843 L -38.4132 -73.5765 L -39.2363 -73.7139 L -40.084 -74.3765 L -40.3818 -74.3353 L -41.1281 -74.3975 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.3284 -82.3738 L -45.0041 -82.9817 L -44.604 -83.4538 L -44.6219 -84.5296 L -44.2355 -85.2693 L -45.3645 -89.2373 L -46.0824 -89.6628 L -46.6335 -90.5869 L -46.9261 -90.656 L -47.5995 -90.9836 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873
|
||
|
|
</g>
|
||
|
|
<g id='z:1.0' inkscape:groupmode='layer' inkscape:label='Layer 2, z:1.0' transform='translate(280.0, 2059.1272)'>
|
||
|
|
<!--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 4.5009 18.531 L 4.4552 19.466 L 4.3003 20.2194 L 3.8523 21.5083 L 3.61 21.6669 L -3.61 21.6669 L -3.8523 21.5083 L -4.1716 20.6617 L -4.3932 19.8201 L -4.4916 19.159 L -4.5009 18.531 L -4.1631 16.5114 L -4.8144 15.202 L -8.8837 13.2423 L -10.3135 13.5495 L -11.8018 15.1788 L -12.4414 15.6201 L -13.1269 15.9687 L -14.414 16.4221 L -14.689 16.3315 L -19.1906 10.6866 L -19.2178 10.3983 L -18.755 9.6209 L -18.235 8.9229 L -17.7796 8.4337 L -17.2944 8.035 L -15.5047 7.0399 L -14.8871 5.7143 L -15.8921 1.3109 L -17.0237 0.3846 L -19.2255 0.2368 L -19.6781 0.1158 L -20.6693 -0.3067 L -21.8263 -1.0303 L -21.9269 -1.3018 L -20.3203 -8.3409 L -20.1118 -8.5418 L -19.2154 -8.6647 L -17.9866 -8.6751 L -17.0649 -8.5116 L -15.171 -7.7328 L -13.7495 -8.0764 L -10.9335 -11.6076 L -10.9148 -13.0699 L -12.1721 -14.8835 L -12.5577 -15.9511 L -12.7233 -16.8056 L -12.8029 -17.7069 L -12.6534 -17.9548 L -6.1484 -21.0875 L -5.8613 -21.0498 L -4.8984 -20.0829 L -4.1392 -18.9844 L -3.9852 -18.6488 L -3.4132 -16.6825 L -2.2583 -15.7854 L 2.2583 -15.7854 L 3.4132 -16.6825 L 4.0472 -18.7962 L 4.432 -19.4713 L 4.8984 -20.0829 L 5.8613 -21.0498 L 6.1484 -21.0875 L 12.6534 -17.9548 L 12.8029 -17.7069 L 12.7233 -16.8056 L 12.5577 -15.9511 L 12.2619 -15.0727 L 12.0955 -14.743 L 10.9148 -13.0699 L 10.9335 -11.6076 L 13.7495 -8.0764 L 15.171 -7.7328 L 17.0649 -8.5116 L 17.6791 -8.6423 L 18.3456 -8.6934 L 19.2154 -8.6647 L 20.1118 -8.5418 L 20.3203 -8.3409 L 21.9269 -1.3018 L 21.8263 -1.0303 L 20.6693 -0.3067 L 19.9693 0.0119 L 19.2255 0.2368 L 17.0237 0.3846 L 15.8921 1.3109 L 14.8871 5.7143 L 15.5047 7.0399 L 17.2944 8.035 L 17.7796 8.4337 L 18.235 8.9229 L 18.755 9.6209 L 19.2178 10.3983 L 19.1906 10.6866 L 14.689 16.3315 L 14.414 16.4221 L 13.1269 15.9687 L 12.4414 15.6201 L 11.8018 15.1788 L 10.3135 13.5495 L 8.8837 13.2423 L 4.8144 15.202 L 4.1631 16.5114 z M 47.844 -100.5622 L 48.4458 -100.1165 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.5995 -90.9836 L 46.9261 -90.656 L 46.6335 -90.5869 L 46.3492 -90.1101 L 45.016 -89.32 L 43.8956 -85.3824 L 44.6132 -84.0088 L 44.604 -83.4538 L 44.8163 -83.241 L 45.2164 -82.608 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.1281 -74.3975 L 40.3818 -74.3353 L 40.084 -74.3765 L 39.6467 -74.0347 L 38.1181 -73.7796 L 35.651 -70.5126 L 35.8239 -68.9725 L 35.6148 -68.4583 L 35.7359 -68.1832 L 35.8803 -67.4484 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.1021 -61.2692 L 28.3838 -61.4808 L 28.121 -61.6268 L 27.5897 -61.466 L 26.0722 -61.7803 L 22.5915 -59.6252 L 22.1964 -58.1266 L 21.8157 -57.7227 L 21.8292 -57.4224 L 21.6984 -56.6851 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.1458 -53.3717 L 12.5524 -53.8285 L 12.36 -54.0596 L 11.8066 -54.1016 L 10.505 -54.9429 L 6.4809 -54.1906 L 5.5711 -52.936 L 5.0702 -52.6969 L 4.9743 -52.4119 L 4.586 -51.7717 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.586 -51.7717 L -4.9743 -52.4119 L -5.0702 -52.6969 L -5.5711 -52.936 L -6.4809 -54.1906 L -10.505 -54.9429 L -11.8066 -54.1016 L -12.36 -54.0596 L -12.5524 -53.8285 L -13.1458 -53.3717 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.6984 -56.6851 L -21.8292 -57.4224 L -21.8157 -57.7227 L -22.1964 -58.1266 L -22.5915 -59.6252 L -26.0722 -61.7803 L -27.5897 -61.466 L -28.121 -61.6268 L -28.3838 -61.4808 L -29.1021 -61.2692 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.8803 -67.4484 L -35.7359 -68.1832 L -35.6148 -68.4583 L -35.8239 -68.9725 L -35.651 -70.5126 L -38.1181 -73.7796 L -39.6467 -74.0347 L -40.084 -74.3765 L -40.3818 -74.3353 L -41.1281 -74.3975 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.2164 -82.608 L -44.8163 -83.241 L -44.604 -83.4538 L -44.6132 -84.0088 L -43.8956 -85.3824 L -45.016 -89.32 L -46.3492 -90.1101 L -46.6335 -90.5869 L -46.9261 -90.656 L -47.5995 -90.9836 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741
|
||
|
|
</g>
|
||
|
|
<g id='z:1.4' inkscape:groupmode='layer' inkscape:label='Layer 3, z:1.4' transform='translate(280.0, 2733.003)'>
|
||
|
|
<!--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 4.5078 18.892 L 4.3932 19.8201 L 4.1716 20.6617 L 3.8523 21.5083 L 3.61 21.6669 L -3.61 21.6669 L -3.8523 21.5083 L -4.3003 20.2194 L -4.5078 18.9003 L -4.1311 16.3845 L -4.7771 15.0843 L -8.8149 13.1398 L -10.2342 13.4454 L -11.9598 15.3033 L -12.7569 15.7923 L -13.553 16.1439 L -14.414 16.4221 L -14.689 16.3315 L -19.1906 10.6866 L -19.2178 10.3983 L -18.4893 9.2445 L -17.9969 8.6536 L -17.4747 8.1689 L -15.3856 6.9858 L -14.7718 5.67 L -15.7691 1.3008 L -16.8929 0.3816 L -19.4214 0.1909 L -20.6693 -0.3067 L -21.8263 -1.0303 L -21.9269 -1.3018 L -20.3203 -8.3409 L -20.1118 -8.5418 L -19.2154 -8.6647 L -17.9866 -8.6751 L -17.4233 -8.6004 L -15.0544 -7.6734 L -13.6431 -8.0139 L -10.8488 -11.5178 L -10.8309 -12.9695 L -12.2583 -15.0652 L -12.5577 -15.9511 L -12.7233 -16.8056 L -12.8029 -17.7069 L -12.6534 -17.9548 L -6.1484 -21.0875 L -5.8613 -21.0498 L -4.8984 -20.0829 L -4.1392 -18.9844 L -3.387 -16.5543 L -2.2408 -15.6632 L 2.2408 -15.6632 L 3.387 -16.5543 L 3.9788 -18.6179 L 4.432 -19.4713 L 4.8984 -20.0829 L 5.8613 -21.0498 L 6.1484 -21.0875 L 12.6534 -17.9548 L 12.8029 -17.7069 L 12.7233 -16.8056 L 12.46 -15.6052 L 12.2619 -15.0727 L 10.8309 -12.9695 L 10.8488 -11.5178 L 13.6431 -8.0139 L 15.0544 -7.6734 L 17.4152 -8.5986 L 18.3456 -8.6934 L 19.2154 -8.6647 L 20.1118 -8.5418 L 20.3203 -8.3409 L 21.9269 -1.3018 L 21.8263 -1.0303 L 20.6693 -0.3067 L 19.9693 0.0119 L 19.2885 0.2221 L 16.8929 0.3816 L 15.7691 1.3008 L 14.7718 5.67 L 15.3856 6.9858 L 17.4162 8.1246 L 18.235 8.9229 L 18.755 9.6209 L 19.2178 10.3983 L 19.1906 10.6866 L 14.689 16.3315 L 14.414 16.4221 L 13.1269 15.9687 L 11.9663 15.3084 L 10.2342 13.4454 L 8.8149 13.1398 L 4.7771 15.0843 L 4.1311 16.3845 z M 47.844 -100.5622 L 48.4458 -100.1165 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.5995 -90.9836 L 46.9261 -90.656 L 46.6335 -90.5869 L 46.616 -90.5575 L 44.6674 -89.4027 L 43.5558 -85.4956 L 44.6046 -83.488 L 44.604 -83.4538 L 44.8163 -83.241 L 45.2164 -82.608 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.1281 -74.3975 L 40.3818 -74.3353 L 40.084 -74.3765 L 40.0571 -74.3555 L 37.823 -73.9826 L 35.375 -70.7409 L 35.6277 -68.49 L 35.6148 -68.4583 L 35.7359 -68.1832 L 35.8803 -67.4484 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.1021 -61.2692 L 28.3838 -61.4808 L 28.121 -61.6268 L 28.0883 -61.6169 L 25.8703 -62.0763 L 22.4166 -59.9378 L 21.8391 -57.7476 L 21.8157 -57.7227 L 21.8292 -57.4224 L 21.6984 -56.6851 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.1458 -53.3717 L 12.5524 -53.8285 L 12.36 -54.0596 L 12.3259 -54.0622 L 10.4237 -55.2917 L 6.4307 -54.5453 L 5.1011 -52.7116 L 5.0702 -52.6969 L 4.9743 -52.4119 L 4.586 -51.7717 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.586 -51.7717 L -4.9743 -52.4119 L -5.0702 -52.6969 L -5.1011 -52.7116 L -6.4307 -54.5453 L -10.4237 -55.2917 L -12.3259 -54.0622 L -12.36 -54.0596 L -12.5524 -53.8285 L -13.1458 -53.3717 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.6984 -56.6851 L -21.8292 -57.4224 L -21.8157 -57.7227 L -21.8391 -57.7476 L -22.4166 -59.9378 L -25.8703 -62.0763 L -28.0883 -61.6169 L -28.121 -61.6268 L -28.3838 -61.4808 L -29.1021 -61.2692 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.8803 -67.4484 L -35.7359 -68.1832 L -35.6148 -68.4583 L -35.6277 -68.49 L -35.375 -70.7409 L -37.823 -73.9826 L -40.0571 -74.3555 L -40.084 -74.3765 L -40.3818 -74.3353 L -41.1281 -74.3975 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.2164 -82.608 L -44.8163 -83.241 L -44.604 -83.4538 L -44.6046 -83.488 L -43.5558 -85.4956 L -44.6674 -89.4027 L -46.616 -90.5575 L -46.6335 -90.5869 L -46.9261 -90.656 L -47.5995 -90.9836 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -48.4458 -100.1165 L -47.844 -100.5622 L -47.5692 -100.684 L -47.5573 -100.7161 L -45.8541 -102.2092 L -45.4793 -106.2541 L -46
|
||
|
|
</g>
|
||
|
|
<g id='z:1.8' inkscape:groupmode='layer' inkscape:label='Layer 4, z:1.8' transform='translate(280.0, 3406.8787)'>
|
||
|
|
<!--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 4.1716 20.6617 L 3.8523 21.5083 L 3.61 21.6669 L -3.61 21.6669 L -3.8523 21.5083 L -4.4006 19.7775 L -4.4782 18.7703 L -4.0991 16.2576 L -4.7398 14.9666 L -8.7461 13.0372 L -10.155 13.3413 L -11.7125 15.0612 L -12.754 15.7908 L -14.414 16.4221 L -14.689 16.3315 L -19.1906 10.6866 L -19.2178 10.3983 L -18.755 9.6209 L -17.9531 8.6314 L -17.1284 7.9572 L -15.2665 6.9317 L -14.6566 5.6258 L -15.646 1.2906 L -16.7621 0.3786 L -19.0779 0.2333 L -20.2977 -0.1261 L -21.072 -0.5306 L -21.8263 -1.0303 L -21.9269 -1.3018 L -20.3203 -8.3409 L -20.1118 -8.5418 L -18.3024 -8.6912 L -16.9006 -8.4303 L -14.9379 -7.614 L -13.5366 -7.9514 L -10.7642 -11.4279 L -10.7471 -12.8691 L -12.0773 -14.7703 L -12.4328 -15.5733 L -12.6473 -16.3512 L -12.8029 -17.7069 L -12.6534 -17.9548 L -6.1484 -21.0875 L -5.8613 -21.0498 L -5.2063 -20.4256 L -4.6438 -19.7663 L -4.2438 -19.1174 L -3.9463 -18.4696 L -3.3608 -16.4261 L -2.2233 -15.5409 L 2.2233 -15.5409 L 3.3608 -16.4261 L 4.0178 -18.6515 L 4.6396 -19.7607 L 5.8613 -21.0498 L 6.1484 -21.0875 L 12.6534 -17.9548 L 12.8029 -17.7069 L 12.7233 -16.8056 L 12.546 -15.9096 L 12.1788 -14.9684 L 10.7471 -12.8691 L 10.7642 -11.4279 L 13.5366 -7.9514 L 14.9379 -7.614 L 17.318 -8.5461 L 18.3423 -8.6932 L 19.2154 -8.6647 L 20.1118 -8.5418 L 20.3203 -8.3409 L 21.9269 -1.3018 L 21.8263 -1.0303 L 20.2609 -0.1106 L 19.5824 0.1167 L 18.8847 0.2625 L 16.7621 0.3786 L 15.646 1.2906 L 14.6566 5.6258 L 15.2665 6.9317 L 17.2899 8.0674 L 18.2329 8.9205 L 19.2178 10.3983 L 19.1906 10.6866 L 14.689 16.3315 L 14.414 16.4221 L 13.553 16.1439 L 12.7189 15.7716 L 11.8831 15.2043 L 10.155 13.3413 L 8.7461 13.0372 L 4.7398 14.9666 L 4.0991 16.2576 L 4.4782 18.7855 L 4.4446 19.4255 z M 48.1128 -100.3882 L 48.4458 -100.1165 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.5995 -90.9836 L 47.2222 -90.7777 L 46.7967 -90.6179 L 46.3017 -90.6538 L 44.3189 -89.4854 L 43.2159 -85.6088 L 44.2866 -83.5716 L 44.7264 -83.3415 L 45.1079 -82.8101 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.6649 -74.5199 L 40.7019 -74.3418 L 40.2475 -74.3465 L 39.7988 -74.5588 L 37.5278 -74.1856 L 35.0989 -70.9692 L 35.3614 -68.6828 L 35.6884 -68.3094 L 35.8173 -67.8735 L 35.8803 -67.4484 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 28.8781 -61.3184 L 28.2625 -61.5398 L 27.9209 -61.8998 L 25.6684 -62.3722 L 22.2416 -60.2504 L 21.6605 -58.0235 L 21.8305 -57.5572 L 21.8174 -57.2757 L 21.5271 -56.1618 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 12.9546 -53.4985 L 12.4606 -53.9273 L 12.2721 -54.3865 L 10.3423 -55.6406 L 6.3805 -54.9 L 5.0341 -53.0334 L 5.0242 -52.5372 L 4.8259 -52.1283 L 4.2372 -51.3456 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.7185 -51.9589 L -5.0242 -52.5372 L -5.0341 -53.0334 L -6.3805 -54.9 L -10.3423 -55.6406 L -12.2721 -54.3865 L -12.4606 -53.9273 L -12.9546 -53.4985 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.6233 -56.4365 L -21.8174 -57.2757 L -21.8305 -57.5572 L -21.6605 -58.0235 L -22.2416 -60.2504 L -25.6684 -62.3722 L -27.9209 -61.8998 L -28.2625 -61.5398 L -28.8781 -61.3184 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.9001 -67.1895 L -35.7779 -68.0421 L -35.6884 -68.3094 L -35.3614 -68.6828 L -35.0989 -70.9692 L -37.5278 -74.1856 L -39.7988 -74.5588 L -40.2475 -74.3465 L -40.9014 -74.3624 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.4423 -82.1059 L -44.9065 -83.1246 L -44.7264 -83.3415 L -44.2866 -83.5716 L -43.2159 -85.6088 L -44.3189 -89.4854 L -46.3017 -90.6538 L -46.7967 -90.6179 L -47.4008 -90.8689 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -48.6348 -99.9385 L -47.9701 -100.4863 L -47.7239 -100.6235 L -47.2307 -100.6791 L -45.4963 -102.192 L -45.1244 -106.2053 L -46.5513 -108.0111 L -47.0259 -108.1564 L -47.3649 -108.4591 L -47.6423 -108.7874 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2
|
||
|
|
</g>
|
||
|
|
<g id='z:2.2' inkscape:groupmode='layer' inkscape:label='Layer 5, z:2.2' transform='translate(280.0, 4080.7544)'>
|
||
|
|
<!--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.8523 21.5083 L 3.61 21.6669 L -3.61 21.6669 L -3.8523 21.5083 L -4.1126 20.8302 L -4.2814 20.1304 L -4.4369 18.9255 L -4.4234 18.2075 L -4.0671 16.1308 L -4.7025 14.8489 L -8.6773 12.9347 L -10.0757 13.2371 L -11.6287 14.9507 L -12.3329 15.4746 L -13.7216 16.2028 L -14.414 16.4221 L -14.689 16.3315 L -19.1906 10.6866 L -19.2178 10.3983 L -18.8499 9.7721 L -17.8187 8.5679 L -16.9931 7.8938 L -15.1473 6.8776 L -14.5413 5.5815 L -15.523 1.2805 L -16.6313 0.3757 L -18.9233 0.2331 L -20.166 -0.1319 L -21.2231 -0.6257 L -21.8263 -1.0303 L -21.9269 -1.3018 L -20.3203 -8.3409 L -20.1118 -8.5418 L -19.3928 -8.6446 L -17.7932 -8.5868 L -16.7667 -8.364 L -14.8213 -7.5546 L -13.4302 -7.8888 L -10.6795 -11.338 L -10.6632 -12.7687 L -11.9807 -14.6495 L -12.4701 -15.8486 L -12.7803 -17.314 L -12.8029 -17.7069 L -12.6534 -17.9548 L -6.1484 -21.0875 L -5.8613 -21.0498 L -5.3326 -20.5517 L -4.8769 -19.9945 L -4.214 -18.9764 L -3.9146 -18.3236 L -3.3346 -16.298 L -2.2058 -15.4187 L 2.2058 -15.4187 L 3.3346 -16.298 L 3.9835 -18.5007 L 4.3974 -19.2932 L 5.3326 -20.5517 L 5.8613 -21.0498 L 6.1484 -21.0875 L 12.6534 -17.9548 L 12.8029 -17.7069 L 12.7432 -16.983 L 12.466 -15.8347 L 12.0886 -14.8598 L 10.6632 -12.7687 L 10.6795 -11.338 L 13.4302 -7.8888 L 14.8213 -7.5546 L 16.9639 -8.4247 L 17.482 -8.5399 L 18.6829 -8.6536 L 19.3928 -8.6446 L 20.1118 -8.5418 L 20.3203 -8.3409 L 21.9269 -1.3018 L 21.8263 -1.0303 L 21.2231 -0.6257 L 19.7716 0.0118 L 18.7352 0.2609 L 16.6313 0.3757 L 15.523 1.2805 L 14.5413 5.5815 L 15.1473 6.8776 L 17.1504 8.0005 L 18.1117 8.8685 L 18.8499 9.7721 L 19.2178 10.3983 L 19.1906 10.6866 L 14.689 16.3315 L 14.414 16.4221 L 13.7216 16.2028 L 12.3054 15.4566 L 11.4772 14.8105 L 10.0757 13.2371 L 8.6773 12.9347 L 4.7025 14.8489 L 4.0671 16.1308 L 4.4381 18.3969 L 4.3587 19.6897 L 4.1658 20.6397 z M 48.4458 -100.1165 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.818 -91.1238 L 46.976 -90.6747 L 45.9466 -90.7255 L 43.9703 -89.5681 L 42.876 -85.722 L 43.947 -83.6976 L 44.849 -83.1989 L 45.2164 -82.608 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.3825 -74.4494 L 40.4351 -74.3347 L 39.4936 -74.754 L 37.2327 -74.3886 L 34.8229 -71.1975 L 35.0902 -68.923 L 35.7511 -68.1321 L 35.8803 -67.4484 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.1021 -61.2692 L 28.4332 -61.461 L 27.7068 -62.192 L 25.4665 -62.6681 L 22.0667 -60.563 L 21.4943 -58.3455 L 21.8249 -57.3693 L 21.7543 -56.9075 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.1458 -53.3717 L 12.5913 -53.7921 L 12.178 -54.7363 L 10.261 -55.9895 L 6.3303 -55.2547 L 4.9955 -53.3937 L 4.9512 -52.364 L 4.4262 -51.567 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.7185 -51.9589 L -4.9512 -52.364 L -4.9955 -53.3937 L -6.3303 -55.2547 L -10.261 -55.9895 L -12.178 -54.7363 L -12.5913 -53.7921 L -13.3687 -53.2387 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.7543 -56.9075 L -21.8249 -57.3693 L -21.4943 -58.3455 L -22.0667 -60.563 L -25.4665 -62.6681 L -27.7068 -62.192 L -28.4332 -61.461 L -29.3581 -61.2257 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.8803 -67.4484 L -35.7511 -68.1321 L -35.0902 -68.923 L -34.8229 -71.1975 L -37.2327 -74.3886 L -39.4936 -74.754 L -40.4351 -74.3347 L -41.3825 -74.4494 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.3284 -82.3738 L -44.849 -83.1989 L -43.947 -83.6976 L -42.876 -85.722 L -43.9703 -89.5681 L -45.9466 -90.7255 L -46.976 -90.6747 L -47.818 -91.1238 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -48.4458 -100.1165 L -47.8897 -100.5347 L -46.8685 -100.6739 L -45.1385 -102.1748 L -44.7696 -106.1565 L -46.1943 -107.9496 L -47.1725 -108.2741 L -47.4984 -108.6087 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2938 -116.9039 L -46.1548 -117.1161 L -45.1322 -117.6093 L -44.4626 -117.7984 L -43.4601 -117.5592 L -41.3048 -11
|
||
|
|
</g>
|
||
|
|
<g id='z:2.6' inkscape:groupmode='layer' inkscape:label='Layer 6, z:2.6' transform='translate(280.0, 4754.6302)'>
|
||
|
|
<!--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 4.0351 16.0039 L 4.4045 18.2789 L 4.3737 19.1556 L 4.243 20.0027 L 3.8417 21.4487 L 3.6033 21.6263 L -3.6033 21.6263 L -3.8417 21.4487 L -4.1348 20.4795 L -4.3276 19.5244 L -4.4097 18.4893 L -4.0351 16.0039 L -4.6653 14.7312 L -8.6085 12.8322 L -9.9965 13.133 L -11.318 14.6238 L -11.9622 15.1683 L -12.9933 15.7888 L -14.374 16.3766 L -14.6615 16.301 L -19.1548 10.6666 L -19.1645 10.3695 L -18.5895 9.536 L -17.963 8.7898 L -17.4276 8.2667 L -16.8695 7.8376 L -15.0282 6.8235 L -14.426 5.5373 L -15.3999 1.2703 L -16.5005 0.3727 L -18.8007 0.2267 L -19.6486 0.0015 L -20.4454 -0.3144 L -21.7658 -1.0274 L -21.8859 -1.2994 L -20.2823 -8.3253 L -20.0561 -8.5181 L -19.0459 -8.5883 L -18.0719 -8.5637 L -17.0445 -8.4134 L -14.7047 -7.4951 L -13.3237 -7.8263 L -10.5949 -11.2481 L -10.5793 -12.6682 L -11.8992 -14.5576 L -12.1261 -15.0375 L -12.5017 -16.1808 L -12.7675 -17.6578 L -12.6298 -17.9212 L -6.1369 -21.0481 L -5.845 -20.9915 L -5.1603 -20.2454 L -4.5723 -19.4686 L -4.1815 -18.8301 L -3.8872 -18.1906 L -3.3083 -16.1698 L -2.1884 -15.2965 L 2.1884 -15.2965 L 3.3083 -16.1698 L 3.9626 -18.3797 L 4.3708 -19.1563 L 4.856 -19.8628 L 5.845 -20.9915 L 6.1369 -21.0481 L 12.6298 -17.9212 L 12.7675 -17.6578 L 12.6111 -16.6573 L 12.3704 -15.7132 L 11.9953 -14.745 L 10.5793 -12.6682 L 10.5949 -11.2481 L 13.3237 -7.8263 L 14.7047 -7.4951 L 16.5421 -8.2649 L 17.3588 -8.476 L 18.557 -8.5877 L 20.0561 -8.5181 L 20.2823 -8.3253 L 21.8859 -1.2994 L 21.7658 -1.0274 L 20.8861 -0.5259 L 19.9979 -0.1255 L 19.2885 0.1135 L 18.5995 0.258 L 16.5005 0.3727 L 15.3999 1.2703 L 14.426 5.5373 L 15.0282 6.8235 L 17.0372 7.9531 L 17.7034 8.5239 L 18.2842 9.1541 L 19.1645 10.3695 L 19.1548 10.6666 L 14.6615 16.301 L 14.374 16.3766 L 13.4335 16.0015 L 12.5666 15.5567 L 11.7061 14.9756 L 9.9965 13.133 L 8.6085 12.8322 L 4.6653 14.7312 z M 48.8378 -99.7299 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.5995 -90.9836 L 47.1586 -90.7495 L 45.5915 -90.7972 L 43.6218 -89.6508 L 42.5362 -85.8352 L 43.6073 -83.8236 L 44.9649 -83.0391 L 45.3284 -82.3738 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.3825 -74.4494 L 40.6324 -74.3385 L 39.1884 -74.9491 L 36.9375 -74.5916 L 34.5469 -71.4259 L 34.819 -69.1631 L 35.8015 -67.9413 L 35.9096 -66.8986 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.1021 -61.2692 L 28.6186 -61.3932 L 27.4926 -62.4843 L 25.2647 -62.964 L 21.8918 -60.8756 L 21.3282 -58.6674 L 21.803 -57.1731 L 21.6233 -56.4365 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.3687 -53.2387 L 12.7397 -53.662 L 12.0839 -55.0861 L 10.1797 -56.3383 L 6.2802 -55.6094 L 4.9569 -53.7539 L 4.8598 -52.189 L 4.2372 -51.3456 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.586 -51.7717 L -4.8598 -52.189 L -4.9569 -53.7539 L -6.2802 -55.6094 L -10.1797 -56.3383 L -12.0839 -55.0861 L -12.7397 -53.662 L -13.3687 -53.2387 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.6233 -56.4365 L -21.803 -57.1731 L -21.3282 -58.6674 L -21.8918 -60.8756 L -25.2647 -62.964 L -27.4926 -62.4843 L -28.6186 -61.3932 L -29.6469 -61.1894 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.8803 -67.4484 L -35.8015 -67.9413 L -34.819 -69.1631 L -34.5469 -71.4259 L -36.9375 -74.5916 L -39.1884 -74.9491 L -40.6324 -74.3385 L -41.3825 -74.4494 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.3284 -82.3738 L -44.9649 -83.0391 L -43.6073 -83.8236 L -42.5362 -85.8352 L -43.6218 -89.6508 L -45.5915 -90.7972 L -47.1586 -90.7495 L -48.0559 -91.2916 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -48.4458 -100.1165 L -48.0554 -100.4276 L -46.5062 -100.6687 L -44.7807 -102.1575 L -44.4147 -106.1077 L -45.8372 -107.8882 L -47.3158 -108.4098 L -47.7954 -108.9971 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2938 -116.9039 L -46.1548 -117.1161 L -45.3728 -117.5116 L -44.6559 -117.7584 L -43.1242 -117.42
|
||
|
|
</g>
|
||
|
|
<g id='z:3.0' inkscape:groupmode='layer' inkscape:label='Layer 7, z:3.0' transform='translate(280.0, 5428.5059)'>
|
||
|
|
<!--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 4.0031 15.877 L 4.3694 18.1123 L 4.2942 19.3735 L 4.0927 20.3613 L 3.8123 21.2849 L 3.5758 21.4613 L -3.5758 21.4613 L -3.8123 21.2849 L -4.2159 19.8225 L -4.3432 18.9768 L -4.3537 17.9168 L -4.0031 15.877 L -4.628 14.6135 L -8.5398 12.7296 L -9.9173 13.0289 L -11.615 14.859 L -12.1287 15.2275 L -13.3302 15.8785 L -14.2643 16.2515 L -14.5497 16.1766 L -19.0086 10.5853 L -19.0182 10.2903 L -18.1264 9.063 L -17.2922 8.2025 L -16.885 7.8767 L -14.9091 6.7694 L -14.3108 5.493 L -15.2769 1.2602 L -16.3697 0.3698 L -18.4543 0.256 L -19.8433 -0.1245 L -20.7256 -0.5219 L -21.5996 -1.0196 L -21.719 -1.2895 L -20.1276 -8.2617 L -19.9029 -8.4531 L -18.3874 -8.5211 L -17.5345 -8.4571 L -16.6859 -8.2902 L -14.5882 -7.4357 L -13.2172 -7.7638 L -10.5102 -11.1583 L -10.4955 -12.5678 L -11.9019 -14.6302 L -12.3991 -16.0302 L -12.67 -17.5229 L -12.5334 -17.7845 L -6.09 -20.8875 L -5.8004 -20.8312 L -5.1207 -20.0898 L -4.5369 -19.3181 L -3.9219 -18.2144 L -3.2821 -16.0416 L -2.1709 -15.1743 L 2.1709 -15.1743 L 3.2821 -16.0416 L 4.0177 -18.4271 L 4.5369 -19.3181 L 5.1471 -20.1207 L 5.8004 -20.8312 L 6.09 -20.8875 L 12.5334 -17.7845 L 12.67 -17.5229 L 12.2748 -15.5917 L 12.0208 -14.893 L 11.6964 -14.2534 L 10.4955 -12.5678 L 10.5102 -11.1583 L 13.2172 -7.7638 L 14.5882 -7.4357 L 16.9118 -8.3479 L 17.9322 -8.4975 L 18.8996 -8.5223 L 19.9029 -8.4531 L 20.1276 -8.2617 L 21.719 -1.2895 L 21.5996 -1.0196 L 20.2636 -0.3007 L 19.4674 0.0116 L 18.6305 0.2295 L 16.3697 0.3698 L 15.2769 1.2602 L 14.3108 5.493 L 14.9091 6.7694 L 16.7378 7.7764 L 17.5446 8.4361 L 18.1264 9.063 L 19.0182 10.2903 L 19.0086 10.5853 L 14.5497 16.1766 L 14.2643 16.2515 L 13.3302 15.8785 L 12.4694 15.4365 L 11.4365 14.709 L 9.9173 13.0289 L 8.5398 12.7296 L 4.628 14.6135 z M 4.1459 -148.0435 L 5.2512 -148.9454 L 5.5032 -148.9752 L 12.5604 -147.656 L 12.7845 -147.5372 L 13.4893 -146.2969 L 13.2661 -144.2009 L 14.2155 -142.1414 L 17.8851 -140.7198 L 19.9742 -141.6021 L 21.2213 -143.3015 L 22.5777 -143.7433 L 22.8234 -143.6801 L 28.9275 -139.9006 L 29.0936 -139.7088 L 29.3028 -138.2977 L 28.3374 -136.4238 L 28.4788 -134.1604 L 31.387 -131.5092 L 33.6538 -131.5773 L 35.4306 -132.7115 L 36.855 -132.6334 L 37.0613 -132.4857 L 41.3879 -126.7564 L 41.4735 -126.5175 L 41.1588 -125.1261 L 39.5817 -123.7276 L 38.8958 -121.5659 L 40.65 -118.0432 L 42.7883 -117.2878 L 44.8548 -117.7035 L 46.1548 -117.1161 L 46.2938 -116.9039 L 48.2586 -109.9985 L 48.2521 -109.7449 L 47.456 -108.5611 L 45.4802 -107.8267 L 44.0598 -106.0589 L 44.4229 -102.1403 L 46.144 -100.6635 L 48.2211 -100.3047 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.3441 -90.8399 L 45.2364 -90.8689 L 43.2732 -89.7335 L 42.1963 -85.9483 L 43.2677 -83.9496 L 45.0749 -82.8646 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 40.838 -74.3558 L 38.8831 -75.1442 L 36.6424 -74.7947 L 34.2708 -71.6542 L 34.5478 -69.4033 L 35.8411 -67.7388 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 28.8166 -61.3351 L 27.2785 -62.7765 L 25.0628 -63.26 L 21.7169 -61.1883 L 21.1621 -58.9893 L 21.7667 -56.97 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 12.9033 -53.5364 L 11.9897 -55.436 L 10.0983 -56.6872 L 6.23 -55.9641 L 4.9183 -54.1141 L 4.7526 -52.0127 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.7526 -52.0127 L -4.9183 -54.1141 L -6.23 -55.9641 L -10.0983 -56.6872 L -11.9897 -55.436 L -12.9033 -53.5364 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.7667 -56.97 L -21.1621 -58.9893 L -21.7169 -61.1883 L -25.0628 -63.26 L -27.2785 -62.7765 L -28.8166 -61.3351 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.8411 -67.7388 L -34.5478 -69.4033 L -34.2708 -71.6542 L -36.6424 -74.7947 L -38.8831 -75.1442 L -40.838 -74.3558 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.0749 -82.8646 L -43.2677 -83.9496 L -42.1963 -85.9483 L -43.2732 -89.7335 L -45.2364 -90.8689 L -47.3441 -90
|
||
|
|
</g>
|
||
|
|
<g id='z:3.4' inkscape:groupmode='layer' inkscape:label='Layer 8, z:3.4' transform='translate(280.0, 6102.3816)'>
|
||
|
|
<!--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.9711 15.7502 L 4.3243 17.8251 L 4.251 19.2819 L 4.0561 20.2222 L 3.783 21.1211 L 3.5483 21.2963 L -3.5483 21.2963 L -3.783 21.1211 L -4.0713 20.1648 L -4.2607 19.2225 L -4.3411 18.2015 L -3.9711 15.7502 L -4.5907 14.4957 L -8.471 12.6271 L -9.838 12.9248 L -11.5239 14.7424 L -12.0339 15.1086 L -13.227 15.7556 L -14.1545 16.1265 L -14.4378 16.0522 L -18.8625 10.5039 L -18.8718 10.2112 L -17.9856 8.9926 L -17.1568 8.1383 L -16.7524 7.8148 L -14.7899 6.7153 L -14.1955 5.4488 L -15.1538 1.25 L -16.2389 0.3668 L -18.2096 0.264 L -18.7571 0.1707 L -19.3697 -0.0076 L -20.6177 -0.5455 L -21.4334 -1.0117 L -21.552 -1.2795 L -19.9728 -8.1982 L -19.7498 -8.388 L -18.2446 -8.4549 L -17.0599 -8.3396 L -16.259 -8.126 L -14.4716 -7.3763 L -13.1108 -7.7012 L -10.4256 -11.0684 L -10.4116 -12.4674 L -11.8085 -14.5154 L -12.1791 -15.4702 L -12.4173 -16.4014 L -12.5725 -17.3881 L -12.4371 -17.6478 L -6.0432 -20.7269 L -5.7558 -20.6709 L -4.765 -19.5357 L -4.2868 -18.8337 L -3.8911 -18.0713 L -3.2559 -15.9134 L -2.1534 -15.0521 L 2.1534 -15.0521 L 3.2559 -15.9134 L 3.838 -17.9361 L 4.1427 -18.5839 L 4.8022 -19.5838 L 5.7558 -20.6709 L 6.0432 -20.7269 L 12.4371 -17.6478 L 12.5725 -17.3881 L 12.3027 -15.9057 L 12.052 -15.0942 L 11.7027 -14.3094 L 10.4116 -12.4674 L 10.4256 -11.0684 L 13.1108 -7.7012 L 14.4716 -7.3763 L 16.2706 -8.1309 L 17.0599 -8.3396 L 18.2446 -8.4549 L 19.7498 -8.388 L 19.9728 -8.1982 L 21.552 -1.2795 L 21.4334 -1.0117 L 20.5652 -0.5179 L 19.3154 0.0115 L 18.7111 0.182 L 16.2389 0.3668 L 15.1538 1.25 L 14.1955 5.4488 L 14.7899 6.7153 L 16.5208 7.663 L 16.9736 7.9846 L 17.7257 8.6985 L 18.3392 9.4371 L 18.8718 10.2112 L 18.8625 10.5039 L 14.4378 16.0522 L 14.1545 16.1265 L 12.3723 15.3162 L 11.752 14.9157 L 11.217 14.473 L 9.838 12.9248 L 8.471 12.6271 L 4.5907 14.4957 z M 3.7703 -146.5497 L 4.298 -148.1955 L 5.2512 -148.9454 L 5.5032 -148.9752 L 12.5604 -147.656 L 12.7845 -147.5372 L 13.4025 -146.4935 L 13.335 -145.1248 L 13.1619 -143.8539 L 14.101 -141.8019 L 17.741 -140.3918 L 19.8174 -141.2756 L 21.4179 -143.3883 L 22.5777 -143.7433 L 22.8234 -143.6801 L 28.9275 -139.9006 L 29.0936 -139.7088 L 29.2929 -138.5124 L 28.7355 -137.2605 L 28.115 -136.1379 L 28.2494 -133.8853 L 31.1342 -131.2554 L 33.3896 -131.3294 L 34.1466 -131.8605 L 35.6453 -132.7214 L 36.855 -132.6334 L 37.0613 -132.4857 L 41.3879 -126.7564 L 41.4735 -126.5175 L 41.2271 -125.3299 L 40.2551 -124.3639 L 39.271 -123.5413 L 38.5825 -121.3922 L 40.3225 -117.8978 L 42.4524 -117.1521 L 43.3501 -117.3739 L 45.0586 -117.6352 L 46.1548 -117.1161 L 46.2938 -116.9039 L 48.2586 -109.9985 L 48.2521 -109.7449 L 47.5933 -108.7265 L 46.338 -108.1769 L 45.1232 -107.7653 L 43.7049 -106.0101 L 44.0651 -102.123 L 45.7817 -100.6583 L 46.699 -100.5408 L 48.3864 -100.1673 L 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.5318 -90.9446 L 46.1627 -90.8855 L 44.8813 -90.9406 L 42.9247 -89.8162 L 41.8564 -86.0615 L 42.928 -84.0756 L 43.7409 -83.6347 L 45.1795 -82.6768 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.0509 -74.3856 L 39.7529 -74.8251 L 38.5779 -75.3393 L 36.3473 -74.9977 L 33.9948 -71.8825 L 34.2766 -69.6435 L 34.8753 -68.9388 L 35.8707 -67.5259 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.0258 -61.286 L 27.0643 -63.0687 L 24.8609 -63.5559 L 21.542 -61.5009 L 20.996 -59.3113 L 21.7175 -56.7608 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.0807 -53.4149 L 11.8956 -55.7858 L 10.017 -57.0361 L 6.1798 -56.3188 L 4.8797 -54.4743 L 4.6311 -51.8354 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.6311 -51.8354 L -4.8797 -54.4743 L -6.1798 -56.3188 L -10.017 -57.0361 L -11.8956 -55.7858 L -12.2596 -54.9357 L -13.0807 -53.4149 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.7175 -56.7608 L -21.3996 -58.0938 L -20.996 -59.3113 L -21.542 -61.5009 L -24.8609 -63.5559 L -27.0643 -63.0687 L -27.7109 -62.4075 L -29.0258 -61.286 L -30.2311 -61.1502 L -30.461 -61.2575 L -3
|
||
|
|
</g>
|
||
|
|
<g id='z:3.8' inkscape:groupmode='layer' inkscape:label='Layer 9, z:3.8' transform='translate(280.0, 6776.2574)'>
|
||
|
|
<!--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.9391 15.6233 L 4.2905 17.6901 L 4.2151 19.146 L 4.0195 20.083 L 3.7537 20.9574 L 3.5208 21.1314 L -3.5208 21.1314 L -3.7537 20.9574 L -4.0395 20.0074 L -4.2273 19.0716 L -4.2841 17.6261 L -3.9391 15.6233 L -4.5534 14.378 L -8.4022 12.5246 L -9.7588 12.8207 L -11.2567 14.4778 L -12.2751 15.196 L -14.0448 16.0014 L -14.326 15.9279 L -18.7164 10.4225 L -18.7255 10.132 L -18.161 9.3162 L -17.5464 8.5859 L -16.4744 7.654 L -14.6708 6.6612 L -14.0802 5.4045 L -15.0308 1.2399 L -16.1081 0.3639 L -18.1639 0.252 L -18.839 0.1108 L -19.5341 -0.1225 L -21.2672 -1.0039 L -21.385 -1.2696 L -19.8181 -8.1347 L -19.5966 -8.323 L -18.6069 -8.3903 L -17.6528 -8.3651 L -16.6465 -8.217 L -14.355 -7.3169 L -13.0043 -7.6387 L -10.3409 -10.9785 L -10.3277 -12.367 L -11.7151 -14.4007 L -11.9571 -14.9753 L -12.3204 -16.2734 L -12.475 -17.2533 L -12.3407 -17.5111 L -5.9964 -20.5663 L -5.7111 -20.5106 L -4.7277 -19.3828 L -4.084 -18.3913 L -3.7575 -17.6492 L -3.2296 -15.7852 L -2.1359 -14.9298 L 2.1359 -14.9298 L 3.2296 -15.7852 L 3.8603 -17.9282 L 4.2531 -18.6854 L 4.7277 -19.3828 L 5.7111 -20.5106 L 5.9964 -20.5663 L 12.3407 -17.5111 L 12.475 -17.2533 L 12.3204 -16.2734 L 12.0835 -15.3488 L 11.7151 -14.4007 L 10.3277 -12.367 L 10.3409 -10.9785 L 13.0043 -7.6387 L 14.355 -7.3169 L 16.4236 -8.1599 L 16.9252 -8.2738 L 18.1017 -8.3887 L 19.5966 -8.323 L 19.8181 -8.1347 L 21.385 -1.2696 L 21.2672 -1.0039 L 20.4047 -0.5138 L 19.1633 0.0114 L 18.1639 0.252 L 16.1081 0.3639 L 15.0308 1.2399 L 14.0802 5.4045 L 14.6708 6.6612 L 16.4744 7.654 L 17.0214 8.0741 L 17.8448 8.9222 L 18.7255 10.132 L 18.7164 10.4225 L 14.326 15.9279 L 14.0448 16.0014 L 13.1238 15.6327 L 11.9392 14.9896 L 11.4327 14.6259 L 9.7588 12.8207 L 8.4022 12.5246 L 4.5534 14.378 z M 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.7216 -91.062 L 45.8043 -90.9562 L 44.5261 -91.0122 L 42.5761 -89.8989 L 41.5165 -86.1747 L 42.5883 -84.2016 L 43.4125 -83.7549 L 45.279 -82.4771 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.2703 -74.4265 L 39.4443 -75.0205 L 38.2726 -75.5345 L 36.0521 -75.2007 L 33.7187 -72.1108 L 34.0054 -69.8837 L 34.6125 -69.1695 L 35.8914 -67.3037 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.2452 -61.2449 L 28.1049 -62.1519 L 26.8502 -63.3609 L 24.6591 -63.8518 L 21.367 -61.8135 L 20.8298 -59.6332 L 21.2502 -58.3623 L 21.6565 -56.5461 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.2704 -53.2974 L 12.5347 -54.5551 L 11.8015 -56.1356 L 9.9357 -57.3849 L 6.1296 -56.6735 L 4.8411 -54.8345 L 4.774 -53.4975 L 4.4967 -51.6573 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.4967 -51.6573 L -4.7789 -53.5566 L -4.8411 -54.8345 L -6.1296 -56.6735 L -9.9357 -57.3849 L -11.8015 -56.1356 L -12.1702 -55.2738 L -13.2704 -53.2974 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.6565 -56.5461 L -21.3528 -57.9712 L -20.8298 -59.6332 L -21.367 -61.8135 L -24.6591 -63.8518 L -26.8502 -63.3609 L -27.5054 -62.6905 L -29.2452 -61.2449 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.8914 -67.3037 L -35.0934 -68.5228 L -34.0054 -69.8837 L -33.7187 -72.1108 L -36.0521 -75.2007 L -38.2726 -75.5345 L -39.1258 -75.146 L -41.2703 -74.4265 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.279 -82.4771 L -43.7045 -83.5763 L -42.5883 -84.2016 L -41.5165 -86.1747 L -42.5761 -89.8989 L -44.5261 -91.0122 L -45.462 -90.9582 L -47.7216 -91.062 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -48.5514 -100.017 L -46.6862 -100.4732 L -45.4195 -100.6531 L -43.7073 -102.1058 L -43.35 -105.9613 L -44.7662 -107.7039 L -45.6583 -107.9915 L -47.7279 -108.9046 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2938 -116.9039 L -46.1548 -117.1161 L -45.2667 -117.5547 L -43.3626 -117.3063 L -42.1165 -117.0164 L -39.9951 -117.7525 L -38.2692 -121.2185 L -38.9602 -123.355 L -39.6883 -123.9456 L -41.2882 -125.54
|
||
|
|
</g>
|
||
|
|
<g id='z:4.2' inkscape:groupmode='layer' inkscape:label='Layer 10, z:4.2' transform='translate(280.0, 7450.1331)'>
|
||
|
|
<!--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.9072 15.4964 L 4.2724 17.9136 L 4.1938 18.9207 L 4.0078 19.8501 L 3.7243 20.7936 L 3.4933 20.9664 L -3.4933 20.9664 L -3.7243 20.7936 L -4.1938 18.9207 L -4.2664 17.6853 L -3.9072 15.4964 L -4.5162 14.2603 L -8.3334 12.422 L -9.6795 12.7166 L -11.3416 14.5093 L -12.178 15.0757 L -13.0206 15.5097 L -13.935 15.8764 L -14.2141 15.8035 L -18.5702 10.3411 L -18.5791 10.0528 L -17.704 8.8518 L -17.1335 8.2384 L -16.487 7.691 L -14.5517 6.6071 L -13.965 5.3603 L -14.9077 1.2297 L -15.9773 0.3609 L -18.4152 0.1792 L -19.7914 -0.2937 L -21.101 -0.9961 L -21.218 -1.2597 L -19.6634 -8.0712 L -19.4435 -8.258 L -18.4606 -8.3243 L -16.7906 -8.208 L -16.2925 -8.0948 L -14.2385 -7.2575 L -12.8979 -7.5761 L -10.2562 -10.8886 L -10.2439 -12.2666 L -11.4299 -13.9317 L -11.7384 -14.5432 L -12.1101 -15.6567 L -12.3775 -17.1184 L -12.2443 -17.3743 L -5.9496 -20.4057 L -5.6665 -20.3503 L -5.0018 -19.6232 L -4.2193 -18.5371 L -3.7274 -17.508 L -3.2034 -15.6571 L -2.1184 -14.8076 L 2.1184 -14.8076 L 3.2034 -15.6571 L 3.9231 -17.9934 L 4.4309 -18.8666 L 5.0018 -19.6232 L 5.6665 -20.3503 L 5.9496 -20.4057 L 12.2443 -17.3743 L 12.3775 -17.1184 L 11.9879 -15.2273 L 11.5173 -14.0828 L 10.2439 -12.2666 L 10.2562 -10.8886 L 12.8979 -7.5761 L 14.2385 -7.2575 L 16.2925 -8.0948 L 16.7906 -8.208 L 18.4606 -8.3243 L 19.4435 -8.258 L 19.6634 -8.0712 L 21.218 -1.2597 L 21.101 -0.9961 L 19.7914 -0.2937 L 18.4152 0.1792 L 15.9773 0.3609 L 14.9077 1.2297 L 13.965 5.3603 L 14.5517 6.6071 L 16.487 7.691 L 17.1335 8.2384 L 17.704 8.8518 L 18.5791 10.0528 L 18.5702 10.3411 L 14.2141 15.8035 L 13.935 15.8764 L 13.0206 15.5097 L 12.178 15.0757 L 11.3416 14.5093 L 9.6795 12.7166 L 8.3334 12.422 L 4.5162 14.2603 z M 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 47.913 -91.1909 L 46.4279 -91.0563 L 44.171 -91.0839 L 42.2276 -89.9816 L 41.1767 -86.2879 L 42.2487 -84.3276 L 43.0841 -83.8751 L 45.3739 -82.2667 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.4953 -74.4775 L 39.1356 -75.216 L 37.9674 -75.7296 L 35.757 -75.4037 L 33.4427 -72.3391 L 33.7342 -70.1239 L 34.3497 -69.4002 L 35.9039 -67.0733 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.4735 -61.2112 L 27.5399 -62.7522 L 26.6361 -63.6531 L 24.4572 -64.1477 L 21.1921 -62.1261 L 20.6637 -59.9552 L 21.2048 -58.2313 L 21.5849 -56.3268 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.471 -53.1835 L 12.6887 -54.4529 L 11.7074 -56.4855 L 9.8543 -57.7338 L 6.0794 -57.0281 L 4.8025 -55.1947 L 4.7698 -54.2452 L 4.3507 -51.4786 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.3507 -51.4786 L -4.6217 -52.9449 L -4.8025 -55.1947 L -6.0794 -57.0281 L -9.8543 -57.7338 L -11.7074 -56.4855 L -12.0809 -55.6119 L -13.471 -53.1835 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.5849 -56.3268 L -21.0673 -58.7445 L -20.6637 -59.9552 L -21.1921 -62.1261 L -24.4572 -64.1477 L -26.6361 -63.6531 L -27.2999 -62.9734 L -29.4735 -61.2112 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.9039 -67.0733 L -34.8207 -68.7675 L -33.7342 -70.1239 L -33.4427 -72.3391 L -35.757 -75.4037 L -37.9674 -75.7296 L -39.2065 -75.1878 L -41.4953 -74.4775 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.3739 -82.2667 L -43.7518 -83.4552 L -42.2487 -84.3276 L -41.1767 -86.2879 L -42.2276 -89.9816 L -44.171 -91.0839 L -46.4839 -91.0584 L -47.913 -91.1909 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -48.7159 -99.8552 L -46.3209 -100.4695 L -45.0573 -100.6479 L -43.3495 -102.0886 L -42.9951 -105.9124 L -44.4091 -107.6424 L -45.3135 -107.9337 L -47.8598 -109.0939 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2938 -116.9039 L -46.1548 -117.1161 L -45.4785 -117.4631 L -43.0233 -117.1709 L -41.7806 -116.8807 L -39.6677 -117.6072 L -37.956 -121.0448 L -38.6495 -123.1688 L -39.3876 -123.7671 L -41.3428 -125.7688 L -41.4735 -126.5175 L -41.3879 -126.7564 L
|
||
|
|
</g>
|
||
|
|
<g id='z:4.6' inkscape:groupmode='layer' inkscape:label='Layer 11, z:4.6' transform='translate(280.0, 8124.0089)'>
|
||
|
|
<!--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.8752 15.3696 L 4.2381 17.7697 L 4.1604 18.7697 L 3.976 19.6928 L 3.695 20.6298 L 3.4658 20.8014 L -3.4658 20.8014 L -3.695 20.6298 L -4.1604 18.7697 L -4.2321 17.543 L -3.8752 15.3696 L -4.4789 14.1426 L -8.2646 12.3195 L -9.6003 12.6125 L -11.2505 14.3927 L -12.0808 14.9555 L -12.9174 15.3868 L -13.8252 15.7513 L -14.1023 15.6791 L -18.4241 10.2597 L -18.4328 9.9736 L -17.5632 8.7814 L -16.9964 8.1725 L -16.3543 7.6291 L -14.4325 6.553 L -13.8497 5.3161 L -14.7847 1.2196 L -15.8465 0.358 L -18.2672 0.1777 L -19.634 -0.2914 L -20.9348 -0.9882 L -21.0511 -1.2498 L -19.5086 -8.0077 L -19.2903 -8.1929 L -18.3143 -8.2584 L -16.656 -8.1421 L -16.1614 -8.0297 L -14.1219 -7.1981 L -12.7914 -7.5136 L -10.1716 -10.7988 L -10.16 -12.1661 L -11.3378 -13.8195 L -11.6443 -14.4266 L -12.0138 -15.5322 L -12.28 -16.9836 L -12.148 -17.2376 L -5.9028 -20.2452 L -5.6219 -20.19 L -4.9621 -19.4677 L -4.1856 -18.3888 L -3.6974 -17.3668 L -3.1772 -15.5289 L -2.1009 -14.6854 L 2.1009 -14.6854 L 3.1772 -15.5289 L 3.8916 -17.8488 L 4.3955 -18.7161 L 4.9621 -19.4677 L 5.6219 -20.19 L 5.9028 -20.2452 L 12.148 -17.2376 L 12.28 -16.9836 L 11.8922 -15.1058 L 11.4246 -13.9694 L 10.16 -12.1661 L 10.1716 -10.7988 L 12.7914 -7.5136 L 14.1219 -7.1981 L 16.1614 -8.0297 L 16.656 -8.1421 L 18.3143 -8.2584 L 19.2903 -8.1929 L 19.5086 -8.0077 L 21.0511 -1.2498 L 20.9348 -0.9882 L 19.634 -0.2914 L 18.2672 0.1777 L 15.8465 0.358 L 14.7847 1.2196 L 13.8497 5.3161 L 14.4325 6.553 L 16.3543 7.6291 L 16.9964 8.1725 L 17.5632 8.7814 L 18.4328 9.9736 L 18.4241 10.2597 L 14.1023 15.6791 L 13.8252 15.7513 L 12.9174 15.3868 L 12.0808 14.9555 L 11.2505 14.3927 L 9.6003 12.6125 L 8.2646 12.3195 L 4.4789 14.1426 z M 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 48.1058 -91.3299 L 45.5487 -91.1045 L 43.8159 -91.1556 L 41.8791 -90.0642 L 40.8368 -86.4011 L 41.909 -84.4536 L 43.9024 -83.251 L 45.4645 -82.047 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.7253 -74.5376 L 39.2594 -75.2511 L 37.6622 -75.9247 L 35.4618 -75.6067 L 33.1667 -72.5674 L 33.463 -70.3641 L 34.8873 -68.5227 L 35.9091 -66.8357 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.7096 -61.1841 L 28.0654 -62.4068 L 26.4219 -63.9453 L 24.2553 -64.4437 L 21.0172 -62.4387 L 20.4976 -60.2771 L 20.8145 -59.368 L 21.5039 -56.1033 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.6814 -53.0729 L 12.59 -54.807 L 11.6132 -56.8353 L 9.773 -58.0827 L 6.0293 -57.3828 L 4.7639 -55.5549 L 4.731 -54.5927 L 4.4848 -52.6823 L 4.1945 -51.2995 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.1945 -51.2995 L -4.6548 -53.8249 L -4.7639 -55.5549 L -6.0293 -57.3828 L -9.773 -58.0827 L -11.6132 -56.8353 L -12.38 -55.1835 L -13.6814 -53.0729 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.5039 -56.1033 L -20.9012 -59.0699 L -20.4976 -60.2771 L -21.0172 -62.4387 L -24.2553 -64.4437 L -26.4219 -63.9453 L -27.0944 -63.2563 L -29.7096 -61.1841 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.9091 -66.8357 L -34.2754 -69.3842 L -33.463 -70.3641 L -33.1667 -72.5674 L -35.4618 -75.6067 L -37.6622 -75.9247 L -39.3417 -75.2205 L -41.7253 -74.5376 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.4645 -82.047 L -44.307 -82.9578 L -42.6748 -84.0418 L -41.909 -84.4536 L -40.8368 -86.4011 L -41.8791 -90.0642 L -43.8159 -91.1556 L -46.1437 -91.1287 L -48.1058 -91.3299 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -48.8798 -99.6831 L -46.4076 -100.3745 L -44.695 -100.6427 L -42.9917 -102.0713 L -42.6403 -105.8636 L -44.0521 -107.581 L -45.3459 -108.0192 L -47.9893 -109.2932 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2938 -116.9039 L -46.1548 -117.1161 L -45.6935 -117.3619 L -44.2245 -117.2551 L -42.288 -116.9566 L -41.4447 -116.745 L -39.3403 -117.4618 L -37.6427 -120.8711 L -38.3388 -122.9825 L -40.0772 -124.5308 L -41.3916 -126.0014 L
|
||
|
|
</g>
|
||
|
|
<g id='z:5.0' inkscape:groupmode='layer' inkscape:label='Layer 12, z:5.0' transform='translate(280.0, 8797.8846)'>
|
||
|
|
<!--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.8432 15.2427 L 4.2038 17.6258 L 4.1269 18.6188 L 3.9442 19.5354 L 3.6657 20.466 L 3.4383 20.6364 L -3.4383 20.6364 L -3.6657 20.466 L -4.1269 18.6188 L -4.1977 17.4006 L -3.8432 15.2427 L -4.4416 14.0249 L -8.1958 12.217 L -9.521 12.5084 L -11.1594 14.2761 L -11.9837 14.8352 L -12.8142 15.2639 L -13.7155 15.6263 L -13.9904 15.5548 L -18.2779 10.1784 L -18.2865 9.8944 L -17.4224 8.711 L -16.8594 8.1066 L -16.2216 7.5672 L -14.3134 6.4989 L -13.7344 5.2718 L -14.6616 1.2094 L -15.7157 0.355 L -17.8984 0.2205 L -19.0703 -0.1196 L -20.7686 -0.9804 L -20.8841 -1.2399 L -19.3539 -7.9442 L -19.1372 -8.1279 L -18.168 -8.1924 L -17.2337 -8.1665 L -16.2484 -8.0205 L -14.0054 -7.1386 L -12.6849 -7.4511 L -10.0869 -10.7089 L -10.0762 -12.0657 L -11.435 -14.0563 L -11.9175 -15.4077 L -12.1825 -16.8488 L -12.0516 -17.1009 L -5.8559 -20.0846 L -5.5772 -20.0297 L -4.9225 -19.3121 L -3.9866 -17.9524 L -3.7678 -17.4988 L -3.151 -15.4007 L -2.0834 -14.5632 L 2.0834 -14.5632 L 3.151 -15.4007 L 3.7052 -17.3385 L 3.9866 -17.9524 L 4.6158 -18.924 L 5.5772 -20.0297 L 5.8559 -20.0846 L 12.0516 -17.1009 L 12.1825 -16.8488 L 12.0297 -15.8895 L 11.6724 -14.6188 L 11.181 -13.6072 L 10.0762 -12.0657 L 10.0869 -10.7089 L 12.6849 -7.4511 L 14.0054 -7.1386 L 16.2484 -8.0205 L 17.2337 -8.1665 L 18.168 -8.1924 L 19.1372 -8.1279 L 19.3539 -7.9442 L 20.8841 -1.2399 L 20.7686 -0.9804 L 19.0703 -0.1196 L 17.8984 0.2205 L 15.7157 0.355 L 14.6616 1.2094 L 13.7344 5.2718 L 14.3134 6.4989 L 16.4014 7.7028 L 17.1299 8.3821 L 17.7326 9.0964 L 18.2865 9.8944 L 18.2779 10.1784 L 13.9904 15.5548 L 13.7155 15.6263 L 12.3695 15.0472 L 11.655 14.6328 L 10.9871 14.131 L 9.521 12.5084 L 8.1958 12.217 L 4.4416 14.0249 z M 49.2211 -99.2873 L 49.2741 -99.0392 L 48.6117 -91.8904 L 48.514 -91.6562 L 48.2997 -91.4788 L 44.7291 -91.1685 L 43.4608 -91.2273 L 41.5305 -90.1469 L 40.4969 -86.5142 L 41.5694 -84.5796 L 42.4274 -84.1154 L 44.0303 -83.0427 L 45.551 -81.8183 L 45.6399 -81.5547 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2238 -74.6944 L 41.9599 -74.6064 L 39.439 -75.2791 L 37.3569 -76.1198 L 35.1667 -75.8097 L 32.8906 -72.7957 L 33.1918 -70.6043 L 33.8242 -69.8616 L 34.9313 -68.2822 L 35.9071 -66.5912 L 35.8947 -66.3133 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 29.9532 -61.1635 L 27.1055 -63.3396 L 26.2078 -64.2375 L 24.0535 -64.7396 L 20.8423 -62.7513 L 20.3314 -60.5991 L 20.6529 -59.678 L 21.1147 -57.8054 L 21.4137 -55.8761 L 21.3018 -55.6214 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 13.9012 -52.9657 L 12.4914 -55.1611 L 11.5191 -57.1851 L 9.6916 -58.4315 L 5.9791 -57.7375 L 4.7252 -55.9151 L 4.5373 -53.5798 L 4.0283 -51.1201 L 3.8319 -50.9231 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8319 -50.9231 L -4.0283 -51.1201 L -4.6181 -54.1894 L -4.7252 -55.9151 L -5.9791 -57.7375 L -9.6916 -58.4315 L -11.5191 -57.1851 L -12.538 -55.0754 L -13.9012 -52.9657 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3018 -55.6214 L -21.4137 -55.8761 L -20.8549 -58.9511 L -20.3314 -60.5991 L -20.8423 -62.7513 L -24.0535 -64.7396 L -26.2078 -64.2375 L -27.92 -62.6383 L -29.9532 -61.1635 L -30.2311 -61.1502 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -35.9071 -66.5912 L -34.2752 -69.2568 L -33.1918 -70.6043 L -32.8906 -72.7957 L -35.1667 -75.8097 L -37.3569 -76.1198 L -38.6206 -75.5662 L -41.9599 -74.6064 L -42.2238 -74.6944 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -45.551 -81.8183 L -43.0664 -83.7144 L -41.5694 -84.5796 L -40.4969 -86.5142 L -41.5305 -90.1469 L -43.4608 -91.2273 L -44.4346 -91.1702 L -46.3622 -91.2384 L -48.2997 -91.4788 L -48.514 -91.6562 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2211 -99.2873 L -49.043 -99.501 L -46.5456 -100.2562 L -44.3328 -100.6375 L -42.6339 -102.0541 L -42.2854 -105.8148 L -43.6951 -107.5195 L -44.6237 -107.8181 L -46.3965 -108.5781 L -48.1163 -109.5021 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2938 -116.9039 L -46.1548 -117.1161 L -45.9115 -117.2511 L -43.3099 -117.0531 L -41.1088 -116.6093 L -39.0129 -117.3165 L -37.3294 -120.6974 L -38.
|
||
|
|
</g>
|
||
|
|
<g id='z:5.4' inkscape:groupmode='layer' inkscape:label='Layer 13, z:5.4' transform='translate(280.0, 9471.7603)'>
|
||
|
|
<!--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.8112 15.1158 L 4.1695 17.4818 L 4.0935 18.4679 L 3.9125 19.3781 L 3.6363 20.3022 L 3.4109 20.4714 L -3.4109 20.4714 L -3.6363 20.3022 L -4.0935 18.4679 L -4.1634 17.2583 L -3.8112 15.1158 L -4.4043 13.9072 L -8.1271 12.1145 L -9.4418 12.4043 L -11.0682 14.1596 L -11.8865 14.7149 L -12.711 15.1409 L -13.6057 15.5012 L -13.8785 15.4304 L -18.1318 10.097 L -18.1401 9.8152 L -17.2816 8.6406 L -16.7223 8.0407 L -16.0889 7.5053 L -14.1943 6.4449 L -13.6192 5.2276 L -14.5386 1.1993 L -15.5849 0.3521 L -17.5087 0.2514 L -18.3461 0.0755 L -19.8986 -0.569 L -20.6024 -0.9725 L -20.7171 -1.23 L -19.1991 -7.8806 L -18.984 -8.0628 L -17.5304 -8.124 L -16.7127 -8.0607 L -15.6951 -7.8338 L -13.8888 -7.0792 L -12.5785 -7.3885 L -10.0023 -10.619 L -9.9923 -11.9653 L -11.3416 -13.9415 L -11.701 -14.8629 L -11.9328 -15.7615 L -12.085 -16.7139 L -11.9553 -16.9642 L -5.8091 -19.924 L -5.5326 -19.8694 L -4.5785 -18.7711 L -4.1181 -18.0923 L -3.737 -17.3556 L -3.1247 -15.2725 L -2.066 -14.4409 L 2.066 -14.4409 L 3.1247 -15.2725 L 3.8285 -17.5597 L 4.5785 -18.7711 L 5.5326 -19.8694 L 5.8091 -19.924 L 11.9553 -16.9642 L 12.085 -16.7139 L 11.9328 -15.7615 L 11.4561 -14.1934 L 11.2392 -13.7428 L 9.9923 -11.9653 L 10.0023 -10.619 L 12.5785 -7.3885 L 13.8888 -7.0792 L 15.736 -7.8488 L 16.3867 -8.0105 L 17.5304 -8.124 L 18.984 -8.0628 L 19.1991 -7.8806 L 20.7171 -1.23 L 20.6024 -0.9725 L 19.7628 -0.4977 L 18.555 0.0111 L 17.4654 0.2556 L 15.5849 0.3521 L 14.5386 1.1993 L 13.6192 5.2276 L 14.1943 6.4449 L 16.0889 7.5053 L 16.7223 8.0407 L 17.2816 8.6406 L 18.1401 9.8152 L 18.1318 10.097 L 13.8785 15.4304 L 13.6057 15.5012 L 12.711 15.1409 L 11.8865 14.7149 L 11.0682 14.1596 L 9.4418 12.4043 L 8.1271 12.1145 L 4.4043 13.9072 z M 49.2741 -99.0392 L 48.6117 -91.8904 L 48.4951 -91.6405 L 45.9172 -91.3023 L 43.969 -91.2448 L 43.1057 -91.299 L 41.182 -90.2296 L 40.157 -86.6274 L 41.2297 -84.7056 L 42.8295 -83.7765 L 45.6321 -81.5781 L 45.5996 -81.3042 L 42.3995 -74.8774 L 42.2005 -74.6865 L 39.6745 -75.3024 L 37.8372 -75.9526 L 37.0517 -76.3149 L 34.8716 -76.0128 L 32.6146 -73.024 L 32.9206 -70.8445 L 33.5614 -70.0923 L 34.6707 -68.5112 L 35.8959 -66.3379 L 35.7667 -66.0942 L 30.461 -61.2575 L 30.2311 -61.1502 L 27.6256 -62.996 L 25.9936 -64.5297 L 23.8516 -65.0355 L 20.6674 -63.0639 L 20.1653 -60.921 L 20.8391 -58.6615 L 21.3117 -55.6439 L 21.1033 -55.4634 L 14.4086 -52.8699 L 14.1555 -52.8529 L 12.3927 -55.5152 L 11.425 -57.535 L 9.6103 -58.7804 L 5.9289 -58.0922 L 4.6866 -56.2754 L 4.4987 -53.925 L 3.8493 -50.9405 L 3.5897 -50.8475 L -3.5897 -50.8475 L -3.8493 -50.9405 L -4.4239 -53.4761 L -4.6609 -55.4107 L -4.6866 -56.2754 L -5.9289 -58.0922 L -9.6103 -58.7804 L -11.425 -57.535 L -11.8127 -56.626 L -13.4227 -53.8562 L -14.1555 -52.8529 L -14.4086 -52.8699 L -21.1033 -55.4634 L -21.3117 -55.6439 L -20.8109 -58.7764 L -20.1653 -60.921 L -20.6674 -63.0639 L -23.8516 -65.0355 L -25.9936 -64.5297 L -26.6835 -63.8222 L -28.1555 -62.5718 L -30.2065 -61.1513 L -30.461 -61.2575 L -35.7667 -66.0942 L -35.8947 -66.3133 L -34.2972 -69.0779 L -32.9206 -70.8445 L -32.6146 -73.024 L -34.8716 -76.0128 L -37.0517 -76.3149 L -39.2394 -75.4355 L -42.2005 -74.6865 L -42.3995 -74.8774 L -45.5996 -81.3042 L -45.6399 -81.5547 L -43.1515 -83.5556 L -41.2297 -84.7056 L -40.157 -86.6274 L -41.182 -90.2296 L -43.1057 -91.299 L -45.4634 -91.2692 L -48.4951 -91.6405 L -48.6117 -91.8904 L -49.2741 -99.0392 L -49.2054 -99.3063 L -46.7336 -100.1124 L -44.8291 -100.5268 L -43.9705 -100.6322 L -42.2761 -102.0368 L -41.9305 -105.766 L -43.338 -107.4581 L -44.2789 -107.7603 L -47.1854 -109.1078 L -48.2521 -109.7449 L -48.2586 -109.9985 L -46.2938 -116.9039 L -46.1333 -117.1282 L -42.9679 -116.9184 L -40.7729 -116.4735 L -38.6855 -117.1712 L -37.0161 -120.5237 L -37.7173 -122.61 L -39.1192 -123.8171 L -41.4701 -126.4931 L -41.3879 -126.7564 L -37.0613 -132.4857 L -36.8306 -132.6368 L -35.0255 -131.849 L -32.7742 -130.5905 L -32.0687 -130.09 L -29.8702 -129.9864 L -27.1025 -132.5096 L -27.0027 -134.7082 L -28.0802 -136.8055 L -29.0993 -139.6848 L -28.9275 -139.9006 L -22.82
|
||
|
|
</g>
|
||
|
|
<g id='z:5.8' inkscape:groupmode='layer' inkscape:label='Layer 14, z:5.8' transform='translate(280.0, 10145.6361)'>
|
||
|
|
<!--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.7792 14.989 L 4.1351 17.3379 L 4.06 18.317 L 3.8807 19.2207 L 3.607 20.1384 L 3.3834 20.3064 L -3.3834 20.3064 L -3.607 20.1384 L -4.06 18.317 L -4.1291 17.116 L -3.7792 14.989 L -4.367 13.7895 L -8.0583 12.0119 L -9.3626 12.3002 L -10.9771 14.043 L -11.7894 14.5947 L -12.6078 15.018 L -13.4959 15.3762 L -13.7667 15.306 L -17.9857 10.0156 L -17.9938 9.7361 L -17.1409 8.5702 L -16.5853 7.9748 L -15.9562 7.4434 L -14.0752 6.3908 L -13.5039 5.1833 L -14.4155 1.1891 L -15.4541 0.3491 L -17.3686 0.2489 L -18.2073 0.0713 L -19.7548 -0.5737 L -20.4361 -0.9647 L -20.5501 -1.2201 L -19.0444 -7.8171 L -18.8309 -7.9978 L -17.3876 -8.0578 L -16.5757 -7.9947 L -15.5612 -7.7675 L -13.7722 -7.0198 L -12.472 -7.326 L -9.9176 -10.5291 L -9.9084 -11.8649 L -11.2483 -13.8268 L -11.6054 -14.7414 L -11.836 -15.6335 L -11.9875 -16.5791 L -11.8589 -16.8274 L -5.7623 -19.7634 L -5.488 -19.7091 L -4.5412 -18.6181 L -4.0843 -17.944 L -3.7062 -17.2125 L -3.0985 -15.1443 L -2.0485 -14.3187 L 2.0485 -14.3187 L 3.0985 -15.1443 L 3.797 -17.4151 L 4.5412 -18.6181 L 5.488 -19.7091 L 5.7623 -19.7634 L 11.8589 -16.8274 L 11.9875 -16.5791 L 11.836 -15.6335 L 11.3619 -14.0768 L 11.1465 -13.6294 L 9.9084 -11.8649 L 9.9176 -10.5291 L 12.472 -7.326 L 13.7722 -7.0198 L 15.606 -7.7839 L 16.2521 -7.9447 L 17.3876 -8.0578 L 18.8309 -7.9978 L 19.0444 -7.8171 L 20.5501 -1.2201 L 20.4361 -0.9647 L 19.6024 -0.4936 L 18.403 0.011 L 17.321 0.2535 L 15.4541 0.3491 L 14.4155 1.1891 L 13.5039 5.1833 L 14.0752 6.3908 L 15.9562 7.4434 L 16.5853 7.9748 L 17.1409 8.5702 L 17.9938 9.7361 L 17.9857 10.0156 L 13.7667 15.306 L 13.4959 15.3762 L 12.6078 15.018 L 11.7894 14.5947 L 10.9771 14.043 L 9.3626 12.3002 L 8.0583 12.0119 L 4.367 13.7895 z M 4.648 -56.6356 L 4.58 -55.2303 L 4.1153 -52.4679 L 3.8055 -51.2606 L 3.5745 -51.0556 L -3.5745 -51.0556 L -3.8055 -51.2606 L -4.5446 -54.9185 L -4.648 -56.6356 L -5.8787 -58.4469 L -9.529 -59.1293 L -11.3309 -57.8848 L -12.3606 -55.7471 L -14.0581 -53.1771 L -14.3476 -53.0694 L -21.0139 -55.6519 L -21.1553 -55.9266 L -20.9931 -57.2491 L -20.523 -59.6044 L -19.9992 -61.2429 L -20.4924 -63.3765 L -23.6497 -65.3314 L -25.7795 -64.8219 L -26.7765 -63.8293 L -28.4408 -62.485 L -30.0232 -61.4174 L -30.3321 -61.4215 L -35.6153 -66.2378 L -35.6479 -66.5449 L -33.7297 -69.746 L -32.6494 -71.0847 L -32.3386 -73.2524 L -34.5764 -76.2158 L -36.7464 -76.5101 L -37.6567 -76.094 L -40.0722 -75.2923 L -41.9335 -74.8684 L -42.22 -74.9838 L -45.4066 -81.3834 L -45.326 -81.6816 L -44.3152 -82.5497 L -42.381 -83.9736 L -40.89 -84.8316 L -39.8172 -86.7406 L -40.8334 -90.3123 L -42.7506 -91.3706 L -44.1561 -91.3087 L -46.9496 -91.5165 L -48.1804 -91.7136 L -48.4058 -91.9247 L -49.0655 -99.0433 L -48.8826 -99.2922 L -47.6265 -99.7366 L -45.3085 -100.3656 L -43.6083 -100.627 L -41.9183 -102.0196 L -41.5756 -105.7172 L -42.981 -107.3966 L -45.2047 -108.2247 L -47.9203 -109.6779 L -48.0542 -109.9562 L -46.0978 -116.8324 L -45.8374 -116.9984 L -43.1935 -116.8528 L -41.2734 -116.5498 L -40.437 -116.3378 L -38.358 -117.0258 L -36.7028 -120.35 L -37.4066 -122.4237 L -38.487 -123.3248 L -39.9791 -124.858 L -41.1883 -126.3352 L -41.2126 -126.6431 L -36.9044 -132.3482 L -36.6015 -132.409 L -35.3738 -131.8911 L -33.2371 -130.7943 L -31.8045 -129.8421 L -29.6174 -129.7326 L -26.8731 -132.2344 L -26.7803 -134.4223 L -27.4622 -135.6529 L -28.2997 -137.6215 L -28.8935 -139.4357 L -28.8051 -139.7317 L -22.7268 -143.4952 L -22.4225 -143.4425 L -21.4648 -142.516 L -19.8685 -140.7215 L -18.8766 -139.316 L -16.8767 -138.4239 L -13.414 -139.7654 L -12.5371 -141.772 L -12.6881 -142.7614 L -12.7999 -144.6922 L -12.6966 -147.2103 L -12.5072 -147.4543 L -5.4799 -148.7679 L -5.2151 -148.6088 L -3.9758 -145.6383 L -3.3993 -143.4801 L -1.8567 -141.9258 L 1.8567 -141.9258 L 3.3993 -143.4801 L 3.6159 -144.4573 L 4.6887 -147.479 L 5.2151 -148.6088 L 5.4799 -148.7679 L 12.5072 -147.4543 L 12.6966 -147.2103 L 12.7792 -143.9926 L 12.5371 -141.772 L 13.414 -139.7654 L 16.8767 -138.4239 L 18.8766 -139.316 L 19.2272 -139.8594 L 21.0632 -142.1022 L 22.4225 -143.4425 L 22.7268 -143.
|
||
|
|
</g>
|
||
|
|
<g id='z:6.2' inkscape:groupmode='layer' inkscape:label='Layer 15, z:6.2' transform='translate(280.0, 10819.5118)'>
|
||
|
|
<!--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.7472 14.8621 L 4.1008 17.194 L 4.0265 18.166 L 3.8489 19.0634 L 3.5776 19.9746 L 3.3559 20.1414 L -3.3559 20.1414 L -3.5776 19.9746 L -4.0265 18.166 L -4.0947 16.9736 L -3.7472 14.8621 L -4.3298 13.6718 L -7.9895 11.9094 L -9.2833 12.1961 L -10.886 13.9264 L -11.6923 14.4744 L -12.5046 14.895 L -13.3862 15.2511 L -13.6548 15.1817 L -17.8395 9.9342 L -17.8474 9.6569 L -17.0001 8.4998 L -16.4482 7.909 L -15.8236 7.3815 L -13.956 6.3367 L -13.3886 5.1391 L -14.2925 1.179 L -15.3233 0.3461 L -17.2284 0.2463 L -18.0685 0.0671 L -19.1676 -0.3579 L -20.2699 -0.9568 L -20.3832 -1.2101 L -18.8897 -7.7536 L -18.6777 -7.9327 L -17.2448 -7.9916 L -16.1175 -7.8789 L -15.4272 -7.7012 L -13.6557 -6.9604 L -12.3656 -7.2635 L -9.833 -10.4393 L -9.8246 -11.7644 L -11.1549 -13.712 L -11.3878 -14.2623 L -11.7391 -15.5055 L -11.89 -16.4442 L -11.7626 -16.6907 L -5.7155 -19.6028 L -5.4433 -19.5488 L -4.5039 -18.4652 L -3.8891 -17.5136 L -3.6754 -17.0694 L -3.0723 -15.0162 L -2.031 -14.1965 L 2.031 -14.1965 L 3.0723 -15.0162 L 3.6141 -16.9125 L 4.2542 -18.1141 L 4.8035 -18.8455 L 5.4433 -19.5488 L 5.7155 -19.6028 L 11.7626 -16.6907 L 11.89 -16.4442 L 11.6286 -15.0341 L 11.3878 -14.2623 L 11.0538 -13.5161 L 9.8246 -11.7644 L 9.833 -10.4393 L 12.3656 -7.2635 L 13.6557 -6.9604 L 15.6369 -7.7691 L 16.4388 -7.9286 L 17.2448 -7.9916 L 18.6777 -7.9327 L 18.8897 -7.7536 L 20.3832 -1.2101 L 20.2699 -0.9568 L 19.4419 -0.4896 L 18.6066 -0.1167 L 17.6754 0.172 L 15.3233 0.3461 L 14.2925 1.179 L 13.3886 5.1391 L 13.956 6.3367 L 15.5847 7.2262 L 16.209 7.6887 L 17.0001 8.4998 L 17.8474 9.6569 L 17.8395 9.9342 L 13.6548 15.1817 L 13.3862 15.2511 L 12.5046 14.895 L 11.3707 14.2759 L 10.5943 13.6695 L 9.2833 12.1961 L 7.9895 11.9094 L 4.3298 13.6718 z M 5.2548 -57.8703 L 4.6094 -56.9958 L 4.5412 -55.5769 L 4.0779 -52.8125 L 3.7764 -51.6343 L 3.5472 -51.4298 L -3.5472 -51.4298 L -3.7764 -51.6343 L -4.3541 -54.2107 L -4.6094 -56.9958 L -5.8285 -58.8016 L -9.4476 -59.4781 L -10.319 -58.8169 L -11.2368 -58.2347 L -12.0249 -56.5292 L -13.9504 -53.5361 L -14.2379 -53.4283 L -20.8532 -55.9911 L -20.9931 -56.2645 L -20.6011 -58.8756 L -19.8331 -61.5649 L -20.3175 -63.6891 L -23.4478 -65.6274 L -24.4993 -65.3256 L -25.5654 -65.1142 L -26.5717 -64.1115 L -28.2367 -62.7653 L -29.793 -61.7132 L -30.1001 -61.7165 L -35.3429 -66.4959 L -35.3745 -66.8014 L -34.7454 -67.9717 L -33.4569 -69.9907 L -32.3782 -71.3248 L -32.0625 -73.4807 L -34.2813 -76.4188 L -35.3707 -76.5172 L -36.4412 -76.7052 L -37.3629 -76.2836 L -39.1917 -75.6462 L -41.6119 -75.0611 L -41.8971 -75.1751 L -45.0593 -81.5257 L -44.9785 -81.822 L -43.9691 -82.686 L -42.0383 -84.1032 L -40.5504 -84.9576 L -39.4773 -86.8538 L -40.4849 -90.395 L -41.4652 -90.8803 L -42.3955 -91.4423 L -44.783 -91.4098 L -47.8109 -91.7771 L -48.0357 -91.9865 L -48.6903 -99.0506 L -48.5078 -99.2976 L -45.9958 -100.1106 L -43.2461 -100.6218 L -41.5604 -102.0024 L -41.2207 -105.6684 L -41.9595 -106.4751 L -42.624 -107.3352 L -43.5892 -107.6446 L -46.5021 -108.9912 L -47.5528 -109.6037 L -47.6868 -109.8801 L -45.7453 -116.7036 L -45.4859 -116.8681 L -41.7763 -116.5731 L -40.1011 -116.2021 L -38.0306 -116.8805 L -36.3895 -120.1763 L -36.787 -121.1954 L -37.0959 -122.2374 L -37.8841 -122.8746 L -39.6812 -124.6806 L -40.8724 -126.1332 L -40.8975 -126.4393 L -36.6222 -132.1008 L -36.3209 -132.1605 L -35.0976 -131.642 L -32.9683 -130.5453 L -31.5403 -129.5942 L -29.3646 -129.4789 L -26.6437 -131.9593 L -26.6462 -133.0531 L -26.5578 -134.1364 L -27.4438 -135.7931 L -28.672 -139.1334 L -28.5848 -139.4278 L -22.553 -143.1625 L -22.2505 -143.1093 L -21.2971 -142.184 L -19.7078 -140.3922 L -18.7198 -138.9895 L -16.7326 -138.0959 L -13.2995 -139.4259 L -12.9067 -140.4468 L -12.4329 -141.425 L -12.6266 -142.8323 L -12.6976 -144.9723 L -12.5992 -146.8483 L -12.4115 -147.0914 L -5.438 -148.3949 L -5.1751 -148.2361 L -4.1338 -145.8098 L -3.3711 -143.119 L -1.8409 -141.5679 L 1.8409 -141.5679 L 2.576 -142.378 L 3.3711 -143.119 L 3.8324 -144.9402 L 5.1751 -148.2361 L 5.438 -148.3949 L 12.4115 -147.0914 L 12.5992 -146.8483 L 12.6937 -14
|
||
|
|
</g>
|
||
|
|
<g id='z:6.6' inkscape:groupmode='layer' inkscape:label='Layer 16, z:6.6' transform='translate(280.0, 11493.3876)'>
|
||
|
|
<!--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.7152 14.7352 L 4.0665 17.0501 L 3.9931 18.0151 L 3.8172 18.9061 L 3.5483 19.8109 L 3.3284 19.9764 L -3.3284 19.9764 L -3.5483 19.8109 L -3.9931 18.0151 L -4.0604 16.8313 L -3.7152 14.7352 L -4.2925 13.5541 L -7.9207 11.8069 L -9.2041 12.092 L -10.7949 13.8098 L -11.5951 14.3542 L -12.4014 14.7721 L -13.2764 15.126 L -13.543 15.0573 L -17.6934 9.8529 L -17.7011 9.5777 L -16.8593 8.4294 L -16.3112 7.8431 L -15.6909 7.3196 L -13.8369 6.2826 L -13.2734 5.0948 L -14.1694 1.1688 L -15.1925 0.3432 L -17.2269 0.2263 L -17.9298 0.0629 L -18.6204 -0.1844 L -20.1037 -0.949 L -20.2162 -1.2002 L -18.7349 -7.6901 L -18.5246 -7.8677 L -16.6749 -7.9017 L -15.9828 -7.8131 L -15.2933 -7.6349 L -13.5391 -6.901 L -12.2591 -7.2009 L -9.7483 -10.3494 L -9.7407 -11.664 L -10.8772 -13.2581 L -11.4141 -14.4985 L -11.6422 -15.3776 L -11.7925 -16.3094 L -11.6662 -16.554 L -5.6687 -19.4422 L -5.3987 -19.3885 L -4.4666 -18.3123 L -4.0168 -17.6475 L -3.6445 -16.9262 L -3.0461 -14.888 L -2.0135 -14.0743 L 2.0135 -14.0743 L 3.0461 -14.888 L 3.6445 -16.9262 L 4.2188 -17.9636 L 5.3987 -19.3885 L 5.6687 -19.4422 L 11.6662 -16.554 L 11.7925 -16.3094 L 11.6422 -15.3776 L 11.4141 -14.4985 L 10.8772 -13.2581 L 9.7407 -11.664 L 9.7483 -10.3494 L 12.2591 -7.2009 L 13.5391 -6.901 L 15.7177 -7.7585 L 16.3018 -7.8625 L 17.5826 -7.9285 L 18.5246 -7.8677 L 18.7349 -7.6901 L 20.2162 -1.2002 L 20.1037 -0.949 L 18.8471 -0.2797 L 17.79 0.1047 L 17.1475 0.2379 L 15.1925 0.3432 L 14.1694 1.1688 L 13.2734 5.0948 L 13.8369 6.2826 L 15.6909 7.3196 L 16.5744 8.1103 L 17.1613 8.8034 L 17.7011 9.5777 L 17.6934 9.8529 L 13.543 15.0573 L 13.2764 15.126 L 11.9696 14.5608 L 10.7949 13.8098 L 9.2041 12.092 L 7.9207 11.8069 L 4.2925 13.5541 z M 4.5708 -57.356 L 4.5024 -55.9235 L 4.0405 -53.157 L 3.7472 -52.008 L 3.5199 -51.8041 L -3.5199 -51.8041 L -3.7472 -52.008 L -4.3192 -54.5779 L -4.5708 -57.356 L -5.7784 -59.1563 L -9.3663 -59.827 L -11.1426 -58.5845 L -11.7239 -57.2734 L -12.7901 -55.4144 L -13.8426 -53.8952 L -14.1282 -53.7872 L -20.6925 -56.3302 L -20.8308 -56.6024 L -20.6653 -57.9168 L -20.1911 -60.2578 L -19.6669 -61.8868 L -20.1426 -64.0018 L -23.246 -65.9233 L -25.3512 -65.4064 L -27.1038 -63.7627 L -29.5628 -62.009 L -29.8681 -62.0115 L -35.0705 -66.7541 L -35.1012 -67.058 L -34.1247 -68.8121 L -32.8086 -70.7308 L -32.1069 -71.565 L -31.7865 -73.709 L -33.9862 -76.6218 L -36.136 -76.9003 L -37.8803 -76.1646 L -41.2904 -75.2538 L -41.5742 -75.3664 L -44.7121 -81.6681 L -44.6309 -81.9625 L -43.0867 -83.2454 L -41.3108 -84.4758 L -40.2107 -85.0836 L -39.1374 -86.967 L -40.1363 -90.4777 L -42.0403 -91.514 L -43.0648 -91.4529 L -45.003 -91.5184 L -47.4415 -91.8407 L -47.6655 -92.0482 L -48.315 -99.0579 L -48.133 -99.3031 L -46.8827 -99.7407 L -44.5758 -100.3597 L -42.8838 -100.6166 L -41.2026 -101.9851 L -40.8658 -105.6196 L -42.267 -107.2738 L -44.5195 -108.11 L -47.1854 -109.5295 L -47.3193 -109.8039 L -45.3928 -116.5749 L -45.1345 -116.7378 L -43.8104 -116.6942 L -41.4357 -116.438 L -39.7652 -116.0664 L -37.7032 -116.7352 L -36.0762 -120.0026 L -36.7852 -122.0512 L -38.5835 -123.6446 L -40.5566 -125.9313 L -40.5823 -126.2356 L -36.3399 -131.8534 L -36.0402 -131.9119 L -33.6447 -130.8197 L -31.2761 -129.3463 L -29.1117 -129.2251 L -26.4143 -131.6841 L -26.3354 -133.8504 L -27.0314 -135.1044 L -27.8723 -137.0755 L -28.4504 -138.831 L -28.3645 -139.124 L -22.3792 -142.8299 L -22.0786 -142.7762 L -21.1295 -141.852 L -19.5471 -140.0629 L -18.563 -138.6629 L -16.5886 -137.7679 L -13.185 -139.0865 L -12.3288 -141.078 L -12.5843 -143.4671 L -12.5019 -146.4863 L -12.3159 -146.7285 L -5.396 -148.022 L -5.1351 -147.8634 L -4.1007 -145.4423 L -3.3428 -142.7578 L -1.825 -141.21 L 1.825 -141.21 L 3.3428 -142.7578 L 3.6733 -144.1534 L 4.6356 -146.7878 L 5.1351 -147.8634 L 5.396 -148.022 L 12.3159 -146.7285 L 12.5019 -146.4863 L 12.5951 -144.4809 L 12.5068 -142.3221 L 12.3288 -141.078 L 13.185 -139.0865 L 16.5886 -137.7679 L 18.563 -138.6629 L 19.3753 -139.8449 L 20.3519 -141.0245 L 22.0786 -142.7762 L 22.3792 -142.8299 L 28.3645 -139.124 L 28.4504 -138.831 L 27.1499 -13
|
||
|
|
</g>
|
||
|
|
<g id='z:7.0' inkscape:groupmode='layer' inkscape:label='Layer 17, z:7.0' transform='translate(280.0, 12167.2633)'>
|
||
|
|
<!--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.6833 14.6084 L 4.0321 16.9061 L 3.8884 18.2828 L 3.519 19.6471 L 3.3009 19.8114 L -3.3009 19.8114 L -3.519 19.6471 L -3.7854 18.7487 L -3.9596 17.8642 L -4.0261 16.689 L -3.6833 14.6084 L -4.2552 13.4364 L -7.8519 11.7043 L -9.1248 11.9879 L -10.4163 13.4399 L -10.9173 13.8563 L -11.498 14.2339 L -13.1667 15.001 L -13.4311 14.933 L -17.5473 9.7715 L -17.5547 9.4985 L -16.7185 8.359 L -16.1741 7.7772 L -15.5582 7.2577 L -13.7178 6.2285 L -13.1581 5.0506 L -14.0464 1.1587 L -15.0617 0.3402 L -16.9481 0.2413 L -17.6402 0.1038 L -18.6897 -0.2774 L -19.9375 -0.9411 L -20.0492 -1.1903 L -18.5802 -7.6266 L -18.3714 -7.8026 L -17.4363 -7.8625 L -16.1648 -7.7965 L -15.2162 -7.5895 L -13.4225 -6.8416 L -12.1526 -7.1384 L -9.6637 -10.2595 L -9.6568 -11.5636 L -10.9681 -13.4824 L -11.3185 -14.377 L -11.5453 -15.2496 L -11.695 -16.1746 L -11.5699 -16.4173 L -5.6218 -19.2817 L -5.3541 -19.2282 L -4.4293 -18.1594 L -3.9831 -17.4992 L -3.517 -16.5195 L -3.0198 -14.7598 L -1.996 -13.9521 L 1.996 -13.9521 L 3.0198 -14.7598 L 3.7025 -16.9814 L 4.4293 -18.1594 L 5.3541 -19.2282 L 5.6218 -19.2817 L 11.5699 -16.4173 L 11.695 -16.1746 L 11.5453 -15.2496 L 11.0796 -13.7269 L 10.8684 -13.2894 L 9.6568 -11.5636 L 9.6637 -10.2595 L 12.1526 -7.1384 L 13.4225 -6.8416 L 15.2162 -7.5895 L 15.8482 -7.7473 L 16.9592 -7.8592 L 18.3714 -7.8026 L 18.5802 -7.6266 L 20.0492 -1.1903 L 19.9375 -0.9411 L 19.121 -0.4815 L 17.9468 0.0107 L 17.1664 0.2115 L 15.0617 0.3402 L 14.0464 1.1587 L 13.1581 5.0506 L 13.7178 6.2285 L 15.4208 7.1645 L 16.1741 7.7772 L 17.0185 8.7301 L 17.5547 9.4985 L 17.5473 9.7715 L 13.4311 14.933 L 13.1667 15.001 L 11.8697 14.4392 L 10.9173 13.8563 L 10.5378 13.5531 L 9.1248 11.9879 L 7.8519 11.7043 L 4.2552 13.4364 z M 4.5322 -57.7162 L 4.4636 -56.27 L 4.0031 -53.5016 L 3.718 -52.3817 L 3.4925 -52.1784 L -3.4925 -52.1784 L -3.718 -52.3817 L -4.4343 -56.0121 L -4.5322 -57.7162 L -5.7282 -59.511 L -9.285 -60.1759 L -11.0485 -58.9343 L -12.0944 -56.7546 L -13.7348 -54.2542 L -14.0185 -54.1461 L -20.5318 -56.6694 L -20.6686 -56.9404 L -20.5013 -58.2506 L -20.0251 -60.5844 L -19.5008 -62.2088 L -19.9677 -64.3144 L -23.0441 -66.2192 L -25.1371 -65.6986 L -26.5076 -64.3719 L -29.3326 -62.3049 L -29.6362 -62.3065 L -34.7982 -67.0123 L -34.8279 -67.3145 L -33.2052 -70.0625 L -31.8357 -71.8052 L -31.5104 -73.9373 L -33.691 -76.8248 L -35.8307 -77.0954 L -37.1559 -76.5122 L -38.6086 -76.0222 L -40.9689 -75.4465 L -41.2514 -75.5577 L -44.3649 -81.8105 L -44.2834 -82.1029 L -42.7416 -83.3796 L -40.9688 -84.6043 L -39.8711 -85.2096 L -38.7976 -87.0801 L -39.7878 -90.5604 L -41.6852 -91.5857 L -43.1316 -91.5205 L -45.9307 -91.7236 L -47.0721 -91.9042 L -47.2953 -92.11 L -47.9398 -99.0652 L -47.7582 -99.3085 L -46.5108 -99.7427 L -44.2094 -100.3567 L -42.5216 -100.6114 L -40.8448 -101.9679 L -40.511 -105.5708 L -41.9099 -107.2123 L -44.1769 -108.0527 L -46.8179 -109.4553 L -46.9518 -109.7278 L -45.0402 -116.4462 L -44.783 -116.6074 L -41.5997 -116.3797 L -39.4293 -115.9307 L -37.3758 -116.5899 L -35.7629 -119.8289 L -36.4744 -121.8649 L -38.2848 -123.4674 L -40.2408 -125.7294 L -40.2671 -126.0318 L -36.0577 -131.606 L -35.7596 -131.6634 L -33.7647 -130.7636 L -31.7088 -129.596 L -31.0119 -129.0984 L -28.8589 -128.9713 L -26.1849 -131.409 L -26.1129 -133.5645 L -26.8159 -134.8302 L -27.4379 -136.2315 L -28.2289 -138.5286 L -28.1442 -138.8201 L -22.2054 -142.4973 L -21.9067 -142.4431 L -20.0758 -140.5617 L -19.1101 -139.3735 L -18.4062 -138.3363 L -16.4445 -137.44 L -13.0705 -138.7471 L -12.2247 -140.731 L -12.4574 -142.6243 L -12.4045 -146.1243 L -12.2202 -146.3656 L -5.3541 -147.6491 L -5.0951 -147.4907 L -4.4875 -146.1291 L -3.5963 -143.6181 L -3.3146 -142.3966 L -1.8092 -140.8522 L 1.8092 -140.8522 L 3.3146 -142.3966 L 3.7815 -144.2461 L 5.0951 -147.4907 L 5.3541 -147.6491 L 12.2202 -146.3656 L 12.4045 -146.1243 L 12.4942 -144.1245 L 12.4032 -141.9718 L 12.2247 -140.731 L 13.0705 -138.7471 L 16.4445 -137.44 L 18.4062 -138.3363 L 18.9816 -139.2014 L 20.203 -140.7111 L 21.9067 -142.4431 L 22.2054 -142.4973 L 28.1442 -138.8201 L 28.2289
|
||
|
|
</g>
|
||
|
|
<g id='z:7.4' inkscape:groupmode='layer' inkscape:label='Layer 18, z:7.4' transform='translate(280.0, 12841.139)'>
|
||
|
|
<!--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.6513 14.4815 L 3.979 16.3824 L 3.9701 17.3462 L 3.8557 18.1288 L 3.4896 19.4833 L 3.2734 19.6464 L -3.2734 19.6464 L -3.4896 19.4833 L -3.7536 18.5914 L -3.9262 17.7132 L -3.9978 16.7622 L -3.6513 14.4815 L -4.2179 13.3187 L -7.7831 11.6018 L -9.0456 11.8838 L -10.3274 13.3252 L -11.0865 13.9191 L -12.195 14.5262 L -13.0569 14.8759 L -13.3193 14.8086 L -17.4011 9.6901 L -17.4084 9.4193 L -16.5777 8.2886 L -15.8029 7.4961 L -15.4255 7.1958 L -13.5986 6.1744 L -13.0428 5.0064 L -13.9234 1.1485 L -14.9309 0.3373 L -16.857 0.2338 L -18.1428 -0.1138 L -18.9605 -0.4775 L -19.7713 -0.9333 L -19.8822 -1.1804 L -18.4254 -7.5631 L -18.2183 -7.7376 L -16.8163 -7.7931 L -16.0279 -7.7304 L -14.9791 -7.4855 L -13.306 -6.7822 L -12.0462 -7.0759 L -9.579 -10.1696 L -9.573 -11.4632 L -10.8748 -13.3676 L -11.3397 -14.6606 L -11.5975 -16.0397 L -11.4735 -16.2805 L -5.575 -19.1211 L -5.3094 -19.0679 L -4.6846 -18.3789 L -4.1481 -17.6626 L -3.5829 -16.64 L -2.9936 -14.6316 L -1.9785 -13.8298 L 1.9785 -13.8298 L 2.9936 -14.6316 L 3.5231 -16.4864 L 3.7917 -17.0747 L 4.1481 -17.6626 L 5.3094 -19.0679 L 5.575 -19.1211 L 11.4735 -16.2805 L 11.5975 -16.0397 L 11.3397 -14.6606 L 11.1031 -13.9058 L 10.693 -13.0336 L 9.573 -11.4632 L 9.579 -10.1696 L 12.0462 -7.0759 L 13.306 -6.7822 L 15.0862 -7.5247 L 16.3955 -7.7693 L 17.29 -7.7965 L 18.2183 -7.7376 L 18.4254 -7.5631 L 19.8822 -1.1804 L 19.7713 -0.9333 L 18.5323 -0.275 L 17.2316 0.1676 L 14.9309 0.3373 L 13.9234 1.1485 L 13.0428 5.0064 L 13.5986 6.1744 L 15.2891 7.1033 L 16.0371 7.7113 L 16.5777 8.2886 L 17.4084 9.4193 L 17.4011 9.6901 L 13.3193 14.8086 L 13.0569 14.8759 L 12.195 14.5262 L 11.4008 14.1136 L 10.4479 13.4375 L 9.0456 11.8838 L 7.7831 11.6018 L 4.2179 13.3187 z M 4.4936 -58.0764 L 4.4248 -56.6166 L 3.9657 -53.8462 L 3.6888 -52.7555 L 3.4652 -52.5527 L -3.4652 -52.5527 L -3.6888 -52.7555 L -4.3976 -56.3767 L -4.4936 -58.0764 L -5.678 -59.8657 L -9.2036 -60.5247 L -10.9544 -59.2842 L -12.0057 -57.0904 L -13.627 -54.6132 L -13.9087 -54.505 L -20.3711 -57.0085 L -20.5064 -57.2783 L -20.2247 -59.2543 L -19.7382 -61.3473 L -19.3347 -62.5307 L -19.7928 -64.627 L -22.8422 -66.5151 L -24.9229 -65.9908 L -25.6562 -65.2369 L -27.6243 -63.606 L -29.1024 -62.6007 L -29.4042 -62.6016 L -34.5258 -67.2705 L -34.5545 -67.571 L -33.9251 -68.7279 L -32.6387 -70.7246 L -31.5645 -72.0454 L -31.2344 -74.1656 L -33.3959 -77.0279 L -35.5255 -77.2906 L -37.7803 -76.3776 L -40.6473 -75.6392 L -40.9285 -75.749 L -44.0176 -81.9528 L -43.9358 -82.2434 L -42.3964 -83.5139 L -40.6269 -84.7328 L -39.5314 -85.3356 L -38.4577 -87.1933 L -39.4392 -90.6431 L -41.3301 -91.6574 L -43.7625 -91.6206 L -46.7026 -91.9677 L -46.9251 -92.1717 L -47.5646 -99.0725 L -47.3834 -99.3139 L -46.1389 -99.7448 L -43.843 -100.3538 L -42.1594 -100.6062 L -40.487 -101.9506 L -40.1561 -105.522 L -41.5529 -107.1509 L -43.8343 -107.9953 L -46.4505 -109.3811 L -46.5843 -109.6517 L -44.6877 -116.3175 L -44.4315 -116.4771 L -42.4379 -116.3789 L -40.309 -116.0876 L -39.0934 -115.795 L -37.0484 -116.4445 L -35.4496 -119.6552 L -36.1637 -121.6786 L -37.986 -123.2902 L -39.925 -125.5275 L -39.952 -125.8281 L -35.7755 -131.3586 L -35.4789 -131.4149 L -33.1007 -130.3213 L -30.7477 -128.8506 L -28.6061 -128.7175 L -25.9555 -131.1338 L -25.8904 -133.2786 L -26.6005 -134.5559 L -27.445 -136.5295 L -28.0073 -138.2262 L -27.9239 -138.5163 L -22.0316 -142.1647 L -21.7347 -142.11 L -20.3276 -140.6944 L -18.9506 -139.0449 L -18.2494 -138.0097 L -16.3005 -137.112 L -12.956 -138.4076 L -12.1205 -140.3841 L -12.3212 -141.8317 L -12.3957 -143.977 L -12.3072 -145.7623 L -12.1246 -146.0027 L -5.3122 -147.2761 L -5.0551 -147.1179 L -3.6931 -143.6886 L -3.2864 -142.0354 L -1.7933 -140.4943 L 1.7933 -140.4943 L 3.2864 -142.0354 L 3.9167 -144.385 L 5.0551 -147.1179 L 5.3122 -147.2761 L 12.1246 -146.0027 L 12.3072 -145.7623 L 12.381 -144.4474 L 12.3385 -142.0725 L 12.1205 -140.3841 L 12.956 -138.4076 L 16.3005 -137.112 L 18.2494 -138.0097 L 19.3606 -139.5779 L 21.7347 -142.11 L 22.0316 -142.1647 L 27.9239 -138.5163 L 28.0073 -138.2262 L 27.3673 -136.335
|
||
|
|
</g>
|
||
|
|
<g id='z:7.8' inkscape:groupmode='layer' inkscape:label='Layer 19, z:7.8' transform='translate(280.0, 13515.0148)'>
|
||
|
|
<!--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.6193 14.3547 L 3.9447 16.2413 L 3.9361 17.198 L 3.8229 17.9749 L 3.4603 19.3195 L 3.2459 19.4814 L -3.2459 19.4814 L -3.4603 19.3195 L -3.7219 18.434 L -3.8927 17.5623 L -3.9635 16.6183 L -3.6193 14.3547 L -4.1807 13.201 L -7.7143 11.4993 L -8.9663 11.7796 L -10.2384 13.2104 L -10.9918 13.8001 L -12.0918 14.4033 L -12.9471 14.7509 L -13.2074 14.6842 L -17.255 9.6087 L -17.2621 9.3401 L -16.4369 8.2182 L -15.6675 7.4318 L -15.2928 7.1339 L -13.4795 6.1203 L -12.9276 4.9621 L -13.8003 1.1384 L -14.8001 0.3343 L -16.7118 0.2318 L -17.9882 -0.1128 L -18.8001 -0.4734 L -19.6051 -0.9254 L -19.7153 -1.1705 L -18.2707 -7.4996 L -18.0651 -7.6725 L -16.6735 -7.7269 L -15.8909 -7.6644 L -14.85 -7.421 L -13.1894 -6.7227 L -11.9397 -7.0133 L -9.4943 -10.0798 L -9.4891 -11.3627 L -10.7814 -13.2529 L -11.2433 -14.5361 L -11.5 -15.9049 L -11.3771 -16.1438 L -5.5282 -18.9605 L -5.2648 -18.9076 L -4.645 -18.2234 L -4.1128 -17.5121 L -3.5521 -16.4968 L -2.9674 -14.5034 L -1.961 -13.7076 L 1.961 -13.7076 L 2.9674 -14.5034 L 3.4927 -16.3444 L 3.7592 -16.9284 L 4.1128 -17.5121 L 5.2648 -18.9076 L 5.5282 -18.9605 L 11.3771 -16.1438 L 11.5 -15.9049 L 11.2433 -14.5361 L 11.0082 -13.787 L 10.6009 -12.9213 L 9.4891 -11.3627 L 9.4943 -10.0798 L 11.9397 -7.0133 L 13.1894 -6.7227 L 14.9563 -7.4599 L 16.2558 -7.7031 L 17.1437 -7.7305 L 18.0651 -7.6725 L 18.2707 -7.4996 L 19.7153 -1.1705 L 19.6051 -0.9254 L 18.3749 -0.2727 L 17.0836 0.1662 L 14.8001 0.3343 L 13.8003 1.1384 L 12.9276 4.9621 L 13.4795 6.1203 L 15.1574 7.0421 L 15.9 7.6454 L 16.4369 8.2182 L 17.2621 9.3401 L 17.255 9.6087 L 13.2074 14.6842 L 12.9471 14.7509 L 12.0918 14.4033 L 11.3037 13.9934 L 10.358 13.3219 L 8.9663 11.7796 L 7.7143 11.4993 L 4.1807 13.201 z M 4.455 -58.4366 L 4.3861 -56.9632 L 3.9283 -54.1907 L 3.6596 -53.1292 L 3.4378 -52.927 L -3.4378 -52.927 L -3.6596 -53.1292 L -4.3608 -56.7412 L -4.455 -58.4366 L -5.6278 -60.2204 L -9.1223 -60.8736 L -10.8603 -59.634 L -11.917 -57.4263 L -13.5192 -54.9722 L -13.799 -54.8639 L -20.2104 -57.3477 L -20.3442 -57.6163 L -20.06 -59.5861 L -19.5721 -61.6726 L -19.1686 -62.8526 L -19.6178 -64.9396 L -22.6404 -66.8111 L -24.7088 -66.283 L -25.7524 -65.2405 L -27.9585 -63.5001 L -28.8722 -62.8966 L -29.1723 -62.8966 L -34.2535 -67.5287 L -34.2812 -67.8275 L -32.6591 -70.5548 L -31.2933 -72.2856 L -30.9584 -74.3939 L -33.1007 -77.2309 L -35.2202 -77.4857 L -36.1877 -77.0421 L -38.0254 -76.3982 L -40.3258 -75.8319 L -40.6056 -75.9403 L -43.6704 -82.0952 L -43.5883 -82.3839 L -41.0906 -84.341 L -39.1917 -85.4615 L -38.1178 -87.3065 L -39.0907 -90.7258 L -40.975 -91.729 L -42.9104 -91.6695 L -46.3332 -92.0313 L -46.555 -92.2335 L -47.1894 -99.0798 L -47.0085 -99.3193 L -44.5201 -100.1071 L -41.7971 -100.601 L -40.1292 -101.9334 L -39.8012 -105.4732 L -41.1959 -107.0894 L -43.0221 -107.7331 L -44.55 -108.4483 L -46.0831 -109.3069 L -46.2168 -109.5755 L -44.3352 -116.1887 L -44.0801 -116.3467 L -42.0924 -116.2455 L -39.9697 -115.9522 L -38.7575 -115.6593 L -36.721 -116.2992 L -35.1364 -119.4815 L -35.853 -121.4924 L -36.9873 -122.4353 L -38.0768 -123.5187 L -39.6092 -125.3255 L -39.6368 -125.6243 L -35.4933 -131.1113 L -35.1983 -131.1664 L -33.3815 -130.354 L -31.176 -129.0988 L -30.4836 -128.6027 L -28.3533 -128.4637 L -25.7261 -130.8587 L -25.668 -132.9926 L -27.0096 -135.6855 L -27.7858 -137.9238 L -27.7036 -138.2125 L -21.8578 -141.832 L -21.5628 -141.7769 L -19.7485 -139.9005 L -18.7911 -138.7162 L -18.0926 -137.6831 L -16.1564 -136.784 L -12.8415 -138.0682 L -12.0164 -140.0371 L -12.2194 -141.4981 L -12.2788 -144.3075 L -12.2098 -145.4003 L -12.0289 -145.6398 L -5.2703 -146.9032 L -5.0152 -146.7452 L -3.8162 -143.8072 L -3.2581 -141.6743 L -1.7775 -140.1364 L 1.7775 -140.1364 L 3.2581 -141.6743 L 3.7305 -143.5521 L 5.0152 -146.7452 L 5.2703 -146.9032 L 12.0289 -145.6398 L 12.2098 -145.4003 L 12.2865 -142.7913 L 12.1962 -141.2711 L 12.0164 -140.0371 L 12.8415 -138.0682 L 16.1564 -136.784 L 18.0926 -137.6831 L 18.6816 -138.5696 L 19.9051 -140.0844 L 21.5628 -141.7769 L 21.8578 -141.832 L 27.7036 -138.2125 L 27.7858 -137.9238
|
||
|
|
</g>
|
||
|
|
<g id='z:8.2' inkscape:groupmode='layer' inkscape:label='Layer 20, z:8.2' transform='translate(280.0, 14188.8905)'>
|
||
|
|
<!--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.5873 14.2278 L 3.9105 16.1001 L 3.9022 17.0497 L 3.7902 17.8209 L 3.431 19.1557 L 3.2184 19.3164 L -3.2184 19.3164 L -3.431 19.1557 L -3.6901 18.2767 L -3.8593 17.4114 L -3.9292 16.4744 L -3.5873 14.2278 L -4.1434 13.0833 L -7.6456 11.3967 L -8.8871 11.6755 L -10.1495 13.0956 L -10.897 13.6812 L -11.9886 14.2804 L -12.8374 14.6258 L -13.0955 14.5599 L -17.1088 9.5273 L -17.1157 9.261 L -16.2961 8.1479 L -15.5321 7.3676 L -15.1601 7.072 L -13.3604 6.0662 L -12.8123 4.9179 L -13.6773 1.1282 L -14.6693 0.3314 L -16.5666 0.2298 L -17.8336 -0.1119 L -18.6396 -0.4694 L -19.4389 -0.9176 L -19.5483 -1.1606 L -18.116 -7.436 L -17.912 -7.6075 L -16.5307 -7.6607 L -15.7539 -7.5983 L -14.7208 -7.3564 L -13.0728 -6.6633 L -11.8333 -6.9508 L -9.4097 -9.9899 L -9.4052 -11.2623 L -10.688 -13.1381 L -11.147 -14.4116 L -11.4025 -15.7701 L -11.2808 -16.0071 L -5.4814 -18.7999 L -5.2202 -18.7473 L -4.6053 -18.0678 L -4.0774 -17.3616 L -3.5213 -16.3537 L -2.9412 -14.3753 L -1.9436 -13.5854 L 1.9436 -13.5854 L 2.9412 -14.3753 L 3.6079 -16.5477 L 4.3173 -17.7006 L 5.2202 -18.7473 L 5.4814 -18.7999 L 11.2808 -16.0071 L 11.4025 -15.7701 L 11.2546 -14.8657 L 11.0316 -14.0126 L 10.5088 -12.809 L 9.4052 -11.2623 L 9.4097 -9.9899 L 11.8333 -6.9508 L 13.0728 -6.6633 L 14.8263 -7.395 L 15.7539 -7.5983 L 16.5307 -7.6607 L 17.912 -7.6075 L 18.116 -7.436 L 19.5483 -1.1606 L 19.4389 -0.9176 L 17.8336 -0.1119 L 16.7272 0.2061 L 14.6693 0.3314 L 13.6773 1.1282 L 12.8123 4.9179 L 13.3604 6.0662 L 15.0257 6.981 L 16.019 7.8385 L 16.59 8.5103 L 17.1157 9.261 L 17.1088 9.5273 L 13.0955 14.5599 L 12.8374 14.6258 L 11.5698 14.0744 L 10.4304 13.3435 L 8.8871 11.6755 L 7.6456 11.3967 L 4.1434 13.0833 z M 4.4164 -58.7969 L 4.3473 -57.3097 L 3.8909 -54.5353 L 3.6305 -53.5029 L 3.4105 -53.3013 L -3.4105 -53.3013 L -3.6305 -53.5029 L -4.1795 -56.047 L -4.4164 -58.7969 L -5.5776 -60.5751 L -9.0409 -61.2225 L -10.7662 -59.9838 L -11.5809 -58.2114 L -13.4114 -55.3313 L -13.6893 -55.2228 L -20.0497 -57.6868 L -20.182 -57.9542 L -19.7749 -60.5248 L -19.4059 -61.998 L -19.0024 -63.1746 L -19.4429 -65.2522 L -22.4385 -67.107 L -24.4946 -66.5752 L -26.2876 -64.8872 L -28.642 -63.1924 L -28.9403 -63.1916 L -33.9811 -67.7869 L -34.0078 -68.0841 L -32.6996 -70.334 L -31.0221 -72.5258 L -30.6823 -74.6222 L -32.8056 -77.4339 L -34.915 -77.6808 L -36.277 -77.0798 L -37.7338 -76.5863 L -40.0043 -76.0246 L -40.2827 -76.1316 L -43.3231 -82.2376 L -43.2407 -82.5243 L -41.2081 -84.1498 L -39.9429 -84.9899 L -38.8521 -85.5875 L -37.7779 -87.4197 L -38.7421 -90.8085 L -40.6199 -91.8007 L -43.0821 -91.7612 L -45.9638 -92.0948 L -46.1848 -92.2952 L -46.8141 -99.0872 L -46.6337 -99.3248 L -43.1102 -100.3479 L -41.4349 -100.5958 L -39.7714 -101.9162 L -39.4463 -105.4244 L -40.8388 -107.028 L -41.8648 -107.3556 L -43.6594 -108.1182 L -45.7156 -109.2327 L -45.8493 -109.4994 L -43.9826 -116.06 L -43.7286 -116.2164 L -41.1314 -116.0482 L -39.6305 -115.8168 L -38.4216 -115.5236 L -36.3935 -116.1539 L -34.8231 -119.3078 L -35.5423 -121.3061 L -36.3806 -121.9822 L -38.6264 -124.2936 L -39.2933 -125.1236 L -39.3216 -125.4206 L -35.2111 -130.8639 L -34.9176 -130.9179 L -32.0627 -129.5538 L -30.2194 -128.3548 L -28.1005 -128.2099 L -25.4968 -130.5835 L -25.4455 -132.7067 L -25.9831 -133.64 L -26.7955 -135.4125 L -27.5643 -137.6214 L -27.4834 -137.9086 L -21.684 -141.4994 L -21.3909 -141.4438 L -19.5848 -139.5698 L -18.6316 -138.3876 L -17.9358 -137.3565 L -16.0124 -136.456 L -12.727 -137.7288 L -11.9122 -139.6901 L -12.1176 -141.1646 L -12.1944 -143.3135 L -12.1125 -145.0383 L -11.9333 -145.2769 L -5.2284 -146.5302 L -4.9752 -146.3725 L -4.1852 -144.5521 L -3.5062 -142.5259 L -3.2299 -141.3131 L -1.7616 -139.7786 L 1.7616 -139.7786 L 3.2299 -141.3131 L 3.4614 -142.3649 L 4.5295 -145.4055 L 4.9752 -146.3725 L 5.2284 -146.5302 L 11.9333 -145.2769 L 12.1125 -145.0383 L 12.1639 -141.8746 L 11.9122 -139.6901 L 12.727 -137.7288 L 16.0124 -136.456 L 17.9358 -137.3565 L 18.5317 -138.2537 L 19.7562 -139.7711 L 21.3909 -141.4438 L 21.684 -141.4994 L 27.4834 -137.9086 L 27.5643 -137.6214 L 26.9217
|
||
|
|
</g>
|
||
|
|
<g id='z:8.6' inkscape:groupmode='layer' inkscape:label='Layer 21, z:8.6' transform='translate(280.0, 14862.7662)'>
|
||
|
|
<!--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.5553 14.1009 L 3.8948 16.3304 L 3.7574 17.6669 L 3.4016 18.9919 L 3.1909 19.1514 L -3.1909 19.1514 L -3.4016 18.9919 L -3.6583 18.1194 L -3.8258 17.2605 L -3.8762 15.959 L -3.5553 14.1009 L -4.1061 12.9656 L -7.5768 11.2942 L -8.8078 11.5714 L -10.0605 12.9808 L -10.8023 13.5623 L -11.8854 14.1574 L -12.7276 14.5008 L -12.9837 14.4355 L -16.9627 9.446 L -16.9694 9.1818 L -16.1553 8.0775 L -15.3967 7.3034 L -15.0274 7.0101 L -13.2412 6.0121 L -12.697 4.8736 L -13.5542 1.1181 L -14.5385 0.3284 L -16.7877 0.1633 L -17.679 -0.1109 L -18.4791 -0.4653 L -19.2727 -0.9098 L -19.3813 -1.1507 L -17.9612 -7.3725 L -17.7588 -7.5424 L -16.3879 -7.5945 L -15.0543 -7.4311 L -12.9563 -6.6039 L -11.7268 -6.8883 L -9.325 -9.9 L -9.3214 -11.1619 L -10.4167 -12.6968 L -10.8185 -13.5493 L -11.0507 -14.287 L -11.3051 -15.6352 L -11.1844 -15.8704 L -5.4346 -18.6393 L -5.1755 -18.587 L -4.5657 -17.9123 L -3.6942 -16.6358 L -3.4904 -16.2106 L -2.9149 -14.2471 L -1.9261 -13.4632 L 1.9261 -13.4632 L 2.9149 -14.2471 L 3.3916 -15.9366 L 3.8481 -16.9061 L 4.28 -17.5476 L 5.1755 -18.587 L 5.4346 -18.6393 L 11.1844 -15.8704 L 11.3051 -15.6352 L 11.1577 -14.7377 L 10.936 -13.8912 L 10.5946 -13.0233 L 9.3214 -11.1619 L 9.325 -9.9 L 11.7268 -6.8883 L 12.9563 -6.6039 L 14.6964 -7.3302 L 15.617 -7.5322 L 16.3879 -7.5945 L 17.7588 -7.5424 L 17.9612 -7.3725 L 19.3813 -1.1507 L 19.2727 -0.9098 L 17.679 -0.1109 L 16.5808 0.2043 L 14.5385 0.3284 L 13.5542 1.1181 L 12.697 4.8736 L 13.2412 6.0121 L 15.196 7.1368 L 15.8801 7.7706 L 16.4472 8.437 L 16.9694 9.1818 L 16.9627 9.446 L 12.9837 14.4355 L 12.7276 14.5008 L 11.4698 13.9528 L 10.8023 13.5623 L 10.0605 12.9808 L 8.8078 11.5714 L 7.5768 11.2942 L 4.1061 12.9656 z M 4.3778 -59.1571 L 4.3085 -57.6563 L 3.8535 -54.8799 L 3.6013 -53.8766 L 3.3832 -53.6756 L -3.3832 -53.6756 L -3.6013 -53.8766 L -4.1446 -56.4142 L -4.3778 -59.1571 L -5.5275 -60.9297 L -8.9596 -61.5713 L -10.672 -60.3337 L -11.2788 -58.9593 L -12.706 -56.5347 L -13.3036 -55.6903 L -13.5796 -55.5817 L -19.889 -58.026 L -20.0198 -58.2922 L -19.6097 -60.8546 L -18.8363 -63.4965 L -19.268 -65.5648 L -22.2366 -67.4029 L -24.2805 -66.8674 L -25.6903 -65.4985 L -28.4117 -63.4882 L -28.7083 -63.4866 L -33.7087 -68.0451 L -33.7345 -68.3406 L -32.7578 -70.0614 L -31.307 -72.1264 L -30.7509 -72.766 L -30.4063 -74.8506 L -32.5105 -77.6369 L -34.6098 -77.8759 L -35.9841 -77.269 L -38.0313 -76.6053 L -39.6827 -76.2173 L -39.9599 -76.323 L -42.9759 -82.3799 L -42.8932 -82.6648 L -41.3609 -83.9165 L -39.601 -85.1184 L -38.5124 -85.7135 L -37.4381 -87.5329 L -38.3936 -90.8912 L -40.2648 -91.8724 L -42.7419 -91.8315 L -45.5943 -92.1584 L -45.8146 -92.357 L -46.4389 -99.0945 L -46.2589 -99.3302 L -43.7823 -100.1053 L -41.0726 -100.5906 L -39.4136 -101.8989 L -39.0914 -105.3756 L -40.4818 -106.9666 L -41.9063 -107.4439 L -43.3172 -108.0607 L -45.3482 -109.1585 L -45.4818 -109.4232 L -43.6301 -115.9313 L -43.3771 -116.0861 L -40.7877 -115.9142 L -38.0858 -115.3878 L -36.0661 -116.0085 L -34.5098 -119.1341 L -35.2316 -121.1198 L -36.7248 -122.3973 L -38.9775 -124.9217 L -39.0065 -125.2168 L -34.9288 -130.6165 L -34.637 -130.6694 L -32.8334 -129.8557 L -30.6433 -128.6016 L -29.9552 -128.1069 L -27.8477 -127.9561 L -25.2674 -130.3084 L -25.2231 -132.4208 L -25.9542 -133.7332 L -26.804 -135.7105 L -27.3427 -137.3191 L -27.2631 -137.6048 L -21.5102 -141.1668 L -21.219 -141.1107 L -19.8311 -139.7004 L -18.4721 -138.0589 L -17.779 -137.03 L -15.8683 -136.128 L -12.6125 -137.3893 L -11.8081 -139.3431 L -12.0157 -140.831 L -12.0787 -143.6438 L -12.0151 -144.6763 L -11.8376 -144.914 L -5.1865 -146.1573 L -4.9352 -145.9998 L -3.9349 -143.6052 L -3.2016 -140.9519 L -1.7458 -139.4207 L 1.7458 -139.4207 L 3.2016 -140.9519 L 3.5455 -142.4144 L 4.5029 -145.06 L 4.9352 -145.9998 L 5.1865 -146.1573 L 11.8376 -144.914 L 12.0151 -144.6763 L 12.0829 -142.0821 L 11.8081 -139.3431 L 12.6125 -137.3893 L 15.8683 -136.128 L 17.779 -137.03 L 18.9132 -138.6347 L 21.219 -141.1107 L 21.5102 -141.1668 L 27.2631 -137.6048 L 27.3427 -137.3191 L 26.6989 -135.4481 L 25.6522 -133.1516 L 2
|
||
|
|
</g>
|
||
|
|
<g id='z:9.0' inkscape:groupmode='layer' inkscape:label='Layer 22, z:9.0' transform='translate(280.0, 15536.642)'>
|
||
|
|
<!--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.5233 13.9741 L 3.8383 15.789 L 3.8344 16.7533 L 3.7247 17.5129 L 3.3723 18.8281 L 3.1634 18.9864 L -3.1634 18.9864 L -3.3723 18.8281 L -3.7924 17.1095 L -3.8555 16.4453 L -3.8419 15.8179 L -3.5233 13.9741 L -4.0688 12.8479 L -7.508 11.1917 L -8.7286 11.4673 L -9.9716 12.866 L -10.7075 13.4433 L -11.3699 13.8312 L -12.6178 14.3757 L -12.8718 14.3111 L -16.8166 9.3646 L -16.823 9.1026 L -16.3044 8.3638 L -15.7413 7.7026 L -14.8947 6.9482 L -13.1221 5.958 L -12.5818 4.8294 L -13.4312 1.1079 L -14.4077 0.3255 L -16.2762 0.2258 L -16.8909 0.0994 L -17.5244 -0.1099 L -19.1065 -0.9019 L -19.2143 -1.1408 L -17.8065 -7.309 L -17.6057 -7.4774 L -16.245 -7.5283 L -15.48 -7.4662 L -14.7191 -7.313 L -12.8397 -6.5445 L -11.6204 -6.8257 L -9.2404 -9.8101 L -9.2375 -11.0615 L -10.5013 -12.9085 L -10.9544 -14.1625 L -11.2076 -15.5004 L -11.0881 -15.7336 L -5.3878 -18.4788 L -5.1309 -18.4268 L -4.0067 -17.0606 L -3.4596 -16.0674 L -2.8887 -14.1189 L -1.9086 -13.3409 L 1.9086 -13.3409 L 2.8887 -14.1189 L 3.3623 -15.7981 L 3.8143 -16.7578 L 4.526 -17.7567 L 5.1309 -18.4268 L 5.3878 -18.4788 L 11.0881 -15.7336 L 11.2076 -15.5004 L 10.9544 -14.1625 L 10.609 -13.1439 L 10.3246 -12.5845 L 9.2375 -11.0615 L 9.2404 -9.8101 L 11.6204 -6.8257 L 12.8397 -6.5445 L 14.5664 -7.2654 L 15.48 -7.4662 L 16.245 -7.5283 L 17.6057 -7.4774 L 17.8065 -7.309 L 19.2143 -1.1408 L 19.1065 -0.9019 L 18.3187 -0.4613 L 16.8909 0.0994 L 16.4344 0.2025 L 14.4077 0.3255 L 13.4312 1.1079 L 12.5818 4.8294 L 13.1221 5.958 L 14.7623 6.8586 L 15.2613 7.2392 L 16.0145 8.0071 L 16.823 9.1026 L 16.8166 9.3646 L 12.8718 14.3111 L 12.6178 14.3757 L 11.7822 14.0345 L 10.7075 13.4433 L 9.9716 12.866 L 8.7286 11.4673 L 7.508 11.1917 L 4.0688 12.8479 z M 4.3392 -59.5173 L 4.1513 -57.0319 L 3.5721 -54.2503 L 3.3558 -54.0499 L -3.3558 -54.0499 L -3.5721 -54.2503 L -4.0051 -56.1751 L -4.2928 -58.2807 L -4.3392 -59.5173 L -5.4773 -61.2844 L -8.8783 -61.9202 L -10.5779 -60.6835 L -11.0083 -59.6686 L -12.6164 -56.8695 L -13.1958 -56.0493 L -13.4699 -55.9406 L -19.7283 -58.3651 L -19.8576 -58.6301 L -19.566 -60.5813 L -19.0736 -62.6487 L -18.6702 -63.8185 L -19.0931 -65.8774 L -22.0348 -67.6988 L -24.0664 -67.1596 L -25.486 -65.7801 L -28.1815 -63.7841 L -28.4764 -63.7817 L -33.4364 -68.3033 L -33.4612 -68.5971 L -32.8313 -69.7361 L -31.2785 -72.0611 L -30.4797 -73.0062 L -30.1303 -75.0789 L -32.2153 -77.8399 L -34.3045 -78.0711 L -36.6131 -77.1313 L -39.3612 -76.41 L -39.637 -76.5143 L -42.6286 -82.5223 L -42.5456 -82.8052 L -40.0601 -84.7337 L -38.1728 -85.8395 L -37.0982 -87.646 L -38.045 -90.9739 L -39.9097 -91.9441 L -42.4018 -91.9018 L -45.2249 -92.2219 L -45.4444 -92.4187 L -46.0637 -99.1018 L -45.8841 -99.3356 L -43.4134 -100.1044 L -41.9374 -100.4251 L -40.7104 -100.5854 L -39.0558 -101.8817 L -38.7366 -105.3268 L -40.1248 -106.9051 L -41.1751 -107.24 L -42.9751 -108.0032 L -44.9808 -109.0842 L -45.1143 -109.3471 L -43.2776 -115.8026 L -43.0256 -115.9557 L -40.444 -115.7801 L -38.9519 -115.5459 L -37.7499 -115.2521 L -35.7387 -115.8632 L -34.1965 -118.9604 L -34.9208 -120.9336 L -35.7793 -121.6252 L -37.182 -122.9871 L -38.6617 -124.7197 L -38.6913 -125.0131 L -34.6466 -130.3691 L -34.3563 -130.4209 L -32.5594 -129.6066 L -30.7057 -128.5672 L -29.691 -127.859 L -27.5949 -127.7023 L -25.038 -130.0332 L -25.0006 -132.1348 L -25.7388 -133.459 L -27.1212 -137.0167 L -27.0428 -137.3009 L -21.3364 -140.8342 L -21.047 -140.7776 L -18.8974 -138.4806 L -17.6222 -136.7034 L -15.7242 -135.8001 L -12.498 -137.0499 L -11.7039 -138.9961 L -11.9139 -140.4975 L -11.9178 -144.3143 L -11.742 -144.5511 L -5.1446 -145.7843 L -4.8952 -145.6271 L -4.1159 -143.8147 L -3.4462 -141.7977 L -3.1734 -140.5907 L -1.7299 -139.0628 L 1.7299 -139.0628 L 3.1734 -140.5907 L 3.4099 -141.6675 L 4.0038 -143.5302 L 4.8952 -145.6271 L 5.1446 -145.7843 L 11.742 -144.5511 L 11.9178 -144.3143 L 11.9897 -142.3428 L 11.8856 -140.2201 L 11.7039 -138.9961 L 12.498 -137.0499 L 15.7242 -135.8001 L 17.6222 -136.7034 L 18.2317 -137.622 L 19.4584 -139.1444 L 21.047 -140.7776 L 21.3364 -140.8342 L 27.0428 -137.3009 L
|
||
|
|
</g>
|
||
|
|
<g id='z:9.4' inkscape:groupmode='layer' inkscape:label='Layer 23, z:9.4' transform='translate(280.0, 16210.5177)'>
|
||
|
|
<!--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.4913 13.8472 L 3.8076 15.6768 L 3.8004 16.605 L 3.6919 17.359 L 3.343 18.6644 L 3.1359 18.8215 L -3.1359 18.8215 L -3.343 18.6644 L -3.5948 17.8047 L -3.7589 16.9586 L -3.8262 16.0426 L -3.4913 13.8472 L -4.0316 12.7302 L -7.4392 11.0891 L -8.6494 11.3632 L -9.8826 12.7513 L -10.6128 13.3244 L -11.6789 13.9116 L -12.5081 14.2507 L -12.76 14.1868 L -16.6704 9.2832 L -16.6767 9.0234 L -15.8737 7.9367 L -14.7621 6.8863 L -13.003 5.904 L -12.4665 4.7851 L -13.3081 1.0978 L -14.2769 0.3225 L -16.131 0.2238 L -17.3698 -0.109 L -18.1582 -0.4573 L -18.9403 -0.8941 L -19.0474 -1.1308 L -17.6517 -7.2455 L -17.4525 -7.4124 L -16.1022 -7.4621 L -15.343 -7.4001 L -14.4365 -7.2006 L -12.7231 -6.4851 L -11.5139 -6.7632 L -9.1557 -9.7203 L -9.1537 -10.9611 L -10.2194 -12.452 L -10.6287 -13.3117 L -10.8581 -14.038 L -11.1101 -15.3655 L -10.9917 -15.5969 L -5.3409 -18.3182 L -5.0863 -18.2665 L -3.9714 -16.9101 L -3.4288 -15.9243 L -2.8625 -13.9907 L -1.8911 -13.2187 L 1.8911 -13.2187 L 2.8625 -13.9907 L 3.3713 -15.7764 L 3.7806 -16.6096 L 4.2054 -17.2418 L 5.0863 -18.2665 L 5.3409 -18.3182 L 10.9917 -15.5969 L 11.1101 -15.3655 L 10.964 -14.4817 L 10.7447 -13.6482 L 10.2325 -12.4722 L 9.1537 -10.9611 L 9.1557 -9.7203 L 11.5139 -6.7632 L 12.7231 -6.4851 L 14.4365 -7.2006 L 15.343 -7.4001 L 16.5584 -7.4666 L 17.4525 -7.4124 L 17.6517 -7.2455 L 19.0474 -1.1308 L 18.9403 -0.8941 L 17.7453 -0.2634 L 16.288 0.2007 L 14.2769 0.3225 L 13.3081 1.0978 L 12.4665 4.7851 L 13.003 5.904 L 14.6306 6.7974 L 15.3519 7.3818 L 15.8737 7.9367 L 16.6767 9.0234 L 16.6704 9.2832 L 12.76 14.1868 L 12.5081 14.2507 L 11.6789 13.9116 L 10.9151 13.5123 L 10.157 12.9938 L 8.6494 11.3632 L 7.4392 11.0891 L 4.0316 12.7302 z M 4.3005 -59.8775 L 4.1128 -57.3771 L 3.5429 -54.6241 L 3.3285 -54.4242 L -3.3285 -54.4242 L -3.5429 -54.6241 L -3.9714 -56.5439 L -4.2554 -58.6441 L -4.3005 -59.8775 L -5.4271 -61.6391 L -8.7969 -62.2691 L -10.4838 -61.0333 L -11.1007 -59.6336 L -11.8455 -58.282 L -13.088 -56.4083 L -13.3601 -56.2995 L -19.5676 -58.7042 L -19.6954 -58.968 L -19.2792 -61.5143 L -18.5041 -64.1404 L -18.9182 -66.19 L -21.8329 -67.9948 L -23.8522 -67.4519 L -26.1158 -65.3782 L -27.9513 -64.0799 L -28.2444 -64.0767 L -33.164 -68.5615 L -33.1878 -68.8536 L -31.275 -71.9478 L -30.2085 -73.2464 L -29.8542 -75.3072 L -31.9202 -78.0429 L -33.9993 -78.2662 L -36.3212 -77.3198 L -39.0397 -76.6027 L -39.3141 -76.7056 L -42.2814 -82.6647 L -42.1981 -82.9457 L -40.6705 -84.185 L -38.9171 -85.3754 L -37.8331 -85.9655 L -36.7583 -87.7592 L -37.6965 -91.0566 L -39.5545 -92.0158 L -42.0616 -91.972 L -44.8555 -92.2854 L -45.0742 -92.4805 L -45.6885 -99.1091 L -45.5093 -99.341 L -42.5021 -100.234 L -40.3482 -100.5802 L -38.698 -101.8645 L -38.3817 -105.278 L -39.7678 -106.8437 L -42.633 -107.9457 L -44.6133 -109.01 L -44.7468 -109.271 L -42.9251 -115.6738 L -42.6742 -115.8254 L -40.7104 -115.7121 L -38.6126 -115.4105 L -37.414 -115.1164 L -35.4113 -115.7179 L -33.8832 -118.7867 L -34.6101 -120.7473 L -35.4786 -121.4468 L -36.8837 -122.8099 L -38.3459 -124.5178 L -38.3761 -124.8093 L -34.3644 -130.1217 L -34.0757 -130.1724 L -32.2854 -129.3574 L -30.1106 -128.1044 L -29.4268 -127.6111 L -27.3421 -127.4485 L -24.8086 -129.7581 L -24.7782 -131.8489 L -25.5234 -133.1848 L -26.8996 -136.7143 L -26.8225 -136.9971 L -21.1626 -140.5015 L -20.8751 -140.4445 L -18.7354 -138.1506 L -17.4654 -136.3768 L -15.5802 -135.4721 L -12.3835 -136.7105 L -11.5998 -138.6491 L -11.8121 -140.164 L -11.8926 -142.3182 L -11.8204 -143.9523 L -11.6464 -144.1882 L -5.1027 -145.4114 L -4.8552 -145.2543 L -4.3295 -144.0679 L -3.4162 -141.4336 L -3.1452 -140.2296 L -1.7141 -138.7049 L 1.7141 -138.7049 L 3.1452 -140.2296 L 3.9781 -143.1842 L 4.8552 -145.2543 L 5.1027 -145.4114 L 11.6464 -144.1882 L 11.8204 -143.9523 L 11.8229 -140.3146 L 11.5998 -138.6491 L 12.3835 -136.7105 L 15.5802 -135.4721 L 17.4654 -136.3768 L 18.615 -138.0059 L 20.8751 -140.4445 L 21.1626 -140.5015 L 26.8225 -136.9971 L 26.8996 -136.7143 L 26.2532 -134.8565 L 25.2062 -132.5753 L 24.7782 -131.8489 L 24.8086 -129.7581 L 27.3421 -12
|
||
|
|
</g>
|
||
|
|
<g id='z:9.8' inkscape:groupmode='layer' inkscape:label='Layer 24, z:9.8' transform='translate(280.0, 16884.3935)'>
|
||
|
|
<!--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.4593 13.7203 L 3.7734 15.5357 L 3.7665 16.4568 L 3.6592 17.205 L 3.3136 18.5006 L 3.1085 18.6565 L -3.1085 18.6565 L -3.3136 18.5006 L -3.563 17.6474 L -3.7255 16.8077 L -3.7919 15.8987 L -3.4593 13.7203 L -3.9943 12.6125 L -7.3704 10.9866 L -8.5701 11.2591 L -9.7936 12.6365 L -10.5181 13.2054 L -11.5757 13.7886 L -12.3983 14.1256 L -12.6481 14.0624 L -16.5243 9.2018 L -16.5303 8.9442 L -15.7329 7.8663 L -14.6294 6.8244 L -12.8839 5.8499 L -12.3512 4.7409 L -13.1851 1.0876 L -14.1461 0.3196 L -15.9858 0.2217 L -17.2153 -0.108 L -17.9977 -0.4532 L -18.7741 -0.8862 L -18.8804 -1.1209 L -17.497 -7.182 L -17.2994 -7.3473 L -15.2061 -7.334 L -14.3065 -7.1358 L -12.6066 -6.4257 L -11.4074 -6.7007 L -9.0711 -9.6304 L -9.0698 -10.8606 L -10.13 -12.3439 L -10.4208 -12.9107 L -10.7618 -13.9135 L -11.0126 -15.2307 L -10.8954 -15.4602 L -5.2941 -18.1576 L -5.0416 -18.1062 L -4.4467 -17.4457 L -3.7468 -16.4613 L -3.398 -15.7812 L -2.8363 -13.8625 L -1.8736 -13.0965 L 1.8736 -13.0965 L 2.8363 -13.8625 L 3.341 -15.6344 L 3.7468 -16.4613 L 4.4467 -17.4457 L 5.0416 -18.1062 L 5.2941 -18.1576 L 10.8954 -15.4602 L 11.0126 -15.2307 L 10.7618 -13.9135 L 10.4208 -12.9107 L 10.081 -12.2685 L 9.0698 -10.8606 L 9.0711 -9.6304 L 11.4074 -6.7007 L 12.6066 -6.4257 L 14.3065 -7.1358 L 15.2061 -7.334 L 15.9594 -7.3959 L 17.2994 -7.3473 L 17.497 -7.182 L 18.8804 -1.1209 L 18.7741 -0.8862 L 17.9977 -0.4532 L 17.2153 -0.108 L 15.9858 0.2217 L 14.1461 0.3196 L 13.1851 1.0876 L 12.3512 4.7409 L 12.8839 5.8499 L 14.4989 6.7362 L 15.2148 7.3159 L 16.0188 8.2173 L 16.5303 8.9442 L 16.5243 9.2018 L 12.6481 14.0624 L 12.3983 14.1256 L 11.1699 13.588 L 10.2682 13.0324 L 9.7177 12.5583 L 8.5701 11.2591 L 7.3704 10.9866 L 3.9943 12.6125 z M 4.2619 -60.2377 L 4.0742 -57.7223 L 3.5137 -54.9978 L 3.3012 -54.7985 L -3.3012 -54.7985 L -3.5137 -54.9978 L -4.0398 -57.516 L -4.218 -59.0075 L -4.2619 -60.2377 L -5.3769 -61.9938 L -8.7156 -62.6179 L -10.3897 -61.3832 L -11.2257 -59.5572 L -12.9802 -56.7674 L -13.2504 -56.6584 L -19.4069 -59.0434 L -19.5331 -59.306 L -19.2367 -61.2448 L -18.8635 -62.871 L -18.3379 -64.4624 L -18.7432 -66.5027 L -21.631 -68.2907 L -23.6381 -67.7441 L -25.0773 -66.3434 L -27.7211 -64.3758 L -28.0125 -64.3717 L -32.8916 -68.8197 L -32.9145 -69.1102 L -31.7374 -71.1124 L -30.7336 -72.5478 L -29.9373 -73.4866 L -29.5782 -75.5355 L -31.625 -78.246 L -33.694 -78.4613 L -35.1053 -77.8366 L -37.1567 -77.168 L -38.7181 -76.7954 L -38.9913 -76.8969 L -41.9342 -82.807 L -41.8505 -83.0862 L -39.8308 -84.6795 L -38.5751 -85.5039 L -37.4935 -86.0915 L -36.4184 -87.8724 L -37.3479 -91.1392 L -39.1994 -92.0874 L -41.7214 -92.0423 L -44.486 -92.349 L -44.7041 -92.5422 L -45.3133 -99.1164 L -45.1345 -99.3465 L -43.2668 -99.9453 L -41.6447 -100.336 L -39.9859 -100.5749 L -38.3402 -101.8472 L -38.0268 -105.2292 L -39.4107 -106.7822 L -41.3061 -107.4463 L -44.2459 -108.9358 L -44.3794 -109.1948 L -42.5725 -115.5451 L -42.3227 -115.6951 L -40.0057 -115.5339 L -38.2733 -115.2751 L -37.0781 -114.9807 L -35.0839 -115.5725 L -33.5699 -118.613 L -34.2994 -120.561 L -35.1779 -121.2683 L -36.5855 -122.6327 L -38.0301 -124.3159 L -38.061 -124.6056 L -34.0822 -129.8744 L -33.795 -129.9239 L -30.9816 -128.5573 L -29.1626 -127.3632 L -27.0893 -127.1947 L -24.5792 -129.4829 L -24.5557 -131.563 L -25.7202 -133.8004 L -26.6781 -136.4119 L -26.6022 -136.6932 L -20.9888 -140.1689 L -20.7032 -140.1114 L -19.3346 -138.7065 L -17.3086 -136.0502 L -15.4361 -135.1441 L -12.269 -136.3711 L -11.4957 -138.3021 L -11.7733 -140.8092 L -11.7231 -143.5903 L -11.5507 -143.8253 L -5.0608 -145.0384 L -4.8152 -144.8816 L -4.2931 -143.6977 L -3.3862 -141.0696 L -3.1169 -139.8684 L -1.6983 -138.3471 L 1.6983 -138.3471 L 3.1169 -139.8684 L 3.3584 -140.97 L 3.9524 -142.8382 L 4.8152 -144.8816 L 5.0608 -145.0384 L 11.5507 -143.8253 L 11.7231 -143.5903 L 11.7879 -141.6301 L 11.4957 -138.3021 L 12.269 -136.3711 L 15.4361 -135.1441 L 17.3086 -136.0502 L 19.1605 -138.5177 L 20.7032 -140.1114 L 20.9888 -140.1689 L 26.6022 -136.6932 L 26.6781 -136.4119 L 25.889 -134.2275 L 25.166 -132.632
|
||
|
|
</g>
|
||
|
|
<g id='z:10.2' inkscape:groupmode='layer' inkscape:label='Layer 25, z:10.2' transform='translate(280.0, 17558.2692)'>
|
||
|
|
<!--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 11.2584 -6.6131 L 12.49 -6.3663 L 14.5236 -7.1691 L 15.0691 -7.268 L 16.2657 -7.3346 L 17.1462 -7.2823 L 17.3423 -7.1185 L 18.7134 -1.111 L 18.6079 -0.8784 L 17.4305 -0.2587 L 15.9952 0.197 L 14.0153 0.3166 L 13.0128 1.0734 L 12.1898 4.6789 L 12.7647 5.7958 L 14.4967 6.7625 L 15.5921 7.7959 L 16.384 8.865 L 16.3782 9.1204 L 12.5363 13.938 L 12.2886 14.0006 L 11.4725 13.6657 L 10.4233 13.0865 L 9.9748 12.7607 L 8.4909 11.155 L 7.2741 10.8431 L 3.9421 12.4477 L 3.4274 13.5935 L 3.7254 15.2873 L 3.7326 16.3086 L 3.5313 17.49 L 3.2843 18.3368 L 3.081 18.4915 L -3.081 18.4915 L -3.2843 18.3368 L -3.6265 17.051 L -3.7514 15.5503 L -3.4274 13.5935 L -3.9421 12.4477 L -7.2741 10.8431 L -8.4909 11.155 L -9.8188 12.6284 L -11.07 13.4664 L -12.2886 14.0006 L -12.5363 13.938 L -16.3782 9.1204 L -16.384 8.865 L -15.8759 8.144 L -15.0778 7.25 L -14.6603 6.8852 L -12.7647 5.7958 L -12.1898 4.6789 L -13.0128 1.0734 L -14.0153 0.3166 L -16.1959 0.1576 L -16.7302 0.01 L -17.8373 -0.4492 L -18.6079 -0.8784 L -18.7134 -1.111 L -17.3423 -7.1185 L -17.1462 -7.2823 L -15.8166 -7.3297 L -14.3257 -7.1176 L -12.49 -6.3663 L -11.2584 -6.6131 L -8.9526 -9.5046 L -8.9859 -10.7602 L -10.1269 -12.3827 L -10.6655 -13.789 L -10.9151 -15.0959 L -10.799 -15.3235 L -5.2473 -17.997 L -4.997 -17.9459 L -4.4071 -17.2901 L -3.7131 -16.313 L -3.4503 -15.8249 L -2.81 -13.7344 L -1.8491 -12.9254 L 1.8491 -12.9254 L 2.81 -13.7344 L 3.4503 -15.8249 L 3.7131 -16.313 L 4.4071 -17.2901 L 4.997 -17.9459 L 5.2473 -17.997 L 10.799 -15.3235 L 10.9151 -15.0959 L 10.6655 -13.789 L 10.1269 -12.3827 L 8.9859 -10.7602 L 8.9526 -9.5046 z M 36.0486 -87.9825 L 37.1538 -86.2175 L 38.5149 -85.4616 L 39.7955 -84.5946 L 41.503 -83.2266 L 41.5869 -82.9494 L 38.6684 -77.0882 L 38.3966 -76.9881 L 36.4999 -77.464 L 34.1471 -78.2979 L 33.3888 -78.6564 L 31.3041 -78.4667 L 29.2731 -75.7717 L 29.6661 -73.7267 L 30.4081 -72.8606 L 31.5431 -71.2591 L 32.6411 -69.3667 L 32.6193 -69.0779 L 27.7805 -64.6667 L 27.4909 -64.6716 L 25.8942 -65.8006 L 24.2821 -67.1583 L 23.4239 -68.0363 L 21.4115 -68.6125 L 18.5441 -66.8331 L 18.1718 -64.7843 L 18.6684 -63.3087 L 19.1463 -61.2028 L 19.3709 -59.6439 L 19.2462 -59.3825 L 13.1407 -57.0172 L 12.8724 -57.1264 L 11.2089 -59.7646 L 10.2955 -61.733 L 8.6271 -62.9973 L 5.3106 -62.3739 L 4.2233 -60.5979 L 4.1032 -58.5788 L 3.4846 -55.3715 L 3.2738 -55.1728 L -3.2738 -55.1728 L -3.4846 -55.3715 L -4.0049 -57.8832 L -4.2233 -60.5979 L -5.3223 -62.3795 L -8.6401 -62.9963 L -10.2955 -61.733 L -11.3847 -59.4413 L -12.8724 -57.1264 L -13.1407 -57.0172 L -19.2462 -59.3825 L -19.3709 -59.6439 L -18.9487 -62.174 L -18.5752 -63.6247 L -18.1718 -64.7843 L -18.553 -66.8426 L -21.424 -68.6163 L -23.4239 -68.0363 L -24.873 -66.625 L -27.4909 -64.6716 L -27.7805 -64.6667 L -32.6193 -69.0779 L -32.6411 -69.3667 L -31.6643 -71.0608 L -30.2185 -73.0956 L -29.6661 -73.7267 L -29.278 -75.7838 L -31.3144 -78.4748 L -33.3888 -78.6564 L -35.2498 -77.8639 L -38.3966 -76.9881 L -38.6684 -77.0882 L -41.5869 -82.9494 L -41.503 -83.2266 L -39.9802 -84.4534 L -38.2331 -85.6324 L -37.1538 -86.2175 L -36.0488 -87.9955 L -36.9756 -91.2404 L -38.8443 -92.1591 L -40.8659 -92.0924 L -44.1166 -92.4125 L -44.3339 -92.604 L -44.938 -99.1237 L -44.7596 -99.3519 L -42.3066 -100.1017 L -40.8415 -100.414 L -39.6237 -100.5697 L -37.9511 -101.8285 L -37.643 -105.189 L -39.0537 -106.7208 L -41.9487 -107.8307 L -43.8784 -108.8616 L -44.0119 -109.1187 L -42.22 -115.4164 L -41.9712 -115.5647 L -40.0194 -115.4454 L -37.5534 -115.0581 L -36.7422 -114.845 L -34.7278 -115.4145 L -33.2266 -118.4368 L -33.9887 -120.3748 L -36.2872 -122.4555 L -37.7142 -124.1139 L -37.7458 -124.4018 L -33.7999 -129.627 L -33.5144 -129.6754 L -30.7113 -128.3081 L -28.8984 -127.1153 L -26.8143 -126.9187 L -24.3227 -129.1947 L -24.3333 -131.277 L -25.5057 -133.5273 L -26.4565 -136.1095 L -26.3819 -136.3894 L -20.815 -139.8363 L -20.5312 -139.7783 L -18.7666 -137.9167 L -17.1518 -135.7236 L -15.2795 -134.7874 L -12.1339 -136.0096 L -11.3915 -137.9552 L -11.6445 -139.962 L -11.6257 -143.2283 L -11.4551 -143.4624 L -5.018
|
||
|
|
</g>
|
||
|
|
<g id='z:10.6' inkscape:groupmode='layer' inkscape:label='Layer 26, z:10.6' transform='translate(280.0, 18232.1449)'>
|
||
|
|
<!--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 8.6647 -9.199 L 10.8965 -6.4005 L 11.0568 -6.351 L 12.3129 -6.276 L 14.1946 -7.0525 L 14.9321 -7.2019 L 16.1194 -7.2686 L 16.9931 -7.2172 L 17.1875 -7.0549 L 18.5465 -1.1011 L 18.4417 -0.8705 L 17.2731 -0.2563 L 16.2915 0.0958 L 15.6954 0.2177 L 13.8166 0.3121 L 12.5944 1.0389 L 11.798 4.5285 L 11.8593 4.6847 L 12.5837 5.7136 L 14.2356 6.6138 L 15.1858 7.4308 L 15.7331 8.0707 L 16.2377 8.7859 L 16.232 9.0391 L 12.4244 13.8137 L 12.1788 13.8755 L 10.97 13.3448 L 9.8836 12.6441 L 8.3705 10.9968 L 7.0403 10.4945 L 3.8154 12.0475 L 3.7314 12.1928 L 3.3788 13.4007 L 3.7048 15.2535 L 3.6986 16.1603 L 3.255 18.173 L 3.0535 18.3265 L -3.0535 18.3265 L -3.255 18.173 L -3.4995 17.3327 L -3.6586 16.5058 L -3.717 15.408 L -3.3788 13.4007 L -3.8154 12.0475 L -7.0403 10.4945 L -7.2062 10.5195 L -8.3705 10.9968 L -9.6157 12.4069 L -10.0827 12.797 L -10.6237 13.1516 L -12.1788 13.8755 L -12.4244 13.8137 L -16.232 9.0391 L -16.2377 8.7859 L -15.4513 7.7255 L -14.9407 7.1841 L -14.364 6.7006 L -12.5837 5.7136 L -11.798 4.5285 L -12.5944 1.0389 L -12.7175 0.9247 L -13.8166 0.3121 L -15.6954 0.2177 L -16.5782 0.0099 L -17.6768 -0.4451 L -18.4417 -0.8705 L -18.5465 -1.1011 L -17.1875 -7.0549 L -16.9931 -7.2172 L -15.6737 -7.2636 L -14.6366 -7.155 L -13.9459 -6.9692 L -12.3129 -6.276 L -10.8965 -6.4005 L -8.6647 -9.199 L -8.6522 -9.3664 L -8.8585 -10.6076 L -10.0342 -12.2694 L -10.3441 -12.9552 L -10.6733 -14.0978 L -10.8176 -14.961 L -10.7026 -15.1867 L -5.2005 -17.8364 L -4.9524 -17.7856 L -4.0935 -16.783 L -3.5318 -15.9044 L -3.2803 -15.3504 L -2.7702 -13.5396 L -1.7897 -12.5099 L 1.7897 -12.5099 L 1.9284 -12.6044 L 2.7702 -13.5396 L 3.3363 -15.4949 L 3.5318 -15.9044 L 4.3674 -17.1346 L 4.9524 -17.7856 L 5.2005 -17.8364 L 10.7026 -15.1867 L 10.8176 -14.961 L 10.5692 -13.6645 L 10.3441 -12.9552 L 9.9562 -12.1354 L 8.8585 -10.6076 z M 35.529 -88.0769 L 36.127 -87.4748 L 36.8141 -86.3435 L 39.4698 -84.7139 L 41.1555 -83.3671 L 41.2397 -83.0918 L 38.3455 -77.2795 L 38.0751 -77.1808 L 36.1847 -77.6586 L 34.1976 -78.3432 L 33.0836 -78.8515 L 31.7667 -78.7181 L 30.854 -78.7763 L 28.8227 -76.0474 L 29.1628 -75.27 L 29.3949 -73.9669 L 30.1453 -73.0913 L 31.2825 -71.4881 L 32.3678 -69.6232 L 32.3469 -69.3361 L 27.5485 -64.9618 L 27.2607 -64.9674 L 25.1926 -66.4722 L 24.0649 -67.452 L 23.2098 -68.3285 L 21.9337 -68.6798 L 21.1036 -69.0638 L 18.2237 -67.2529 L 18.26 -66.4051 L 18.0057 -65.1062 L 18.507 -63.6178 L 18.9864 -61.5104 L 19.2087 -59.9819 L 19.0855 -59.7217 L 13.031 -57.3761 L 12.7646 -57.4854 L 11.6895 -59.112 L 10.8786 -60.5595 L 10.2014 -62.0828 L 9.1384 -62.8714 L 8.5031 -63.5293 L 5.1635 -62.8811 L 4.8911 -62.0775 L 4.1847 -60.9581 L 4.0645 -58.9246 L 3.4554 -55.7452 L 3.2465 -55.5471 L -3.2465 -55.5471 L -3.4554 -55.7452 L -4.0468 -58.7983 L -4.1847 -60.9581 L -4.8911 -62.0775 L -5.2458 -62.9204 L -8.5941 -63.5224 L -9.1384 -62.8714 L -10.2014 -62.0828 L -10.6507 -61.0208 L -11.8991 -58.7648 L -12.7646 -57.4854 L -13.031 -57.3761 L -19.0855 -59.7217 L -19.2087 -59.9819 L -18.5315 -63.5243 L -18.0057 -65.1062 L -18.26 -66.4051 L -18.2863 -67.3193 L -21.191 -69.0902 L -21.9337 -68.6798 L -23.2098 -68.3285 L -24.3187 -67.2163 L -25.5039 -66.2202 L -27.2607 -64.9674 L -27.5485 -64.9618 L -32.3469 -69.3361 L -32.3678 -69.6232 L -30.4567 -72.6818 L -29.3949 -73.9669 L -29.1628 -75.27 L -28.8571 -76.132 L -30.9259 -78.8325 L -31.7667 -78.7181 L -33.0836 -78.8515 L -34.5194 -78.215 L -36.5735 -77.5432 L -38.0751 -77.1808 L -38.3455 -77.2795 L -41.2397 -83.0918 L -41.1555 -83.3671 L -38.2685 -85.5287 L -36.8141 -86.3435 L -36.127 -87.4748 L -35.5305 -88.1681 L -36.4841 -91.4336 L -37.3095 -91.6307 L -38.4892 -92.2308 L -41.0411 -92.1829 L -43.7472 -92.476 L -43.9637 -92.6658 L -44.5628 -99.1311 L -44.3848 -99.3573 L -40.912 -100.3301 L -39.2614 -100.5645 L -38.2121 -101.3712 L -37.4054 -101.8022 L -37.1149 -105.1917 L -37.8134 -105.6736 L -38.6967 -106.6594 L -41.0935 -107.5365 L -43.511 -108.7874 L -43.6444 -109.0425 L -41.8675 -115.2877 L -41.6198 -115.4344 L -38.03 -115.0869 L -36.4063 -114.7093 L -35.1364 -115.0824 L -34.2285
|
||
|
|
</g>
|
||
|
|
<g id='z:11.0' inkscape:groupmode='layer' inkscape:label='Layer 27, z:11.0' transform='translate(280.0, 18906.0207)'>
|
||
|
|
<!--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 8.5344 -10.0018 L 8.3769 -8.8934 L 10.5345 -6.1879 L 10.8323 -6.096 L 11.8415 -6.0357 L 13.9167 -6.9413 L 14.502 -7.0892 L 15.5309 -7.1974 L 16.8399 -7.1522 L 17.0328 -6.9914 L 18.3795 -1.0912 L 18.2755 -0.8627 L 17.5164 -0.4411 L 16.4261 0.0098 L 15.9 0.1547 L 13.2876 0.3002 L 13.1408 0.4364 L 12.1761 1.0044 L 11.4061 4.3781 L 11.5199 4.6682 L 12.102 5.4949 L 14.2313 6.6387 L 15.047 7.3629 L 15.5903 7.9975 L 16.0913 8.7067 L 16.0859 8.9577 L 12.3125 13.6893 L 12.069 13.7505 L 10.8701 13.2232 L 9.7925 12.5275 L 8.05 10.5758 L 7.852 10.546 L 6.8064 10.1459 L 3.6886 11.6473 L 3.5328 11.9172 L 3.2494 12.8877 L 3.6705 15.1123 L 3.6251 16.3549 L 3.4677 17.1753 L 3.2256 18.0092 L 3.026 18.1615 L -3.026 18.1615 L -3.2256 18.0092 L -3.561 16.7431 L -3.6647 16.0121 L -3.6827 15.2657 L -3.2494 12.8877 L -3.3496 12.7143 L -3.6886 11.6473 L -6.8064 10.1459 L -7.1146 10.1923 L -8.05 10.5758 L -9.7925 12.5275 L -10.2338 12.8486 L -11.2661 13.4198 L -12.069 13.7505 L -12.3125 13.6893 L -16.0859 8.9577 L -16.0913 8.7067 L -15.3105 7.6551 L -14.2313 6.6387 L -12.102 5.4949 L -12.0288 5.3084 L -11.4061 4.3781 L -12.1761 1.0044 L -12.4045 0.7924 L -13.2876 0.3002 L -15.5502 0.2157 L -16.1417 0.095 L -17.1157 -0.254 L -18.2755 -0.8627 L -18.3795 -1.0912 L -17.0328 -6.9914 L -16.8399 -7.1522 L -15.9731 -7.2027 L -14.7952 -7.1359 L -13.8167 -6.9046 L -11.8415 -6.0357 L -11.6501 -6.0948 L -10.5345 -6.1879 L -8.3769 -8.8934 L -8.3536 -9.2042 L -8.5194 -10.2016 L -9.9415 -12.156 L -10.3622 -13.1624 L -10.5764 -13.9699 L -10.7201 -14.8262 L -10.6063 -15.05 L -5.1537 -17.6759 L -4.9077 -17.6253 L -3.6456 -16.0165 L -3.25 -15.2083 L -2.6641 -13.0213 L -2.4987 -12.9085 L -1.7302 -12.0943 L 1.7302 -12.0943 L 1.9878 -12.2699 L 2.6641 -13.0213 L 3.25 -15.2083 L 3.83 -16.3081 L 4.3278 -16.979 L 4.9077 -17.6253 L 5.1537 -17.6759 L 10.6063 -15.05 L 10.7201 -14.8262 L 10.4729 -13.54 L 10.2492 -12.8363 L 9.9415 -12.156 L 8.5194 -10.2016 z M 35.0123 -88.3407 L 35.0094 -88.1713 L 36.12 -87.0531 L 36.4745 -86.4695 L 37.1819 -86.1024 L 39.144 -84.8333 L 40.8079 -83.5075 L 40.8924 -83.2342 L 38.0226 -77.4708 L 37.7535 -77.3735 L 35.8696 -77.8532 L 34.3003 -78.3773 L 32.7783 -79.0467 L 32.099 -78.9778 L 30.4039 -79.0859 L 28.4361 -76.4801 L 28.3723 -76.3232 L 29.004 -74.8794 L 29.1237 -74.2071 L 30.4144 -72.6126 L 32.0945 -69.8797 L 32.0745 -69.5943 L 27.3166 -65.2568 L 27.0305 -65.2633 L 24.971 -66.7672 L 23.8478 -67.7458 L 22.9957 -68.6207 L 22.3373 -68.8019 L 20.7958 -69.515 L 18.0195 -67.7961 L 17.9033 -67.6728 L 17.9708 -66.0983 L 17.8396 -65.4282 L 18.2275 -64.3287 L 18.7101 -62.4205 L 19.0465 -60.3198 L 18.9248 -60.0608 L 12.9212 -57.735 L 12.6568 -57.8444 L 11.2797 -59.9907 L 10.5858 -61.309 L 10.1073 -62.4327 L 9.5589 -62.8395 L 8.3791 -64.0613 L 5.1693 -63.4613 L 5.0164 -63.3883 L 4.5105 -61.8958 L 4.1461 -61.3183 L 4.0257 -59.2704 L 3.4262 -56.1189 L 3.2192 -55.9214 L -3.2192 -55.9214 L -3.4262 -56.1189 L -3.8366 -58.0192 L -4.0668 -59.6576 L -4.1461 -61.3183 L -4.5105 -61.8958 L -5.1693 -63.4613 L -8.3791 -64.0613 L -8.548 -64.0485 L -9.5589 -62.8395 L -10.1073 -62.4327 L -10.5613 -61.3589 L -11.4902 -59.6235 L -12.6568 -57.8444 L -12.9212 -57.735 L -18.9248 -60.0608 L -19.0465 -60.3198 L -18.7427 -62.24 L -18.3656 -63.8509 L -17.8396 -65.4282 L -17.9708 -66.0983 L -18.0195 -67.7961 L -20.7958 -69.515 L -20.958 -69.5641 L -22.3373 -68.8019 L -22.9957 -68.6207 L -23.5423 -68.0408 L -25.3 -66.5008 L -27.0305 -65.2633 L -27.3166 -65.2568 L -32.0745 -69.5943 L -32.0945 -69.8797 L -30.787 -72.0692 L -29.1237 -74.2071 L -29.004 -74.8794 L -28.4361 -76.4801 L -30.4039 -79.0859 L -30.5374 -79.1903 L -32.099 -78.9778 L -32.7783 -79.0467 L -34.2264 -78.4042 L -36.282 -77.7308 L -37.7535 -77.3735 L -38.0226 -77.4708 L -40.8924 -83.2342 L -40.8079 -83.5075 L -39.2898 -84.7219 L -37.5492 -85.8894 L -36.4745 -86.4695 L -36.12 -87.0531 L -35.0123 -88.3407 L -35.9059 -91.4814 L -35.9927 -91.6269 L -37.5255 -91.9929 L -38.1341 -92.3025 L -38.9288 -92.2422 L -41.2651 -92.2883 L -43.3777 -92.5396 L -43.5935 -92.7275 L -44.1876 -99.1384 L -44.01 -99.3628 L
|
||
|
|
</g>
|
||
|
|
<g id='z:11.4' inkscape:groupmode='layer' inkscape:label='Layer 28, z:11.4' transform='translate(280.0, 19579.8964)'>
|
||
|
|
<!--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 3.2997 -15.2649 L 4.0189 -16.4771 L 4.8631 -17.465 L 5.1068 -17.5153 L 10.5099 -14.9133 L 10.6226 -14.6914 L 10.2666 -13.0409 L 9.8773 -12.0973 L 8.1803 -9.7955 L 8.208 -9.4251 L 8.0891 -8.5879 L 10.1726 -5.9753 L 10.6078 -5.841 L 11.3701 -5.7955 L 13.9919 -6.9377 L 14.9985 -7.1073 L 16.6868 -7.0871 L 16.8781 -6.9279 L 18.2125 -1.0813 L 18.1092 -0.8548 L 17.3559 -0.437 L 16.274 0.0097 L 15.6165 0.1798 L 12.7587 0.2882 L 12.4865 0.5408 L 11.7578 0.9699 L 11.0142 4.2277 L 11.1806 4.6517 L 11.6202 5.2761 L 14.148 6.6137 L 14.9081 7.2949 L 15.945 8.6275 L 15.9398 8.8763 L 12.2007 13.5649 L 11.9593 13.6254 L 10.7701 13.1016 L 9.5961 12.3215 L 7.7296 10.1549 L 7.3624 10.0995 L 6.5726 9.7973 L 3.5619 11.2472 L 3.3341 11.6416 L 3.1201 12.3747 L 3.6503 15.1849 L 3.6308 15.8639 L 3.5282 16.5891 L 3.1963 17.8454 L 2.9985 17.9965 L -2.9985 17.9965 L -3.1963 17.8454 L -3.5916 16.2039 L -3.6503 15.1849 L -3.1201 12.3747 L -3.3058 12.0531 L -3.5619 11.2472 L -6.5726 9.7973 L -7.023 9.8651 L -7.7296 10.1549 L -9.5961 12.3215 L -10.7701 13.1016 L -11.9593 13.6254 L -12.2007 13.5649 L -15.9398 8.8763 L -15.945 8.6275 L -15.1697 7.5847 L -14.148 6.6137 L -11.6202 5.2761 L -11.4846 4.9304 L -11.0142 4.2277 L -11.7578 0.9699 L -12.0916 0.66 L -12.7587 0.2882 L -15.6165 0.1798 L -16.274 0.0097 L -17.3559 -0.437 L -18.1092 -0.8548 L -18.2125 -1.0813 L -16.8781 -6.9279 L -16.6868 -7.0871 L -14.9985 -7.1073 L -13.9919 -6.9377 L -11.3701 -5.7955 L -11.0153 -5.905 L -10.1726 -5.9753 L -8.0891 -8.5879 L -8.055 -9.0421 L -8.1803 -9.7955 L -9.8773 -12.0973 L -10.2666 -13.0409 L -10.6226 -14.6914 L -10.5099 -14.9133 L -5.1068 -17.5153 L -4.8631 -17.465 L -4.0189 -16.4771 L -3.2997 -15.2649 L -2.5581 -12.5029 L -2.2512 -12.2938 L -1.6708 -11.6788 L 1.6708 -11.6788 L 2.0472 -11.9353 L 2.5581 -12.5029 z M 34.494 -88.5133 L 34.4898 -88.2657 L 36.1348 -86.5955 L 38.3565 -85.2796 L 40.4604 -83.648 L 40.5452 -83.3765 L 37.6998 -77.6621 L 37.432 -77.5662 L 35.5545 -78.0477 L 33.5803 -78.7341 L 32.4731 -79.2418 L 29.9539 -79.3955 L 28.0152 -76.8283 L 27.9219 -76.5989 L 28.8525 -74.4473 L 30.4488 -72.4176 L 31.8211 -70.1362 L 31.8022 -69.8525 L 27.0846 -65.5518 L 26.8003 -65.5591 L 23.9547 -67.7409 L 22.7815 -68.9129 L 20.488 -69.9663 L 17.7528 -68.2728 L 17.5829 -68.0926 L 17.6734 -65.7501 L 18.4287 -63.2808 L 18.8843 -60.6578 L 18.7641 -60.4 L 12.8115 -58.0939 L 12.549 -58.2035 L 10.913 -60.8269 L 10.0132 -62.7825 L 8.255 -64.5933 L 5.0928 -64.0022 L 4.8693 -63.8955 L 4.1075 -61.6786 L 3.987 -59.6162 L 3.397 -56.4927 L 3.1918 -56.2957 L -3.1918 -56.2957 L -3.397 -56.4927 L -3.9001 -58.985 L -4.0684 -60.4611 L -4.1075 -61.6786 L -5.0928 -64.0022 L -8.255 -64.5933 L -8.502 -64.5746 L -10.0132 -62.7825 L -10.4719 -61.6969 L -11.7209 -59.4349 L -12.549 -58.2035 L -12.8115 -58.0939 L -18.7641 -60.4 L -18.8843 -60.6578 L -18.326 -63.6987 L -17.6734 -65.7501 L -17.7528 -68.2728 L -20.488 -69.9663 L -20.725 -70.038 L -22.7815 -68.9129 L -24.26 -67.47 L -26.8003 -65.5591 L -27.0846 -65.5518 L -31.8022 -69.8525 L -31.8211 -70.1362 L -30.9394 -71.646 L -29.672 -73.4824 L -28.8525 -74.4473 L -28.0152 -76.8283 L -29.9539 -79.3955 L -30.149 -79.548 L -32.4731 -79.2418 L -34.8621 -78.2619 L -37.432 -77.5662 L -37.6998 -77.6621 L -40.5452 -83.3765 L -40.4604 -83.648 L -38.9446 -84.8561 L -37.5831 -85.7879 L -36.1348 -86.5955 L -34.494 -88.5133 L -35.3743 -91.6075 L -35.5012 -91.8202 L -37.779 -92.3742 L -38.5852 -92.3129 L -40.9253 -92.3583 L -43.0083 -92.6031 L -43.2234 -92.7893 L -43.8124 -99.1457 L -43.6352 -99.3682 L -41.1999 -100.0991 L -38.537 -100.5541 L -36.3142 -101.7496 L -36.0173 -104.9529 L -36.0588 -105.1971 L -37.9826 -106.5365 L -38.7565 -106.7706 L -40.9223 -107.6583 L -42.7761 -108.639 L -42.9094 -108.8903 L -41.1624 -115.0302 L -40.9168 -115.1737 L -38.9828 -115.0454 L -36.9162 -114.7335 L -35.7345 -114.4379 L -33.2299 -114.7496 L -31.796 -117.6294 L -31.7464 -117.872 L -33.0565 -119.816 L -34.9986 -121.5178 L -36.7668 -123.5081 L -36.8003 -123.7906 L -32.9533 -128.8849 L -32.6724 -128.9299 L -30.9154 -128.1116 L -29.101 -127.0742 L -28.1059
|
||
|
|
</g>
|
||
|
|
<g id='z:11.8' inkscape:groupmode='layer' inkscape:label='Layer 29, z:11.8' transform='translate(280.0, 20253.7722)'>
|
||
|
|
<!--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 3.1803 -14.5194 L 3.7375 -15.9725 L 4.8185 -17.3047 L 5.06 -17.3547 L 10.4136 -14.7766 L 10.5251 -14.5565 L 10.3826 -13.7139 L 10.1575 -12.8808 L 8.6786 -10.5022 L 7.8411 -9.3894 L 7.8817 -8.8484 L 7.8013 -8.2823 L 9.8106 -5.7627 L 10.3833 -5.586 L 10.8988 -5.5552 L 14.8181 -7.0366 L 15.6804 -7.0707 L 16.5336 -7.0221 L 16.7233 -6.8644 L 18.0455 -1.0714 L 17.943 -0.847 L 16.4037 -0.0896 L 14.7779 0.1531 L 12.2298 0.2763 L 11.8321 0.6453 L 11.3394 0.9354 L 10.6223 4.0773 L 10.8412 4.6352 L 11.1385 5.0574 L 13.7522 6.5233 L 14.7404 7.198 L 15.7986 8.5483 L 15.7936 8.7949 L 12.0888 13.4406 L 11.8495 13.5003 L 11.0597 13.1739 L 10.2976 12.7691 L 9.3892 11.9343 L 7.4091 9.7339 L 6.8727 9.6531 L 6.3387 9.4487 L 3.4352 10.847 L 3.1354 11.366 L 2.9907 11.8617 L 3.4742 14.8191 L 3.5629 16.0124 L 3.4042 16.8607 L 3.1669 17.6816 L 2.971 17.8315 L -2.971 17.8315 L -3.1669 17.6816 L -3.4042 16.8607 L -3.5629 16.0124 L -3.4377 14.3733 L -2.9907 11.8617 L -3.262 11.3919 L -3.4352 10.847 L -6.3387 9.4487 L -6.9314 9.538 L -7.4091 9.7339 L -9.1651 11.7017 L -10.2976 12.7691 L -11.8495 13.5003 L -12.0888 13.4406 L -15.7936 8.7949 L -15.7986 8.5483 L -15.3047 7.8509 L -14.7404 7.198 L -13.7244 6.4982 L -11.1385 5.0574 L -10.9404 4.5524 L -10.6223 4.0773 L -11.3394 0.9354 L -11.7787 0.5276 L -12.2298 0.2763 L -14.8163 0.1441 L -16.4037 -0.0896 L -17.1954 -0.433 L -17.943 -0.847 L -18.0455 -1.0714 L -16.7233 -6.8644 L -16.5336 -7.0221 L -14.8181 -7.0366 L -12.17 -6.124 L -10.8988 -5.5552 L -10.3804 -5.7151 L -9.8106 -5.7627 L -7.8013 -8.2823 L -7.7565 -8.88 L -7.8411 -9.3894 L -9.5599 -11.8441 L -10.1575 -12.8808 L -10.5251 -14.5565 L -10.4136 -14.7766 L -5.06 -17.3547 L -4.8185 -17.3047 L -4.2485 -16.6679 L -3.7375 -15.9725 L -2.7999 -13.3332 L -2.452 -11.9846 L -2.0038 -11.6791 L -1.6113 -11.2633 L 1.6113 -11.2633 L 2.1066 -11.6008 L 2.452 -11.9846 z M 33.9757 -88.6859 L 33.9703 -88.3601 L 35.4859 -86.8346 L 36.2116 -86.5129 L 38.4925 -85.0721 L 40.1128 -83.7885 L 40.198 -83.5189 L 37.3769 -77.8534 L 37.1105 -77.7589 L 34.6635 -78.4218 L 32.5854 -79.2303 L 31.8869 -79.6165 L 31.8119 -79.5579 L 29.5038 -79.7051 L 27.5942 -77.1765 L 27.4715 -76.8746 L 28.3337 -74.9047 L 28.8942 -74.3425 L 29.6136 -73.4501 L 30.8278 -71.6555 L 31.5478 -70.3928 L 31.5298 -70.1106 L 26.8526 -65.8468 L 26.5701 -65.855 L 24.9999 -66.9816 L 22.8821 -68.8617 L 22.3703 -69.4741 L 22.2792 -69.4465 L 20.1801 -70.4176 L 17.486 -68.7495 L 17.2625 -68.5124 L 17.355 -66.364 L 17.6745 -65.6373 L 18.3894 -63.0359 L 18.7221 -60.9957 L 18.6034 -60.7391 L 12.7018 -58.4528 L 12.4412 -58.5625 L 10.5863 -61.6191 L 10.0884 -62.6984 L 9.8324 -63.4544 L 9.7376 -63.4616 L 8.131 -65.1253 L 5.0163 -64.5431 L 4.7222 -64.4027 L 4.0323 -62.366 L 4.0677 -61.5729 L 3.8812 -59.4484 L 3.3678 -56.8664 L 3.1645 -56.67 L -3.1645 -56.67 L -3.3678 -56.8664 L -3.9933 -60.3866 L -4.0677 -61.5729 L -4.0333 -62.3703 L -4.1192 -62.4113 L -5.0163 -64.5431 L -8.131 -65.1253 L -8.4559 -65.1007 L -9.835 -63.4507 L -10.0884 -62.6984 L -11.3126 -60.2943 L -12.4412 -58.5625 L -12.7018 -58.4528 L -18.6034 -60.7391 L -18.7221 -60.9957 L -18.0337 -64.5042 L -17.6745 -65.6373 L -17.3544 -66.3684 L -17.4196 -66.4376 L -17.486 -68.7495 L -20.1801 -70.4176 L -20.492 -70.512 L -22.3739 -69.4716 L -22.8821 -68.8617 L -24.0557 -67.7516 L -26.5701 -65.855 L -26.8526 -65.8468 L -31.5298 -70.1106 L -31.5478 -70.3928 L -30.2406 -72.5649 L -29.1299 -74.0647 L -28.3316 -74.9086 L -28.3675 -74.9967 L -27.5942 -77.1765 L -29.5038 -79.7051 L -29.7605 -79.9058 L -31.8912 -79.6155 L -32.5854 -79.2303 L -34.0807 -78.6192 L -37.1105 -77.7589 L -37.3769 -77.8534 L -40.198 -83.5189 L -40.1128 -83.7885 L -37.2404 -85.9175 L -36.2116 -86.5129 L -35.4825 -86.8375 L -35.4841 -86.9326 L -33.9757 -88.6859 L -34.8428 -91.7336 L -35.0097 -92.0134 L -37.1014 -92.5125 L -37.8878 -92.404 L -39.5029 -92.3743 L -42.6389 -92.6667 L -42.8532 -92.851 L -43.4371 -99.153 L -43.2604 -99.3736 L -39.8128 -100.3213 L -38.6385 -100.5048 L -37.8413 -100.5441 L -37.8084 -100.6334 L -35.7685 -101.7233 L -35.4761 -104.8785 L -35.5307 -105.1997 L
|
||
|
|
</g>
|
||
|
|
<g id='z:12.2' inkscape:groupmode='layer' inkscape:label='Layer 30, z:12.2' transform='translate(280.0, 20927.6479)'>
|
||
|
|
<!--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 2.9287 -13.4324 L 3.4057 -14.5015 L 3.4837 -14.5985 L 3.6908 -15.1318 L 3.76 -15.2088 L 4.1079 -16.1163 L 4.1377 -16.1461 L 4.3174 -16.6392 L 4.7738 -17.1444 L 5.0132 -17.1941 L 10.3172 -14.6398 L 10.4276 -14.4217 L 10.3172 -13.7499 L 8.6392 -10.5874 L 7.502 -8.9833 L 7.5554 -8.2717 L 7.5135 -7.9768 L 9.4487 -5.5501 L 10.1588 -5.331 L 10.4274 -5.3149 L 12.6094 -6.164 L 13.4612 -6.3789 L 13.5856 -6.3783 L 14.1317 -6.5489 L 14.235 -6.5429 L 15.1615 -6.8367 L 15.2034 -6.832 L 15.7009 -6.9989 L 16.3805 -6.957 L 16.5686 -6.8009 L 17.8786 -1.0615 L 17.7768 -0.8391 L 17.1827 -0.5066 L 14.0351 0.0826 L 11.7008 0.2643 L 11.1778 0.7497 L 10.9211 0.9009 L 10.2304 3.9268 L 10.5019 4.6187 L 10.6568 4.8387 L 12.4439 5.8442 L 13.3801 6.5472 L 13.4573 6.6448 L 13.9311 6.9654 L 13.9908 7.0499 L 14.7982 7.5911 L 14.8206 7.6268 L 15.2613 7.9117 L 15.6523 8.4691 L 15.6475 8.7136 L 11.977 13.3162 L 11.7397 13.3753 L 11.1093 13.1182 L 8.3995 10.7785 L 7.0887 9.3129 L 6.3831 9.2066 L 6.1049 9.1001 L 3.3084 10.4468 L 2.9368 11.0904 L 2.8614 11.3486 L 3.2142 14.0438 L 3.1923 14.1687 L 3.2235 14.5431 L 3.1953 14.6643 L 3.2401 15.2346 L 3.2112 15.334 L 3.2915 16.3027 L 3.2776 16.3425 L 3.3296 16.8647 L 3.1376 17.5179 L 2.9435 17.6665 L -2.9435 17.6665 L -3.1376 17.5179 L -3.3296 16.8647 L -3.1493 12.9395 L -2.8614 11.3486 L -3.2182 10.7307 L -3.3084 10.4468 L -6.1049 9.1001 L -6.8398 9.2108 L -7.0887 9.3129 L -8.4667 10.8315 L -9.3604 11.5877 L -9.4728 11.6413 L -9.8907 12.0319 L -9.9864 12.0712 L -10.6937 12.738 L -10.7335 12.7519 L -11.1093 13.1182 L -11.7397 13.3753 L -11.977 13.3162 L -15.6475 8.7136 L -15.6523 8.4691 L -15.2613 7.9117 L -12.3774 5.7905 L -10.6568 4.8387 L -10.3961 4.1744 L -10.2304 3.9268 L -10.9211 0.9009 L -11.4658 0.3953 L -11.7008 0.2643 L -13.7473 0.1337 L -14.8958 -0.0934 L -15.0077 -0.1479 L -15.5737 -0.2311 L -15.6641 -0.2814 L -16.6264 -0.4187 L -16.6621 -0.4411 L -17.1827 -0.5066 L -17.7768 -0.8391 L -17.8786 -1.0615 L -16.5686 -6.8009 L -16.3805 -6.957 L -15.7009 -6.9989 L -12.868 -6.2471 L -10.4274 -5.3149 L -9.7456 -5.5253 L -9.4487 -5.5501 L -7.5135 -7.9768 L -7.4579 -8.7179 L -7.502 -8.9833 L -8.6759 -10.6647 L -9.2143 -11.7043 L -9.2415 -11.8257 L -9.5293 -12.3201 L -9.5464 -12.4222 L -10.039 -13.2601 L -10.0437 -13.302 L -10.3172 -13.7499 L -10.4276 -14.4217 L -10.3172 -14.6398 L -5.0132 -17.1941 L -4.7738 -17.1444 L -4.3174 -16.6392 L -2.9937 -13.6144 L -2.346 -11.4663 L -1.7564 -11.0644 L -1.5519 -10.8477 L 1.5519 -10.8477 L 2.166 -11.2663 L 2.346 -11.4663 z M 40.3894 -100.1164 L 42.8855 -99.379 L 43.0619 -99.1603 L 42.483 -92.9128 L 42.2694 -92.7302 L 39.7552 -92.4695 L 38.033 -92.45 L 36.3921 -92.6541 L 36.2912 -92.485 L 34.3113 -91.8597 L 33.4574 -88.8585 L 33.4507 -88.4545 L 34.8153 -87.0817 L 36.8773 -86.0603 L 38.1668 -85.1915 L 39.7653 -83.9289 L 39.8507 -83.6613 L 37.054 -78.0447 L 36.7889 -77.9516 L 34.9242 -78.4369 L 32.7373 -79.2207 L 31.281 -80.0038 L 31.1258 -79.8826 L 29.0537 -80.0147 L 27.1733 -77.5246 L 27.0211 -77.1503 L 27.7976 -75.3773 L 28.945 -74.199 L 29.9266 -72.8758 L 31.2745 -70.6493 L 31.2575 -70.3688 L 26.6207 -66.1419 L 26.3399 -66.1508 L 24.3062 -67.652 L 23.0203 -68.7978 L 21.9452 -70.0542 L 21.7567 -69.9971 L 19.8723 -70.8689 L 17.2193 -69.2262 L 16.9422 -68.9322 L 17.0258 -66.9984 L 17.67 -65.4851 L 18.2291 -63.3436 L 18.5599 -61.3336 L 18.4427 -61.0783 L 12.5921 -58.8117 L 12.3334 -58.9215 L 11.2823 -60.5364 L 10.1942 -62.589 L 9.6456 -64.1488 L 9.4492 -64.1637 L 8.007 -65.6573 L 4.9397 -65.084 L 4.5751 -64.9099 L 3.9545 -63.0765 L 3.9943 -61.1956 L 3.7563 -59.2338 L 3.3387 -57.2401 L 3.1372 -57.0443 L -3.1372 -57.0443 L -3.3387 -57.2401 L -3.903 -60.2616 L -4.0086 -61.4327 L -3.9567 -63.0854 L -4.1344 -63.1702 L -4.9397 -65.084 L -8.007 -65.6573 L -8.4099 -65.6267 L -9.6508 -64.1413 L -10.1942 -62.589 L -11.2238 -60.6297 L -12.3334 -58.9215 L -12.5921 -58.8117 L -18.4427 -61.0783 L -18.5599 -61.3336 L -18.2487 -63.2352 L -17.67 -65.4851 L -17.0246 -67.0075 L -17.1597 -67.1508 L -17.2193 -69.2262 L -19.8723 -70.8689 L -20.259 -70.9859 L -21.9528 -70.0491 L -23
|
||
|
|
</g>
|
||
|
|
<g id='z:12.6' inkscape:groupmode='layer' inkscape:label='Layer 31, z:12.6' transform='translate(280.0, 21601.5236)'>
|
||
|
|
<!--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 3.4034 -13.3893 L 3.4315 -13.4626 L 3.6494 -13.6803 L 3.7065 -13.8368 L 3.8752 -13.9881 L 3.9808 -14.2963 L 4.1306 -14.3159 L 4.2444 -14.5574 L 8.7351 -12.3948 L 8.8064 -12.2765 L 8.6953 -12.0259 L 8.6835 -11.8209 L 8.5071 -11.525 L 8.4743 -11.2322 L 8.386 -11.0766 L 8.3402 -10.803 L 7.8905 -9.6187 L 7.1629 -8.5772 L 7.2257 -7.6712 L 9.0867 -5.3375 L 9.956 -5.0747 L 11.1261 -5.5495 L 12.6649 -5.7109 L 12.971 -5.6763 L 13.129 -5.7293 L 13.3525 -5.6917 L 13.6592 -5.8013 L 13.768 -5.6964 L 14.0278 -5.758 L 15.1369 -0.8987 L 15.0889 -0.7691 L 14.8236 -0.6997 L 14.656 -0.5812 L 14.3147 -0.5346 L 14.0653 -0.3777 L 13.8886 -0.3497 L 13.6462 -0.2149 L 12.4398 0.1719 L 11.1719 0.2524 L 10.5027 0.8663 L 9.8385 3.7764 L 10.175 4.6199 L 11.4763 5.3898 L 12.3614 6.3411 L 12.5252 6.6021 L 12.6652 6.6926 L 12.7751 6.8907 L 13.052 7.0622 L 13.0379 7.2126 L 13.2479 7.3773 L 10.1403 11.2742 L 10.0091 11.3174 L 9.7895 11.1533 L 9.5922 11.0961 L 9.343 10.8584 L 9.0648 10.7612 L 8.9328 10.6405 L 8.1556 10.2316 L 7.6217 9.833 L 6.7682 8.8919 L 5.871 8.7515 L 3.1817 10.0466 L 2.732 10.8356 L 2.9414 12.333 L 2.7495 13.6182 L 2.6476 13.9089 L 2.6641 14.0748 L 2.5777 14.2843 L 2.6164 14.6077 L 2.4899 14.6904 L 2.4921 14.9574 L -2.4921 14.9574 L -2.6077 14.8817 L -2.6164 14.6077 L -2.6947 14.4178 L -2.6641 14.0748 L -2.7616 13.7967 L -2.7495 13.6182 L -2.827 13.3519 L -2.9357 12.0897 L -2.732 10.8356 L -3.1817 10.0466 L -5.871 8.7515 L -6.7682 8.8919 L -7.6165 9.8273 L -8.9328 10.6405 L -9.2237 10.7421 L -9.343 10.8584 L -9.5607 10.9215 L -9.7895 11.1533 L -9.933 11.106 L -10.1403 11.2742 L -13.2479 7.3773 L -13.2609 7.2398 L -13.052 7.0622 L -12.9524 6.8826 L -12.6652 6.6926 L -12.5085 6.443 L -12.3614 6.3411 L -12.2015 6.1145 L -11.2825 5.2426 L -10.175 4.6199 L -9.8385 3.7764 L -10.5027 0.8663 L -11.1719 0.2524 L -12.6783 0.1233 L -13.8886 -0.3497 L -14.1493 -0.5138 L -14.3147 -0.5346 L -14.4997 -0.6654 L -14.8236 -0.6997 L -14.8761 -0.8414 L -15.1369 -0.8987 L -14.0278 -5.758 L -13.9283 -5.8539 L -13.6592 -5.8013 L -13.4567 -5.8354 L -13.129 -5.7293 L -12.8363 -5.7624 L -12.6649 -5.7109 L -11.7873 -5.6797 L -11.1333 -5.5523 L -9.956 -5.0747 L -9.0867 -5.3375 L -7.2257 -7.6712 L -7.1629 -8.5772 L -7.8861 -9.6123 L -8.1336 -10.1823 L -8.386 -11.0766 L -8.4203 -11.3827 L -8.5071 -11.525 L -8.5202 -11.7512 L -8.6953 -12.0259 L -8.6173 -12.1553 L -8.7351 -12.3948 L -4.2444 -14.5574 L -4.1074 -14.5394 L -3.9808 -14.2963 L -3.8279 -14.1592 L -3.7065 -13.8368 L -3.498 -13.6286 L -3.4315 -13.4626 L -3.2461 -13.2562 L -2.7062 -12.4025 L -2.2399 -10.9479 L -1.4925 -10.4322 L 1.4925 -10.4322 L 2.2399 -10.9479 L 2.5983 -12.1588 z M -34.134 -87.3378 L -34.139 -87.6364 L -32.9391 -89.0311 L -33.7798 -91.9858 L -34.0268 -92.4 L -35.7009 -92.7985 L -38.1808 -92.5106 L -39.9059 -92.5683 L -41.9 -92.7937 L -42.1128 -92.9745 L -42.6867 -99.1676 L -42.5107 -99.3845 L -40.6743 -99.9486 L -38.9069 -100.3462 L -36.4031 -100.5234 L -36.2999 -100.8037 L -34.6772 -101.6707 L -34.3938 -104.7296 L -34.4745 -105.2051 L -35.8916 -106.1814 L -38.3081 -106.8088 L -39.3805 -107.2498 L -41.6738 -108.4164 L -41.8069 -108.6619 L -40.1049 -114.6441 L -39.8624 -114.7827 L -37.3509 -114.5732 L -36.1545 -114.3776 L -33.7558 -113.6384 L -33.5583 -113.8625 L -31.732 -114.0848 L -30.3627 -116.8347 L -30.2662 -117.3072 L -31.2349 -118.7295 L -33.2616 -120.1875 L -34.4976 -121.3923 L -35.8193 -122.9024 L -35.8548 -123.1793 L -32.1066 -128.1427 L -31.8305 -128.1844 L -28.5193 -126.4673 L -26.5496 -124.9115 L -26.2845 -125.049 L -24.5012 -124.5966 L -22.231 -126.6662 L -21.9703 -127.0719 L -22.3598 -128.7481 L -23.7229 -130.8397 L -24.6672 -132.9805 L -25.1272 -134.2952 L -25.0602 -134.5663 L -19.7722 -137.8406 L -19.4997 -137.7797 L -17.0324 -134.9824 L -15.7577 -132.8201 L -15.4608 -132.8526 L -13.9614 -131.7865 L -11.0968 -132.8962 L -10.7072 -133.1804 L -10.4649 -134.8841 L -10.9804 -137.3269 L -11.0821 -139.05 L -11.0416 -141.0564 L -10.8812 -141.285 L -4.7674 -142.4278 L -4.5353 -142.2726 L -3.8042 -140.4961 L -3.2451 -138.7729 L -2.8377 -136.2961 L -2.549 -136.2192 L -
|
||
|
|
</g>
|
||
|
|
<g id='z:13.0' inkscape:groupmode='layer' inkscape:label='Layer 32, z:13.0' transform='translate(280.0, 22275.3994)'>
|
||
|
|
<!--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 -33.4597 -87.5879 L -33.4664 -87.9884 L -32.4208 -89.2036 L -33.2483 -92.1119 L -33.5353 -92.5933 L -35.0006 -92.9415 L -38.3309 -92.5838 L -41.5306 -92.8573 L -41.7426 -93.0363 L -42.3115 -99.175 L -42.1359 -99.3899 L -39.041 -100.2467 L -35.684 -100.5131 L -35.5456 -100.8889 L -34.1316 -101.6444 L -33.8526 -104.6552 L -33.9464 -105.2078 L -35.1869 -106.0618 L -38.4216 -106.9313 L -41.3064 -108.3422 L -41.4394 -108.5857 L -39.7523 -114.5153 L -39.511 -114.6523 L -36.3155 -114.3332 L -33.089 -113.369 L -32.8242 -113.6695 L -31.2327 -113.8632 L -29.885 -116.5698 L -29.7728 -117.119 L -30.6211 -118.3635 L -33.3232 -120.3427 L -35.5035 -122.7004 L -35.5396 -122.9756 L -31.8244 -127.8953 L -31.5498 -127.9359 L -28.6855 -126.484 L -26.0252 -124.4194 L -25.6696 -124.6038 L -24.1157 -124.2096 L -21.8812 -126.2466 L -21.5782 -126.7181 L -21.9196 -128.185 L -23.7243 -131.0068 L -24.9057 -133.9929 L -24.84 -134.2625 L -19.5984 -137.5079 L -19.3277 -137.4466 L -17.1813 -135.058 L -15.4464 -132.1718 L -15.0483 -132.2153 L -13.7417 -131.2863 L -10.9222 -132.3786 L -10.4694 -132.7089 L -10.2579 -134.2 L -10.9213 -137.4831 L -10.9442 -140.6944 L -10.7855 -140.9221 L -4.7255 -142.0549 L -4.4953 -141.8999 L -3.3566 -138.8972 L -2.7816 -135.5792 L -2.3946 -135.476 L -1.5118 -134.1377 L 1.5118 -134.1377 L 2.0534 -134.2821 L 2.7893 -135.5962 L 3.3566 -138.8972 L 4.4953 -141.8999 L 4.7255 -142.0549 L 10.7855 -140.9221 L 10.9442 -140.6944 L 10.9213 -137.4831 L 10.2589 -134.1814 L 10.5825 -133.9454 L 10.9222 -132.3786 L 13.7417 -131.2863 L 14.2988 -131.2253 L 15.4598 -132.1848 L 17.1813 -135.058 L 19.3277 -137.4466 L 19.5984 -137.5079 L 24.84 -134.2625 L 24.9057 -133.9929 L 23.7243 -131.0068 L 21.9139 -128.1673 L 22.1304 -127.8303 L 21.8812 -126.2466 L 24.1157 -124.2096 L 24.6132 -123.9514 L 26.0423 -124.4267 L 28.6855 -126.484 L 31.5498 -127.9359 L 31.8244 -127.8953 L 35.5396 -122.9756 L 35.5035 -122.7004 L 33.3232 -120.3427 L 30.6093 -118.349 L 30.6894 -117.9566 L 29.885 -116.5698 L 31.2327 -113.8632 L 31.6034 -113.4427 L 33.1077 -113.3697 L 36.3155 -114.3332 L 39.511 -114.6523 L 39.7523 -114.5153 L 41.4394 -108.5857 L 41.3064 -108.3422 L 38.4216 -106.9313 L 35.1707 -106.0526 L 35.1037 -105.6577 L 33.8526 -104.6552 L 34.1316 -101.6444 L 34.3253 -101.1185 L 35.7017 -100.507 L 39.041 -100.2467 L 42.1359 -99.3899 L 42.3115 -99.175 L 41.7426 -93.0363 L 41.5306 -92.8573 L 38.3309 -92.5838 L 34.9822 -92.9387 L 34.777 -92.5947 L 33.2483 -92.1119 L 32.4208 -89.2036 L 32.4115 -88.6433 L 33.474 -87.5758 L 36.4938 -86.1268 L 39.0702 -84.2098 L 39.1562 -83.946 L 36.4083 -78.4273 L 36.1459 -78.337 L 33.0635 -79.2379 L 30.0691 -80.7785 L 29.7535 -80.5319 L 28.1536 -80.6339 L 26.3314 -78.221 L 26.1203 -77.7018 L 26.7254 -76.3226 L 29.0178 -73.8805 L 30.7278 -71.1623 L 30.7127 -70.8852 L 26.1568 -66.7319 L 25.8794 -66.7425 L 23.3306 -68.696 L 21.095 -71.2143 L 20.7116 -71.0983 L 19.2566 -71.7714 L 16.6858 -70.1796 L 16.3014 -69.7718 L 16.3674 -68.2672 L 17.6229 -65.1619 L 18.2354 -62.0095 L 18.1213 -61.7566 L 12.3726 -59.5295 L 12.1179 -59.6396 L 10.4468 -62.3819 L 9.2719 -65.5378 L 8.8725 -65.5681 L 7.7589 -66.7213 L 4.7867 -66.1657 L 4.2809 -65.9243 L 3.799 -64.4974 L 3.8479 -61.1483 L 3.2803 -57.9875 L 3.0825 -57.7929 L -3.0825 -57.7929 L -3.2803 -57.9875 L -3.8479 -61.1483 L -3.8034 -64.5155 L -4.1649 -64.6881 L -4.7867 -66.1657 L -7.7589 -66.7213 L -8.3177 -66.6789 L -9.2826 -65.5225 L -10.4468 -62.3819 L -12.1179 -59.6396 L -12.3726 -59.5295 L -18.1213 -61.7566 L -18.2354 -62.0095 L -17.6229 -65.1619 L -16.3651 -68.2857 L -16.6398 -68.5771 L -16.6858 -70.1796 L -19.2566 -71.7714 L -19.793 -71.9337 L -21.1105 -71.2039 L -23.3306 -68.696 L -25.8794 -66.7425 L -26.1568 -66.7319 L -30.7127 -70.8852 L -30.7278 -71.1623 L -29.0178 -73.8805 L -26.7165 -76.339 L -26.8674 -76.71 L -26.3314 -78.221 L -28.1536 -80.6339 L -28.5952 -80.979 L -30.0873 -80.7744 L -33.0635 -79.2379 L -36.1459 -78.337 L -36.4083 -78.4273 L -39.1562 -83.946 L -39.0702 -84.2098 L -36.4938 -86.1268 z' transform='scale(3.7, -3.7) translate(49.2741, 148.9752)' />
|
||
|
|
</g>
|
||
|
|
<g id='z:13.4' inkscape:groupmode='layer' inkscape:label='Layer 33, z:13.4' transform='translate(280.0, 22949.2751)'>
|
||
|
|
<!--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 9.0851 -66.2322 L 8.5842 -66.2702 L 7.6348 -67.2533 L 4.7102 -66.7066 L 4.1338 -66.4315 L 3.7212 -65.2079 L 3.7359 -64.2594 L 3.7209 -64.2284 L 3.7344 -63.7076 L 3.7178 -63.678 L 3.7332 -62.9672 L 3.7177 -62.9428 L 3.7495 -61.0047 L 3.2511 -58.3613 L 3.0551 -58.1672 L -3.0551 -58.1672 L -3.2511 -58.3613 L -3.7495 -61.0047 L -3.7268 -65.2306 L -4.1801 -65.447 L -4.7102 -66.7066 L -7.6348 -67.2533 L -8.2717 -67.205 L -9.0985 -66.2131 L -9.4273 -65.3233 L -9.4526 -65.2998 L -9.6281 -64.8094 L -9.6543 -64.7877 L -9.8967 -64.1193 L -9.9199 -64.1021 L -10.5904 -62.2835 L -12.0101 -59.9986 L -12.2629 -59.8884 L -17.9606 -62.0957 L -18.0732 -62.3475 L -17.583 -64.9925 L -16.0353 -68.9247 L -16.3798 -69.2903 L -16.4191 -70.6564 L -18.9487 -72.2227 L -19.56 -72.4077 L -20.6893 -71.7814 L -21.3174 -71.0705 L -21.3494 -71.0577 L -21.6903 -70.6638 L -21.7225 -70.653 L -22.19 -70.1174 L -22.2179 -70.1097 L -23.5001 -68.6561 L -25.6492 -67.0383 L -25.9248 -67.0269 L -30.4404 -71.1434 L -30.4544 -71.4189 L -29.0418 -73.7081 L -26.1781 -76.8158 L -26.3674 -77.2811 L -25.9105 -78.5691 L -27.7035 -80.9435 L -28.2067 -81.3368 L -29.486 -81.1607 L -30.3284 -80.7248 L -30.3629 -80.7244 L -30.823 -80.4802 L -30.857 -80.4818 L -31.4864 -80.1512 L -31.5151 -80.1542 L -33.2359 -79.2619 L -35.8243 -78.5297 L -36.0854 -78.6187 L -38.809 -84.0884 L -38.7226 -84.3503 L -36.5784 -85.9747 L -32.7855 -87.838 L -32.7938 -88.3403 L -31.9025 -89.3762 L -32.7168 -92.238 L -33.0439 -92.7865 L -34.3004 -93.0845 L -35.2434 -92.9823 L -35.2757 -92.9944 L -35.793 -92.9329 L -35.8241 -92.9467 L -36.5304 -92.8658 L -36.5561 -92.8789 L -38.483 -92.6685 L -41.1611 -92.9208 L -41.3725 -93.098 L -41.9363 -99.1823 L -41.7611 -99.3953 L -39.1749 -100.1354 L -34.965 -100.5028 L -34.7913 -100.9741 L -33.586 -101.6182 L -33.3114 -104.5808 L -33.4183 -105.2105 L -34.4823 -105.9422 L -35.9289 -106.3401 L -35.9529 -106.3641 L -36.6408 -106.5438 L -36.66 -106.5654 L -38.5327 -107.0652 L -40.9389 -108.268 L -41.072 -108.5096 L -39.3998 -114.3866 L -39.1595 -114.522 L -36.4806 -114.2779 L -32.4222 -113.0996 L -32.0901 -113.4764 L -30.7334 -113.6415 L -29.4072 -116.3049 L -29.2794 -116.9307 L -30.0072 -117.9974 L -30.773 -118.5572 L -30.7887 -118.5879 L -31.2124 -118.8909 L -31.2261 -118.9221 L -31.8026 -119.3381 L -31.8128 -119.3652 L -33.3785 -120.5078 L -35.1877 -122.4985 L -35.2244 -122.7718 L -31.5422 -127.648 L -31.2692 -127.6874 L -28.8593 -126.492 L -25.5007 -123.9273 L -25.0548 -124.1586 L -23.7302 -123.8225 L -21.5314 -125.827 L -21.1862 -126.3643 L -21.4795 -127.6219 L -21.9913 -128.4205 L -21.9949 -128.4549 L -22.2805 -128.8905 L -22.282 -128.9245 L -22.6693 -129.5207 L -22.669 -129.5496 L -23.7162 -131.1806 L -24.6841 -133.6905 L -24.6197 -133.9587 L -19.4246 -137.1753 L -19.1558 -137.1135 L -17.3405 -135.1283 L -15.1352 -131.5234 L -14.6358 -131.5781 L -13.522 -130.7862 L -10.7476 -131.861 L -10.2316 -132.2373 L -10.0509 -133.516 L -10.2396 -134.4456 L -10.2306 -134.4788 L -10.3395 -134.9882 L -10.3286 -135.0205 L -10.4744 -135.7163 L -10.4637 -135.7431 L -10.851 -137.6423 L -10.8469 -140.3324 L -10.6899 -140.5592 L -4.6836 -141.6819 L -4.4553 -141.5271 L -3.4797 -139.0203 L -2.7256 -134.8622 L -2.2402 -134.7328 L -1.4877 -133.592 L 1.4877 -133.592 L 2.1048 -133.7565 L 2.7352 -134.8835 L 2.9979 -136.3606 L 3.0197 -136.3867 L 3.1351 -137.0883 L 3.1548 -137.1094 L 3.4797 -139.0203 L 4.4553 -141.5271 L 4.6836 -141.6819 L 10.6899 -140.5592 L 10.8469 -140.3324 L 10.851 -137.6423 L 10.0522 -133.4926 L 10.458 -133.1966 L 10.7476 -131.861 L 13.522 -130.7862 L 14.1569 -130.7167 L 15.1519 -131.5398 L 15.6386 -132.354 L 15.6678 -132.3725 L 15.9304 -132.8223 L 15.9602 -132.8388 L 16.3212 -133.4512 L 16.3472 -133.4638 L 17.3405 -135.1283 L 19.1558 -137.1135 L 19.4246 -137.1753 L 24.6197 -133.9587 L 24.6841 -133.6905 L 23.7162 -131.1806 L 21.4723 -127.5997 L 21.7438 -127.177 L 21.5314 -125.827 L 23.7302 -123.8225 L 24.2971 -123.5284 L 25.5222 -123.9365 L 26.2702 -124.5198 L 26.304 -124.5266 L 26.7115 -124.8511 L 26.7451 -124.8558 L 27.3031 -125.2964 L 27.3319 -125.
|
||
|
|
</g>
|
||
|
|
<g id='z:13.8' inkscape:groupmode='layer' inkscape:label='Layer 34, z:13.8' transform='translate(280.0, 23623.1508)'>
|
||
|
|
<!--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 9.9116 -64.3436 L 9.6179 -65.13 L 9.5871 -65.1555 L 9.3809 -65.7129 L 9.3514 -65.7405 L 8.8982 -66.9267 L 8.2958 -66.9724 L 7.5108 -67.7853 L 4.6337 -67.2475 L 3.9867 -66.9387 L 3.6434 -65.9183 L 3.6469 -65.1106 L 3.6274 -65.0701 L 3.6385 -64.6395 L 3.6153 -64.598 L 3.6281 -64.0103 L 3.6032 -63.9711 L 3.6201 -63.1422 L 3.5976 -63.1104 L 3.6251 -61.8771 L 3.6128 -61.8614 L 3.6406 -60.8605 L 3.2219 -58.735 L 3.0278 -58.5415 L -3.0278 -58.5415 L -3.2219 -58.735 L -3.6406 -60.8605 L -3.6201 -63.1422 L -3.6383 -63.1709 L -3.6281 -64.0103 L -3.6476 -64.0452 L -3.6385 -64.6395 L -3.6561 -64.6759 L -3.6501 -65.9456 L -4.1953 -66.2059 L -4.6337 -67.2475 L -7.5108 -67.7853 L -8.2256 -67.7311 L -8.9143 -66.9036 L -9.2028 -66.1492 L -9.2357 -66.1185 L -9.3809 -65.7129 L -9.4175 -65.6826 L -9.6179 -65.13 L -9.6552 -65.1024 L -9.9389 -64.3234 L -9.9714 -64.3019 L -10.3913 -63.1419 L -10.4084 -63.1317 L -10.744 -62.1884 L -11.9023 -60.3576 L -12.1532 -60.2473 L -17.7999 -62.4349 L -17.911 -62.6854 L -17.5336 -64.8187 L -16.6902 -66.9389 L -16.6968 -66.9722 L -16.3841 -67.7512 L -16.3896 -67.7908 L -16.1665 -68.3417 L -16.1697 -68.382 L -15.7055 -69.5638 L -16.1199 -70.0035 L -16.1523 -71.1331 L -18.6409 -72.6739 L -19.327 -72.8816 L -20.2682 -72.3588 L -20.8097 -71.7595 L -20.8515 -71.7427 L -21.1333 -71.417 L -21.1784 -71.402 L -21.565 -70.9591 L -21.6097 -70.9468 L -22.1556 -70.3229 L -22.1937 -70.3146 L -23.0042 -69.3847 L -23.0239 -69.3813 L -23.6776 -68.6229 L -25.419 -67.3342 L -25.6928 -67.322 L -30.168 -71.4016 L -30.1811 -71.6754 L -29.0586 -73.5283 L -27.5062 -75.2006 L -27.5003 -75.2341 L -26.9273 -75.8475 L -26.9182 -75.8865 L -26.5111 -76.3195 L -26.4996 -76.3582 L -25.6397 -77.2926 L -25.8673 -77.8522 L -25.4895 -78.9173 L -27.2534 -81.2531 L -27.8182 -81.6946 L -28.8847 -81.547 L -29.6061 -81.1839 L -29.6511 -81.1833 L -30.0316 -80.9814 L -30.0791 -80.9837 L -30.5995 -80.7103 L -30.6457 -80.7151 L -31.3801 -80.3305 L -31.4186 -80.3364 L -32.5104 -79.7621 L -32.5299 -79.7661 L -33.4135 -79.2951 L -35.5028 -78.7224 L -35.7625 -78.81 L -38.4618 -84.2307 L -38.3751 -84.4908 L -36.659 -85.813 L -34.6074 -86.8117 L -34.5898 -86.8408 L -33.8339 -87.2057 L -33.8113 -87.2388 L -33.2752 -87.4955 L -33.2505 -87.5275 L -32.1112 -88.0881 L -32.1213 -88.6922 L -31.3842 -89.5488 L -32.1852 -92.3641 L -32.5524 -92.9798 L -33.6001 -93.2275 L -34.404 -93.1494 L -34.4462 -93.1652 L -34.8739 -93.1144 L -34.9174 -93.1336 L -35.5015 -93.0667 L -35.5428 -93.0878 L -36.3666 -92.9945 L -36.4003 -93.014 L -37.6258 -92.8728 L -37.6425 -92.8836 L -38.6366 -92.7636 L -40.7917 -92.9843 L -41.0023 -93.1598 L -41.561 -99.1896 L -41.3863 -99.4007 L -39.3084 -100.0138 L -37.0346 -100.2039 L -37.0077 -100.2246 L -36.171 -100.2919 L -36.138 -100.3145 L -35.5454 -100.3603 L -35.5108 -100.3812 L -34.2459 -100.4924 L -34.0371 -101.0593 L -33.0403 -101.5919 L -32.7703 -104.5064 L -32.8902 -105.2131 L -33.7777 -105.8226 L -34.5555 -106.0402 L -34.5892 -106.0701 L -35.0064 -106.1773 L -35.0399 -106.2109 L -35.6087 -106.3595 L -35.6396 -106.3941 L -36.4415 -106.6047 L -36.4659 -106.635 L -37.6596 -106.9461 L -37.6713 -106.9622 L -38.6417 -107.2094 L -40.5715 -108.1938 L -40.7045 -108.4334 L -39.0473 -114.2579 L -38.808 -114.3917 L -36.6491 -114.2127 L -34.4601 -113.5685 L -34.4275 -113.5782 L -33.623 -113.3386 L -33.584 -113.3478 L -33.0149 -113.1765 L -32.9751 -113.1834 L -31.7555 -112.8302 L -31.3559 -113.2834 L -30.2341 -113.4199 L -28.9295 -116.0401 L -28.786 -116.7424 L -29.3934 -117.6313 L -30.0401 -118.1152 L -30.0606 -118.1553 L -30.411 -118.4059 L -30.4301 -118.4494 L -30.9068 -118.7934 L -30.9231 -118.8368 L -31.5948 -119.3229 L -31.6066 -119.36 L -32.6073 -120.0813 L -32.6124 -120.1005 L -33.428 -120.6815 L -34.8718 -122.2966 L -34.9093 -122.5681 L -31.26 -127.4006 L -30.9885 -127.4389 L -29.04 -126.4921 L -27.2316 -125.1007 L -27.1977 -125.0979 L -26.534 -124.5839 L -26.4944 -124.5784 L -26.0256 -124.213 L -25.986 -124.2051 L -24.9763 -123.4352 L -24.44 -123.7134 L -23.3447 -123.4355 L -21.1816 -125.4074 L -20.7941 -126.0106 L -21.0394
|
||
|
|
</g>
|
||
|
|
<g id='z:14.2' inkscape:groupmode='layer' inkscape:label='Layer 35, z:14.2' transform='translate(280.0, 24297.0266)'>
|
||
|
|
<!--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 9.5713 -65.5188 L 9.3392 -66.1406 L 9.2967 -66.1758 L 9.1337 -66.6165 L 9.0957 -66.6519 L 8.7114 -67.6211 L 8.0075 -67.6746 L 7.3868 -68.3173 L 4.5571 -67.7884 L 3.8396 -67.4459 L 3.5656 -66.6288 L 3.568 -66.2606 L 3.5497 -66.2156 L 3.558 -65.9619 L 3.5338 -65.9118 L 3.5426 -65.5714 L 3.5128 -65.5181 L 3.5229 -65.0533 L 3.4887 -64.9994 L 3.5021 -64.344 L 3.4663 -64.2935 L 3.488 -63.3184 L 3.4567 -63.2782 L 3.5007 -61.6947 L 3.4865 -61.6781 L 3.5224 -60.7158 L 3.1928 -59.1087 L 3.0005 -58.9158 L -3.0005 -58.9158 L -3.1928 -59.1087 L -3.5224 -60.7158 L -3.5007 -61.6947 L -3.5126 -61.71 L -3.488 -63.3184 L -3.514 -63.3551 L -3.5021 -64.344 L -3.531 -64.3897 L -3.5229 -65.0533 L -3.5498 -65.1015 L -3.5426 -65.5714 L -3.5652 -65.6181 L -3.5735 -66.6607 L -4.2106 -66.9648 L -4.5571 -67.7884 L -7.3868 -68.3173 L -8.1796 -68.2572 L -8.7302 -67.5942 L -8.861 -67.25 L -8.8943 -67.2146 L -8.9783 -66.9751 L -9.0189 -66.9372 L -9.1337 -66.6165 L -9.1807 -66.5776 L -9.3392 -66.1406 L -9.3905 -66.1026 L -9.6148 -65.4867 L -9.6664 -65.4525 L -9.9984 -64.5354 L -10.0422 -64.5093 L -10.5732 -63.0168 L -10.5924 -63.0064 L -10.9065 -62.0962 L -11.7945 -60.7166 L -12.0435 -60.6062 L -17.6392 -62.774 L -17.7488 -63.0234 L -17.4757 -64.6411 L -17.1018 -65.5459 L -17.1074 -65.5646 L -16.5034 -67.0554 L -16.5144 -67.0991 L -16.146 -68.0169 L -16.1565 -68.0699 L -15.9092 -68.6858 L -15.9169 -68.7404 L -15.7404 -69.176 L -15.7446 -69.2277 L -15.3757 -70.2029 L -15.8599 -70.7166 L -15.8856 -71.6098 L -18.3331 -73.1252 L -19.0941 -73.3555 L -19.847 -72.9362 L -20.0933 -72.6625 L -20.1372 -72.6416 L -20.302 -72.4485 L -20.3535 -72.4278 L -20.5764 -72.1703 L -20.6343 -72.151 L -20.9399 -71.8007 L -21.0016 -71.7839 L -21.4332 -71.2906 L -21.4936 -71.2773 L -22.1346 -70.5421 L -22.1848 -70.5335 L -23.2191 -69.3336 L -23.2407 -69.3309 L -23.8625 -68.5956 L -25.1888 -67.63 L -25.4609 -67.617 L -29.8956 -71.6598 L -29.9078 -71.9319 L -29.0687 -73.3417 L -28.3931 -74.0504 L -28.3917 -74.0698 L -27.2899 -75.2418 L -27.2844 -75.2865 L -26.6093 -76.0092 L -26.6 -76.0625 L -26.1469 -76.5475 L -26.1343 -76.6012 L -25.8124 -76.9436 L -25.7976 -76.9933 L -25.1014 -77.7694 L -25.3673 -78.4233 L -25.0686 -79.2655 L -26.8034 -81.5627 L -27.4298 -82.0523 L -28.2834 -81.9333 L -28.6119 -81.7671 L -28.6603 -81.7634 L -28.8838 -81.6429 L -28.9393 -81.6423 L -29.2402 -81.4826 L -29.3012 -81.4855 L -29.7127 -81.2694 L -29.7762 -81.2759 L -30.3569 -80.9718 L -30.418 -80.9813 L -31.2813 -80.5272 L -31.3312 -80.5374 L -32.7291 -79.7922 L -32.7503 -79.7975 L -33.5957 -79.3364 L -35.1812 -78.9151 L -35.4397 -79.0013 L -38.1145 -84.3731 L -38.0275 -84.6312 L -36.7358 -85.6427 L -35.8499 -86.0595 L -35.8415 -86.0771 L -34.3908 -86.772 L -34.3695 -86.8116 L -33.4789 -87.2417 L -33.4509 -87.288 L -32.8533 -87.5765 L -32.8222 -87.622 L -32.3983 -87.825 L -32.3665 -87.8661 L -31.4369 -88.3382 L -31.4487 -89.0441 L -30.8659 -89.7214 L -31.6537 -92.4902 L -32.061 -93.1731 L -32.8999 -93.3705 L -33.5647 -93.3166 L -33.6167 -93.336 L -33.9549 -93.2958 L -34.0107 -93.3206 L -34.4725 -93.2677 L -34.5294 -93.2967 L -35.1807 -93.2229 L -35.2343 -93.2539 L -36.2033 -93.1423 L -36.2462 -93.1698 L -37.8189 -92.9799 L -37.8367 -92.9925 L -38.7916 -92.8679 L -40.4223 -93.0479 L -40.6321 -93.2216 L -41.1858 -99.1969 L -41.0115 -99.4062 L -39.4416 -99.8827 L -38.4649 -99.9514 L -38.4507 -99.9647 L -36.847 -100.0886 L -36.8128 -100.1179 L -35.827 -100.1972 L -35.7842 -100.2303 L -35.1226 -100.2834 L -35.0772 -100.3146 L -34.6086 -100.3508 L -34.5642 -100.3776 L -33.5268 -100.4821 L -33.2828 -101.1445 L -32.4947 -101.5656 L -32.2291 -104.432 L -32.3621 -105.2158 L -33.0731 -105.703 L -33.7124 -105.8928 L -33.754 -105.9298 L -34.0838 -106.0145 L -34.1269 -106.0577 L -34.5767 -106.1752 L -34.6192 -106.2228 L -35.2532 -106.3893 L -35.292 -106.4375 L -36.2359 -106.6835 L -36.2659 -106.7247 L -37.801 -107.1157 L -37.8131 -107.1339 L -38.7485 -107.3626 L -40.204 -108.1196 L -40.337 -108.3573 L -38.6947 -114.1292 L -38.4566 -114.2613 L -36.8206 -114.1386 L -35.885 -113.8498 L -35.867 -113.857
|
||
|
|
</g>
|
||
|
|
<g id='z:14.6' inkscape:groupmode='layer' inkscape:label='Layer 36, z:14.6' transform='translate(280.0, 24970.9023)'>
|
||
|
|
<!--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 -36.1613 -85.7727 L -34.1316 -86.7277 L -34.1062 -86.7808 L -33.0396 -87.2917 L -33.0053 -87.3555 L -32.3505 -87.6717 L -32.3121 -87.7352 L -31.8727 -87.9473 L -31.8331 -88.0053 L -31.5214 -88.1546 L -31.4826 -88.2047 L -31.254 -88.3126 L -31.2175 -88.3539 L -30.7627 -88.5884 L -30.7761 -89.396 L -30.3477 -89.894 L -31.1222 -92.6163 L -31.5695 -93.3663 L -32.1996 -93.5135 L -32.7253 -93.4837 L -32.7872 -93.5068 L -33.0359 -93.4773 L -33.104 -93.5075 L -33.4436 -93.4686 L -33.516 -93.5056 L -33.9949 -93.4514 L -34.0684 -93.4938 L -34.7809 -93.4117 L -34.8498 -93.456 L -36.0062 -93.3164 L -36.0601 -93.3544 L -38.2477 -93.069 L -38.2618 -93.0798 L -38.9476 -92.9805 L -40.0528 -93.1114 L -40.2619 -93.2833 L -40.8106 -99.2042 L -40.6366 -99.4116 L -39.5743 -99.7434 L -38.8701 -99.785 L -38.8589 -99.7965 L -36.6213 -99.9537 L -36.5784 -99.994 L -35.3992 -100.0851 L -35.3442 -100.1322 L -34.6194 -100.1906 L -34.5607 -100.2359 L -34.0743 -100.2749 L -34.0164 -100.3147 L -33.6719 -100.3413 L -33.6176 -100.374 L -32.8077 -100.4717 L -32.5285 -101.2297 L -31.949 -101.5393 L -31.6879 -104.3575 L -31.834 -105.2185 L -32.3685 -105.5833 L -32.6435 -105.6653 L -32.6883 -105.7003 L -32.8694 -105.7455 L -32.9188 -105.7894 L -33.1613 -105.8517 L -33.2139 -105.9045 L -33.5446 -105.9909 L -33.5988 -106.0515 L -34.065 -106.174 L -34.1182 -106.2401 L -34.8121 -106.4209 L -34.8605 -106.4871 L -35.9892 -106.7747 L -36.0257 -106.8296 L -38.1687 -107.3537 L -38.178 -107.3689 L -38.8533 -107.524 L -39.8366 -108.0453 L -39.9695 -108.2812 L -38.3422 -114.0004 L -38.1051 -114.131 L -36.9946 -114.0566 L -36.3229 -113.841 L -36.3084 -113.8477 L -34.165 -113.1859 L -34.1105 -113.2081 L -32.9781 -112.8671 L -32.9097 -112.8911 L -32.2128 -112.6837 L -32.1417 -112.7047 L -31.674 -112.5654 L -31.6057 -112.5816 L -31.2748 -112.482 L -31.2124 -112.4929 L -30.4219 -112.2914 L -29.8877 -112.8973 L -29.2355 -112.9767 L -27.974 -115.5103 L -27.7992 -116.3659 L -28.1658 -116.8991 L -28.3926 -117.075 L -28.4218 -117.1237 L -28.5743 -117.2313 L -28.6045 -117.2901 L -28.8081 -117.4358 L -28.8381 -117.504 L -29.1153 -117.704 L -29.1439 -117.7802 L -29.5343 -118.0627 L -29.5601 -118.1436 L -30.1419 -118.5629 L -30.163 -118.6421 L -31.1116 -119.318 L -31.1259 -119.3824 L -32.9348 -120.6453 L -32.9379 -120.6628 L -33.5117 -121.0514 L -34.2402 -121.8927 L -34.2789 -122.1606 L -30.6955 -126.9058 L -30.4272 -126.9419 L -29.4186 -126.4714 L -28.8702 -126.0277 L -28.8542 -126.0287 L -27.0946 -124.6374 L -27.0358 -124.6383 L -26.103 -123.9112 L -26.0306 -123.909 L -25.4557 -123.4638 L -25.3818 -123.4577 L -24.996 -123.1589 L -24.9264 -123.1493 L -24.6539 -122.9369 L -24.5917 -122.9245 L -23.9274 -122.451 L -23.2104 -122.8231 L -22.5736 -122.6615 L -20.482 -124.5683 L -20.01 -125.303 L -20.1591 -125.9326 L -20.3071 -126.1785 L -20.3167 -126.2345 L -20.4201 -126.3899 L -20.427 -126.4556 L -20.5642 -126.6651 L -20.5676 -126.7396 L -20.7538 -127.0262 L -20.7529 -127.1075 L -21.0149 -127.512 L -21.0097 -127.5967 L -21.4007 -128.1979 L -21.3919 -128.2794 L -22.0323 -129.2523 L -22.0223 -129.3175 L -23.2529 -131.1486 L -23.2495 -131.166 L -23.6441 -131.7356 L -24.0195 -132.7833 L -23.9588 -133.0471 L -18.9032 -136.1774 L -18.64 -136.1141 L -17.8695 -135.3111 L -17.5183 -134.6992 L -17.5031 -134.6944 L -16.3649 -132.7614 L -16.3098 -132.741 L -15.7026 -131.726 L -15.6359 -131.6978 L -15.2606 -131.075 L -15.1939 -131.0426 L -14.9421 -130.6246 L -14.8807 -130.5905 L -14.7033 -130.294 L -14.6498 -130.26 L -14.2014 -129.5785 L -13.3984 -129.6664 L -12.863 -129.2857 L -10.2238 -130.3082 L -9.5182 -130.8228 L -9.4299 -131.4638 L -9.4791 -131.7465 L -9.4678 -131.8022 L -9.508 -131.9844 L -9.4907 -132.0482 L -9.5431 -132.2931 L -9.5193 -132.3638 L -9.5893 -132.6983 L -9.5591 -132.7738 L -9.6573 -133.2457 L -9.6219 -133.3227 L -9.7693 -134.0246 L -9.7316 -134.0974 L -9.9773 -135.2359 L -9.9445 -135.2931 L -10.4305 -137.4451 L -10.421 -137.4601 L -10.5832 -138.1338 L -10.5548 -139.2464 L -10.4029 -139.4705 L -4.5579 -140.5631 L -4.3354 -140.409 L -3.907 -139.3818 L -3.8006 -138.68
|
||
|
|
</g>
|
||
|
|
<g id='z:15.0' inkscape:groupmode='layer' inkscape:label='Layer 37, z:15.0' transform='translate(280.0, 25644.7781)'>
|
||
|
|
<!--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 -33.7122 -86.7848 L -32.4133 -87.3959 L -32.3709 -87.4845 L -31.6883 -87.8114 L -31.6411 -87.8994 L -31.222 -88.1018 L -31.1733 -88.1824 L -30.892 -88.3181 L -30.8439 -88.3886 L -30.6445 -88.4841 L -30.5986 -88.5433 L -30.4523 -88.6124 L -30.41 -88.6603 L -30.0884 -88.8385 L -30.1036 -89.7479 L -29.8294 -90.0666 L -30.5907 -92.7424 L -31.078 -93.5596 L -31.4994 -93.6565 L -31.8859 -93.6508 L -31.9577 -93.6777 L -32.1168 -93.6587 L -32.1974 -93.6944 L -32.4146 -93.6695 L -32.5026 -93.7145 L -32.8091 -93.6798 L -32.9025 -93.7337 L -33.3584 -93.6812 L -33.4535 -93.7422 L -34.1935 -93.6529 L -34.2835 -93.7163 L -35.6835 -93.5337 L -35.7524 -93.5866 L -39.1046 -93.1011 L -39.6834 -93.175 L -39.8918 -93.3451 L -40.4354 -99.2115 L -40.2618 -99.417 L -39.7065 -99.596 L -36.2641 -99.7994 L -36.2096 -99.8554 L -34.7776 -99.956 L -34.7061 -100.0233 L -33.9515 -100.0816 L -33.8757 -100.1466 L -33.4118 -100.1839 L -33.3372 -100.2415 L -33.0259 -100.2665 L -32.9556 -100.3148 L -32.7352 -100.3318 L -32.671 -100.3705 L -32.5096 -100.382 L -32.4529 -100.4114 L -32.0886 -100.4614 L -31.7742 -101.3149 L -31.4034 -101.513 L -31.1467 -104.2831 L -31.306 -105.2212 L -31.6638 -105.4637 L -31.8592 -105.5292 L -31.9104 -105.5692 L -32.0263 -105.5981 L -32.0836 -105.649 L -32.2388 -105.6889 L -32.301 -105.7513 L -32.5126 -105.8065 L -32.5784 -105.8803 L -32.8767 -105.9586 L -32.9443 -106.0426 L -33.3884 -106.1583 L -33.455 -106.2496 L -34.1774 -106.4336 L -34.2383 -106.5253 L -35.6098 -106.8607 L -35.6549 -106.9349 L -38.9562 -107.6931 L -39.4692 -107.9711 L -39.602 -108.205 L -37.9897 -113.8717 L -37.7536 -114.0006 L -37.1711 -113.9669 L -33.8877 -112.9131 L -33.8167 -112.9456 L -32.445 -112.5221 L -32.3541 -112.5591 L -31.6293 -112.3408 L -31.5352 -112.374 L -31.0891 -112.2412 L -30.9988 -112.268 L -30.6995 -112.1788 L -30.6165 -112.1985 L -30.4048 -112.1347 L -30.331 -112.1476 L -30.1763 -112.1001 L -30.1128 -112.107 L -29.7551 -112.022 L -29.1536 -112.7043 L -28.7362 -112.7551 L -27.4962 -115.2454 L -27.3058 -116.1776 L -27.5519 -116.5331 L -27.8414 -116.7893 L -27.8764 -116.8575 L -28.0067 -116.9507 L -28.0422 -117.0314 L -28.2195 -117.1593 L -28.2542 -117.2519 L -28.5041 -117.4327 L -28.5368 -117.5354 L -28.9091 -117.8037 L -28.9383 -117.9129 L -29.5454 -118.3454 L -29.5691 -118.4529 L -30.7267 -119.2611 L -30.742 -119.3466 L -33.5465 -121.2462 L -33.9244 -121.6908 L -33.9638 -121.9568 L -30.4133 -126.6584 L -30.1466 -126.6934 L -29.6156 -126.4515 L -26.9346 -124.2827 L -26.8566 -124.2874 L -25.7306 -123.397 L -25.6324 -123.3986 L -25.0355 -122.9333 L -24.9357 -122.9302 L -24.5677 -122.6453 L -24.4738 -122.6376 L -24.2269 -122.4464 L -24.1424 -122.4347 L -23.968 -122.2988 L -23.8946 -122.2841 L -23.7675 -122.1839 L -23.7058 -122.1674 L -23.4029 -121.9589 L -22.5956 -122.3779 L -22.1881 -122.2745 L -20.1322 -124.1487 L -19.6179 -124.9492 L -19.719 -125.3695 L -19.8192 -125.5495 L -19.8302 -125.6136 L -19.8963 -125.713 L -19.9043 -125.7892 L -19.9922 -125.9233 L -19.9961 -126.0113 L -20.1152 -126.1947 L -20.1142 -126.2935 L -20.2819 -126.5524 L -20.2753 -126.6599 L -20.5255 -127.0447 L -20.5133 -127.157 L -20.9231 -127.7796 L -20.9064 -127.8884 L -21.6939 -129.0602 L -21.6773 -129.1455 L -23.6061 -131.9299 L -23.7979 -132.4809 L -23.7385 -132.7433 L -18.7294 -135.8448 L -18.4681 -135.781 L -18.0603 -135.3637 L -16.3438 -132.3729 L -16.2694 -132.349 L -15.5411 -131.112 L -15.449 -131.078 L -15.0604 -130.4285 L -14.9685 -130.3896 L -14.7283 -129.991 L -14.6435 -129.9499 L -14.4824 -129.6824 L -14.4078 -129.641 L -14.2943 -129.4512 L -14.2311 -129.411 L -14.1488 -129.2717 L -14.0972 -129.234 L -13.8901 -128.9302 L -12.986 -129.0292 L -12.6433 -128.7856 L -10.0492 -129.7905 L -9.2805 -130.3512 L -9.2229 -130.7797 L -9.2641 -131.1641 L -9.2441 -131.238 L -9.2776 -131.3947 L -9.2495 -131.4782 L -9.2943 -131.6923 L -9.2576 -131.784 L -9.3205 -132.086 L -9.2754 -132.1839 L -9.3698 -132.6331 L -9.3178 -132.7334 L -9.475 -133.462 L -9.4202 -133.5575 L -9.7312 -134.9346 L -9.6849 -135.0081 L -10.4776 -138.3013 L -10.4575 -138.8844 L -10.3
|
||
|
|
</g>
|
||
|
|
<g id='z:15.4' inkscape:groupmode='layer' inkscape:label='Layer 38, z:15.4' transform='translate(280.0, 26318.6538)'>
|
||
|
|
<!--id='layerTextTemplate' must be there so that the text could be removed if necessary-->
|
||
|
|
<text id='layerTextTemplate15.4' fill='#000' stroke='none' y='15' >Layer 38, z:15.4</text>
|
||
|
|
<path d='M -32.8192 -86.9817 L -31.318 -87.6677 L -31.2631 -87.7968 L -30.6949 -88.0641 L -30.6356 -88.1882 L -30.3371 -88.3312 L -30.2769 -88.4433 L -30.0936 -88.5318 L -30.0344 -88.6296 L -29.9114 -88.689 L -29.8548 -88.7719 L -29.7676 -88.8136 L -29.7147 -88.882 L -29.4142 -89.0886 L -29.431 -90.0998 L -29.3111 -90.2392 L -30.0592 -92.8685 L -30.5866 -93.7529 L -31.1978 -93.8402 L -31.2907 -93.8814 L -31.3857 -93.8705 L -31.4893 -93.9234 L -31.6233 -93.9082 L -31.7365 -93.9736 L -31.936 -93.9506 L -32.0572 -94.0284 L -32.3808 -93.9893 L -32.5069 -94.0782 L -33.1192 -93.9983 L -33.2429 -94.0933 L -34.8474 -93.861 L -34.9185 -93.9201 L -39.314 -93.2385 L -39.5216 -93.4068 L -40.0601 -99.2188 L -39.887 -99.4225 L -35.3821 -99.6313 L -35.3057 -99.7165 L -33.6581 -99.8138 L -33.5603 -99.9143 L -32.9339 -99.9584 L -32.8338 -100.0527 L -32.5038 -100.0782 L -32.4071 -100.1609 L -32.2042 -100.1773 L -32.1138 -100.2471 L -31.9776 -100.258 L -31.8949 -100.3149 L -31.7984 -100.3223 L -31.7244 -100.3669 L -31.3695 -100.4511 L -31.02 -101.4001 L -30.8578 -101.4867 L -30.6055 -104.2087 L -30.7779 -105.2239 L -31.3162 -105.5261 L -31.388 -105.5981 L -31.4805 -105.6222 L -31.558 -105.709 L -31.6885 -105.7433 L -31.7704 -105.8451 L -31.9647 -105.8957 L -32.0496 -106.012 L -32.3655 -106.0925 L -32.451 -106.221 L -33.0508 -106.3677 L -33.1318 -106.5009 L -34.7119 -106.8638 L -34.7569 -106.9447 L -39.1017 -107.8969 L -39.2345 -108.1289 L -37.6372 -113.743 L -37.4021 -113.8703 L -33.126 -112.4377 L -33.024 -112.4895 L -31.4525 -111.9851 L -31.3249 -112.0435 L -30.725 -111.8583 L -30.5976 -111.91 L -30.2806 -111.8146 L -30.1606 -111.8569 L -29.9655 -111.7988 L -29.8559 -111.8312 L -29.725 -111.7923 L -29.6273 -111.8154 L -29.5347 -111.7875 L -29.4496 -111.8023 L -29.0883 -111.7526 L -28.4195 -112.5112 L -28.2369 -112.5334 L -27.0185 -114.9805 L -26.8124 -115.9894 L -27.2053 -116.4657 L -27.2462 -116.5587 L -27.3237 -116.6147 L -27.3646 -116.7235 L -27.4739 -116.8026 L -27.5136 -116.9272 L -27.6764 -117.0446 L -27.7136 -117.1837 L -27.9791 -117.3729 L -28.0123 -117.5235 L -28.5187 -117.877 L -28.5461 -118.0305 L -29.8884 -118.9397 L -29.9011 -119.0314 L -33.6086 -121.4888 L -33.6486 -121.7531 L -30.1311 -126.4111 L -29.8659 -126.4449 L -26.3961 -123.5643 L -26.2822 -123.5758 L -24.999 -122.5377 L -24.859 -122.5461 L -24.3665 -122.1567 L -24.229 -122.1589 L -23.9679 -121.9554 L -23.8407 -121.9515 L -23.6798 -121.8268 L -23.5659 -121.8175 L -23.4579 -121.7339 L -23.3585 -121.7201 L -23.2822 -121.6607 L -23.1974 -121.6438 L -22.8785 -121.4669 L -21.9808 -121.9327 L -21.8026 -121.8874 L -19.7824 -123.7291 L -19.2258 -124.5954 L -19.4201 -125.1815 L -19.4246 -125.283 L -19.4767 -125.3632 L -19.4755 -125.4795 L -19.5488 -125.5927 L -19.5408 -125.7232 L -19.6503 -125.8915 L -19.6347 -126.0346 L -19.8139 -126.3069 L -19.7905 -126.4594 L -20.135 -126.9719 L -20.1051 -127.125 L -21.0283 -128.4577 L -21.007 -128.5477 L -23.5764 -132.1786 L -23.5183 -132.4394 L -18.5556 -135.5122 L -18.2962 -135.4479 L -16.1012 -131.5084 L -15.9909 -131.478 L -15.1693 -130.0465 L -15.0358 -130.0037 L -14.7172 -129.4627 L -14.5881 -129.4151 L -14.4182 -129.131 L -14.301 -129.0814 L -14.196 -128.9071 L -14.0931 -128.8572 L -14.0227 -128.7402 L -13.9349 -128.6915 L -13.8852 -128.6085 L -13.8123 -128.5621 L -13.5788 -128.2819 L -12.5735 -128.392 L -12.4236 -128.2854 L -9.8746 -129.2729 L -9.0427 -129.8797 L -9.0121 -130.4963 L -8.9797 -130.5926 L -8.9993 -130.6863 L -8.9561 -130.7943 L -8.9836 -130.9263 L -8.929 -131.0451 L -8.9703 -131.2416 L -8.904 -131.3694 L -8.9728 -131.6881 L -8.8959 -131.8218 L -9.0319 -132.4241 L -8.9487 -132.5561 L -9.3282 -134.1323 L -9.2758 -134.2086 L -10.3601 -138.5224 L -10.2116 -138.7447 L -4.4741 -139.8172 L -4.2554 -139.6636 L -3.6318 -135.1971 L -3.5399 -135.1289 L -3.291 -133.4973 L -3.1818 -133.4092 L -3.0802 -132.7896 L -2.9771 -132.6986 L -2.9212 -132.3723 L -2.8299 -132.2837 L -2.7949 -132.0832 L -2.717 -131.9996 L -2.6936 -131.865 L -2.6293 -131.7879 L -2.613 -131.6925 L -2.5618 -131.623 L -2.4453 -131.2773 L -1.4681 -131.0168 L
|
||
|
|
</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' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='displayIsoByLatitude(globalLatitude+1.0)' x='213' y='260' >></text>
|
||
|
|
<text id='longitudeIso' x='20' y='280' >Longitude</text>
|
||
|
|
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude-1.0)' x='198' y='280' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='displayIsoByLongitude(globalLongitude+1.0)' x='213' y='280' >></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' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleIso(globalZoomScale*2)' x='213' y='300' >></text>
|
||
|
|
<g transform='translate(20, 340)'>
|
||
|
|
<text >Min</text>
|
||
|
|
<text id='minXIso' y='20' >X: -49.2741 mm</text>
|
||
|
|
<text id='minYIso' y='40' >Y: -148.9752 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: 49.2741 mm</text>
|
||
|
|
<text id='maxYIso' y='40' >Y: 21.6669 mm</text>
|
||
|
|
<text id='maxZIso' y='60' >Z: 15.6 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 540)'>
|
||
|
|
<text >Dimension</text>
|
||
|
|
<text id='dimXIso' y='20' >X: 98.5482 mm</text>
|
||
|
|
<text id='dimYIso' y='40' >Y: 170.6421 mm</text>
|
||
|
|
<text id='dimZIso' y='60' >Z: 15.6 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: 39</text>
|
||
|
|
<text id='volumeIso' y='60' >Volume: 262.5277 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' ><</text>
|
||
|
|
<text id='increaseLayerIndex' fill='darkslateblue' onclick='displayLayer(globalLayerIndex+1)' x='213' y='280' >></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' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleLayer(globalZoomScale*2)' x='213' y='300' >></text>
|
||
|
|
<g transform='translate(20, 340)'>
|
||
|
|
<text >Min</text>
|
||
|
|
<text id='minXLayer' y='20' >X: -49.2741 mm</text>
|
||
|
|
<text id='minYLayer' y='40' >Y: -148.9752 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: 49.2741 mm</text>
|
||
|
|
<text id='maxYLayer' y='40' >Y: 21.6669 mm</text>
|
||
|
|
<text id='maxZLayer' y='60' >Z: 15.6 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 540)'>
|
||
|
|
<text >Dimension</text>
|
||
|
|
<text id='dimXLayer' y='20' >X: 98.5482 mm</text>
|
||
|
|
<text id='dimYLayer' y='40' >Y: 170.6421 mm</text>
|
||
|
|
<text id='dimZLayer' y='60' >Z: 15.6 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: 39</text>
|
||
|
|
<text id='volumeLayer' y='60' >Volume: 262.5277 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' ><</text>
|
||
|
|
<text fill='darkslateblue' onclick='changeScaleScroll(globalZoomScale*2)' x='213' y='300' >></text>
|
||
|
|
<g transform='translate(20, 340)'>
|
||
|
|
<text >Min</text>
|
||
|
|
<text id='minXScroll' y='20' >X: -49.2741 mm</text>
|
||
|
|
<text id='minYScroll' y='40' >Y: -148.9752 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: 49.2741 mm</text>
|
||
|
|
<text id='maxYScroll' y='40' >Y: 21.6669 mm</text>
|
||
|
|
<text id='maxZScroll' y='60' >Z: 15.6 mm</text>
|
||
|
|
</g>
|
||
|
|
<g transform='translate(20, 540)'>
|
||
|
|
<text >Dimension</text>
|
||
|
|
<text id='dimXScroll' y='20' >X: 98.5482 mm</text>
|
||
|
|
<text id='dimYScroll' y='40' >Y: 170.6421 mm</text>
|
||
|
|
<text id='dimZScroll' y='60' >Z: 15.6 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: 39</text>
|
||
|
|
<text id='volumeScroll' y='60' >Volume: 262.5277 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 operatingAngle='90' />
|
||
|
|
</fabmetheus>
|
||
|
|
-->
|
||
|
|
</svg>
|