Skip to content

Instantly share code, notes, and snippets.

@bperel
Last active August 29, 2015 14:12
Show Gist options
  • Save bperel/5f694a60d6bc2f228751 to your computer and use it in GitHub Desktop.
Save bperel/5f694a60d6bc2f228751 to your computer and use it in GitHub Desktop.
Projection detection
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="map.css">
<script src="http://d3js.org/d3.v3.js" charset="utf-8"></script>
</head>
<body>
<div id="projectionSelectionContainer">
<label for="projectionSelection">Projection : <br></label>
<select id="projectionSelection"><option>mercator</option><option>equirectangular</option><option>orthographic</option></select>
</div>
<script src="map.js"></script>
<script src="ui.js"></script>
<script type="text/javascript">
showMap("background", "ne_110m_coastline.json");
</script>
</body>
</html>
body {
white-space: nowrap;
}
#map, #externalSvg {
left: 200px;
float: left;
}
.subunit-label {
fill: #777;
fill-opacity: .5;
font-size: 14px;
font-weight: 300;
text-anchor: middle;
}
.subunit-boundary {
fill: none;
stroke: #777;
stroke-dasharray: 2,2;
stroke-linejoin: round;
}
#externalSvg {
opacity: 0.5;
}
var width = 480;
var mapHeight = 440;
var projection;
var path;
var zoom;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", mapHeight)
.attr("name", "German_Empire_1914")
.attr("id", "externalSvg")
.attr("viewBox", "0 0 2050 1213")
.attr("preserveAspectRatio", "xMaxYMax meet");
var backgroundSvg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", mapHeight)
.attr("id", "bgMap")
.datum({x: 0, y: 0});
var projectionSelection = d3.select('#projectionSelection');
projectionSelection.on('change', function() {
applyProjection(getSelectedProjection());
});
function getSelectedProjection() {
return d3.select(projectionSelection.node().options[projectionSelection.node().selectedIndex]).html();
}
d3.xml("Map_of_Ancient_Rome_271_AD.svg", "image/svg+xml", function(xml) {
d3.select(
svg
.append("g")
.node()
.appendChild(document.importNode(xml.documentElement, true)));
});
function showMap(id, filePath) {
d3.json(filePath, function(error, world) {
backgroundSvg.append("g")
.attr("id", id)
.selectAll(".subunit")
.data(world.features)
.enter().append("path")
.attr("class", function(d) {
return "subunit-boundary subunit " + d.properties.adm0_a3;
});
applyProjection('mercator');
});
}
function applyProjection(name) {
projection = d3.geo[name]()
.scale(width *2 / Math.PI)
.precision(.01)
.center([40, 10]);
path = d3.geo.path()
.projection(projection);
zoom = d3.behavior.zoom()
.translate(projection.translate())
.scale(projection.scale())
.on("zoom", function() {
projection.scale(d3.event.scale);
backgroundSvg.selectAll("path").attr("d", path);
});
backgroundSvg
.call(bgSvgmap_drag)
.call(zoom)
.selectAll('path.subunit').attr("d", path);
}
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="2050"
height="1213"
id="svg2"
inkscape:version="0.47 r22583"
sodipodi:docname="Map_of_Ancient_Rome_271_AD.svg">
<metadata
id="metadata359">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1533"
inkscape:window-height="846"
id="namedview357"
showgrid="false"
inkscape:zoom="0.51316815"
inkscape:cx="774.18258"
inkscape:cy="534.29385"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" />
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 606.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="2050 : 606.5 : 1"
inkscape:persp3d-origin="1025 : 404.33333 : 1"
id="perspective361" />
</defs>
<g
id="layer5"
style="display:inline">
<rect
width="2048"
height="1211"
x="1"
y="1"
id="rect3596"
style="fill:#daf0fd;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
</g>
<g
id="layer3"
style="display:inline">
<path
d="M 142.92677,836.0694 L 121.49817,878.9265 L 91.498164,911.7836 L 57.212464,928.9265 L 14.355364,934.6408 L 2.9267643,946.0694 L 2.9267643,1213.2123 L 1842.927,1213.2123 L 1839.471,1207.7431 L 1841.9963,1204.2076 L 1833.9151,1198.1466 L 1829.8745,1194.6111 L 1826.8441,1188.0451 L 1820.7831,1184.0045 L 1815.2273,1179.9639 L 1808.6613,1173.903 L 1808.6613,1171.3776 L 1804.6207,1166.8319 L 1807.1461,1164.3065 L 1802.0953,1157.7405 L 1795.0242,1152.6898 L 1785.9329,1147.1339 L 1776.8415,1140.0629 L 1769.2654,1133.4969 L 1761.6892,1124.4055 L 1756.1334,1120.87 L 1752.0928,1111.2735 L 1748.0522,1103.1923 L 1740.9811,1096.1212 L 1735.4252,1091.0705 L 1731.8897,1083.4943 L 1735.9303,1077.4334 L 1736.4354,1072.8876 L 1741.4862,1080.9689 L 1748.5572,1085.0096 L 1753.608,1096.1212 L 1763.2044,1103.6974 L 1769.7704,1108.7481 L 1776.8415,1112.7888 L 1780.377,1125.9207 L 1785.9329,1135.0121 L 1796.0344,1140.0629 C 1796.0344,1140.0629 1805.1258,1145.1136 1807.1461,1146.6289 C 1809.1664,1148.1441 1819.2679,1153.1949 1819.2679,1153.1949 L 1832.905,1157.7405 L 1839.976,1158.7507 L 1843.5116,1147.1339 L 1841.4913,1140.0629 L 1838.4608,1129.9613 L 1838.9659,1119.8598 C 1838.9659,1119.8598 1839.976,1111.7786 1839.976,1109.7583 C 1839.976,1107.738 1838.9659,1096.6263 1838.9659,1096.6263 L 1840.9862,1081.474 L 1840.9862,1073.8979 L 1843.0065,1066.3216 L 1845.5319,1064.3013 L 1847.5522,1075.9182 L 1848.0573,1085.0096 L 1848.5623,1095.1111 L 1849.5725,1103.1923 L 1850.5826,1111.2735 L 1851.5928,1117.3344 L 1852.0979,1127.941 L 1850.0776,1134.507 L 1849.0674,1139.5578 L 1852.0979,1140.0629 L 1854.1182,1135.5172 L 1859.1689,1136.5273 L 1863.7146,1133.4969 L 1870.2806,1130.4664 L 1876.8466,1132.9918 L 1877.8568,1136.5273 L 1885.4329,1140.0629 L 1888.4634,1144.1035 L 1901.0903,1151.6796 L 1905.1309,1158.2456 L 1909.1715,1161.2761 L 1913.2121,1167.337 L 1918.7679,1171.8827 L 1924.3238,1174.9131 L 1928.8695,1179.9639 L 1931.8999,1182.4893 L 1942.5065,1189.0553 L 1948.0624,1196.1263 L 1953.6182,1201.1771 L 1956.1436,1205.2177 L 1961.6994,1208.2482 L 1967.2553,1209.2583 L 1971.8009,1212.2888 L 2047.5624,1212.2888 L 2047.5624,0.6108597 L 956.09253,0.6108597 L 944.98083,6.6717596 L 937.90973,7.6819596 L 922.75753,14.75306 L 906.59503,19.80376 L 897.50373,10.71236 L 893.64123,5.3552596 L 890.06983,0.3552597 L 855.06983,0.3552597 L 853.64123,3.9266596 L 845.06983,7.4980596 L 840.06983,11.06946 L 834.35553,12.49806 L 825.06983,17.49806 L 820.78413,20.35526 L 817.21263,17.49806 L 810.78413,18.21236 L 805.78413,13.92666 L 812.92693,12.49806 L 815.06983,6.7837596 L 815.78413,0.3552597 L 748.64123,0.3552597 L 750.78413,3.9266596 L 755.06983,6.0694596 L 756.49833,11.78376 L 757.21263,18.21236 L 757.92693,24.64096 L 752.21263,26.06946 L 745.06983,24.64096 L 743.64123,28.92666 L 743.64123,33.92666 L 737.92693,41.06946 L 730.78413,38.21236 L 724.35553,32.49806 L 717.21263,31.78376 L 709.35553,32.49806 L 700.78413,35.35526 L 694.35553,38.92666 L 696.49833,46.78376 L 692.92693,48.92666 L 683.64123,46.78376 L 680.06983,42.49806 L 672.92683,47.49806 L 664.35543,45.35526 L 659.35543,47.49806 L 652.21253,52.49806 L 644.35543,56.06946 L 637.21253,57.49806 L 630.78403,57.49806 L 625.06973,61.06946 L 620.06973,68.92666 L 621.49823,81.06946 L 615.06973,95.35526 L 606.49823,102.49806 L 606.49823,112.49806 L 601.49823,109.64096 L 590.06973,121.78376 L 590.06973,127.49806 L 583.64113,127.49806 L 580.78403,134.64096 L 572.92683,138.21236 L 560.78403,143.21236 L 549.35543,146.78376 L 538.64113,151.06946 L 528.64113,152.49806 L 524.40613,156.10536 L 521.20243,163.16156 C 521.59333,169.86636 520.09233,174.54246 521.83003,175.86026 L 520.66143,187.79386 L 507.92683,196.78376 L 497.92683,201.06946 L 486.49823,202.49806 L 475.78403,207.49806 L 469.35543,212.49806 L 467.92683,216.06946 L 477.92683,221.06946 L 466.49823,223.21236 L 457.92683,226.78376 L 448.64113,219.64086 L 437.21253,219.64086 L 432.21253,216.78376 L 426.49823,218.21236 L 426.49823,210.35516 L 421.21663,206.68196 L 427.27753,205.67176 L 426.26743,202.13626 C 426.26743,202.13626 423.74203,198.60076 421.72173,199.10586 C 419.70143,199.61086 415.15572,201.12616 415.15572,201.12616 L 410.61002,198.09566 L 406.06432,195.06516 L 408.58972,199.10586 L 408.58972,203.65146 L 408.58972,207.69216 L 408.08462,216.27846 L 412.12532,219.30886 L 412.63032,224.86466 L 411.62022,228.40026 L 412.63032,234.96626 L 411.62022,240.52206 L 411.62022,245.57286 L 414.65062,249.61346 L 410.61002,252.13886 L 406.06432,252.13886 L 402.02372,248.60326 L 397.98312,247.08806 L 392.93242,247.59316 L 389.90192,249.61346 L 386.36642,247.08806 L 379.80042,247.08806 L 375.75982,249.10836 L 371.21412,249.10836 L 371.21412,246.07796 L 366.66842,241.02716 L 361.61762,234.96626 L 354.04152,230.92566 L 350.00092,231.93576 L 345.45522,233.95606 L 345.45522,236.98656 L 340.40442,236.98656 L 335.85872,236.98656 L 332.82832,233.45096 L 326.76742,235.47126 L 323.23182,235.47126 L 319.19122,235.47126 L 312.62522,237.99666 L 307.06942,239.51196 L 306.05922,243.55256 L 305.04912,246.58296 L 308.07952,249.10836 L 315.15062,247.08806 L 317.67602,246.07796 L 320.20142,248.60326 L 319.69632,251.12866 L 316.66582,252.64386 L 311.61512,250.62356 L 310.60492,253.14896 L 311.11002,255.67436 L 315.65572,254.66416 L 319.19122,257.69466 L 317.67602,261.73526 L 313.13032,260.72516 L 305.55422,262.24036 L 309.08972,265.77586 L 314.14052,268.30126 L 313.13032,274.36216 L 317.17092,277.39266 L 318.18112,274.36216 L 325.75722,275.37236 L 329.79782,277.39266 L 332.82832,280.92816 L 336.86892,281.93836 L 340.40442,285.47386 L 344.95012,287.49416 L 347.98062,291.02966 L 352.02122,293.04996 L 358.08212,297.59564 L 363.13292,299.61594 L 370.70902,300.62614 L 373.23442,305.67694 L 370.20392,308.70734 C 370.20392,308.70734 370.70902,310.72764 372.72932,312.24284 C 374.74962,313.75814 378.28512,314.26314 378.28512,314.26314 L 380.30542,319.81904 L 384.34612,323.85959 L 380.30542,329.41539 L 380.30542,334.46619 L 383.84102,343.05249 L 386.87142,348.10329 C 386.87142,348.10329 387.37652,353.15399 389.39682,354.66919 C 391.41712,356.18449 394.44762,358.7099 394.44762,358.7099 L 401.01362,364.2657 L 407.07452,367.2962 L 405.05422,370.8317 L 407.57962,376.8926 L 405.05422,386.4891 L 402.02372,390.5297 L 400.00342,394.0652 L 410.61002,407.7023 L 414.14562,418.3089 L 408.08462,408.7124 L 403.03392,403.1566 L 399.49832,412.2479 L 397.47802,421.3393 L 393.43742,433.4611 L 388.89172,445.0779 L 390.40702,448.6134 L 388.38672,455.6845 L 383.33592,468.8165 L 382.32582,478.4129 L 375.25472,492.05 L 372.22422,498.1109 L 365.15322,502.1515 L 358.08212,502.6566 L 350.50592,504.6769 L 346.46532,504.6769 L 340.90952,502.6566 L 334.84862,497.1007 L 330.30292,495.0804 L 324.74712,492.05 L 320.20142,494.0703 L 316.16082,496.0906 L 310.60492,492.05 L 305.04912,490.0297 L 302.01862,486.4941 L 297.97802,486.4941 L 291.91712,487.5043 C 291.91712,487.5043 291.91712,484.9789 288.88662,485.484 C 285.85622,485.989 279.29022,484.9789 279.29022,484.9789 L 268.17852,483.9687 L 260.09732,480.9383 L 252.52122,476.8977 L 244.94502,472.8571 C 244.94502,472.8571 242.92472,470.8368 239.89422,470.8368 C 236.86382,470.8368 232.31812,469.8266 232.31812,469.8266 L 225.24702,465.786 L 223.22672,463.2606 L 220.19632,464.7759 L 214.13542,465.281 L 205.04397,465.281 L 192.92217,460.2302 L 189.38657,459.22 L 178.27487,457.1997 L 174.23427,456.1896 L 171.20387,450.6337 L 168.17337,447.0982 L 166.49817,447.498 L 164.35537,446.0694 L 162.92677,443.9265 L 158.28397,445.3551 L 156.14107,442.8551 L 152.92677,444.6408 L 145.78397,444.998 C 145.78397,444.998 145.42677,446.4265 143.64107,446.7837 C 141.85537,447.1408 138.28397,448.2123 138.28397,448.2123 L 138.28397,449.998 L 139.71247,454.2837 L 140.06967,457.8551 L 135.42677,456.4265 L 131.49817,457.8551 C 131.49817,457.8551 128.99817,458.2123 127.21247,458.2123 C 125.42677,458.2123 120.78397,457.498 120.78397,457.498 L 117.92677,455.3551 L 114.71247,455.3551 L 112.56967,458.5694 L 107.56966,459.6408 L 103.28396,460.3551 L 102.56966,462.498 L 98.641064,466.0694 L 97.926764,469.6408 L 96.855364,472.498 L 100.78396,472.498 L 102.56966,476.0694 L 101.14106,479.2836 L 104.71246,479.9979 L 103.28396,483.9265 L 100.42676,487.4979 L 103.99816,490.3551 L 104.35536,493.5694 L 106.85536,496.0694 L 105.42676,498.5694 L 101.85536,501.4265 L 107.92676,501.4265 L 107.21246,503.2122 L 102.56966,505.7122 L 101.85536,508.5694 L 105.42676,511.0694 L 102.21246,512.8551 L 100.78396,517.1408 L 99.355364,521.7836 L 101.49816,522.8551 L 98.283964,532.4979 L 98.641064,540.7122 L 98.283964,550.3551 L 97.212464,562.4979 L 96.855364,570.3551 L 90.783964,583.2122 L 84.712464,592.4979 L 79.712464,602.4979 L 80.069664,606.0694 L 77.569664,610.7122 L 69.355364,623.2122 L 65.069664,630.3551 L 54.712464,637.4979 L 51.855364,638.2122 L 53.283964,642.1408 L 49.355364,647.1408 L 46.498164,649.6408 L 46.498164,654.2836 L 44.355364,658.2122 L 41.498164,662.1408 L 40.783964,665.3551 L 41.498164,669.2836 L 46.855364,670.3551 L 48.641064,670.7122 L 48.283964,676.4265 L 46.498164,682.8551 L 51.855364,684.6408 L 56.498164,683.2122 L 58.641064,686.4265 L 61.141064,692.4979 L 58.283964,702.4979 L 53.283964,708.9265 L 56.141064,713.2122 L 52.569664,719.2836 L 52.569664,725.3551 L 50.783964,733.9265 L 46.498164,738.5694 L 42.926764,745.3551 L 38.641064,751.4265 L 39.712464,753.9265 L 46.141064,752.4979 C 46.141064,752.4979 48.283964,750.3551 50.783964,751.0694 C 53.283964,751.7836 57.212464,752.4979 57.212464,752.4979 L 61.498164,754.2836 L 66.141064,755.7122 L 72.212464,758.2122 L 74.712464,759.2836 L 76.141064,762.4979 L 78.998164,764.2836 C 78.998164,764.2836 82.212464,765.7122 83.641064,764.9979 C 85.069664,764.2836 89.712464,761.4265 89.712464,761.4265 C 89.712464,761.4265 96.141064,760.7122 97.569664,760.7122 C 98.998164,760.7122 108.99816,759.2836 108.99816,759.2836 C 108.99816,759.2836 111.14106,760.3551 113.99817,761.4265 C 116.85537,762.4979 122.56967,765.7122 122.56967,765.7122 C 122.56967,765.7122 122.21247,770.7122 125.42677,772.1408 C 128.64107,773.5694 131.85537,774.9979 131.85537,774.9979 L 136.14107,773.9265 L 136.14107,772.1408 L 135.42677,770.7122 L 141.49817,770.3551 L 144.35537,767.4979 L 147.21247,767.8551 L 151.49817,767.8551 L 155.78397,769.9979 L 157.21247,773.5694 L 153.99817,774.9979 L 155.42677,778.2122 L 152.92677,780.3551 L 148.28397,782.1408 L 145.78397,784.9979 L 141.85537,783.5694 L 139.71247,786.0694 L 136.85537,787.1408 L 133.28397,788.5694 L 134.35537,795.3551 L 138.99817,796.0694 L 142.21247,796.0694 L 141.14107,799.6408 L 137.21247,802.4979 L 138.99817,805.7122 L 141.14107,811.4265 L 143.64107,815.3551 L 146.49817,817.8551 L 149.35537,819.2836 L 151.14107,823.5694 L 156.14107,827.4979 L 162.56967,829.6408 L 167.21247,827.4979 L 168.64107,823.2122 L 169.35537,825.3551 L 173.99817,818.5694 L 178.28397,814.2836 L 184.71247,814.2836 L 189.35537,811.4265 L 195.42677,813.5694 L 200.78397,813.5694 L 203.28397,810.3551 L 207.21247,809.9979 L 210.42682,805.7122 L 216.49822,805.7122 L 221.14112,807.1408 L 225.06972,806.4265 C 225.06972,806.4265 230.06972,807.8551 232.21252,807.8551 C 234.35542,807.8551 236.85542,808.5694 236.85542,808.5694 L 240.42682,809.6408 L 246.85542,812.8551 L 252.21252,812.8551 C 252.21252,812.8551 257.21252,811.4265 259.35542,812.1408 C 261.49822,812.8551 268.64112,814.2836 268.64112,814.2836 L 272.92682,817.8551 L 278.28402,818.2122 L 283.28402,814.9979 L 286.49822,810.7122 L 290.06972,812.8551 L 294.35542,814.2836 L 295.78402,818.2122 L 298.64112,818.9265 L 302.92682,817.8551 L 307.21252,813.2122 L 311.14112,808.9265 L 317.21252,797.4979 L 326.85542,790.3551 L 330.06972,788.9265 L 334.35542,785.3551 L 341.49822,783.2122 L 342.92682,785.7122 L 346.14112,784.2836 L 350.78402,784.9979 L 352.92682,786.7836 L 361.14112,784.6408 L 360.78402,777.4979 L 361.49822,773.5694 L 364.35542,768.2122 L 367.21252,762.4979 L 367.21252,759.2836 L 372.21252,756.4265 L 373.28402,752.8551 L 376.85542,751.4265 L 378.99822,747.8551 L 384.71252,744.2836 L 389.71252,743.5694 L 392.56972,741.4265 L 393.99822,739.2836 L 398.99822,738.5694 L 402.56972,735.7122 L 402.21252,731.7836 L 398.28402,728.9265 L 393.28402,724.2836 L 390.42682,718.5694 L 389.71252,712.1408 L 388.99822,705.3551 L 386.14112,697.4979 L 400.06972,680.7122 L 405.42682,673.2122 L 408.64112,670.3551 L 414.71252,663.9265 L 421.14113,658.2122 L 425.06973,651.7836 L 437.21253,635.7122 L 441.85543,631.4265 L 449.35543,627.1408 L 454.35543,627.1408 L 460.42683,624.2836 L 480.42683,621.7836 L 482.92683,620.3551 L 488.28403,621.4265 L 493.28403,614.9979 L 507.21253,609.2836 L 526.49823,599.6408 L 532.92683,596.0694 L 533.64113,589.2836 L 530.06973,582.8551 L 530.42683,577.1408 L 534.71253,577.8551 L 537.21253,573.9265 L 533.64113,572.4979 L 533.64113,568.9265 L 530.78403,564.9979 L 529.35543,560.7122 L 528.64113,554.2836 L 530.42683,545.7122 L 532.21253,540.7122 L 535.06973,535.3551 L 538.99823,531.0694 L 543.28403,528.9265 L 547.92683,528.9265 L 557.56973,521.4265 L 565.06973,516.4265 L 569.35543,516.4265 L 571.14113,519.6408 L 571.49823,521.4265 L 577.92683,523.2122 L 584.35543,523.9265 L 588.28403,525.7122 L 596.49823,529.2836 L 597.21253,525.3551 L 601.49823,528.2122 L 602.21253,531.7836 L 605.42683,532.8551 L 611.49823,536.4265 L 613.99823,539.9979 L 618.64113,538.9265 L 623.28403,540.7122 L 627.21253,542.4979 L 629.35543,546.4265 L 631.85543,547.4979 L 633.28403,544.2836 L 637.56973,546.0694 L 640.06973,548.2122 L 643.99823,544.9979 L 647.21253,544.9979 L 650.78403,543.5694 L 654.71253,542.8551 L 658.64113,543.2122 L 662.21253,538.2122 L 658.99823,536.0694 L 662.56973,530.3551 C 662.56973,530.3551 663.28403,529.6408 664.71253,529.6408 C 666.14113,529.6408 668.64113,528.9265 668.64113,528.9265 L 672.21253,526.0694 L 676.85543,525.3551 L 680.76383,520.6935 C 680.76383,520.6935 682.21263,517.1408 683.64123,517.1408 C 685.06983,517.1408 685.06983,517.1408 689.71263,517.1408 C 694.35553,517.1408 701.14123,513.9265 701.14123,513.9265 L 713.99833,509.2836 L 717.21263,502.4979 L 720.78413,497.4979 L 723.99833,496.7836 L 725.78413,491.4265 L 732.21263,486.0694 L 738.28413,484.6408 L 746.85553,486.7836 L 748.64123,489.6408 L 753.28413,489.9979 L 759.35553,493.5694 L 766.49833,498.9265 L 771.85553,505.3551 L 775.42693,503.2122 L 779.71263,506.4265 L 783.64123,507.8551 L 786.85553,514.9979 C 786.85553,514.9979 787.56983,519.9979 787.56983,521.4265 C 787.56983,522.8551 788.99833,530.7122 788.99833,530.7122 C 788.99833,530.7122 793.64123,534.9979 793.99833,536.4265 C 794.35553,537.8551 797.56983,544.6408 797.56983,544.6408 L 797.56983,549.6408 L 796.14123,555.3551 L 796.14123,558.5694 L 801.14123,557.8551 C 801.14123,557.8551 802.56983,559.2836 803.28413,560.7122 C 803.99833,562.1408 804.71263,564.9979 806.14123,565.7122 C 807.56983,566.4265 812.21263,568.2122 812.21263,568.2122 C 812.21263,568.2122 813.64123,571.7836 815.06983,572.4979 C 816.49833,573.2122 819.71263,574.9979 819.71263,574.9979 L 821.14123,581.0694 L 818.28413,582.8551 L 818.64123,586.4265 L 823.28413,584.9979 L 827.21263,586.0694 C 827.21263,586.0694 829.35553,586.0694 831.14123,586.7836 C 832.92693,587.4979 839.35553,592.4979 839.35553,592.4979 L 843.28413,599.9979 L 848.28413,603.9265 L 854.35553,609.9979 L 856.85553,610.7122 L 862.92693,617.4979 C 862.92693,617.4979 866.49833,620.7122 867.21263,622.1408 C 867.92693,623.5694 871.49833,628.2122 871.49833,628.2122 L 875.42693,632.1408 L 880.78413,632.8551 L 884.35553,633.5694 L 887.56983,637.4979 L 889.35553,640.7122 L 896.49833,637.8551 C 896.49833,637.8551 899.35553,637.8551 900.78413,638.5694 C 902.21263,639.2836 904.35553,639.9979 904.35553,639.9979 L 909.35553,640.3551 L 911.49833,638.5694 L 915.06983,639.9979 L 920.06983,649.9979 L 925.42693,655.3551 L 925.42693,660.3551 L 929.71263,660.3551 L 933.99833,658.9265 L 938.64123,660.7122 L 941.85553,663.2122 L 938.99833,666.7836 C 938.99833,666.7836 933.99833,669.9979 936.14123,670.3551 C 938.28403,670.7122 945.78403,668.9265 945.78403,668.9265 L 950.06983,667.4979 L 953.99833,665.3551 C 953.99833,665.3551 956.14123,668.5694 956.85553,669.9979 C 957.56983,671.4265 961.14123,675.7122 961.14123,675.7122 L 962.56983,679.9979 L 959.35553,683.5694 C 959.35553,683.5694 956.85553,685.7122 960.06983,686.7836 C 963.28403,687.8551 966.14123,689.6408 966.14123,689.6408 L 968.64123,691.4265 C 968.64123,691.4265 971.49833,693.2122 972.92693,694.6408 C 974.35553,696.0694 977.21263,697.8551 977.21263,697.8551 L 985.06983,693.2122 L 989.35553,695.7122 L 993.28403,704.2836 L 997.56983,715.3551 C 997.56983,715.3551 1001.8554,720.3551 1001.8554,721.7836 C 1001.8554,723.2122 1003.284,726.0694 1003.284,726.0694 L 1003.9983,736.0694 C 1003.9983,736.0694 1007.2126,739.9979 1007.5697,741.4265 C 1007.9269,742.8551 1008.9983,746.4265 1008.9983,746.4265 L 1012.2126,751.7836 L 1012.5697,756.4265 L 1007.5697,757.8551 L 1004.3554,758.5694 L 1001.1412,759.2836 L 998.64123,762.8551 L 1001.4983,766.4265 L 1002.5697,769.2836 L 1002.5697,774.6408 L 998.99833,777.4979 L 997.56983,779.9979 L 993.64123,782.4979 C 993.64123,782.4979 991.49833,783.2122 991.49833,785.3551 C 991.49833,787.4979 992.56983,793.2122 992.56983,793.2122 C 992.56983,793.2122 994.71263,797.1408 996.14123,797.1408 C 997.56983,797.1408 1001.1412,796.4265 1001.1412,796.4265 C 1001.1412,796.4265 1002.2126,796.7836 1004.3554,797.1408 C 1006.4983,797.4979 1011.4983,794.6408 1011.4983,794.6408 L 1012.2126,788.5694 C 1012.2126,788.5694 1014.7126,781.7836 1015.784,780.3551 C 1016.8554,778.9265 1019.3554,774.6408 1020.784,774.6408 C 1022.2126,774.6408 1026.4983,772.4979 1026.4983,772.4979 L 1027.5697,766.4265 L 1027.5697,758.9265 L 1026.1412,753.9265 L 1030.4269,748.9265 L 1036.8554,746.0694 L 1040.0697,743.9265 L 1043.284,746.0694 L 1047.2126,746.4265 L 1048.284,742.1408 L 1046.8554,738.2122 L 1044.7126,735.3551 L 1046.4983,731.4265 L 1044.3554,726.4265 L 1045.784,722.4979 L 1042.5697,719.9979 L 1040.4269,717.1408 L 1036.1412,717.8551 L 1031.8554,713.9265 L 1027.5697,711.4265 L 1021.8554,711.0694 L 1017.5697,706.0694 L 1021.4983,698.9265 L 1023.9983,694.9979 L 1023.284,689.2836 L 1025.0697,686.0694 L 1028.6412,679.2836 L 1030.4269,675.3551 L 1031.8554,671.7836 L 1037.5697,668.5694 L 1041.4983,667.1408 L 1047.2126,667.8551 L 1045.784,672.4979 C 1045.784,672.4979 1049.7126,675.7122 1051.4983,675.7122 C 1053.284,675.7122 1056.1412,677.8551 1056.1412,677.8551 L 1062.5697,676.4265 L 1067.5697,677.4979 L 1072.5697,679.2836 L 1074.3554,683.5694 C 1074.3554,683.5694 1076.1412,686.4265 1076.1412,688.5694 C 1076.1412,690.7122 1076.8554,694.6408 1076.8554,694.6408 L 1083.6412,697.1408 L 1087.5697,697.4979 L 1092.2126,698.2122 L 1092.2126,690.3551 L 1094.3554,686.0694 L 1095.4269,682.1408 C 1095.4269,682.1408 1092.9269,679.2836 1091.4983,677.4979 C 1090.0697,675.7122 1087.5697,672.4979 1084.7126,670.3551 C 1081.8554,668.2122 1073.6412,662.4979 1073.6412,662.4979 C 1073.6412,662.4979 1065.784,656.4265 1064.3554,655.7122 C 1062.9269,654.9979 1056.1412,650.7122 1056.1412,650.7122 C 1056.1412,650.7122 1050.784,647.1408 1048.6412,646.4265 C 1046.4983,645.7122 1038.284,640.7122 1038.284,640.7122 C 1038.284,640.7122 1027.9269,637.8551 1025.784,637.1408 C 1023.6412,636.4265 999.35553,626.7836 999.35553,626.7836 L 993.28403,621.7836 L 989.71263,621.7836 L 996.49833,614.9979 L 998.28403,609.9979 L 980.42693,604.6408 L 965.42693,602.4979 L 954.71263,595.7122 L 947.21263,592.8551 L 940.78403,587.1408 L 926.85553,577.4979 C 926.85553,577.4979 921.85553,571.0694 921.85553,568.9265 C 921.85553,566.7836 918.28413,555.7122 918.28413,555.7122 L 906.14123,531.4265 L 903.99833,526.0694 L 895.06983,522.8551 L 881.49833,515.3551 L 871.14123,507.1408 L 868.28413,502.4979 L 865.42693,499.9979 L 862.56983,495.3551 L 858.28413,489.2836 L 857.21263,479.9979 L 858.28413,473.9265 L 853.99833,471.0694 C 853.99833,471.0694 856.49833,465.3551 857.21263,463.9265 C 857.92693,462.498 858.99833,453.5694 858.99833,453.5694 L 860.42693,447.498 L 861.14123,443.9265 L 862.92693,437.8551 L 865.06983,434.998 L 871.49833,432.8551 L 880.42693,428.2123 L 883.64123,427.498 L 886.49833,423.2123 L 892.56983,422.498 L 896.49833,422.498 L 900.06983,418.9265 L 904.71263,419.998 L 906.49833,424.998 L 901.49833,430.3551 C 901.49833,430.3551 899.71263,432.1408 900.42693,434.2837 C 901.14123,436.4265 903.28413,444.2837 903.28413,444.2837 L 906.49833,453.2123 L 907.56983,459.6408 L 909.35553,462.1408 L 912.21263,465.3551 L 918.28413,463.2123 L 921.85553,457.1408 L 924.35553,451.7837 L 926.14123,445.7123 C 926.14123,445.7123 926.14123,446.4265 927.21263,448.2123 C 928.28413,449.998 926.85553,449.6408 929.35553,451.0694 C 931.85553,452.498 936.14123,453.9265 936.14123,453.9265 C 936.14123,453.9265 938.99833,454.6408 938.99833,456.0694 C 938.99833,457.498 939.35553,457.8551 939.35553,459.2837 C 939.35553,460.7123 938.64123,464.2837 938.64123,464.2837 L 942.56983,466.7837 L 943.64123,470.7123 C 943.64123,470.7123 943.64123,471.7837 945.06983,472.8551 C 946.49833,473.9265 949.71263,475.7122 949.71263,475.7122 L 947.92693,479.9979 L 949.71263,481.7836 C 949.71263,481.7836 950.06983,482.8551 953.99833,484.9979 C 957.92693,487.1408 955.78403,488.9265 955.78403,488.9265 L 955.42693,492.1408 L 958.28403,493.5694 L 961.14123,495.7122 C 961.14123,495.7122 960.06983,497.4979 961.49833,498.9265 C 962.92693,500.3551 963.64123,500.7122 963.64123,500.7122 C 963.64123,500.7122 960.78403,501.0694 966.14123,503.9265 C 971.49833,506.7836 970.06983,505.7122 972.21263,507.1408 C 974.35553,508.5694 974.35553,507.4979 976.85553,510.3551 C 979.35553,513.2122 986.49833,513.9265 986.49833,513.9265 C 986.49833,513.9265 987.56983,519.2836 986.85553,521.0694 C 986.14123,522.8551 988.28403,526.4265 988.28403,526.4265 L 991.85553,527.8551 L 1000.4269,527.1408 L 1000.4269,530.3551 L 1004.3554,534.2836 C 1004.3554,534.2836 1007.2126,534.6408 1009.3554,535.3551 C 1011.4983,536.0694 1013.6412,536.0694 1015.0697,536.0694 C 1016.4983,536.0694 1022.9269,533.2122 1022.9269,533.2122 L 1025.784,534.9979 L 1032.5697,538.5694 L 1035.4269,540.3551 L 1048.284,549.9979 C 1048.284,549.9979 1046.8554,551.4265 1048.9983,553.2122 C 1051.1412,554.9979 1059.7126,556.4265 1059.7126,556.4265 L 1063.284,559.9979 L 1070.4269,563.5694 L 1075.0697,567.4979 C 1075.0697,567.4979 1074.7126,568.2122 1077.9269,569.9979 C 1081.1412,571.7836 1086.4983,572.8551 1086.4983,572.8551 L 1092.2126,574.9979 C 1092.2126,574.9979 1094.3554,577.1408 1096.1412,578.2122 C 1097.9269,579.2836 1100.784,580.7122 1100.784,580.7122 C 1100.784,580.7122 1103.9983,581.7836 1105.0697,583.5694 C 1106.1412,585.3551 1108.284,589.6408 1108.284,589.6408 C 1108.284,589.6408 1112.5697,591.4265 1114.3554,592.8551 C 1116.1412,594.2836 1120.0697,596.7836 1120.0697,596.7836 L 1123.6412,595.7122 L 1125.784,599.9979 L 1126.4983,606.4265 L 1122.5697,608.5694 L 1123.6412,612.1408 L 1123.9983,616.4265 L 1123.9983,622.4979 L 1125.784,627.8551 L 1122.9269,632.1408 L 1123.284,637.8551 L 1123.6412,642.4979 L 1122.2126,648.5694 C 1122.2126,648.5694 1121.4983,651.4265 1121.4983,652.8551 C 1121.4983,654.2836 1124.3554,660.7122 1124.3554,660.7122 L 1130.784,666.0694 C 1130.784,666.0694 1131.8554,671.4265 1132.5697,673.2122 C 1133.284,674.9979 1137.2126,679.6408 1137.2126,679.6408 L 1142.9269,681.4265 L 1147.2126,685.3551 L 1150.4269,691.0694 L 1150.0697,694.6408 L 1152.2126,697.8551 L 1156.1412,699.6408 L 1157.5697,702.4979 C 1157.5697,702.4979 1156.8554,704.9979 1158.284,706.0694 C 1159.7126,707.1408 1165.4269,716.4265 1165.4269,716.4265 L 1171.1412,719.2836 L 1175.0697,721.7836 L 1177.5697,725.7122 C 1177.5697,725.7122 1178.9983,726.4265 1180.4269,727.1408 C 1181.8554,727.8551 1184.7126,728.2122 1185.0697,729.6408 C 1185.4269,731.0694 1187.5697,732.4979 1186.1412,733.9265 C 1184.7126,735.3551 1183.284,737.8551 1185.0697,739.2836 C 1186.8554,740.7122 1190.784,742.1408 1190.784,742.1408 C 1190.784,742.1408 1193.284,744.6408 1193.6412,746.0694 C 1193.9983,747.4979 1193.6412,747.1408 1195.0697,749.9979 C 1196.4983,752.8551 1196.8554,752.1408 1197.9269,754.6408 C 1198.9983,757.1408 1205.0697,757.4979 1205.0697,757.4979 L 1207.9269,756.0694 L 1213.6412,756.0694 C 1213.6412,756.0694 1217.2126,756.7836 1218.9983,756.7836 C 1220.784,756.7836 1223.9983,755.3551 1223.9983,755.3551 L 1229.7126,753.2122 L 1237.2126,752.4979 L 1242.9269,752.8551 L 1247.9269,753.2122 C 1247.9269,753.2122 1249.3554,748.2122 1250.784,748.5694 C 1252.2126,748.9265 1256.1412,750.3551 1256.1412,750.3551 L 1256.8554,752.8551 L 1261.4983,751.7836 L 1263.284,752.8551 L 1265.784,754.9979 L 1270.0697,755.7122 L 1277.9269,757.4979 L 1281.1412,758.2122 C 1281.1412,758.2122 1283.284,760.3551 1280.4269,760.7122 C 1277.5697,761.0694 1273.6412,761.4265 1273.6412,761.4265 C 1273.6412,761.4265 1268.284,760.3551 1270.4269,763.2122 C 1272.5697,766.0694 1274.7126,767.1408 1274.7126,767.1408 C 1274.7126,767.1408 1272.9269,768.5694 1271.4983,768.5694 C 1270.0697,768.5694 1263.9983,765.7122 1263.9983,765.7122 L 1260.4269,762.8551 L 1256.4983,762.8551 L 1249.3554,759.9979 L 1241.1412,758.5694 L 1236.1412,755.7122 L 1231.8554,754.9979 L 1228.9983,755.7122 L 1226.1412,757.8551 L 1223.9983,763.2122 C 1223.9983,763.2122 1223.284,766.7836 1220.784,765.3551 C 1218.284,763.9265 1217.2126,763.9265 1217.2126,763.9265 L 1213.6412,763.2122 L 1211.8554,765.3551 L 1208.9983,769.6408 L 1208.6412,773.5694 L 1208.284,776.0694 L 1202.5697,778.2122 L 1203.6412,782.1408 L 1207.9269,783.9265 L 1211.4983,786.0694 L 1213.6412,791.4265 L 1218.6412,791.7836 L 1220.784,793.9265 L 1225.0697,796.4265 L 1227.2126,798.5694 L 1228.6412,802.1408 L 1228.9983,805.7122 L 1225.0697,810.3551 L 1226.4983,816.0694 L 1228.284,819.2836 L 1230.784,820.3551 L 1232.5697,824.6408 L 1233.6412,828.2122 L 1234.3554,833.9265 L 1238.284,830.7122 L 1241.1412,834.6408 L 1242.2126,832.1408 L 1243.9983,827.4979 L 1240.784,824.2836 L 1242.2126,819.2836 L 1248.284,817.4979 L 1250.0697,821.4265 C 1250.0697,821.4265 1250.784,823.2122 1252.5697,823.9265 C 1254.3554,824.6408 1256.4983,825.7122 1256.4983,825.7122 L 1259.7126,832.1408 L 1261.1412,838.2122 L 1260.784,841.4265 L 1265.784,846.0694 L 1266.4983,843.5694 C 1266.4983,843.5694 1265.0697,837.8551 1265.0697,836.4265 C 1265.0697,834.9979 1266.1412,832.1408 1266.8554,829.9979 C 1267.5697,827.8551 1269.3554,822.8551 1269.3554,822.8551 L 1273.9983,822.8551 C 1273.9983,822.8551 1276.4983,823.2122 1276.8554,824.6408 C 1277.2126,826.0694 1278.284,829.9979 1278.284,829.9979 L 1281.1412,832.1408 L 1284.3554,834.2836 L 1284.3554,838.5694 L 1286.4983,838.5694 L 1287.2126,835.7122 L 1291.1412,839.2836 L 1293.284,838.2122 L 1290.0697,834.6408 L 1287.2126,832.4979 L 1284.3554,827.4979 L 1287.2126,824.2836 L 1285.0697,820.3551 L 1282.9269,814.2836 L 1280.0697,809.2836 L 1276.8554,808.5694 L 1276.8554,803.5694 L 1273.284,798.9265 L 1270.4269,794.2836 L 1268.284,790.3551 L 1268.284,786.0694 L 1270.784,786.0694 L 1272.2126,788.5694 L 1275.4269,788.9265 L 1281.4983,790.7122 L 1283.284,790.5336 L 1284.534,793.3908 L 1283.8197,795.3551 L 1285.0697,800.3551 L 1287.034,801.7836 L 1288.284,798.5694 L 1288.6412,795.7122 C 1288.6412,795.7122 1288.8197,795.1765 1289.534,795.7122 C 1290.2483,796.2479 1291.3197,796.7836 1291.3197,796.7836 L 1293.1054,793.9265 C 1293.1054,793.9265 1293.1054,791.9622 1294.8912,792.1408 C 1296.6769,792.3194 1298.284,789.8194 1298.284,789.8194 C 1298.284,789.8194 1297.9269,788.5694 1297.5697,787.8551 C 1297.2126,787.1408 1294.534,784.6408 1294.534,784.6408 L 1290.9626,779.4622 C 1290.9626,779.4622 1289.7126,779.8194 1289.8912,780.5336 C 1290.0697,781.2479 1287.2126,783.9265 1287.2126,783.9265 C 1287.2126,783.9265 1285.9626,783.3908 1285.4269,782.6765 C 1284.8912,781.9622 1282.2126,779.4622 1282.7483,778.3908 C 1283.284,777.3194 1283.6412,774.9979 1283.6412,774.9979 L 1282.5697,772.1408 L 1278.9983,772.3194 L 1276.6769,771.2479 C 1276.6769,771.2479 1275.9626,768.0336 1278.1054,768.0336 C 1280.2483,768.0336 1282.9269,767.3194 1282.9269,767.3194 L 1285.6054,765.5336 L 1287.7483,764.1051 L 1288.9983,764.1051 C 1288.9983,764.1051 1291.3197,765.1765 1292.034,765.3551 C 1292.7483,765.5336 1294.534,764.8194 1294.534,764.8194 L 1299.3554,764.8194 L 1302.7483,765.7122 L 1304.8912,767.4979 L 1304.534,771.7836 L 1307.7483,769.2836 L 1310.2483,770.5336 C 1310.2483,770.5336 1311.6769,775.5336 1312.5697,775.7122 C 1313.4626,775.8908 1317.3912,774.2836 1317.3912,774.2836 L 1319.8912,772.1408 C 1319.8912,772.1408 1317.7483,769.1051 1316.6769,767.8551 C 1315.6054,766.6051 1313.6412,763.2122 1313.6412,763.2122 L 1312.7483,757.8551 L 1313.4626,754.9979 L 1314.534,752.4979 L 1308.8882,746.1033 L 1301.0596,744.083 L 1296.7664,745.0932 L 1294.9986,742.3152 L 1292.9783,738.2746 C 1292.9783,738.2746 1291.7156,738.5272 1290.7055,738.7797 C 1289.6953,739.0323 1285.6547,737.517 1285.6547,737.517 L 1283.1293,734.4866 C 1283.1293,734.4866 1283.6344,732.4663 1282.6243,732.4663 C 1281.6141,732.4663 1276.8159,730.951 1276.8159,730.951 L 1275.5532,732.9713 L 1271.2601,731.9612 L 1271.2601,729.9409 L 1264.9466,727.9206 L 1259.3908,726.4053 L 1256.6128,726.4053 L 1248.7842,726.6579 L 1250.0468,723.3749 C 1250.0468,723.3749 1250.5519,721.102 1254.34,722.3647 C 1258.1281,723.6274 1260.4009,723.88 1260.4009,723.88 C 1260.4009,723.88 1262.6738,721.8597 1264.189,721.8597 C 1265.7042,721.8597 1268.4821,720.0919 1268.4821,720.0919 L 1267.472,715.7987 L 1269.2397,714.5361 L 1271.0075,712.0107 L 1274.7956,711.0005 L 1277.0684,707.9701 L 1278.5837,705.1921 L 1277.0684,703.1718 L 1273.5329,700.1414 L 1271.5126,699.1312 L 1265.7042,694.0805 L 1262.9263,689.0297 L 1258.3806,684.9891 L 1253.8349,678.9282 L 1252.3197,676.1503 L 1249.7943,673.3723 C 1249.7943,673.3723 1247.774,670.847 1246.7639,670.0893 C 1245.7537,669.3317 1243.7334,666.8063 1243.7334,666.8063 L 1242.9758,662.2607 L 1244.9961,655.9472 L 1244.9961,652.9167 L 1242.9758,648.8761 L 1243.9859,645.8457 L 1246.2588,640.2898 L 1248.2791,638.7746 L 1253.3298,638.2695 L 1254.5925,640.2898 L 1255.3501,642.8152 L 1252.0672,644.3305 L 1250.5519,645.5931 L 1254.34,648.3711 C 1254.34,648.3711 1253.5824,648.8761 1255.6027,649.8863 C 1257.623,650.8964 1261.9161,651.4015 1261.9161,651.4015 L 1266.9669,653.6744 L 1270.5024,655.4421 L 1271.2601,658.4726 L 1271.2601,662.0081 L 1273.0278,666.3013 C 1273.0278,666.3013 1274.2905,667.8165 1275.3007,668.3216 C 1276.3108,668.8267 1280.8565,669.3317 1280.8565,669.3317 C 1280.8565,669.3317 1284.392,669.8368 1286.1598,670.0893 C 1287.9276,670.3419 1289.6953,668.3216 1289.6953,668.3216 C 1289.6953,668.3216 1287.9276,668.3216 1286.1598,667.3114 C 1284.392,666.3013 1282.1192,664.281 1281.109,663.7759 C 1280.0989,663.2708 1279.0887,663.2708 1277.321,662.2607 C 1275.5532,661.2505 1273.7854,659.7353 1273.7854,659.7353 L 1273.7854,657.2099 L 1272.5227,653.6744 C 1272.5227,653.6744 1273.0278,653.1693 1274.543,653.1693 C 1276.0583,653.1693 1275.8057,653.1693 1277.5735,653.4218 C 1279.3413,653.6744 1279.0887,653.1693 1280.604,653.9269 C 1282.1192,654.6845 1283.6344,655.1896 1283.6344,655.1896 L 1285.4022,656.4523 L 1287.4225,659.7353 L 1290.4529,663.2708 L 1292.9783,664.5335 L 1297.524,666.8063 L 1299.0392,665.2911 L 1298.0291,661.503 L 1296.0088,658.4726 C 1296.0088,658.4726 1294.7461,655.4421 1293.2309,654.9371 C 1291.7156,654.432 1287.17,653.4218 1287.17,653.4218 L 1285.1496,649.8863 L 1286.4123,646.6033 L 1287.9276,646.6033 L 1290.2004,646.8558 L 1291.9682,646.8558 L 1294.241,648.6236 L 1298.5342,648.8761 L 1300.807,649.3812 L 1302.5748,650.3914 C 1302.5748,650.3914 1304.5951,652.9167 1305.6052,653.6744 C 1306.6154,654.432 1308.6357,655.4421 1308.6357,655.4421 L 1310.9085,653.1693 C 1310.9085,653.1693 1312.4238,651.6541 1309.3933,650.6439 C 1306.3629,649.6338 1305.3527,649.1287 1305.3527,649.1287 L 1299.7969,645.0881 L 1295.5037,641.5525 C 1295.5037,641.5525 1295.2512,640.7949 1294.241,641.8051 C 1293.2309,642.8152 1290.7055,644.0779 1290.7055,644.0779 L 1288.6852,643.0678 L 1286.9174,640.0373 L 1287.9276,638.7746 C 1287.9276,638.7746 1291.2106,635.9967 1290.2004,635.9967 C 1289.1903,635.9967 1285.9073,634.4815 1285.9073,634.4815 L 1282.3717,630.9459 L 1282.3717,628.4205 L 1285.4022,626.9053 C 1285.4022,626.9053 1285.6547,626.9053 1287.9276,627.4104 C 1290.2004,627.9155 1291.7156,629.4307 1292.9783,628.4205 C 1294.241,627.4104 1300.807,622.8647 1300.807,622.8647 C 1300.807,622.8647 1302.5748,621.8546 1303.5849,621.3495 C 1304.5951,620.8444 1307.373,618.5716 1310.1509,618.5716 C 1312.9288,618.5716 1317.7271,616.8038 1317.7271,616.8038 C 1317.7271,616.8038 1319.7474,614.2784 1321.2626,613.7733 C 1322.7778,613.2683 1323.5354,611.753 1324.5456,611.248 C 1325.5558,610.7429 1326.5659,607.7124 1328.0811,608.2175 C 1329.5964,608.7226 1330.6065,608.2175 1332.1217,609.2277 C 1333.637,610.2378 1335.6573,611.248 1337.9301,611.248 C 1340.203,611.248 1347.5266,611.5005 1347.5266,611.5005 C 1347.5266,611.5005 1348.5367,611.248 1351.3146,611.753 C 1354.0926,612.2581 1360.9111,611.753 1362.9314,611.248 C 1364.9517,610.7429 1366.4669,611.5005 1366.4669,611.5005 L 1367.9822,614.2784 L 1368.9923,618.8241 C 1368.9923,618.8241 1368.2347,620.5919 1370.0025,620.5919 C 1371.7702,620.5919 1379.3464,618.8241 1379.3464,618.8241 C 1379.3464,618.8241 1381.6192,616.8038 1383.1344,616.8038 C 1384.6497,616.8038 1388.4377,615.7936 1389.4479,615.7936 C 1390.4581,615.7936 1394.7512,614.2784 1394.7512,614.2784 L 1396.519,615.5411 L 1396.0139,617.5614 C 1396.0139,617.5614 1393.9936,619.0766 1392.9834,619.5817 C 1391.9733,620.0868 1386.9225,623.6223 1386.9225,623.6223 L 1379.5989,629.4307 L 1377.0735,631.9561 L 1377.3261,634.734 L 1377.8311,640.0373 L 1378.0837,644.8355 L 1380.3565,644.583 C 1380.3565,644.583 1382.1243,640.0373 1382.8819,638.7746 C 1383.6395,637.5119 1386.4174,633.9764 1386.4174,633.9764 C 1386.4174,633.9764 1389.1954,630.6934 1389.953,628.6731 C 1390.7106,626.6528 1392.2258,623.6223 1392.9834,622.6122 C 1393.741,621.602 1399.5494,616.8038 1399.5494,616.8038 C 1399.5494,616.8038 1404.0951,612.0056 1404.8527,610.9954 C 1405.6103,609.9853 1410.9136,609.2277 1410.9136,609.2277 L 1414.1966,602.4091 L 1416.4695,599.8837 L 1417.9847,594.3279 L 1419.2474,590.0348 C 1419.2474,590.0348 1422.2779,589.5297 1424.2982,589.5297 C 1426.3185,589.5297 1432.3794,589.5297 1432.3794,589.5297 L 1435.6624,584.984 C 1435.6624,584.984 1434.9048,582.4586 1437.6827,582.4586 C 1440.4606,582.4586 1442.986,581.701 1446.0164,582.4586 C 1449.0469,583.2162 1450.0571,583.4688 1451.8248,583.7213 C 1453.5926,583.9738 1453.5926,583.9738 1455.3604,583.9738 C 1457.1281,583.9738 1462.4314,583.2162 1462.4314,583.2162 L 1466.472,581.1959 L 1468.9974,580.6908 L 1469.755,575.135 L 1470.2601,567.3063 L 1462.684,567.3063 L 1448.5418,563.7708 L 1437.9352,560.7403 C 1437.9352,560.7403 1435.9149,559.2251 1434.3997,557.7099 C 1432.8845,556.1946 1432.1268,555.1845 1430.6116,553.9218 C 1429.0964,552.6591 1424.8032,547.6083 1424.8032,547.6083 L 1425.5609,545.083 L 1427.5812,541.5474 L 1425.5609,538.7695 L 1420.005,533.9713 C 1420.005,533.9713 1416.722,529.6781 1415.7119,529.1731 C 1414.7017,528.668 1412.6814,524.8799 1412.6814,524.8799 L 1409.6509,521.5969 L 1406.368,521.8495 L 1400.8121,520.8393 L 1401.5697,518.0614 L 1405.6103,517.0512 L 1408.1357,514.0208 L 1409.3984,508.97 L 1413.1865,507.4548 C 1413.1865,507.4548 1414.4492,506.1921 1413.9441,504.9294 C 1413.439,503.6667 1410.9136,497.8583 1410.9136,497.8583 C 1410.9136,497.8583 1411.9238,492.3025 1412.1763,491.2923 C 1412.4289,490.2822 1412.4289,486.4941 1412.4289,486.4941 L 1409.9035,483.2111 C 1409.9035,483.2111 1411.4187,481.6959 1411.9238,480.6857 C 1412.4289,479.6756 1414.1966,475.635 1414.1966,475.635 L 1414.9543,472.6046 C 1414.9543,472.6046 1418.7423,471.5944 1420.7626,471.5944 C 1422.7829,471.5944 1425.3083,471.5944 1425.3083,471.5944 L 1427.8337,472.352 L 1432.3794,463.5132 L 1428.3388,458.9675 L 1428.3388,452.149 L 1427.5812,441.5424 L 1426.3185,428.9155 C 1426.3185,428.9155 1425.5609,423.6122 1426.0659,422.3495 C 1426.571,421.0868 1427.0761,418.8139 1428.0862,417.2987 C 1429.0964,415.7835 1430.6116,411.9954 1430.6116,411.9954 L 1427.5812,408.7124 L 1430.1065,404.6718 L 1434.1471,404.1667 L 1437.9352,400.1261 L 1442.4809,396.338 L 1452.0774,391.5398 L 1453.0875,382.9535 L 1448.0367,375.8825 L 1450.0571,370.3266 L 1449.0469,362.7505 L 1443.9961,359.72 C 1443.9961,359.72 1450.5621,353.15399 1452.0774,350.12359 C 1453.5926,347.09309 1458.6433,344.06259 1460.1586,342.04229 C 1461.6738,340.02199 1464.1992,333.96109 1465.2093,331.94079 C 1466.2195,329.92049 1469.755,320.32409 1469.755,320.32409 L 1472.7855,311.23274 L 1471.7753,304.66674 C 1471.7753,304.66674 1470.2601,299.61594 1473.7956,299.61594 C 1477.3312,299.61594 1485.9175,298.60584 1485.9175,298.60584 L 1489.9581,296.58554 C 1489.9581,296.58554 1493.4936,293.55506 1495.5139,293.55506 C 1497.5342,293.55506 1505.1104,292.54496 1505.1104,292.54496 L 1508.1408,286.48406 L 1515.2119,288.50436 L 1518.7474,291.53476 C 1518.7474,291.53476 1518.7474,292.03986 1516.222,293.04996 C 1513.6967,294.06016 1511.1713,298.60584 1511.1713,298.60584 C 1511.1713,298.60584 1515.717,300.62614 1513.6967,302.14134 C 1511.6764,303.65654 1507.1307,305.67694 1510.6662,306.18194 C 1514.2017,306.68704 1514.7068,305.17184 1519.7576,307.19214 C 1524.8083,309.21244 1523.7982,309.71754 1526.8286,309.71754 C 1529.8591,309.71754 1534.4048,306.68704 1534.4048,306.68704 L 1539.9606,306.68704 L 1546.0215,305.67694 L 1554.1028,301.63624 L 1558.1434,301.63624 L 1560.6688,304.16164 L 1564.7094,303.65654 C 1564.7094,303.65654 1565.2144,298.10074 1567.2347,299.61594 C 1569.2551,301.13124 1571.7804,304.16164 1571.7804,304.16164 L 1570.7703,308.70734 L 1567.7398,313.75814 L 1559.1535,319.81904 C 1559.1535,319.81904 1556.6281,317.79874 1556.6281,321.33419 C 1556.6281,324.86969 1558.6484,325.37479 1555.618,327.39509 C 1552.5875,329.41539 1549.5571,333.45599 1549.5571,333.45599 C 1549.5571,333.45599 1545.0114,335.47639 1544.0012,337.49669 C 1542.9911,339.51699 1540.9708,342.54739 1540.9708,342.54739 C 1540.9708,342.54739 1540.4657,343.55759 1542.9911,345.57789 C 1545.5165,347.59819 1552.0825,342.54739 1552.0825,342.54739 L 1555.618,341.53729 L 1558.6484,344.06259 L 1563.6992,346.58799 L 1567.7398,349.11339 L 1577.3363,348.60829 L 1581.882,352.64889 L 1585.9226,359.2149 L 1584.4073,366.7911 L 1584.4073,370.8317 C 1584.4073,370.8317 1579.3566,371.3368 1582.8921,374.3672 C 1586.4276,377.3977 1589.9632,377.9028 1594.0038,377.9028 C 1598.0444,377.9028 1604.6104,377.9028 1604.6104,377.9028 C 1604.6104,377.9028 1606.1256,369.3165 1607.6409,365.2759 C 1609.1562,361.2352 1615.2171,354.66919 1617.2374,353.65909 C 1619.2577,352.64889 1620.7729,349.61849 1620.7729,349.61849 L 1630.3694,345.07279 L 1635.9252,346.58799 L 1636.9354,341.03219 L 1640.4709,336.48649 L 1642.9963,329.92049 L 1654.613,326.38499 L 1656.6333,329.92049 L 1664.2095,324.86969 L 1670.7755,321.83929 L 1675.3212,320.32409 L 1671.2806,316.78854 L 1669.2603,312.24284 L 1671.7856,308.20224 L 1676.3313,303.15154 L 1672.7958,302.14134 L 1666.7349,304.16164 L 1661.6841,305.17184 L 1656.1283,309.71754 L 1652.5927,311.73784 L 1651.0775,310.72764 L 1645.0166,314.26314 L 1639.9658,319.31394 L 1636.9354,321.83929 L 1632.8948,322.84939 L 1622.2882,319.81904 C 1622.2882,319.81904 1626.3288,311.73784 1624.3085,311.73784 C 1622.2882,311.73784 1619.7628,308.70734 1617.2374,308.70734 C 1614.712,308.70734 1610.6714,307.69724 1610.6714,307.69724 L 1606.6308,302.64644 L 1599.5596,295.57534 C 1599.5596,295.57534 1600.5698,289.51446 1603.6002,286.48406 C 1606.6308,283.45356 1612.1866,276.88756 1612.1866,276.88756 C 1612.1866,276.88756 1614.712,270.82666 1616.7323,270.82666 C 1618.7526,270.82666 1625.8237,263.75556 1625.8237,263.75556 L 1629.3592,258.19976 L 1640.976,248.60326 L 1644.5115,252.64386 L 1650.0674,243.55256 L 1655.6232,238.50176 C 1655.6232,238.50176 1656.1283,239.00686 1658.6537,239.51196 C 1661.179,240.01696 1664.2095,241.02716 1664.7146,239.00686 C 1665.2196,236.98656 1667.2399,231.93576 1667.2399,231.93576 C 1667.2399,231.93576 1670.2704,227.39006 1672.2907,226.37996 C 1674.311,225.36976 1680.3719,223.85456 1680.3719,223.85456 L 1681.3821,217.79366 L 1691.9887,212.23776 L 1700.575,210.21746 L 1705.1207,204.15656 L 1715.7273,199.10586 L 1721.7882,192.53986 L 1728.8593,190.01446 L 1731.8897,199.10586 L 1726.8389,207.18706 L 1717.2425,213.75306 L 1712.6968,218.80376 L 1714.7171,222.33936 L 1707.646,225.87486 L 1702.5953,231.43066 L 1694.009,234.46116 L 1697.0394,241.02716 C 1697.0394,241.02716 1698.5547,243.04746 1702.0902,244.56266 C 1705.6257,246.07796 1709.6664,244.05756 1709.6664,244.05756 L 1715.7273,249.61346 L 1716.2323,255.16926 L 1717.2425,263.25046 L 1713.2019,274.86726 L 1708.1511,278.40276 C 1708.1511,278.40276 1709.1613,283.95866 1709.1613,285.97896 C 1709.1613,287.99926 1712.6968,293.04996 1712.6968,293.04996 L 1704.6156,298.60584 L 1695.5242,303.15154 L 1689.9684,302.14134 L 1683.4024,301.13124 L 1680.3719,305.67694 L 1689.4633,309.71754 L 1683.4024,315.27334 L 1693.5039,317.79874 L 1699.5648,317.79874 C 1699.5648,317.79874 1701.5851,317.79874 1702.5953,319.81904 C 1703.6054,321.83929 1707.646,325.37479 1707.646,325.37479 L 1717.2425,328.40529 L 1725.8288,328.91039 C 1725.8288,328.91039 1727.8491,323.85959 1729.8694,325.37479 C 1731.8897,326.89009 1733.91,328.91039 1736.4354,330.93069 C 1738.9608,332.95099 1744.5166,330.42559 1747.5471,331.94079 C 1750.5775,333.45599 1766.2349,334.46619 1766.2349,334.46619 L 1771.2857,337.49669 L 1778.8618,340.52709 L 1791.4887,345.57789 L 1798.0547,348.60829 L 1801.5902,353.15399 L 1812.1968,355.17429 L 1820.2781,356.18449 L 1824.3187,359.2149 C 1824.3187,359.2149 1825.3288,359.72 1827.3491,361.2352 C 1829.3694,362.7505 1836.4405,363.7606 1836.4405,363.7606 C 1836.4405,363.7606 1843.5116,362.7505 1846.0369,362.7505 C 1848.5623,362.7505 1857.1486,362.7505 1857.1486,362.7505 C 1857.1486,362.7505 1858.6639,362.2454 1861.1892,364.2657 C 1863.7146,366.286 1866.24,368.8114 1866.24,368.8114 C 1866.24,368.8114 1872.806,369.3165 1874.8263,369.8215 C 1876.8466,370.3266 1878.8669,369.3165 1880.8872,371.3368 C 1882.9075,373.3571 1885.938,379.418 1885.938,379.418 C 1885.938,379.418 1890.4837,385.984 1892.504,386.9941 C 1894.5243,388.0043 1898.0598,390.5297 1899.575,392.55 C 1901.0903,394.5703 1902.6055,407.7023 1902.6055,407.7023 L 1906.141,410.2276 L 1903.6156,415.7835 L 1899.575,423.8647 L 1900.5852,432.451 L 1895.0293,440.5322 L 1888.4634,446.5931 C 1888.4634,446.5931 1878.8669,450.6337 1878.8669,452.654 C 1878.8669,454.6744 1881.8974,458.2099 1879.8771,459.7251 C 1877.8568,461.2403 1872.3009,464.7759 1872.3009,464.7759 C 1872.3009,464.7759 1870.2806,465.281 1866.24,466.7962 C 1862.1994,468.3114 1862.1994,468.8165 1859.674,469.3216 C 1857.1486,469.8266 1851.5928,470.3317 1851.5928,470.3317 L 1846.0369,470.8368 L 1840.9862,469.8266 L 1835.4303,469.8266 L 1830.3796,473.3622 L 1826.8441,476.3926 C 1826.8441,476.3926 1824.8237,476.3926 1822.2984,477.4027 C 1819.773,478.4129 1816.7425,480.9383 1816.7425,480.9383 L 1814.7222,484.4738 L 1810.6816,486.4941 L 1805.1258,489.5246 L 1794.0141,490.0297 C 1794.0141,490.0297 1790.4786,491.5449 1787.9532,491.5449 C 1785.4278,491.5449 1781.3872,490.5347 1781.3872,490.5347 L 1777.3466,486.9992 L 1774.3161,489.0195 L 1771.2857,493.5652 L 1764.7197,494.0703 L 1757.1435,494.0703 L 1751.5877,492.05 C 1751.5877,492.05 1748.0522,488.0093 1746.0318,488.0093 C 1744.0115,488.0093 1736.9405,489.5246 1736.9405,489.5246 L 1733.91,492.05 L 1729.3643,496.5956 L 1724.8186,494.5753 L 1717.2425,490.5347 L 1715.2222,485.989 L 1710.1714,480.9383 L 1705.1207,480.9383 L 1697.5445,490.0297 L 1690.4735,487.5043 L 1685.4227,488.5144 L 1677.8465,484.4738 L 1673.3009,479.423 L 1672.2907,475.8875 L 1668.7552,472.8571 L 1664.7146,481.4434 L 1658.1486,484.4738 L 1651.0775,486.4941 L 1640.976,489.0195 C 1640.976,489.0195 1631.3795,490.0297 1627.844,490.5347 C 1624.3085,491.0398 1614.712,491.5449 1614.712,491.5449 L 1608.6511,494.5753 L 1603.0952,500.1312 C 1603.0952,500.1312 1598.5495,503.1616 1594.5089,505.687 C 1590.4683,508.2124 1584.4073,512.7581 1584.4073,512.7581 L 1576.8312,517.3038 C 1576.8312,517.3038 1576.8312,522.3545 1574.8109,523.8698 C 1572.7906,525.385 1569.7601,529.4256 1569.7601,529.4256 C 1569.7601,529.4256 1564.7094,531.951 1562.6891,532.9611 C 1560.6688,533.9713 1553.5977,540.0322 1553.5977,540.0322 L 1550.5672,544.5779 C 1550.5672,544.5779 1554.6078,547.6083 1553.5977,549.6287 C 1552.5875,551.649 1547.0317,556.6997 1547.0317,556.6997 C 1547.0317,556.6997 1547.5368,559.2251 1545.0114,559.2251 C 1542.486,559.2251 1528.8489,561.7505 1528.8489,561.7505 C 1528.8489,561.7505 1524.8083,560.2353 1522.788,560.2353 C 1520.7677,560.2353 1516.7271,559.2251 1516.7271,559.2251 L 1512.6865,556.1946 L 1510.6662,561.2454 L 1501.0698,565.286 L 1492.4835,565.7911 L 1483.8972,567.3063 L 1478.3413,567.8114 L 1473.7956,570.3368 L 1471.7753,579.4282 L 1475.8159,583.9738 L 1481.8769,587.0043 L 1487.4327,587.5094 L 1497.0291,585.4891 L 1503.5951,586.4992 L 1496.5241,589.5297 L 1489.9581,590.5398 C 1489.9581,590.5398 1485.9175,593.0652 1483.8972,593.5703 C 1481.8769,594.0754 1477.3312,595.5906 1477.3312,595.5906 L 1471.2703,600.1363 L 1468.2398,603.1667 L 1473.2906,604.682 L 1480.3616,605.6921 L 1480.3616,608.7226 C 1480.3616,608.7226 1476.8261,610.7429 1474.8058,610.7429 C 1472.7855,610.7429 1471.7753,610.7429 1469.755,610.7429 C 1467.7347,610.7429 1461.1687,612.7632 1461.1687,612.7632 L 1456.623,613.7733 L 1450.5621,614.2784 L 1440.4606,619.3292 L 1438.4403,616.2987 L 1440.9657,613.2683 C 1440.9657,613.2683 1438.9454,611.248 1436.9251,611.753 C 1434.9048,612.2581 1429.3489,613.2683 1429.3489,613.2683 L 1426.3185,615.7936 L 1430.8642,617.8139 L 1433.8946,620.8444 L 1427.3286,623.3698 C 1427.3286,623.3698 1424.2982,624.3799 1422.2779,624.3799 C 1420.2576,624.3799 1418.2372,624.3799 1418.2372,624.3799 L 1413.6916,618.319 L 1410.6611,619.8343 L 1407.1256,622.3596 L 1407.1256,624.885 L 1397.5291,625.8952 L 1395.5088,626.4002 L 1389.953,635.9967 L 1385.9124,641.5525 L 1384.9022,648.1185 L 1380.3565,650.1388 C 1380.3565,650.1388 1378.3362,651.6541 1378.3362,654.6845 C 1378.3362,657.715 1379.3464,662.7657 1379.3464,662.7657 L 1379.3464,669.8368 L 1379.8514,674.3825 L 1387.4276,673.8774 L 1394.4987,670.847 L 1402.5799,666.8063 L 1409.6509,664.786 L 1412.1763,666.8063 L 1410.156,670.3419 L 1407.1256,672.8673 L 1406.1154,676.4028 L 1400.5596,676.9079 L 1401.0647,682.4637 L 1407.1256,683.9789 L 1410.156,687.5145 L 1411.1662,694.0805 L 1413.1865,695.5957 L 1415.7119,691.5551 L 1419.2474,693.0703 L 1419.7525,697.1109 L 1417.7322,700.1414 L 1417.7322,702.6668 L 1413.1865,705.6972 L 1411.1662,708.7277 C 1411.1662,708.7277 1411.6713,710.748 1413.6916,710.748 C 1415.7119,710.748 1420.7626,708.7277 1420.7626,708.7277 L 1423.6412,712.8551 L 1428.284,716.0694 L 1427.5697,718.5694 L 1420.4269,721.7836 L 1415.0697,724.2836 L 1408.9983,720.7122 L 1409.3554,716.7836 L 1403.9983,713.5694 L 1401.1412,710.7122 L 1397.2126,711.4265 L 1398.284,716.0694 L 1401.1412,719.2836 L 1398.6412,722.4979 C 1398.6412,722.4979 1398.284,724.2836 1400.0697,724.2836 C 1401.8554,724.2836 1404.7126,724.6408 1404.7126,724.6408 L 1402.5697,727.8551 L 1397.5697,728.2122 C 1397.5697,728.2122 1397.9269,729.6408 1397.9269,731.0694 C 1397.9269,732.4979 1401.4983,734.2836 1402.9269,734.2836 C 1404.3554,734.2836 1407.2126,735.3551 1407.2126,735.3551 L 1410.784,738.2122 L 1412.5697,735.7122 L 1415.0697,731.0694 C 1415.0697,731.0694 1418.6412,729.9979 1418.9983,731.4265 C 1419.3554,732.8551 1420.0697,736.0694 1420.0697,736.0694 L 1423.284,737.4979 C 1423.284,737.4979 1424.7126,736.0694 1426.8554,736.7836 C 1428.9983,737.4979 1429.7126,737.4979 1431.8554,737.8551 C 1433.9983,738.2122 1437.5697,738.2122 1437.5697,738.2122 L 1437.9269,741.0694 L 1439.7126,747.1408 L 1439.3554,749.9979 L 1433.6412,752.1408 L 1432.9269,754.6408 L 1438.284,755.7122 L 1440.784,757.1408 L 1441.1412,759.2836 L 1440.0697,765.3551 L 1442.5697,768.9265 L 1444.7126,766.4265 C 1444.7126,766.4265 1446.4983,761.0694 1446.8554,762.8551 C 1447.2126,764.6408 1448.6412,769.9979 1448.6412,769.9979 L 1450.0697,767.8551 L 1452.5697,769.9979 L 1453.284,773.5694 C 1453.284,773.5694 1454.7126,774.6408 1454.7126,776.0694 C 1454.7126,777.4979 1453.284,779.6408 1453.284,779.6408 L 1450.0697,777.4979 L 1447.9269,777.8551 L 1443.6412,782.1408 L 1445.4269,785.7122 L 1451.4983,784.2836 C 1451.4983,784.2836 1453.284,782.8551 1456.4983,783.5694 C 1459.7126,784.2836 1465.784,782.1408 1465.784,782.1408 C 1465.784,782.1408 1468.9983,778.5694 1470.4269,778.5694 C 1471.8554,778.5694 1475.784,778.5694 1477.5697,778.5694 C 1479.3554,778.5694 1485.4269,775.3551 1483.9983,776.4265 C 1482.5697,777.4979 1478.6412,780.3551 1478.6412,780.3551 L 1475.784,782.4979 L 1477.5697,785.7122 L 1475.0697,788.5694 L 1468.6412,789.6408 C 1468.6412,789.6408 1466.8554,792.1408 1468.284,792.1408 C 1469.7126,792.1408 1472.5697,792.4979 1472.5697,792.4979 C 1472.5697,792.4979 1477.2126,793.2122 1477.5697,791.7836 C 1477.9269,790.3551 1479.7126,788.2122 1479.7126,788.2122 L 1480.4269,790.3551 L 1478.9983,793.9265 L 1476.8554,797.4979 L 1478.284,799.9979 C 1478.284,799.9979 1481.1412,800.3551 1482.2126,798.5694 C 1483.284,796.7836 1486.4983,792.8551 1486.4983,792.8551 L 1489.7126,791.4265 L 1487.5697,785.7122 L 1490.784,787.1408 L 1493.284,787.1408 L 1495.0697,783.2122 C 1495.0697,783.2122 1494.7126,784.9979 1496.1412,785.7122 C 1497.5697,786.4265 1499.3554,784.2836 1499.3554,784.2836 L 1500.784,788.2122 L 1507.9269,789.2836 L 1512.2126,791.7836 L 1513.284,788.2122 L 1511.8554,786.0694 L 1514.3554,782.8551 L 1519.7126,785.3551 L 1520.4269,788.5694 L 1518.284,793.2122 L 1520.0697,792.4979 L 1523.284,793.5694 L 1522.2126,797.8551 L 1524.7126,799.9979 L 1526.4983,801.7836 L 1532.5697,802.1408 L 1533.9983,804.2836 L 1538.9983,804.2836 L 1541.4983,806.4265 L 1546.1412,807.8551 L 1548.284,804.6408 L 1550.4269,805.3551 L 1556.1412,802.4979 L 1560.0697,798.9265 L 1565.0697,794.2836 C 1565.0697,794.2836 1565.0697,792.8551 1567.2126,793.5694 C 1569.3554,794.2836 1574.3554,794.9979 1574.3554,794.9979 L 1577.9269,793.9265 C 1577.9269,793.9265 1580.0697,789.9979 1578.6412,788.2122 C 1577.2126,786.4265 1576.4983,782.4979 1576.4983,782.4979 L 1578.6412,778.2122 L 1578.284,774.6408 L 1575.0697,769.9979 L 1576.1412,764.2836 L 1578.9983,760.7122 C 1578.9983,760.7122 1580.784,761.0694 1582.2126,761.0694 C 1583.6412,761.0694 1589.3554,758.2122 1589.3554,758.2122 L 1595.4269,758.5694 L 1603.9983,759.6408 L 1611.8555,761.4265 L 1618.6413,763.9265 L 1623.6413,764.6408 L 1631.8555,764.9979 L 1635.427,766.4265 C 1635.427,766.4265 1639.3555,768.9265 1641.4984,770.3551 C 1643.6413,771.7836 1645.7841,774.9979 1645.7841,774.9979 L 1650.427,777.8551 C 1650.427,777.8551 1653.9984,779.9979 1657.5698,779.9979 C 1661.1413,779.9979 1664.3555,780.7122 1664.3555,780.7122 L 1667.5698,781.0694 C 1667.5698,781.0694 1673.2841,776.0694 1674.7127,776.4265 C 1676.1413,776.7836 1681.1413,774.6408 1681.1413,774.6408 L 1689.7127,770.7122 L 1694.7127,767.1408 L 1698.9984,765.7122 L 1702.927,764.9979 L 1706.4984,761.7836 L 1707.927,756.4265 L 1712.2127,758.5694 L 1714.3555,752.4979 L 1715.7841,747.8551 L 1718.2841,742.8551 L 1723.2841,735.7122 L 1726.8555,728.5694 L 1730.7841,723.5694 L 1737.927,722.1408 C 1737.927,722.1408 1742.927,722.1408 1744.3555,722.1408 C 1745.7841,722.1408 1754.3555,722.4979 1754.3555,722.4979 L 1759.3555,725.3551 L 1761.8555,726.7836 L 1767.2127,723.9265 L 1767.2127,721.4265 L 1767.927,716.0694 L 1770.427,713.2122 L 1773.6413,713.2122 L 1775.427,709.2836 L 1776.8555,705.7122 L 1778.6413,702.8551 L 1782.927,702.8551 L 1786.8555,706.4265 L 1788.2841,709.2836 L 1790.0698,713.5694 L 1788.9984,716.7836 L 1784.7127,720.3551 L 1785.0698,724.9979 L 1781.4984,729.2836 L 1779.3555,732.4979 C 1779.3555,732.4979 1782.2127,733.9265 1782.2127,735.7122 C 1782.2127,737.4979 1785.0698,740.3551 1785.0698,740.3551 L 1788.9984,742.8551 L 1791.8555,747.8551 L 1789.7127,753.5694 L 1787.2127,756.0694 L 1788.9984,758.2122 L 1788.9984,761.0694 L 1786.8555,766.0694 L 1788.9984,768.5694 L 1792.5698,771.7836 C 1792.5698,771.7836 1796.4984,771.7836 1797.2127,773.2122 C 1797.927,774.6408 1799.3555,779.9979 1799.3555,779.9979 L 1802.5698,786.4265 L 1803.6413,791.0694 L 1803.2841,797.8551 L 1803.9984,802.4979 L 1808.6413,806.4265 C 1808.6413,806.4265 1807.927,810.7122 1809.3555,811.7836 C 1810.7841,812.8551 1810.0698,814.9979 1809.3555,816.7836 C 1808.6413,818.5694 1802.5698,821.7836 1802.5698,821.7836 C 1802.5698,821.7836 1804.3555,825.3551 1804.3555,826.7836 C 1804.3555,828.2122 1803.6413,832.8551 1803.6413,832.8551 C 1803.6413,832.8551 1800.7841,836.7836 1802.2127,838.5694 C 1803.6413,840.3551 1805.427,843.2122 1805.427,843.2122 L 1801.8555,849.9979 L 1802.5698,854.9979 L 1802.5698,863.5694 C 1802.5698,863.5694 1803.2841,870.3551 1801.8555,871.7836 C 1800.427,873.2122 1800.7841,883.5694 1800.7841,883.5694 L 1800.427,896.7836 C 1800.427,896.7836 1801.1413,902.4979 1801.1413,904.2836 C 1801.1413,906.0694 1799.7127,907.4979 1799.7127,907.4979 L 1796.8555,913.9265 C 1796.8555,913.9265 1798.6413,920.3551 1798.9984,921.7836 C 1799.3555,923.2122 1800.427,939.2836 1800.427,939.2836 L 1800.7841,947.1408 C 1800.7841,947.1408 1801.4984,953.2122 1800.7841,954.9979 C 1800.0698,956.7836 1799.3555,964.6408 1799.3555,966.0694 C 1799.3555,967.4979 1797.5698,973.2122 1796.1413,974.99792 C 1794.7127,976.78362 1791.4984,983.56942 1790.7841,985.35512 C 1790.0698,987.14082 1784.7127,994.28362 1784.7127,994.28362 L 1775.427,999.99792 C 1775.427,999.99792 1768.9984,1004.2836 1767.5698,1004.9979 C 1766.1413,1005.7122 1764.3555,1006.4265 1764.3555,1006.4265 L 1764.3555,1006.7836 L 1764.3555,1006.7836 L 1757.5698,1004.9979 L 1750.427,1005.355 L 1741.8555,1005.7122 C 1741.8555,1005.7122 1735.427,1009.9979 1733.9984,1011.0693 C 1732.5698,1012.1407 1729.7127,1015.7122 1729.7127,1015.7122 L 1725.427,1019.2836 L 1721.4984,1020.355 L 1715.0698,1015.7122 L 1707.2127,1012.1407 C 1707.2127,1012.1407 1703.6413,1012.855 1701.8555,1012.1407 C 1700.0698,1011.4265 1695.7841,1007.4979 1695.7841,1007.4979 L 1692.927,1005.3551 L 1685.7841,1005.355 C 1685.7841,1005.355 1682.927,1007.855 1680.7841,1008.9265 C 1678.6413,1009.9979 1676.8555,1011.0693 1674.7127,1011.4265 C 1672.5698,1011.7836 1670.427,1011.0693 1667.5698,1011.0693 C 1664.7127,1011.0693 1661.1413,1008.5693 1659.3555,1008.9265 C 1657.5698,1009.2836 1653.6413,1010.7122 1653.6413,1010.7122 C 1653.6413,1010.7122 1650.427,1012.1407 1648.6413,1012.855 C 1646.8555,1013.5693 1642.5698,1016.0693 1640.7841,1017.1407 C 1638.9984,1018.2122 1633.9984,1021.7836 1633.9984,1021.7836 L 1626.1413,1022.4979 C 1626.1413,1022.4979 1626.4984,1024.6407 1626.4984,1026.7836 C 1626.4984,1028.9265 1627.2127,1031.0693 1626.4984,1032.855 C 1625.7841,1034.6407 1623.2841,1035.355 1623.2841,1035.355 L 1618.6413,1033.2122 L 1616.1413,1035.7122 C 1616.1413,1035.7122 1609.3555,1038.9265 1609.3555,1040.355 C 1609.3555,1041.7836 1607.2127,1045.7122 1607.2127,1045.7122 C 1607.2127,1045.7122 1603.6412,1047.1407 1602.9269,1049.2836 C 1602.2126,1051.4265 1601.8554,1051.7836 1600.0697,1053.9265 C 1598.284,1056.0693 1590.0697,1062.4979 1590.0697,1062.4979 C 1590.0697,1062.4979 1586.1412,1064.9979 1584.7126,1065.7122 C 1583.284,1066.4265 1578.284,1067.855 1578.284,1067.855 C 1578.284,1067.855 1573.9983,1064.9979 1571.8554,1064.2836 C 1569.7126,1063.5693 1569.3554,1062.855 1566.8554,1062.1407 C 1564.3554,1061.4265 1558.6412,1058.2122 1557.2126,1058.5693 C 1555.784,1058.9265 1554.7126,1059.2836 1551.4983,1059.9979 C 1548.284,1060.7122 1543.9983,1062.1407 1543.9983,1062.1407 L 1534.7126,1062.855 L 1530.4269,1061.7836 L 1528.284,1058.2122 L 1520.4269,1061.7836 L 1509.3554,1061.7836 L 1506.4983,1059.6407 L 1503.6412,1054.6407 L 1500.4269,1056.0693 L 1495.0697,1056.4265 L 1489.7126,1055.7122 L 1485.4269,1056.0693 L 1479.7126,1056.4265 L 1477.2126,1054.2836 L 1441.8554,1053.5693 L 1426.4983,1061.7836 L 1414.7126,1064.9979 L 1411.1412,1060.7122 L 1407.5697,1053.9265 L 1403.9983,1051.4265 L 1403.284,1045.7122 L 1394.7126,1041.4265 L 1387.9269,1042.855 L 1379.7126,1046.4265 L 1370.0697,1049.6407 C 1370.0697,1049.6407 1364.3554,1046.7836 1362.9269,1046.7836 C 1361.4983,1046.7836 1351.4983,1043.9265 1351.4983,1043.9265 L 1334.7126,1043.9265 L 1327.9269,1044.9979 L 1324.3554,1039.2836 L 1319.3554,1032.4979 L 1317.2126,1026.4265 C 1317.2126,1026.4265 1319.3554,1023.9265 1316.4983,1023.9265 C 1313.6412,1023.9265 1299.7126,1021.4265 1299.7126,1021.4265 L 1289.7126,1017.4979 L 1281.8554,1017.1407 L 1277.5697,1017.4979 L 1276.1412,1014.6407 L 1273.284,1017.855 L 1265.4269,1017.855 C 1265.4269,1017.855 1259.3554,1015.7122 1257.9269,1016.4265 C 1256.4983,1017.1407 1251.1412,1019.2836 1251.1412,1019.2836 L 1247.5697,1024.9979 L 1239.3554,1027.1407 L 1227.9269,1030.7122 L 1223.6412,1034.2836 L 1216.1412,1039.6407 L 1206.4983,1046.0693 L 1193.6412,1062.4979 L 1189.3554,1076.7837 C 1189.3554,1076.7837 1191.4983,1087.8551 1191.4983,1089.2837 C 1191.4983,1090.7123 1202.5697,1109.998 1202.5697,1109.998 L 1204.7126,1116.7837 L 1199.3554,1131.4266 L 1188.284,1148.9266 L 1179.3554,1154.998 C 1179.3554,1154.998 1171.8554,1162.498 1170.4269,1162.498 C 1168.9983,1162.498 1157.5697,1163.2123 1157.5697,1163.2123 C 1157.5697,1163.2123 1151.8554,1161.0694 1150.0697,1160.3551 C 1148.284,1159.6408 1142.9269,1156.7837 1142.9269,1156.7837 C 1142.9269,1156.7837 1138.284,1150.7123 1136.8554,1150.7123 C 1135.4269,1150.7123 1130.0697,1148.9266 1128.9983,1147.498 C 1127.9269,1146.0694 1122.5697,1141.4266 1122.5697,1141.4266 L 1115.0697,1139.998 L 1108.9983,1138.5694 L 1105.4269,1134.998 L 1094.3554,1132.498 L 1084.7126,1128.9266 L 1062.9268,1124.6408 L 1042.2126,1124.998 L 1020.4269,1121.4266 L 1011.8554,1115.3551 L 1006.8554,1109.2837 C 1006.8554,1109.2837 999.71263,1099.6408 999.71263,1097.1408 C 999.71263,1094.6408 996.14123,1086.0694 995.42693,1084.2837 C 994.71263,1082.498 993.28403,1073.5694 993.28403,1073.5694 L 986.85553,1067.4979 C 986.85553,1067.4979 978.64123,1067.1407 976.49833,1067.1407 C 974.35553,1067.1407 965.42693,1066.4265 965.42693,1066.4265 L 956.14123,1060.7122 L 947.21263,1056.0693 C 947.21263,1056.0693 942.92693,1053.2122 941.49833,1053.2122 C 940.06983,1053.2122 931.14123,1050.355 931.14123,1050.355 L 926.14123,1052.1407 C 926.14123,1052.1407 921.14123,1051.4265 919.71263,1051.4265 C 918.28413,1051.4265 910.78413,1047.1407 910.78413,1047.1407 L 905.06983,1047.1407 L 898.28413,1048.9265 L 893.99833,1051.7836 L 876.49833,1052.1407 L 868.99833,1050.7122 L 858.28413,1044.6407 L 845.78413,1037.855 C 845.78413,1037.855 839.35553,1035.7122 837.92693,1034.9979 C 836.49833,1034.2836 828.64123,1029.9979 828.64123,1029.9979 L 828.64123,1032.855 C 828.64123,1032.855 822.56983,1034.2836 821.49833,1032.855 C 820.42693,1031.4265 820.78413,1027.855 820.78413,1027.855 L 825.06983,1029.2836 L 820.78413,1024.2836 L 818.64123,1021.0693 L 819.71263,1016.4265 L 812.92693,1011.0693 L 810.42693,1008.2122 L 812.21263,1007.1407 L 816.14123,1001.7836 L 811.85553,998.21222 L 805.06983,998.21222 L 803.28413,1002.1407 L 802.92693,1005.7122 L 798.28413,1008.2122 C 798.28413,1008.2122 793.99833,1009.9979 792.21263,1009.2836 C 790.42693,1008.5693 786.14123,1006.4265 786.14123,1006.4265 C 786.14123,1006.4265 778.28413,1000.355 778.28413,998.92652 C 778.28413,997.49792 772.56983,990.35502 772.56983,990.35502 L 772.56983,983.92652 L 774.35553,982.49792 L 779.35553,976.78362 C 779.35553,976.78362 779.35553,973.9265 782.56983,973.9265 C 785.78413,973.9265 788.64123,971.7836 788.64123,971.7836 L 792.56983,967.4979 L 797.56983,967.4979 L 799.35553,963.5694 L 803.28413,959.9979 C 803.28413,959.9979 806.14123,956.4265 806.85553,954.9979 C 807.56983,953.5694 811.14123,948.2122 811.14123,948.2122 L 813.64123,943.2122 L 815.42693,937.4979 L 818.99833,932.4979 L 817.92693,929.9979 L 813.64123,925.7122 L 816.49833,918.5694 L 816.85553,913.9265 L 812.92693,910.7122 L 809.35553,911.0694 L 806.85553,909.2836 L 806.85553,906.4265 L 801.85553,907.4979 L 799.35553,903.2122 C 799.35553,903.2122 795.42693,898.5694 795.42693,897.1408 C 795.42693,895.7122 793.28413,888.5694 793.28413,888.5694 L 794.35553,880.7122 L 797.56983,876.0694 L 801.14123,874.6408 L 805.06983,872.4979 L 808.64123,865.7122 L 812.21263,858.9265 L 814.71263,856.0694 L 817.56983,853.2122 L 818.64123,850.7122 L 817.56983,849.2836 L 817.21263,846.4265 L 816.49833,843.5694 L 812.92693,843.5694 L 809.71263,844.2836 L 809.71263,847.8551 L 805.42693,849.9979 L 801.14123,852.4979 L 797.21263,852.4979 L 797.21263,856.0694 L 792.21263,859.9979 L 786.49833,860.3551 L 783.28413,858.2122 L 785.06983,856.4265 L 787.92693,854.9979 L 785.06983,851.7836 L 782.56983,848.5694 L 781.85553,844.6408 L 777.92693,840.7122 L 781.49833,839.2836 L 781.85553,836.7836 L 778.64123,835.3551 L 774.35553,833.9265 L 769.71263,833.9265 L 768.28413,831.0694 L 761.14123,829.6408 L 755.78413,832.1408 L 753.99833,833.2122 L 746.14123,834.9979 L 743.99833,834.2836 L 740.06983,836.7836 L 736.49833,839.6408 L 731.85553,843.5694 L 728.64123,847.4979 L 724.35553,847.8551 C 724.35553,847.8551 721.85553,846.7836 720.42693,847.1408 C 718.99833,847.4979 714.35553,849.6408 714.35553,849.6408 L 708.28413,849.6408 L 705.42693,847.8551 L 701.49833,849.2836 L 694.71263,851.0694 L 688.28413,851.4265 L 686.14123,848.5694 L 685.06983,845.3551 L 678.64123,845.7122 L 677.56983,842.4979 L 673.99823,841.0694 C 673.99823,841.0694 671.49823,839.9979 669.71253,839.2836 C 667.92683,838.5694 664.71253,838.5694 664.71253,838.5694 L 666.14113,843.5694 C 666.14113,843.5694 666.14113,846.7836 664.71253,847.1408 C 663.28403,847.4979 660.06973,848.2122 660.06973,848.2122 L 653.28403,848.5694 L 652.56973,844.9979 L 648.28403,844.9979 L 641.49823,842.8551 L 640.06973,839.2836 L 634.35543,835.7122 L 629.71253,838.2122 L 628.99823,842.8551 L 625.42683,846.4265 C 625.42683,846.4265 621.14113,847.8551 619.35543,848.2122 C 617.56973,848.5694 612.21253,849.6408 612.21253,849.6408 L 606.85543,847.4979 L 601.49823,849.6408 L 597.92683,852.8551 L 592.92683,856.4265 L 584.71253,855.7122 L 578.99823,850.7122 C 578.99823,850.7122 580.42683,849.2836 578.99823,847.8551 C 577.56973,846.4265 572.56973,842.1408 570.78403,842.1408 C 568.99823,842.1408 563.64113,839.2836 563.64113,839.2836 L 554.71253,839.6408 L 547.56973,839.2836 L 539.35543,838.5694 L 535.78403,837.1408 L 525.78403,841.0694 L 519.35543,843.5694 L 513.64113,843.5694 L 508.64113,842.1408 L 507.92683,844.9979 L 503.64113,844.2836 L 501.14113,840.3551 L 496.85543,840.3551 L 492.92683,842.4979 L 487.21253,846.4265 L 482.21253,849.9979 L 477.21253,849.2836 L 472.92683,846.0694 L 467.21253,847.4979 L 456.85543,848.2122 C 456.85543,848.2122 448.28403,847.4979 446.49823,847.4979 C 444.71253,847.4979 441.14113,847.8551 441.14113,847.8551 L 435.42683,845.7122 L 426.49823,849.9979 L 421.85543,847.4979 C 421.85543,847.4979 419.35543,848.2122 417.92682,849.2836 C 416.49822,850.3551 413.64112,853.2122 413.64112,853.2122 C 413.64112,853.2122 408.28402,854.6408 406.49822,854.9979 C 404.71252,855.3551 398.64112,856.4265 398.64112,856.4265 L 392.21252,858.9265 L 385.78402,862.4979 L 380.78402,867.4979 L 375.78402,873.2122 L 371.49822,874.6408 L 366.49822,872.4979 C 366.49822,872.4979 365.06972,868.5694 363.64112,868.9265 C 362.21252,869.2836 357.21252,869.6408 357.21252,869.6408 C 357.21252,869.6408 355.06972,872.4979 353.64112,873.5694 C 352.21252,874.6408 348.64112,876.4265 348.64112,876.4265 L 344.35542,873.2122 L 339.71252,875.7122 C 339.71252,875.7122 335.42682,878.5694 333.99822,878.9265 C 332.56972,879.2836 329.71252,880.7122 329.71252,880.7122 L 322.21252,890.7122 L 317.56972,892.4979 C 317.56972,892.4979 313.99822,893.2122 311.85542,894.2836 C 309.71252,895.3551 300.78402,899.6408 300.78402,899.6408 L 294.71252,899.6408 L 288.28402,898.2122 L 281.85542,895.3551 L 277.21252,891.7836 L 270.78402,893.5694 L 265.42682,893.2122 L 259.71252,887.4979 L 258.28402,882.8551 L 255.78402,875.7122 C 255.78402,875.7122 252.21252,877.8551 252.21252,879.2836 C 252.21252,880.7122 254.35542,881.4265 252.56972,882.1408 C 250.78402,882.8551 244.71252,884.2836 244.71252,884.2836 L 239.71252,881.7836 L 234.71252,882.1408 L 230.78402,879.2836 L 226.14112,876.7836 L 221.14112,881.4265 L 215.78402,877.4979 L 203.99817,877.4979 L 193.28397,877.8551 L 183.99817,873.9265 L 177.92677,867.8551 L 172.21247,859.2836 L 167.92677,852.1408 L 166.85537,844.6408 L 166.14107,839.9979 L 169.35537,836.0694 L 163.64107,834.6408 L 157.92677,837.8551 L 147.92677,836.7836 L 142.92677,836.0694 z"
id="path2792"
style="fill:#fcf5e3;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
<g
transform="translate(279.28571,-8.7193251)"
id="layer1"
style="display:inline">
<rect
width="2048"
height="1211"
x="-490.50027"
y="-2574.9634"
id="rect3598"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="layer7"
style="display:inline">
<path
d="M 1589.0775,758.627 L 1574.6364,700.80364 C 1559.9501,671.2849 1579.8096,646.54193 1596.4305,613.30033 C 1598.909,608.34323 1600.5596,603.00853 1602.618,597.86283 C 1610.8312,577.32974 1625.7504,560.89554 1630.3992,542.30034 C 1635.1957,523.11424 1651.8764,508.65404 1658.1805,492.89404 C 1659.6861,489.12984 1661.74,485.48524 1664.2117,482.01904 L 1664.7117,481.80034 L 1665.2742,480.58154 C 1666.8299,478.52114 1668.5404,476.51124 1670.3367,474.58154 L 1672.3055,476.23784 L 1673.3055,479.76904 L 1677.8367,484.83154 L 1685.4305,488.86284 L 1690.4617,487.86284 L 1697.5555,490.36284 L 1705.118,481.26904 L 1710.1805,481.26904 L 1715.2117,486.33154 L 1717.243,490.89404 L 1724.8055,494.92534 L 1729.368,496.92534 L 1733.8992,492.39404 L 1736.9305,489.86284 C 1736.9305,489.86284 1744.0039,488.36284 1746.0242,488.36284 C 1748.0446,488.36284 1751.5867,492.39404 1751.5867,492.39404 L 1757.1492,494.42534 L 1764.7117,494.42534 L 1771.2742,493.92534 L 1774.3055,489.36284 L 1777.3367,487.33154 L 1781.3992,490.89404 C 1781.3992,490.89404 1785.4363,491.89404 1787.9617,491.89404 C 1790.4871,491.89404 1794.0242,490.36284 1794.0242,490.36284 L 1805.118,489.86284 L 1810.6805,486.83154 L 1814.7117,484.83154 L 1816.743,481.26904 C 1816.743,481.26904 1819.7801,478.74794 1822.3055,477.73784 C 1824.8308,476.72774 1826.8367,476.73784 1826.8367,476.73784 L 1830.368,473.70654 L 1835.4305,470.17534 L 1840.993,470.17534 L 1846.0242,471.17534 L 1851.5867,470.67534 C 1851.5867,470.67534 1857.1551,470.18024 1859.6805,469.67534 C 1862.2059,469.17024 1862.2024,468.65924 1866.243,467.14404 C 1870.2836,465.62884 1872.3055,465.11284 1872.3055,465.11284 C 1872.3055,465.11284 1877.8477,461.59674 1879.868,460.08154 C 1881.8883,458.56634 1878.868,455.00814 1878.868,452.98784 C 1878.868,450.96754 1888.4617,446.92534 1888.4617,446.92534 L 1895.0242,440.86284 L 1897.2117,437.70654 C 1898.6917,438.59724 1900.2749,439.48814 1902.0867,440.39404 C 1912.2328,445.46704 1866.3446,526.98224 1882.0122,530.72788 C 1914.5515,538.50705 1926.9378,545.4204 1950.7087,567.76528 C 1960.9275,577.37102 1983.4166,581.54933 1999.3429,585.53093 C 2009.8034,588.14603 2030.2779,594.86996 2047.5555,603.34976 L 2048.3274,672.56666 C 2039.221,682.56816 2027.9422,739.353 1997.8117,770.7504 C 1979.4049,780.2877 1959.9606,826.46991 1941.4357,871.86817 C 1932.6168,923.54793 1949.1122,939.61643 1925.243,1017.7691 C 1892.6771,1085.92 1923.6951,1088.242 1877.3992,1133.5503 C 1877.2916,1133.7654 1877.1831,1133.9771 1877.0867,1134.2065 L 1876.8367,1133.3315 L 1870.2742,1130.8003 L 1863.7117,1133.8315 L 1859.1805,1136.8628 L 1854.118,1135.8628 L 1852.0867,1140.3941 L 1849.0555,1139.8941 L 1850.0867,1134.8628 L 1852.0867,1128.3003 L 1851.5867,1117.6753 L 1850.5867,1111.6128 L 1849.5867,1103.5503 L 1848.5555,1095.4565 L 1848.0555,1085.3628 L 1847.5555,1076.2691 L 1845.5242,1064.6441 L 1842.993,1066.6753 L 1840.993,1074.2378 L 1840.993,1081.8315 L 1838.9617,1096.9565 C 1838.9617,1096.9565 1839.9617,1108.0925 1839.9617,1110.1128 C 1839.9617,1112.1331 1838.9617,1120.2065 1838.9617,1120.2065 L 1838.4617,1130.3003 L 1841.493,1140.3941 L 1843.5242,1147.4878 L 1839.9617,1159.0815 L 1832.8992,1158.0815 L 1819.2742,1153.5503 C 1819.2742,1153.5503 1809.1695,1148.503 1807.1492,1146.9878 C 1805.1289,1145.4725 1796.0242,1140.3941 1796.0242,1140.3941 L 1785.9305,1135.3628 L 1780.368,1126.2691 L 1776.8367,1113.1441 L 1769.7742,1109.0815 L 1763.2117,1104.0503 L 1753.618,1096.4565 L 1748.5555,1085.3628 L 1741.493,1081.3003 L 1736.4305,1073.2378 L 1735.9305,1077.7691 L 1731.8992,1083.8315 L 1735.4305,1091.4253 L 1740.993,1096.4565 L 1748.0555,1103.5503 L 1752.0867,1111.6128 L 1756.1492,1121.2065 L 1761.6805,1124.7378 L 1769.2742,1133.8315 L 1776.8367,1140.3941 L 1785.9305,1147.4878 L 1795.0242,1153.0503 L 1802.0867,1158.0815 L 1807.1492,1164.6441 L 1804.618,1167.1753 L 1808.6492,1171.7378 L 1808.6492,1174.2378 L 1815.243,1180.3003 L 1820.7742,1184.3628 L 1826.8367,1188.3941 L 1829.868,1194.9565 L 1833.9305,1198.4878 L 1841.993,1204.5503 L 1839.4617,1208.0815 L 1842.9305,1213.5503 L 1559.8055,1213.5503 C 1559.5342,1211.0961 1559.368,1208.6183 1559.368,1206.1128 C 1559.368,1183.4259 1570.3174,1175.5117 1559.368,1153.6128 C 1550.8714,1136.6198 1521.1424,1115.9687 1509.993,1110.3941 C 1492.3599,1101.5776 1468.6592,1090.6854 1457.493,1079.5191 C 1453.5029,1075.529 1451.6389,1064.8952 1449.993,1054.0815 L 1477.2117,1054.6441 L 1479.7117,1056.7691 L 1485.4305,1056.4253 L 1489.7117,1056.0503 L 1495.0555,1056.7691 L 1500.4305,1056.4253 L 1503.6492,1054.9878 L 1506.493,1059.9878 L 1509.368,1062.1441 L 1520.4305,1062.1441 L 1528.2742,1058.5503 L 1530.4305,1062.1441 L 1534.7117,1063.2065 L 1543.993,1062.4878 C 1543.993,1062.4878 1548.2787,1061.0458 1551.493,1060.3315 C 1554.7073,1059.6173 1555.7831,1059.2825 1557.2117,1058.9253 C 1558.6403,1058.5682 1564.3679,1061.7736 1566.868,1062.4878 C 1569.368,1063.2021 1569.7251,1063.9298 1571.868,1064.6441 C 1574.0109,1065.3583 1578.2742,1068.2066 1578.2742,1068.2065 C 1578.2742,1068.2065 1583.2831,1066.7646 1584.7117,1066.0503 C 1586.1403,1065.336 1590.0555,1062.8315 1590.0555,1062.8315 C 1590.0555,1062.8315 1598.2698,1056.4118 1600.0555,1054.2691 C 1601.8412,1052.1262 1602.2161,1051.787 1602.9305,1049.6441 C 1603.6448,1047.5011 1607.2117,1046.0503 1607.2117,1046.0503 C 1607.2117,1046.0503 1609.368,1042.1352 1609.368,1040.7065 C 1609.368,1039.2781 1616.1492,1036.0503 1616.1492,1036.0503 L 1618.6492,1033.5503 L 1623.2742,1035.7065 C 1623.2742,1035.7065 1625.7786,1034.9923 1626.493,1033.2065 C 1627.2073,1031.4209 1626.4929,1029.287 1626.493,1027.1441 C 1626.493,1025.0011 1626.1492,1022.8315 1626.1492,1022.8315 L 1633.993,1022.1441 C 1633.993,1022.1441 1638.9885,1018.5593 1640.7742,1017.4878 C 1642.5599,1016.4164 1646.8634,1013.9209 1648.6492,1013.2065 C 1650.4349,1012.4923 1653.6492,1011.0503 1653.6492,1011.0503 C 1653.6492,1011.0503 1657.5823,1009.6261 1659.368,1009.2691 C 1661.1538,1008.9119 1664.6984,1011.4253 1667.5555,1011.4253 C 1670.4127,1011.4253 1672.5688,1012.1261 1674.7117,1011.7691 C 1676.8545,1011.4119 1678.6314,1010.3404 1680.7742,1009.2691 C 1682.9171,1008.1975 1685.7742,1005.7066 1685.7742,1005.7065 L 1692.9305,1005.7065 L 1695.7742,1007.8315 C 1695.7742,1007.8315 1700.0823,1011.7736 1701.868,1012.4878 C 1703.6538,1013.2021 1707.2117,1012.4878 1707.2117,1012.4878 L 1715.0555,1016.0503 L 1721.493,1020.7065 L 1725.4305,1019.6441 L 1729.7117,1016.0503 C 1729.7117,1016.0503 1732.5643,1012.4967 1733.993,1011.4253 C 1735.4216,1010.3539 1741.868,1006.0503 1741.868,1006.0503 L 1750.4305,1005.7065 L 1757.5555,1005.3315 L 1764.368,1007.1441 L 1764.368,1006.7691 C 1764.368,1006.7691 1766.127,1006.0458 1767.5555,1005.3315 C 1768.9841,1004.6173 1775.4305,1000.3315 1775.4305,1000.3315 L 1784.7117,994.64413 C 1784.7117,994.64413 1790.0599,987.49223 1790.7742,985.70653 C 1791.4885,983.92093 1794.7206,977.11723 1796.1492,975.33153 C 1797.5777,973.54583 1799.368,967.85383 1799.368,966.42533 C 1799.368,964.99673 1800.0599,957.11723 1800.7742,955.33153 C 1801.4885,953.54593 1800.7742,947.48783 1800.7742,947.48783 L 1800.4305,939.64413 C 1800.4305,939.64413 1799.35,923.57273 1798.993,922.14413 C 1798.6359,920.71563 1796.868,914.26913 1796.868,914.26913 L 1799.7117,907.83153 C 1799.7117,907.83153 1801.1492,906.42993 1801.1492,904.64413 C 1801.1492,902.85843 1800.4305,897.14413 1800.4305,897.14413 L 1800.7742,883.92533 C 1800.7742,883.92533 1800.4395,873.57273 1801.868,872.14413 C 1803.2966,870.71563 1802.5555,863.92533 1802.5555,863.92533 L 1802.5555,855.33153 L 1801.868,850.33153 L 1805.4305,843.55033 C 1805.4305,843.55033 1803.6403,840.71103 1802.2117,838.92533 C 1800.7831,837.13953 1803.6492,833.20663 1803.6492,833.20653 C 1803.6492,833.20653 1804.368,828.57273 1804.368,827.14413 C 1804.368,825.71563 1802.5555,822.14403 1802.5555,822.14413 C 1802.5555,822.14413 1808.6538,818.92983 1809.368,817.14413 C 1810.0823,815.35833 1810.7966,813.21553 1809.368,812.14413 C 1807.9395,811.07263 1808.6492,806.76913 1808.6492,806.76913 L 1803.993,802.83153 L 1803.2742,798.20653 L 1803.6492,791.42533 L 1802.5555,786.76903 L 1799.368,780.33153 C 1799.368,780.33153 1797.926,774.97893 1797.2117,773.55033 C 1796.4974,772.12173 1792.5555,772.14403 1792.5555,772.14403 L 1788.993,768.92533 L 1786.868,766.42533 L 1788.993,761.42533 L 1788.993,758.55033 L 1787.2117,756.42533 L 1789.7117,753.92533 L 1791.868,748.20653 L 1788.993,743.20653 L 1785.0555,740.70653 C 1785.0555,740.70653 1782.2117,737.83603 1782.2117,736.05033 C 1782.2117,734.26463 1779.368,732.83153 1779.368,732.83153 L 1781.493,729.64403 L 1785.0555,725.33153 L 1784.7117,720.70653 L 1788.993,717.14403 L 1790.0555,713.92533 L 1788.2742,709.64403 L 1786.868,706.76903 L 1782.9305,703.20653 L 1778.6492,703.20653 L 1776.868,706.05033 L 1775.4305,709.64403 L 1773.6492,713.55033 L 1770.4305,713.55033 L 1767.9305,716.42533 L 1767.2117,721.76903 L 1767.2117,724.26903 L 1761.868,727.14403 L 1759.368,725.70653 L 1754.368,722.83153 C 1754.368,722.83153 1745.7966,722.48773 1744.368,722.48783 C 1742.9395,722.48783 1737.9305,722.48773 1737.9305,722.48783 L 1730.7742,723.92533 L 1726.868,728.92533 L 1723.2742,736.05033 L 1718.2742,743.20653 L 1715.7742,748.20653 L 1714.368,752.83153 L 1712.2117,758.92533 L 1707.9305,756.76903 L 1706.493,762.14403 L 1702.9305,765.33153 L 1698.993,766.05033 L 1694.7117,767.48783 L 1689.7117,771.05033 L 1681.1492,774.98783 C 1681.1492,774.98783 1676.1403,777.12613 1674.7117,776.76903 C 1674.48,776.71113 1674.1262,776.80803 1673.7117,776.98783 L 1667.3988,780.45873 L 1660.8493,780.18584 L 1652.3895,779.64004 L 1645.5671,775.2737 L 1642.5652,771.72604 L 1631.9223,765.44942 L 1618.0045,763.53914 L 1602.9952,759.44569 L 1589.0775,758.627 z"
id="path5365"
style="fill:#ffd42a;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
<g
id="layer6"
style="display:inline;fill:#ff8080">
<path
d="M 848.40625,265.28125 C 830.66725,271.76605 846.92064,273.49478 797.6875,285.71875 C 789.388,289.8685 750.29671,311.91446 736.28125,319.6875 C 736.86786,319.80893 736.89947,319.90951 735.96875,319.875 C 736.03561,319.83794 736.21319,319.72524 736.28125,319.6875 C 732.829,318.97284 707.26587,317.35973 707.625,335.78125 C 687.09837,331.03914 677.21498,373.78078 674.34375,393.03125 C 672.15094,407.73315 607.04414,401.84776 596.96875,415.28125 C 543.5768,464.86529 562.34319,588.58462 372.125,497.59375 L 365.03125,501.625 L 357.96875,502.125 L 350.40625,504.15625 L 346.34375,504.15625 L 340.8125,502.125 L 334.75,496.5625 L 330.1875,494.5625 L 324.625,491.53125 L 320.09375,493.53125 L 316.0625,495.5625 L 310.5,491.53125 L 304.9375,489.5 L 301.90625,485.96875 L 297.875,485.96875 L 291.8125,486.96875 C 291.8125,486.96876 291.81125,484.46365 288.78125,484.96875 C 285.75125,485.47386 279.1875,484.4375 279.1875,484.4375 L 268.0625,483.4375 L 260,480.40625 L 252.40625,476.375 L 244.84375,472.34375 C 244.84376,472.34376 242.81125,470.3125 239.78125,470.3125 C 236.75125,470.3125 232.21875,469.3125 232.21875,469.3125 L 225.125,465.25 L 223.125,462.71875 L 220.09375,464.25 L 214.03125,464.75 L 204.9375,464.75 L 192.8125,459.71875 L 189.28125,458.6875 L 178.15625,456.6875 L 174.125,455.65625 L 171.09375,450.09375 L 168.0625,446.5625 L 166.375,446.96875 L 164.25,445.53125 L 162.8125,443.40625 L 158.1875,444.84375 L 156.03125,442.34375 L 152.8125,444.125 L 145.6875,444.46875 C 145.6875,444.46875 145.31725,445.89279 143.53125,446.25 C 141.74525,446.6071 138.1875,447.6875 138.1875,447.6875 L 138.1875,449.46875 L 139.59375,453.75 L 139.96875,457.34375 L 135.3125,455.90625 L 131.375,457.34375 C 131.37499,457.34376 128.87975,457.6875 127.09375,457.6875 C 125.30875,457.6875 120.6875,456.96875 120.6875,456.96875 L 117.8125,454.84375 L 114.59375,454.84375 L 112.46875,458.03125 L 107.46875,459.125 L 103.1875,459.84375 L 102.46875,461.96875 L 98.53125,465.53125 L 97.8125,469.125 L 96.75,471.96875 L 100.6875,471.96875 L 102.46875,475.53125 L 101.03125,478.75 L 104.59375,479.46875 L 103.1875,483.40625 L 100.3125,486.96875 L 103.875,489.84375 L 104.25,493.03125 L 106.75,495.53125 L 105.3125,498.03125 L 101.75,500.90625 L 107.8125,500.90625 L 107.09375,502.6875 L 102.46875,505.1875 L 101.75,508.03125 L 105.3125,510.53125 L 102.09375,512.34375 L 100.6875,516.625 L 99.25,521.25 L 101.375,522.34375 L 98.1875,531.96875 L 98.53125,540.1875 L 98.1875,549.84375 L 97.09375,561.96875 L 96.75,569.84375 L 90.6875,582.6875 L 84.59375,591.96875 L 79.59375,601.96875 L 79.96875,605.53125 L 77.46875,610.1875 L 69.25,622.6875 L 64.96875,629.84375 L 54.59375,636.96875 L 51.75,637.6875 L 53.1875,641.625 L 49.25,646.625 L 46.375,649.125 L 46.375,653.75 L 44.25,657.6875 L 41.375,661.625 L 40.6875,664.84375 L 41.375,668.75 L 46.75,669.84375 L 48.53125,670.1875 L 48.1875,675.90625 L 46.375,682.34375 L 51.75,684.125 L 56.375,682.6875 L 58.53125,685.90625 L 61.03125,691.96875 L 58.1875,701.96875 L 53.1875,708.40625 L 56.03125,712.6875 L 52.46875,718.75 L 52.46875,724.84375 L 50.6875,733.40625 L 46.375,738.03125 L 42.8125,744.84375 L 38.53125,750.90625 L 39.59375,753.40625 L 46.03125,751.96875 C 46.031251,751.96872 48.1875,749.81695 50.6875,750.53125 C 53.187501,751.24554 57.09375,751.96875 57.09375,751.96875 L 61.375,753.75 L 66.03125,755.1875 L 72.09375,757.6875 L 74.59375,758.75 L 76.03125,761.96875 L 78.875,763.75 C 78.875003,763.75 82.10225,765.18292 83.53125,764.46875 C 84.960247,763.75445 89.59375,760.90625 89.59375,760.90625 C 89.593751,760.90623 96.04075,760.1875 97.46875,760.1875 C 98.897751,760.18747 108.875,758.75 108.875,758.75 C 108.875,758.75 111.018,759.83485 113.875,760.90625 C 116.732,761.97773 122.46875,765.1875 122.46875,765.1875 C 122.46875,765.1875 122.0985,770.1964 125.3125,771.625 C 128.5265,773.0536 131.75,774.46875 131.75,774.46875 L 136.03125,773.40625 L 136.03125,771.625 L 135.3125,770.1875 L 141.375,769.84375 L 144.25,766.96875 L 147.09375,767.34375 L 151.375,767.34375 L 155.6875,769.46875 L 157.09375,773.03125 L 153.875,774.46875 L 155.3125,777.6875 L 152.8125,779.84375 L 148.1875,781.625 L 145.6875,784.46875 L 141.75,783.03125 L 139.59375,785.53125 L 136.75,786.625 L 133.1875,788.03125 L 134.25,794.84375 L 138.875,795.53125 L 142.09375,795.53125 L 141.03125,799.125 L 137.09375,801.96875 L 138.875,805.1875 L 141.03125,810.90625 L 143.53125,814.84375 L 146.375,817.34375 L 149.25,818.75 L 151.03125,823.03125 L 156.03125,826.96875 L 159.25,828.0625 C 158.95793,828.12722 158.6696,828.18726 158.375,828.25 L 162.375,829.5625 L 167,827.4375 L 167.375,826.3125 C 167.35436,826.31612 167.3331,826.30887 167.3125,826.3125 L 168.53125,822.6875 L 169.25,824.84375 L 173.875,818.03125 L 178.1875,813.75 L 184.59375,813.75 L 189.25,810.90625 L 195.3125,813.03125 L 200.6875,813.03125 L 203.1875,809.84375 L 207.09375,809.46875 L 210.3125,805.1875 L 216.375,805.1875 L 221.03125,806.625 L 224.96875,805.90625 C 224.96876,805.90626 229.95175,807.34375 232.09375,807.34375 C 234.23676,807.34376 236.75,808.03125 236.75,808.03125 L 240.3125,809.125 L 246.75,812.34375 L 252.09375,812.34375 C 252.09376,812.34376 257.107,810.9107 259.25,811.625 C 261.39201,812.3393 268.53125,813.75 268.53125,813.75 L 272.8125,817.34375 L 278.1875,817.6875 L 283.1875,814.46875 L 286.375,810.1875 L 289.96875,812.34375 L 294.25,813.75 L 295.6875,817.6875 L 298.53125,818.40625 L 302.8125,817.34375 L 307.09375,812.6875 L 311.03125,808.40625 L 317.09375,796.96875 L 326.75,789.84375 L 329.96875,788.40625 L 334.25,784.84375 L 341.375,782.6875 L 342.8125,785.1875 L 346.03125,783.75 L 350.6875,784.46875 L 352.8125,786.25 L 361.03125,784.125 L 360.6875,776.96875 L 361.375,773.03125 L 364.25,767.6875 L 367.09375,761.96875 L 367.09375,758.75 L 372.09375,755.90625 L 373.1875,752.34375 L 376.75,750.90625 L 378.875,747.34375 L 384.59375,743.75 L 389.59375,743.03125 L 392.46875,740.90625 L 393.875,738.75 L 398.875,738.03125 L 402.46875,735.1875 L 402.09375,731.25 L 398.1875,728.40625 L 393.1875,723.75 L 390.3125,718.03125 L 389.59375,711.625 L 388.875,704.84375 L 386.03125,696.96875 L 399.96875,680.1875 L 405.3125,672.6875 L 408.53125,669.84375 L 414.59375,663.40625 L 421.03125,657.6875 L 424.96875,651.25 L 437.09375,635.1875 L 441.75,630.90625 L 449.25,626.625 L 454.25,626.625 L 460.3125,623.75 L 480.3125,621.25 L 482.8125,619.84375 L 488.1875,620.90625 L 493.1875,614.46875 L 507.09375,608.75 L 526.375,599.125 L 532.8125,595.53125 L 533.53125,588.75 L 529.96875,582.34375 L 530.3125,576.625 L 534.59375,577.34375 L 537.09375,573.40625 L 533.53125,571.96875 L 533.53125,568.40625 L 530.6875,564.46875 L 529.25,560.1875 L 528.53125,553.75 L 530.3125,545.1875 L 532.09375,540.1875 L 534.96875,534.84375 L 538.875,530.53125 L 543.1875,528.40625 L 547.8125,528.40625 L 557.46875,520.90625 L 562.1875,517.78125 L 571.375,521.78125 L 584.3125,525.0625 L 597.03125,529.3125 L 598,525.25 L 601.46875,528.75 L 602.625,532.21875 L 605.53125,532.78125 L 611.3125,536.65625 L 614.03125,539.9375 L 618.84375,538.96875 L 627.71875,542.8125 L 630.21875,546.875 L 632.15625,547.84375 L 634.28125,544.5625 L 638.53125,546.875 L 640.46875,549 L 643.9375,544.9375 L 647.59375,545.34375 L 650.875,543.96875 L 655.3125,543.21875 L 659.375,543.03125 L 662.46875,537.8125 L 659.375,536.25 L 664,530.28125 L 668.21875,528.90625 C 668.24645,528.89845 668.43747,528.84373 668.4375,528.84375 L 672,526 L 676.65625,525.28125 L 680.5625,520.625 C 680.5626,520.6249 682.00887,517.06253 683.4375,517.0625 C 684.8662,517.0625 684.85711,517.06253 689.5,517.0625 C 694.1428,517.0625 700.93747,513.84373 700.9375,513.84375 L 713.78125,509.21875 L 717,502.4375 L 720.59375,497.4375 L 723.78125,496.71875 L 725.59375,491.34375 L 732,486 L 738.09375,484.5625 L 746.65625,486.71875 L 748.4375,489.5625 L 753.09375,489.9375 L 759.15625,493.5 L 766.28125,498.84375 L 771.65625,505.28125 L 775.21875,503.125 L 779.5,506.34375 L 783.4375,507.78125 L 786.65625,514.9375 C 786.65615,514.9375 787.37501,519.91523 787.375,521.34375 C 787.375,522.77245 788.78127,530.62503 788.78125,530.625 C 788.78125,530.625 793.42417,534.91523 793.78125,536.34375 C 794.13845,537.77245 797.37501,544.56253 797.375,544.5625 L 797.375,549.5625 L 795.9375,555.28125 L 795.9375,558.5 L 800.9375,557.78125 C 800.9376,557.78125 802.37947,559.19643 803.09375,560.625 C 803.80795,562.0536 804.50887,564.91073 805.9375,565.625 C 807.3662,566.3393 812.00001,568.12503 812,568.125 C 811.9999,568.125 813.44641,571.72323 814.875,572.4375 C 816.3035,573.1518 819.50001,574.93753 819.5,574.9375 L 820.9375,581 L 818.09375,582.78125 L 818.4375,586.34375 L 823.09375,584.9375 L 827,586 C 826.9999,586 829.15177,586.00453 830.9375,586.71875 C 832.7233,587.43305 839.15627,592.43753 839.15625,592.4375 L 843.09375,599.9375 L 848.09375,603.84375 L 854.15625,609.9375 L 856.65625,610.625 L 862.71875,617.4375 C 862.71885,617.4375 866.28561,620.63393 867,622.0625 C 867.7142,623.4911 871.28127,628.12503 871.28125,628.125 L 875.21875,632.0625 L 880.59375,632.78125 L 884.15625,633.5 L 887.375,637.4375 L 889.15625,640.625 L 896.28125,637.78125 C 896.28125,637.78125 899.16517,637.78573 900.59375,638.5 C 902.0222,639.2142 904.15622,639.93753 904.15625,639.9375 L 909.15625,640.28125 L 911.28125,638.5 L 914.875,639.9375 L 919.875,649.9375 L 925.21875,655.28125 L 925.21875,660.28125 L 929.5,660.28125 L 933.78125,658.84375 L 938.4375,660.625 L 941.65625,663.125 L 938.78125,666.71875 C 938.78125,666.71875 933.79462,669.92397 935.9375,670.28125 C 938.0803,670.63835 945.59372,668.84373 945.59375,668.84375 L 949.875,667.4375 L 953.78125,665.28125 C 953.78125,665.28125 955.94202,668.50903 956.65625,669.9375 C 957.37055,671.3661 960.93752,675.62503 960.9375,675.625 L 962.375,679.9375 L 959.15625,683.5 C 959.15625,683.5 956.66072,685.64733 959.875,686.71875 C 963.0892,687.79025 965.93752,689.56253 965.9375,689.5625 L 968.4375,691.34375 C 968.4375,691.34385 971.29012,693.13393 972.71875,694.5625 C 974.14725,695.9911 977.00002,697.78127 977,697.78125 L 984.875,693.125 L 989.15625,695.625 L 993.09375,704.21875 L 997.375,715.28125 C 997.3749,715.28125 1001.6563,720.29033 1001.6562,721.71875 C 1001.6562,723.14735 1003.0938,726.00003 1003.0938,726 L 1003.7812,736 C 1003.7812,736 1007.0179,739.91523 1007.375,741.34375 C 1007.7321,742.77245 1008.7813,746.34373 1008.7812,746.34375 L 1012,751.71875 L 1012.375,756.34375 L 1007.375,757.78125 L 1004.1562,758.5 L 1000.9375,759.21875 L 998.4375,762.78125 L 1001.2812,766.34375 L 1002.375,769.21875 L 1002.375,774.5625 L 998.78125,777.4375 L 997.375,779.9375 L 993.4375,782.4375 C 993.4375,782.4375 991.28122,783.13827 991.28125,785.28125 C 991.28125,787.42405 992.37502,793.12498 992.375,793.125 C 992.3749,793.125 994.50892,797.06248 995.9375,797.0625 C 997.366,797.0625 1000.9375,796.34374 1000.9375,796.34375 C 1000.9375,796.34385 1002.0135,796.70528 1004.1562,797.0625 C 1006.2991,797.4196 1011.2813,794.56248 1011.2812,794.5625 L 1012,788.5 C 1012,788.5 1014.5224,781.70967 1015.5938,780.28125 C 1016.6651,778.85265 1019.1652,774.56253 1020.5938,774.5625 C 1022.0223,774.5625 1026.2812,772.43753 1026.2812,772.4375 L 1027.375,766.34375 L 1027.375,758.84375 L 1025.9375,753.84375 L 1030.2188,748.84375 L 1036.6562,746 L 1039.875,743.84375 L 1043.0938,746 L 1047,746.34375 L 1048.0938,742.0625 L 1046.6562,738.125 L 1044.5,735.28125 L 1046.2812,731.34375 L 1044.1562,726.34375 L 1045.5938,722.4375 L 1042.375,719.9375 L 1040.2188,717.0625 L 1035.9375,717.78125 L 1031.6562,713.84375 L 1027.375,711.34375 L 1021.6562,711 L 1017.375,706 L 1021.2812,698.84375 L 1023.7812,694.9375 L 1023.0938,689.21875 L 1024.875,686 L 1028.4375,679.21875 L 1030.2188,675.28125 L 1031.6562,671.71875 L 1037.375,668.5 L 1041.2812,667.0625 L 1047,667.78125 L 1045.5938,672.4375 C 1045.5938,672.4375 1049.4955,675.62503 1051.2812,675.625 C 1053.067,675.625 1055.9375,677.78127 1055.9375,677.78125 L 1062.375,676.34375 L 1067.375,677.4375 L 1072.375,679.21875 L 1074.1562,683.5 C 1074.1562,683.5 1075.9375,686.35713 1075.9375,688.5 C 1075.9375,690.6428 1076.6562,694.56253 1076.6562,694.5625 L 1083.4375,697.0625 L 1087.375,697.4375 L 1092,698.125 L 1092,690.28125 L 1094.1562,686 L 1095.2188,682.0625 C 1095.2188,682.0625 1092.7098,679.22323 1091.2812,677.4375 C 1089.8527,675.6518 1087.3571,672.42397 1084.5,670.28125 C 1081.6428,668.13835 1073.4375,662.43753 1073.4375,662.4375 C 1073.4375,662.4375 1065.5848,656.33933 1064.1562,655.625 C 1062.7278,654.9107 1055.9375,650.62503 1055.9375,650.625 C 1055.9375,650.625 1050.5803,647.05813 1048.4375,646.34375 C 1046.2946,645.62955 1038.0937,640.62503 1038.0938,640.625 C 1038.0938,640.625 1027.7366,637.77683 1025.5938,637.0625 C 1023.451,636.3482 999.15627,626.71873 999.15625,626.71875 L 993.09375,621.71875 L 989.5,621.71875 L 996.28125,614.9375 L 998.09375,609.9375 L 980.21875,604.5625 L 965.21875,602.4375 L 954.5,595.625 L 947,592.78125 L 940.59375,587.0625 L 926.65625,577.4375 C 926.65625,577.4375 921.65622,570.98673 921.65625,568.84375 C 921.65625,566.70095 918.09372,555.62503 918.09375,555.625 L 905.9375,531.34375 L 903.78125,526 L 894.875,522.78125 L 881.28125,515.28125 L 870.9375,507.0625 L 868.09375,502.4375 L 865.21875,499.9375 L 862.375,495.28125 L 858.09375,489.21875 L 857,479.9375 L 858.09375,473.84375 L 853.78125,471 C 853.78125,471 856.28561,465.27246 857,463.84375 C 857.7142,462.41535 858.78127,453.5 858.78125,453.5 L 860.21875,447.4375 L 860.9375,443.84375 L 862.71875,437.78125 L 864.875,434.9375 L 871.28125,432.78125 L 880.21875,428.125 L 883.4375,427.4375 L 886.28125,423.125 L 892.375,422.4375 L 896.28125,422.4375 L 899.875,418.84375 L 904.5,419.9375 L 906.28125,424.9375 L 901.28125,430.28125 C 901.28125,430.28125 899.50447,432.07586 900.21875,434.21875 C 900.933,436.36165 903.09372,444.21876 903.09375,444.21875 L 906.28125,453.125 L 907.375,459.5625 L 909.15625,462.0625 L 912,465.28125 L 918.09375,463.125 L 921.65625,457.0625 L 924.15625,451.71875 L 925.9375,445.625 C 925.9375,445.6249 925.92862,446.3392 927,448.125 C 928.0715,449.9106 926.65632,449.5714 929.15625,451 C 931.65625,452.4286 935.93752,453.84376 935.9375,453.84375 C 935.9375,453.84385 938.78122,454.5714 938.78125,456 C 938.78125,457.4286 939.15622,457.79026 939.15625,459.21875 C 939.15625,460.64745 938.43752,464.21876 938.4375,464.21875 L 942.375,466.71875 L 943.4375,470.625 C 943.4375,470.6249 943.44652,471.70974 944.875,472.78125 C 946.3035,473.85265 949.50002,475.625 949.5,475.625 L 947.71875,479.9375 L 949.5,481.71875 C 949.5,481.71875 949.85262,482.7947 953.78125,484.9375 C 957.70985,487.0804 955.59372,488.84376 955.59375,488.84375 L 955.21875,492.0625 L 958.09375,493.5 L 960.9375,495.625 C 960.9375,495.625 959.85262,497.41526 961.28125,498.84375 C 962.70985,500.27245 963.43752,500.625 963.4375,500.625 C 963.4375,500.625 960.58032,500.98676 965.9375,503.84375 C 971.2946,506.70095 969.85712,505.6339 972,507.0625 C 974.1428,508.4911 974.15622,507.42394 976.65625,510.28125 C 979.15625,513.13835 986.28122,513.84373 986.28125,513.84375 C 986.28125,513.84385 987.37052,519.21423 986.65625,521 C 985.94205,522.7857 988.09372,526.34373 988.09375,526.34375 L 991.65625,527.78125 L 1000.2188,527.0625 L 1000.2188,530.28125 L 1004.1562,534.21875 C 1004.1562,534.21875 1007.0135,534.56687 1009.1562,535.28125 C 1011.2991,535.99555 1013.4465,536.00003 1014.875,536 C 1016.3035,536 1022.7188,533.12503 1022.7188,533.125 L 1025.5938,534.9375 L 1032.375,538.5 L 1035.2188,540.28125 L 1048.0938,549.9375 C 1048.0938,549.9375 1046.6383,551.33933 1048.7812,553.125 C 1050.9242,554.9107 1059.5,556.34373 1059.5,556.34375 L 1063.0938,559.9375 L 1070.2188,563.5 L 1074.875,567.4375 C 1074.8749,567.4375 1074.5044,568.15183 1077.7188,569.9375 C 1080.9331,571.7232 1086.2812,572.78127 1086.2812,572.78125 L 1092,574.9375 C 1092,574.9375 1094.1517,577.05363 1095.9375,578.125 C 1097.7232,579.1964 1100.5937,580.62503 1100.5938,580.625 C 1100.5938,580.625 1103.8036,581.71423 1104.875,583.5 C 1105.9464,585.2857 1108.0937,589.56253 1108.0938,589.5625 C 1108.0938,589.5625 1112.3705,591.35257 1114.1562,592.78125 C 1115.9421,594.20975 1119.875,596.71873 1119.875,596.71875 L 1123.4375,595.625 L 1125.5938,599.9375 L 1126.2812,606.34375 L 1122.375,608.5 L 1123.4375,612.0625 L 1123.7812,616.34375 L 1123.7812,622.4375 L 1125.5938,627.78125 L 1122.7188,632.0625 L 1123.0938,637.78125 L 1123.4375,642.4375 L 1122,648.5 C 1122,648.5 1121.2812,651.35257 1121.2812,652.78125 C 1121.2812,654.20975 1124.1562,660.62503 1124.1562,660.625 L 1130.5938,666 C 1130.5938,666 1131.6607,671.33933 1132.375,673.125 C 1133.0892,674.9107 1137,679.56253 1137,679.5625 L 1142.7188,681.34375 L 1147,685.28125 L 1150.2188,691 L 1149.875,694.5625 L 1152,697.78125 L 1155.9375,699.5625 L 1157.375,702.4375 C 1157.3749,702.4375 1156.6651,704.92853 1158.0938,706 C 1159.5224,707.0714 1165.2187,716.34373 1165.2188,716.34375 L 1170.9375,719.21875 L 1174.875,721.71875 L 1177.375,725.625 C 1177.3749,725.625 1178.7901,726.34823 1180.2188,727.0625 C 1181.6472,727.7768 1184.5179,728.13393 1184.875,729.5625 C 1185.2321,730.9911 1187.366,732.41523 1185.9375,733.84375 C 1184.5089,735.27245 1183.0893,737.79033 1184.875,739.21875 C 1186.6606,740.64735 1190.5937,742.06253 1190.5938,742.0625 C 1190.5938,742.0625 1193.0803,744.57143 1193.4375,746 C 1193.7946,747.4285 1193.4465,747.08043 1194.875,749.9375 C 1196.3035,752.7947 1196.6472,752.06253 1197.7188,754.5625 C 1198.7902,757.0625 1204.875,757.43753 1204.875,757.4375 L 1207.7188,756 L 1213.4375,756 C 1213.4374,756 1216.9955,756.71873 1218.7812,756.71875 C 1220.567,756.71875 1223.7812,755.28127 1223.7812,755.28125 L 1229.5,753.125 L 1237,752.4375 L 1242.7188,752.78125 L 1247.7188,753.125 C 1247.7188,753.125 1249.1651,748.14283 1250.5938,748.5 C 1252.0224,748.8571 1255.9375,750.28127 1255.9375,750.28125 L 1256.6562,752.78125 L 1261.2812,751.71875 L 1263.0938,752.78125 L 1265.5938,754.9375 L 1269.875,755.625 L 1277.7188,757.4375 L 1280.9375,758.125 C 1280.9374,758.125 1283.0758,760.26793 1280.2188,760.625 C 1277.3616,760.9822 1273.4375,761.34373 1273.4375,761.34375 C 1273.4374,761.34385 1268.0758,760.26793 1270.2188,763.125 C 1272.3616,765.9822 1274.5,767.06253 1274.5,767.0625 C 1274.5,767.0625 1272.7098,768.50003 1271.2812,768.5 C 1269.8527,768.5 1263.7812,765.62503 1263.7812,765.625 L 1260.2188,762.78125 L 1256.2812,762.78125 L 1249.1562,759.9375 L 1240.9375,758.5 L 1235.9375,755.625 L 1231.6562,754.9375 L 1228.7812,755.625 L 1225.9375,757.78125 L 1223.7812,763.125 C 1223.7812,763.125 1223.0937,766.70967 1220.5938,765.28125 C 1218.0938,763.85265 1217,763.84373 1217,763.84375 L 1213.4375,763.125 L 1211.6562,765.28125 L 1208.7812,769.5625 L 1208.4375,773.5 L 1208.0938,776 L 1202.375,778.125 L 1203.4375,782.0625 L 1207.7188,783.84375 L 1211.2812,786 L 1213.4375,791.34375 L 1218.4375,791.71875 L 1220.5938,793.84375 L 1224.875,796.34375 L 1227,798.5 L 1228.4375,802.0625 L 1228.7812,805.625 L 1224.875,810.28125 L 1226.2812,816 L 1228.0938,819.21875 L 1230.5938,820.28125 L 1232.375,824.5625 L 1233.4375,828.125 L 1234.1562,833.84375 L 1238.0938,830.625 L 1240.9375,834.5625 L 1242,832.0625 L 1243.7812,827.4375 L 1240.5938,824.21875 L 1242,819.21875 L 1248.0938,817.4375 L 1249.875,821.34375 C 1249.875,821.34385 1250.5893,823.12954 1252.375,823.84375 C 1254.1607,824.55815 1256.2812,825.62498 1256.2812,825.625 L 1259.5,832.0625 L 1260.9375,838.125 L 1260.5938,841.34375 L 1265.5938,846 L 1266.2812,843.5 C 1266.2812,843.5 1264.875,837.77244 1264.875,836.34375 C 1264.875,834.91525 1265.942,832.08038 1266.6562,829.9375 C 1267.3706,827.7947 1269.1562,822.78128 1269.1562,822.78125 L 1273.7812,822.78125 C 1273.7812,822.78125 1276.2991,823.13388 1276.6562,824.5625 C 1277.0135,825.9911 1278.0937,829.93748 1278.0938,829.9375 L 1280.9375,832.0625 L 1284.1562,834.21875 L 1284.1562,838.5 L 1286.2812,838.5 L 1287,835.625 L 1290.9375,839.21875 L 1293.0938,838.125 L 1289.875,834.5625 L 1287,832.4375 L 1284.1562,827.4375 L 1287,824.21875 L 1284.875,820.28125 L 1282.7188,814.21875 L 1279.875,809.21875 L 1276.6562,808.5 L 1276.6562,803.5 L 1273.0938,798.84375 L 1270.2188,794.21875 L 1268.0938,790.28125 L 1268.0938,786 L 1270.5938,786 L 1272,788.5 L 1275.2188,788.84375 L 1281.2812,790.625 L 1283.0938,790.46875 L 1284.3438,793.3125 L 1283.625,795.28125 L 1284.875,800.28125 L 1286.8438,801.71875 L 1288.0938,798.5 L 1288.4375,795.625 C 1288.4374,795.625 1288.6294,795.08928 1289.3438,795.625 C 1290.0581,796.1607 1291.125,796.71874 1291.125,796.71875 L 1292.9062,793.84375 C 1292.9062,793.84385 1292.9017,791.88388 1294.6875,792.0625 C 1296.4731,792.2411 1298.0937,789.74998 1298.0938,789.75 C 1298.0938,789.75 1297.7322,788.49548 1297.375,787.78125 C 1297.0179,787.06695 1294.3437,784.56253 1294.3438,784.5625 L 1290.75,779.375 C 1290.75,779.375 1289.5089,779.75453 1289.6875,780.46875 C 1289.8659,781.18305 1287,783.84373 1287,783.84375 C 1287,783.84385 1285.7544,783.30813 1285.2188,782.59375 C 1284.6831,781.87955 1281.9955,779.38393 1282.5312,778.3125 C 1283.067,777.2411 1283.4375,774.93753 1283.4375,774.9375 L 1282.375,772.0625 L 1278.7812,772.25 L 1276.4688,771.1875 C 1276.4688,771.1875 1275.7634,767.96873 1277.9062,767.96875 C 1280.0492,767.96875 1282.7187,767.25003 1282.7188,767.25 L 1285.4062,765.46875 L 1287.5312,764.03125 L 1288.7812,764.03125 C 1288.7812,764.03125 1291.1294,765.10257 1291.8438,765.28125 C 1292.5581,765.45975 1294.3437,764.75003 1294.3438,764.75 L 1299.1562,764.75 L 1302.5312,765.625 L 1304.6875,767.4375 L 1304.3438,771.71875 L 1307.5312,769.21875 L 1310.0312,770.46875 C 1310.0312,770.46875 1311.4822,775.44643 1312.375,775.625 C 1313.2679,775.8036 1317.1875,774.21873 1317.1875,774.21875 L 1319.6875,772.0625 C 1319.6874,772.0625 1317.5401,769.03127 1316.4688,767.78125 C 1315.3972,766.53125 1313.4375,763.12503 1313.4375,763.125 L 1312.5312,757.78125 L 1313.25,754.9375 L 1314.3438,752.4375 L 1308.6875,746.03125 L 1300.8438,744 L 1296.5625,745.03125 L 1294.7812,742.25 L 1292.7812,738.1875 C 1292.7812,738.1875 1291.5101,738.46633 1290.5,738.71875 C 1289.4898,738.97135 1285.4375,737.43753 1285.4375,737.4375 L 1282.9375,734.40625 C 1282.9374,734.40615 1283.4163,732.40627 1282.4062,732.40625 C 1281.3961,732.40625 1276.625,730.87503 1276.625,730.875 L 1275.3438,732.90625 L 1271.0625,731.875 L 1271.0625,729.875 L 1264.75,727.84375 L 1259.1875,726.34375 L 1256.4062,726.34375 L 1248.5938,726.59375 L 1249.8438,723.3125 C 1249.8438,723.3124 1250.3369,721.01857 1254.125,722.28125 C 1257.913,723.54395 1260.1875,723.81253 1260.1875,723.8125 C 1260.1874,723.8125 1262.4848,721.78127 1264,721.78125 C 1265.5151,721.78125 1268.2812,720.03127 1268.2812,720.03125 L 1267.2812,715.71875 L 1269.0312,714.46875 L 1270.8125,711.9375 L 1274.5938,710.9375 L 1276.875,707.90625 L 1278.375,705.125 L 1276.875,703.09375 L 1273.3438,700.0625 L 1271.3125,699.0625 L 1265.5,694 L 1262.7188,688.96875 L 1258.1875,684.90625 L 1253.625,678.84375 L 1252.125,676.0625 L 1249.5938,673.3125 C 1249.5938,673.3125 1247.5726,670.75773 1246.5625,670 C 1245.5523,669.2424 1243.5312,666.71873 1243.5312,666.71875 L 1242.7812,662.1875 L 1244.7812,655.875 L 1244.7812,652.84375 L 1242.7812,648.8125 L 1243.7812,645.78125 L 1246.0625,640.21875 L 1248.0625,638.6875 L 1253.125,638.1875 L 1254.375,640.21875 L 1255.1562,642.75 L 1251.875,644.25 L 1250.3438,645.53125 L 1254.125,648.3125 C 1254.1249,648.3126 1253.3859,648.80233 1255.4062,649.8125 C 1257.4266,650.8226 1261.7187,651.31253 1261.7188,651.3125 L 1266.75,653.59375 L 1270.3125,655.375 L 1271.0625,658.40625 L 1271.0625,661.9375 L 1272.8125,666.21875 C 1272.8124,666.21875 1274.0835,667.74493 1275.0938,668.25 C 1276.1039,668.7551 1280.6562,669.25003 1280.6562,669.25 C 1280.6562,669.25 1284.2009,669.74753 1285.9688,670 C 1287.7366,670.2526 1289.5,668.25003 1289.5,668.25 C 1289.5,668.25 1287.7365,668.26023 1285.9688,667.25 C 1284.201,666.2399 1281.9164,664.19263 1280.9062,663.6875 C 1279.8962,663.1823 1278.8927,663.19763 1277.125,662.1875 C 1275.3572,661.1773 1273.5937,659.65627 1273.5938,659.65625 L 1273.5938,657.125 L 1272.3125,653.59375 C 1272.3125,653.59385 1272.8285,653.09373 1274.3438,653.09375 C 1275.8591,653.09385 1275.6072,653.09123 1277.375,653.34375 C 1279.1428,653.59635 1278.8909,653.08613 1280.4062,653.84375 C 1281.9215,654.60135 1283.4375,655.12503 1283.4375,655.125 L 1285.1875,656.375 L 1287.2188,659.65625 L 1290.25,663.1875 L 1292.7812,664.46875 L 1297.3125,666.71875 L 1298.8438,665.21875 L 1297.8125,661.4375 L 1295.8125,658.40625 C 1295.8125,658.40615 1294.5464,655.38003 1293.0312,654.875 C 1291.5159,654.3699 1286.9687,653.34373 1286.9688,653.34375 L 1284.9375,649.8125 L 1286.2188,646.53125 L 1287.7188,646.53125 L 1290,646.78125 L 1291.75,646.78125 L 1294.0312,648.5625 L 1298.3438,648.8125 L 1300.5938,649.3125 L 1302.375,650.3125 C 1302.3749,650.3125 1304.3961,652.83613 1305.4062,653.59375 C 1306.4165,654.35145 1308.4375,655.37503 1308.4375,655.375 L 1310.7188,653.09375 C 1310.7188,653.09385 1312.218,651.57273 1309.1875,650.5625 C 1306.1571,649.5524 1305.1562,649.06253 1305.1562,649.0625 L 1299.5938,645 L 1295.3125,641.46875 C 1295.3125,641.46885 1295.0414,640.70863 1294.0312,641.71875 C 1293.0212,642.72885 1290.5,644.00003 1290.5,644 L 1288.4688,643 L 1286.7188,639.96875 L 1287.7188,638.6875 C 1287.7188,638.6875 1291.0102,635.93753 1290,635.9375 C 1288.9898,635.9375 1285.7187,634.40627 1285.7188,634.40625 L 1282.1562,630.875 L 1282.1562,628.34375 L 1285.1875,626.84375 C 1285.1875,626.84375 1285.4458,626.83863 1287.7188,627.34375 C 1289.9916,627.84895 1291.5185,629.35393 1292.7812,628.34375 C 1294.0439,627.33375 1300.5937,622.78127 1300.5938,622.78125 C 1300.5938,622.78125 1302.3649,621.78637 1303.375,621.28125 C 1304.3852,620.77605 1307.1596,618.50003 1309.9375,618.5 C 1312.7153,618.5 1317.5312,616.71873 1317.5312,616.71875 C 1317.5312,616.71885 1319.5473,614.19263 1321.0625,613.6875 C 1322.5776,613.1825 1323.3335,611.69253 1324.3438,611.1875 C 1325.354,610.6824 1326.3598,607.65107 1327.875,608.15625 C 1329.3903,608.66135 1330.391,608.14607 1331.9062,609.15625 C 1333.4216,610.16625 1335.4459,611.18753 1337.7188,611.1875 C 1339.9917,611.1875 1347.3125,611.43753 1347.3125,611.4375 C 1347.3125,611.4374 1348.3471,611.18253 1351.125,611.6875 C 1353.9029,612.1926 1360.6984,611.69253 1362.7188,611.1875 C 1364.7391,610.6824 1366.25,611.43753 1366.25,611.4375 L 1367.7812,614.21875 L 1368.7812,618.75 C 1368.7812,618.7501 1368.0447,620.53127 1369.8125,620.53125 C 1371.5802,620.53125 1379.1562,618.75003 1379.1562,618.75 C 1379.1562,618.7501 1381.4223,616.71873 1382.9375,616.71875 C 1384.4528,616.71885 1388.2398,615.71873 1389.25,615.71875 C 1390.2602,615.71875 1394.5625,614.21873 1394.5625,614.21875 L 1396.3125,615.46875 L 1395.8125,617.5 C 1395.8124,617.5 1393.7914,618.99493 1392.7812,619.5 C 1391.7712,620.0051 1386.7187,623.56253 1386.7188,623.5625 L 1379.4062,629.34375 L 1376.875,631.875 L 1377.125,634.65625 L 1377.625,639.96875 L 1377.875,644.75 L 1380.1562,644.5 C 1380.1562,644.5 1381.9299,639.95023 1382.6875,638.6875 C 1383.4451,637.4248 1386.2187,633.90627 1386.2188,633.90625 C 1386.2188,633.90625 1388.9924,630.61403 1389.75,628.59375 C 1390.5076,626.57355 1392.0236,623.54137 1392.7812,622.53125 C 1393.5389,621.52095 1399.3437,616.71873 1399.3438,616.71875 C 1399.3438,616.71885 1403.8986,611.91647 1404.6562,610.90625 C 1405.4139,609.89605 1410.7187,609.15627 1410.7188,609.15625 L 1414,602.34375 L 1416.25,599.8125 L 1417.7812,594.25 L 1419.0312,589.96875 C 1419.0312,589.96885 1422.0734,589.46873 1424.0938,589.46875 C 1426.1141,589.46875 1432.1875,589.46873 1432.1875,589.46875 L 1435.4688,584.90625 C 1435.4688,584.90625 1434.6908,582.37503 1437.4688,582.375 C 1440.2467,582.375 1442.7821,581.61743 1445.8125,582.375 C 1448.843,583.1326 1449.8573,583.40367 1451.625,583.65625 C 1453.3928,583.90875 1453.3884,583.90627 1455.1562,583.90625 C 1456.924,583.90615 1462.2187,583.15627 1462.2188,583.15625 L 1466.2812,581.125 L 1468.7812,580.625 L 1469.5625,575.0625 L 1470.0625,567.21875 L 1462.4688,567.21875 L 1448.3438,563.6875 L 1437.7188,560.65625 C 1437.7188,560.65615 1435.7027,559.14023 1434.1875,557.625 C 1432.6723,556.1097 1431.9214,555.10643 1430.4062,553.84375 C 1428.8911,552.58105 1424.5937,547.53127 1424.5938,547.53125 L 1425.3438,545 L 1427.375,541.46875 L 1425.3438,538.6875 L 1419.8125,533.90625 C 1419.8125,533.90625 1416.5101,529.59873 1415.5,529.09375 C 1414.4898,528.58875 1412.4687,524.81253 1412.4688,524.8125 L 1409.4375,521.53125 L 1406.1562,521.78125 L 1400.5938,520.75 L 1401.375,518 L 1405.4062,516.96875 L 1407.9375,513.9375 L 1409.1875,508.90625 L 1412.9688,507.375 C 1412.9688,507.375 1414.2551,506.10646 1413.75,504.84375 C 1413.2449,503.58115 1410.7187,497.78124 1410.7188,497.78125 C 1410.7188,497.78115 1411.7162,492.22896 1411.9688,491.21875 C 1412.2214,490.20865 1412.2187,486.40624 1412.2188,486.40625 L 1409.6875,483.125 C 1409.6875,483.125 1411.2136,481.6352 1411.7188,480.625 C 1412.2239,479.6149 1414,475.5625 1414,475.5625 L 1414.75,472.53125 C 1414.75,472.53125 1418.5422,471.53124 1420.5625,471.53125 C 1422.5828,471.53115 1425.0937,471.53124 1425.0938,471.53125 L 1427.625,472.28125 L 1432.1875,463.4375 L 1428.125,458.90625 L 1428.125,452.0625 L 1427.375,441.46875 L 1426.125,428.84375 C 1426.125,428.84385 1425.37,423.54384 1425.875,422.28125 C 1426.3801,421.01845 1426.8649,418.73406 1427.875,417.21875 C 1428.8852,415.70365 1430.4062,411.90624 1430.4062,411.90625 L 1427.375,408.625 L 1429.9062,404.59375 L 1433.9375,404.09375 L 1437.7188,400.0625 L 1442.2812,396.25 L 1447.9688,393.40625 C 1447.5074,393.26685 1447.0634,393.1174 1446.5938,393 C 1433.5239,389.7325 1406.4875,373.9188 1394.1875,381 C 1372.5586,393.4518 1402.5323,426.8556 1392,437.75 C 1381.9452,448.1506 1347.5878,453.95604 1340.6875,457.40625 C 1330.6082,462.44585 1332.1224,474.76706 1323.2188,479.21875 C 1311.3432,485.15655 1313.857,481.01926 1299.2188,479.21875 C 1281.469,477.03555 1263.5015,485.3051 1252.2812,482.5 C 1239.1399,479.2147 1231,474.31246 1223.9062,467.21875 C 1219.649,462.96145 1212.3616,444.6005 1202.0625,449.75 C 1189.6321,455.9652 1173.0917,442.6145 1155.125,451.9375 C 1151.471,453.8335 1139.4733,443.94204 1136.5625,441.03125 C 1112.731,418.55895 1113.6558,444.17464 1088.5312,429.03125 C 1085.9883,423.94515 1075.4374,406.03204 1075.4375,396.28125 C 1075.4375,386.72145 1075.9753,359.1515 1073.25,348.25 C 1071.402,340.8583 1079.53,316.9994 1072.1562,313.3125 C 1061.7757,308.1222 1045.1828,317.66804 1031.7812,314.40625 C 1021.1664,311.82275 1008.0916,309.95634 996.84375,298.03125 C 987.81905,288.46315 978.89632,288.0151 965.1875,290.375 C 945.1474,293.8249 932.21792,301.24984 919.34375,298.03125 C 906.09395,294.71875 894.60277,287.30144 883.3125,281.65625 C 870.5252,275.26255 862.17727,268.72394 848.40625,265.28125 z M 1902.9375,416.6875 L 1899.375,423.78125 L 1900.375,432.375 L 1894.8125,440.46875 L 1888.25,446.53125 C 1888.25,446.53124 1878.6562,450.57345 1878.6562,452.59375 C 1878.6562,454.61416 1881.7078,458.14095 1879.6875,459.65625 C 1877.6672,461.17144 1872.0938,464.6875 1872.0938,464.6875 C 1872.0937,464.6874 1870.0719,465.20355 1866.0312,466.71875 C 1861.9906,468.23396 1861.9941,468.7449 1859.4688,469.25 C 1856.9433,469.755 1851.375,470.25 1851.375,470.25 L 1845.8438,470.75 L 1840.7812,469.75 L 1835.2188,469.75 L 1830.1875,473.28125 L 1826.625,476.3125 C 1826.625,476.3124 1824.6191,476.33375 1822.0938,477.34375 C 1819.5683,478.35406 1816.5312,480.875 1816.5312,480.875 L 1814.5312,484.40625 L 1810.4688,486.40625 L 1804.9062,489.4375 L 1793.8125,489.96875 C 1793.8125,489.96876 1790.2754,491.46875 1787.75,491.46875 C 1785.2246,491.46886 1781.1875,490.46875 1781.1875,490.46875 L 1777.1562,486.9375 L 1774.125,488.9375 L 1771.0938,493.5 L 1764.5312,494 L 1756.9375,494 L 1751.375,491.96875 C 1751.375,491.96886 1747.8329,487.9375 1745.8125,487.9375 C 1743.7922,487.9375 1736.75,489.4375 1736.75,489.4375 L 1733.7188,491.96875 L 1729.1562,496.53125 L 1724.625,494.5 L 1717.0312,490.46875 L 1715.0312,485.90625 L 1709.9688,480.875 L 1704.9062,480.875 L 1697.3438,489.96875 L 1690.2812,487.4375 L 1685.2188,488.4375 L 1677.6562,484.40625 L 1673.0938,479.34375 L 1672.0938,475.8125 L 1668.5625,472.78125 L 1664.5,481.375 L 1657.9375,484.40625 L 1650.875,486.40625 L 1640.7812,488.9375 C 1640.7812,488.9375 1631.1605,489.96375 1627.625,490.46875 C 1624.0895,490.97386 1614.5,491.46875 1614.5,491.46875 L 1608.4375,494.5 L 1602.9062,500.0625 C 1602.9062,500.0625 1598.3531,503.0996 1594.3125,505.625 C 1590.2719,508.1504 1584.2188,512.6875 1584.2188,512.6875 L 1576.625,517.21875 C 1576.625,517.21883 1576.6141,522.26585 1574.5938,523.78125 C 1572.5734,525.29637 1569.5625,529.34375 1569.5625,529.34375 C 1569.5625,529.34373 1564.5203,531.8649 1562.5,532.875 C 1560.4797,533.88523 1553.4062,539.96875 1553.4062,539.96875 L 1550.375,544.5 C 1550.375,544.49993 1554.4164,547.5421 1553.4062,549.5625 C 1552.396,551.58283 1546.8125,556.625 1546.8125,556.625 C 1546.8125,556.62503 1547.3379,559.15625 1544.8125,559.15625 C 1542.2871,559.15627 1528.6562,561.6875 1528.6562,561.6875 C 1528.6562,561.68743 1524.6141,560.15625 1522.5938,560.15625 C 1520.5734,560.15617 1516.5312,559.15625 1516.5312,559.15625 L 1512.4688,556.125 L 1510.4688,561.15625 L 1500.875,565.21875 L 1492.2812,565.71875 L 1483.6875,567.21875 L 1478.125,567.75 L 1473.5938,570.25 L 1471.5625,579.34375 L 1475.625,583.90625 L 1481.6875,586.9375 L 1487.2188,587.4375 L 1496.8125,585.40625 L 1503.4062,586.4375 L 1496.3125,589.46875 L 1489.75,590.46875 C 1489.75,590.46883 1485.7078,592.9949 1483.6875,593.5 C 1481.6672,594.00513 1477.125,595.53125 1477.125,595.53125 L 1471.0625,600.0625 L 1468.0312,603.09375 L 1473.0938,604.59375 L 1480.1562,605.625 L 1480.1562,608.65625 C 1480.1562,608.65617 1476.6141,610.65625 1474.5938,610.65625 C 1472.5734,610.65627 1471.5828,610.65625 1469.5625,610.65625 C 1467.5422,610.65627 1460.9688,612.6875 1460.9688,612.6875 L 1456.4062,613.6875 L 1450.3438,614.21875 L 1440.25,619.25 L 1438.25,616.21875 L 1440.75,613.1875 C 1440.75,613.18753 1438.7391,611.1825 1436.7188,611.6875 C 1434.6984,612.19263 1429.1562,613.1875 1429.1562,613.1875 L 1426.125,615.71875 L 1430.6562,617.75 L 1433.6875,620.78125 L 1427.125,623.28125 C 1427.125,623.28117 1424.0828,624.3125 1422.0625,624.3125 C 1420.0422,624.31243 1418.0312,624.3125 1418.0312,624.3125 L 1413.5,618.25 L 1410.4688,619.75 L 1406.9062,622.28125 L 1406.9062,624.8125 L 1397.3125,625.8125 L 1395.3125,626.3125 L 1389.75,635.9375 L 1385.7188,641.46875 L 1384.6875,648.03125 L 1380.1562,650.0625 C 1380.1562,650.06263 1378.125,651.5946 1378.125,654.625 C 1378.125,657.65553 1379.1562,662.6875 1379.1562,662.6875 L 1379.1562,669.75 L 1379.6562,674.3125 L 1387.2188,673.8125 L 1394.2812,670.78125 L 1402.375,666.71875 L 1409.4375,664.71875 L 1411.9688,666.71875 L 1409.9375,670.28125 L 1406.9062,672.78125 L 1405.9062,676.34375 L 1400.3438,676.84375 L 1400.875,682.375 L 1406.9062,683.90625 L 1409.9375,687.4375 L 1410.9688,694 L 1412.9688,695.53125 L 1415.5,691.46875 L 1419.0312,693 L 1419.5625,697.03125 L 1417.5312,700.0625 L 1417.5312,702.59375 L 1412.9688,705.625 L 1410.9688,708.65625 C 1410.9687,708.65617 1411.4797,710.6875 1413.5,710.6875 C 1415.5203,710.68753 1420.5625,708.65625 1420.5625,708.65625 L 1423.4375,712.78125 L 1428.0938,716 L 1427.375,718.5 L 1420.2188,721.71875 L 1414.875,724.21875 L 1408.7812,720.625 L 1409.1562,716.71875 L 1403.7812,713.5 L 1400.9375,710.625 L 1397,711.34375 L 1398.0938,716 L 1400.9375,719.21875 L 1398.4375,722.4375 C 1398.4375,722.43753 1398.0893,724.21875 1399.875,724.21875 C 1401.6607,724.21873 1404.5,724.5625 1404.5,724.5625 L 1402.375,727.78125 L 1397.375,728.125 C 1397.375,728.12503 1397.7188,729.5714 1397.7188,731 C 1397.7187,732.42853 1401.2902,734.21875 1402.7188,734.21875 C 1404.1472,734.21873 1407,735.28125 1407,735.28125 L 1410.5938,738.125 L 1412.375,735.625 L 1414.875,731 C 1414.875,731.00003 1418.4242,729.91525 1418.7812,731.34375 C 1419.1383,732.77243 1419.875,736 1419.875,736 L 1423.0938,737.4375 C 1423.0937,737.43753 1424.5135,736.00455 1426.6562,736.71875 C 1428.7991,737.43303 1429.5135,737.42395 1431.6562,737.78125 C 1433.7991,738.13837 1437.375,738.125 1437.375,738.125 L 1437.7188,741 L 1439.5,747.0625 L 1439.1562,749.9375 L 1433.4375,752.0625 L 1432.7188,754.5625 L 1438.0938,755.625 L 1440.5938,757.0625 L 1440.9375,759.21875 L 1439.875,765.28125 L 1442.375,768.84375 L 1444.5,766.34375 C 1444.5,766.34383 1446.2992,760.99545 1446.6562,762.78125 C 1447.0134,764.56697 1448.4375,769.9375 1448.4375,769.9375 L 1449.875,767.78125 L 1452.375,769.9375 L 1453.0938,773.5 C 1453.0937,773.50003 1454.5,774.5714 1454.5,776 C 1454.5,777.42853 1453.0938,779.5625 1453.0938,779.5625 L 1449.875,777.4375 L 1447.7188,777.78125 L 1443.4375,782.0625 L 1445.2188,785.625 L 1451.2812,784.21875 C 1451.2812,784.21873 1453.067,782.7857 1456.2812,783.5 C 1459.4955,784.21423 1465.5938,782.0625 1465.5938,782.0625 C 1465.5937,782.06253 1468.7902,778.5 1470.2188,778.5 C 1471.6472,778.50003 1475.5893,778.5 1477.375,778.5 C 1479.1607,778.50003 1485.2099,775.27245 1483.7812,776.34375 C 1482.3526,777.41523 1478.4375,780.28125 1478.4375,780.28125 L 1475.5938,782.4375 L 1477.375,785.625 L 1474.875,788.5 L 1468.4375,789.5625 C 1468.4375,789.56248 1466.6652,792.0625 1468.0938,792.0625 C 1469.5223,792.06248 1472.375,792.4375 1472.375,792.4375 C 1472.375,792.43748 1477.0179,793.14735 1477.375,791.71875 C 1477.7322,790.29024 1479.5,788.125 1479.5,788.125 L 1480.2188,790.28125 L 1478.7812,793.84375 L 1476.6562,797.4375 L 1478.0938,799.9375 C 1478.0937,799.93748 1480.9286,800.2857 1482,798.5 C 1483.0714,796.71418 1486.2812,792.78125 1486.2812,792.78125 L 1489.5,791.34375 L 1487.375,785.625 L 1490.5938,787.0625 L 1493.0938,787.0625 L 1494.875,783.125 C 1494.875,783.12503 1494.5089,784.9107 1495.9375,785.625 C 1497.366,786.33933 1499.1562,784.21875 1499.1562,784.21875 L 1500.5938,788.125 L 1507.7188,789.21875 L 1512,791.71875 L 1513.0938,788.125 L 1511.6562,786 L 1514.1562,782.78125 L 1519.5,785.28125 L 1520.2188,788.5 L 1518.0938,793.125 L 1519.875,792.4375 L 1523.0938,793.5 L 1522,797.78125 L 1524.5,799.9375 L 1526.2812,801.71875 L 1532.375,802.0625 L 1533.7812,804.21875 L 1538.7812,804.21875 L 1541.2812,806.34375 L 1545.9375,807.78125 L 1548.0938,804.5625 L 1550.2188,805.28125 L 1555.9375,802.4375 L 1559.875,798.84375 L 1564.875,794.21875 C 1564.875,794.21874 1564.8571,792.7857 1567,793.5 C 1569.1428,794.21418 1574.1562,794.9375 1574.1562,794.9375 L 1577.7188,793.84375 C 1577.7187,793.84384 1579.866,789.9107 1578.4375,788.125 C 1577.0089,786.33927 1576.2812,782.4375 1576.2812,782.4375 L 1578.4375,778.125 L 1578.0938,774.5625 L 1574.875,769.9375 L 1575.9375,764.21875 L 1578.7812,760.625 C 1578.7812,760.62503 1580.5714,761 1582,761 C 1583.4286,761.00003 1589.1562,758.125 1589.1562,758.125 C 1596.4658,756.1278 1607.8284,679.84472 1586.2957,671.34734 C 1561.349,644.30052 1602.6922,629.23041 1606.5128,610.2084 C 1606.3308,583.24535 1621.4992,558.21126 1662.183,549.64337 C 1677.5897,536.7498 1697.0987,570.31021 1727.1165,572.56526 C 1750.387,578.89166 1802.297,595.86915 1827.5312,572.03125 C 1834.6152,565.33917 1820.0905,560.9224 1839.5625,548 C 1848.7187,541.92353 1880.1626,533.08635 1881.0312,522.90625 C 1885.0023,476.36337 1891.7907,482.9026 1905.0625,451.9375 C 1911.658,434.0836 1913.246,425.1825 1902.9375,416.6875 z M 760.9375,829.5625 L 755.59375,832.0625 L 753.78125,833.125 L 745.9375,834.9375 L 743.78125,834.21875 L 739.875,836.71875 L 736.28125,839.5625 L 731.65625,843.5 L 728.4375,847.4375 L 724.15625,847.78125 C 724.15617,847.78128 721.64735,846.7053 720.21875,847.0625 C 718.79027,847.41958 714.15625,849.5625 714.15625,849.5625 L 708.09375,849.5625 L 705.21875,847.78125 L 701.28125,849.21875 L 694.5,851 L 688.09375,851.34375 L 685.9375,848.5 L 684.875,845.28125 L 678.4375,845.625 L 677.375,842.4375 L 673.78125,841 C 673.78117,840.99998 671.2856,839.93305 669.5,839.21875 C 667.71431,838.50454 664.5,838.5 664.5,838.5 L 665.9375,843.5 C 665.93757,843.49998 665.9285,846.7053 664.5,847.0625 C 663.07151,847.41958 659.875,848.125 659.875,848.125 L 653.09375,848.5 L 652.375,844.9375 L 648.09375,844.9375 L 641.28125,842.78125 L 639.875,839.21875 L 634.15625,835.625 L 629.5,838.125 L 628.78125,842.78125 L 625.21875,846.34375 C 625.21877,846.34384 620.94195,847.7679 619.15625,848.125 C 617.37057,848.48218 612,849.5625 612,849.5625 L 606.65625,847.4375 L 601.28125,849.5625 L 597.71875,852.78125 L 592.71875,856.34375 L 584.5,855.625 L 578.78125,850.625 C 578.78117,850.62498 580.20985,849.20965 578.78125,847.78125 C 577.35267,846.35268 572.37945,842.0625 570.59375,842.0625 C 568.80797,842.06248 563.4375,839.21875 563.4375,839.21875 L 554.5,839.5625 L 547.375,839.21875 L 539.15625,838.5 L 535.59375,837.0625 L 525.59375,841 L 519.15625,843.5 L 513.4375,843.5 L 508.4375,842.0625 L 507.71875,844.9375 L 503.4375,844.21875 L 500.9375,840.28125 L 496.65625,840.28125 L 492.71875,842.4375 L 487,846.34375 L 482,849.9375 L 477,849.21875 L 472.71875,846 L 467,847.4375 L 456.65625,848.125 C 456.65624,848.12498 448.06705,847.4375 446.28125,847.4375 C 444.49544,847.43748 440.9375,847.78125 440.9375,847.78125 L 435.21875,845.625 L 426.28125,849.9375 L 421.65625,847.4375 C 421.65624,847.43748 419.14735,848.14735 417.71875,849.21875 C 416.29014,850.29024 413.4375,853.125 413.4375,853.125 C 413.4376,853.12498 408.06705,854.5804 406.28125,854.9375 C 404.49544,855.29468 398.4375,856.34375 398.4375,856.34375 L 392,858.84375 L 385.59375,862.4375 L 380.59375,867.4375 L 375.59375,873.125 L 371.28125,874.5625 L 366.28125,872.4375 C 366.28114,872.43748 364.8662,868.48675 363.4375,868.84375 C 362.009,869.20094 357,869.5625 357,869.5625 C 357.00001,869.56248 354.8662,872.4285 353.4375,873.5 C 352.009,874.57138 348.4375,876.34375 348.4375,876.34375 L 344.15625,873.125 L 339.5,875.625 C 339.50001,875.62498 335.20985,878.48675 333.78125,878.84375 C 332.35264,879.20094 329.5,880.625 329.5,880.625 L 322,890.625 L 317.375,892.4375 C 317.37501,892.43748 313.79905,893.14735 311.65625,894.21875 C 309.51334,895.29024 300.59375,899.5625 300.59375,899.5625 L 294.5,899.5625 L 288.09375,898.125 L 281.65625,895.28125 L 277,891.71875 L 270.59375,893.5 L 265.21875,893.125 L 259.5,887.4375 L 258.09375,882.78125 L 255.59375,875.625 C 255.59374,875.62498 252,877.79035 252,879.21875 C 252,880.64734 254.1606,881.3482 252.375,882.0625 C 250.5893,882.77678 244.5,884.21875 244.5,884.21875 L 239.5,881.71875 L 234.5,882.0625 L 230.59375,879.21875 L 225.9375,876.71875 L 220.9375,881.34375 L 215.59375,877.4375 L 203.78125,877.4375 L 193.09375,877.78125 L 183.78125,873.84375 L 177.71875,867.78125 L 172,859.21875 L 167.71875,852.0625 L 166.65625,844.5625 L 165.9375,839.9375 L 169.15625,836 L 163.4375,834.5625 L 157.71875,837.78125 L 147.71875,836.71875 L 142.71875,836 L 121.28125,878.84375 L 91.28125,911.71875 L 57,928.84375 L 14.15625,934.5625 L 2.71875,946 L 2.71875,970.25 C 41.59915,995.40217 103.84715,995.17353 145.40625,999.90625 C 189.87244,1004.0373 213.4403,1005.9003 296.0625,995.5625 C 335.4721,998.78725 441.3964,961.0145 481.625,958.4375 C 524.99001,958.43748 589.2939,979.44071 630.0625,993.375 C 691.36367,1021.0671 736.83345,1033.4011 782.90625,1061.0625 C 831.07037,1080.7111 844.14775,1104.6086 878.96875,1109.0625 C 923.55372,1124.0468 941.8298,1123.9715 993.5625,1156 C 1017.0896,1167.7635 1064.6223,1158.3098 1086.3438,1180.0312 C 1120.7819,1189.1282 1128.6496,1193.7499 1166.0312,1199.6875 C 1234.3187,1210.8163 1237.4194,1162.1901 1270.8438,1115.625 C 1321.6927,1086.9665 1422.0736,1151.0575 1489.1562,1080.6875 C 1490.3744,1070.821 1492.5133,1062.8729 1495.375,1056.3125 L 1494.875,1056.3438 L 1489.5,1055.625 L 1485.2188,1056 L 1479.5,1056.3438 L 1477,1054.2188 L 1441.6562,1053.5 L 1426.2812,1061.7188 L 1414.5,1064.9375 L 1410.9375,1060.625 L 1407.375,1053.8438 L 1403.7812,1051.3438 L 1403.0938,1045.625 L 1394.5,1041.3438 L 1387.7188,1042.7812 L 1379.5,1046.3438 L 1369.875,1049.5625 C 1369.875,1049.5625 1364.1472,1046.7188 1362.7188,1046.7188 C 1361.2901,1046.7188 1351.2812,1043.8438 1351.2812,1043.8438 L 1334.5,1043.8438 L 1327.7188,1044.9375 L 1324.1562,1039.2188 L 1319.1562,1032.4375 L 1317,1026.3438 C 1317,1026.3436 1319.1384,1023.8438 1316.2812,1023.8438 C 1313.4241,1023.8437 1299.5,1021.3438 1299.5,1021.3438 L 1289.5,1017.4375 L 1281.6562,1017.0625 L 1277.375,1017.4375 L 1275.9375,1014.5625 L 1273.0938,1017.7812 L 1265.2188,1017.7812 C 1265.2187,1017.7812 1259.1472,1015.6295 1257.7188,1016.3438 C 1256.2901,1017.0581 1250.9375,1019.2188 1250.9375,1019.2188 L 1247.375,1024.9375 L 1239.1562,1027.0625 L 1227.7188,1030.625 L 1223.4375,1034.2188 L 1215.9375,1039.5625 L 1206.2812,1046 L 1193.4375,1062.4375 L 1189.1562,1076.7188 C 1189.1562,1076.7188 1191.2812,1087.7903 1191.2812,1089.2188 C 1191.2812,1090.6474 1202.375,1109.9375 1202.375,1109.9375 L 1204.5,1116.7188 L 1199.1562,1131.3438 L 1188.0938,1148.8438 L 1179.1562,1154.9375 C 1179.1562,1154.9375 1171.6472,1162.4375 1170.2188,1162.4375 C 1168.7901,1162.4375 1157.375,1163.125 1157.375,1163.125 C 1157.3749,1163.1249 1151.6607,1160.9956 1149.875,1160.2812 C 1148.0892,1159.5669 1142.7188,1156.7188 1142.7188,1156.7188 C 1142.7187,1156.7188 1138.0849,1150.625 1136.6562,1150.625 C 1135.2277,1150.6249 1129.8527,1148.8661 1128.7812,1147.4375 C 1127.7098,1146.0089 1122.375,1141.3438 1122.375,1141.3438 L 1114.875,1139.9375 L 1108.7812,1138.5 L 1105.2188,1134.9375 L 1094.1562,1132.4375 L 1084.5,1128.8438 L 1062.7188,1124.5625 L 1042,1124.9375 L 1020.2188,1121.3438 L 1011.6562,1115.2812 L 1006.6562,1109.2188 C 1006.6563,1109.2188 999.5,1099.5625 999.5,1097.0625 C 999.50001,1094.5625 995.93305,1086.0046 995.21875,1084.2188 C 994.50442,1082.4331 993.09375,1073.5 993.09375,1073.5 L 986.65625,1067.4375 C 986.65622,1067.4375 978.42415,1067.0625 976.28125,1067.0625 C 974.13832,1067.0625 965.21875,1066.3438 965.21875,1066.3438 L 955.9375,1060.625 L 947,1056 C 947.00002,1056.0001 942.70985,1053.125 941.28125,1053.125 C 939.85262,1053.1249 930.9375,1050.2812 930.9375,1050.2812 L 925.9375,1052.0625 C 925.93752,1052.0625 920.9286,1051.3438 919.5,1051.3438 C 918.07152,1051.3436 910.59375,1047.0625 910.59375,1047.0625 L 904.875,1047.0625 L 898.09375,1048.8438 L 893.78125,1051.7188 L 876.28125,1052.0625 L 868.78125,1050.625 L 858.09375,1044.5625 L 845.59375,1037.7812 C 845.59377,1037.7812 839.14735,1035.6518 837.71875,1034.9375 C 836.29027,1034.2232 828.4375,1029.9375 828.4375,1029.9375 L 828.4375,1032.7812 C 828.43757,1032.7812 822.35275,1034.2098 821.28125,1032.7812 C 820.20987,1031.3527 820.59375,1027.7812 820.59375,1027.7812 L 824.875,1029.2188 L 820.59375,1024.2188 L 818.4375,1021 L 819.5,1016.3438 L 812.71875,1011 L 810.21875,1008.125 L 812,1007.0625 L 815.9375,1001.7188 L 811.65625,998.125 L 804.875,998.125 L 803.09375,1002.0625 L 802.71875,1005.625 L 798.09375,1008.125 C 798.09377,1008.1251 793.7856,1009.9331 792,1009.2188 C 790.21421,1008.5045 785.9375,1006.3438 785.9375,1006.3438 C 785.93757,1006.3439 778.09375,1000.2723 778.09375,998.84375 C 778.09377,997.41525 772.375,990.28125 772.375,990.28125 L 772.375,983.84375 L 774.15625,982.4375 L 779.15625,976.71875 C 779.15617,976.71874 779.1606,973.84375 782.375,973.84375 C 785.58931,973.84384 788.4375,971.71875 788.4375,971.71875 L 792.375,967.4375 L 797.375,967.4375 L 799.15625,963.5 L 803.09375,959.9375 C 803.09377,959.93748 805.94195,956.3661 806.65625,954.9375 C 807.37047,953.50898 810.9375,948.125 810.9375,948.125 L 813.4375,943.125 L 815.21875,937.4375 L 818.78125,932.4375 L 817.71875,929.9375 L 813.4375,925.625 L 816.28125,918.5 L 816.65625,913.84375 L 812.71875,910.625 L 809.15625,911 L 806.65625,909.21875 L 806.65625,906.34375 L 801.65625,907.4375 L 799.15625,903.125 C 799.15617,903.12498 795.21875,898.4911 795.21875,897.0625 C 795.21887,895.63388 793.09375,888.5 793.09375,888.5 L 794.15625,880.625 L 797.375,876 L 800.9375,874.5625 L 804.875,872.4375 L 808.4375,865.625 L 812,858.84375 L 814.5,856 L 817.375,853.125 L 818.4375,850.625 L 817.375,849.21875 L 817,846.34375 L 816.28125,843.5 L 812.71875,843.5 L 809.5,844.21875 L 809.5,847.78125 L 805.21875,849.9375 L 800.9375,852.4375 L 797,852.4375 L 797,856 L 792,859.9375 L 786.28125,860.28125 L 783.09375,858.125 L 784.875,856.34375 L 787.71875,854.9375 L 784.875,851.71875 L 782.375,848.5 L 781.65625,844.5625 L 777.71875,840.625 L 781.28125,839.21875 L 781.65625,836.71875 L 778.4375,835.28125 L 774.15625,833.84375 L 769.5,833.84375 L 768.09375,831 L 760.9375,829.5625 z"
id="path5359"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
<g
id="layer2"
style="display:inline;fill:#aade87">
<path
d="M 405.75781,-2.5467444 L 403.60181,1.0157556 L 402.91381,2.4532556 L 401.82081,7.4532557 L 400.03881,8.859556 L 401.10181,13.172056 L 400.41381,16.734556 L 395.41381,11.359556 L 388.97681,10.672056 L 385.03881,12.078256 L 382.19581,9.234556 L 379.32081,9.234556 L 374.69581,11.015756 L 372.53881,8.515756 L 369.32081,6.7345557 L 367.19581,2.4532556 L 364.32081,1.0157556 C 364.32081,1.0157556 358.97681,-0.0690444 358.97681,1.3595556 C 358.97681,2.7881556 359.32081,4.5782556 359.32081,4.5782556 L 356.10181,7.0782557 L 357.91381,10.672056 L 360.03881,13.859556 L 362.53881,17.453256 L 359.69581,20.297056 L 356.10181,22.453256 L 350.03881,24.578256 L 345.75781,29.953256 C 345.75781,29.953256 349.31581,30.672056 351.10181,30.672056 C 352.88781,30.672056 356.82081,28.515756 356.82081,28.515756 L 361.47681,28.515756 L 366.10181,27.797056 L 366.10181,31.015756 L 368.25781,35.672056 L 367.53881,38.859556 L 365.03881,41.734556 L 367.53881,46.015756 C 367.53881,46.015756 363.97681,48.524756 363.97681,49.953256 C 363.97681,51.381856 366.12381,53.524756 364.69581,54.953256 C 363.26681,56.381856 361.10181,57.797056 361.10181,57.797056 C 361.10181,57.797056 358.24481,59.596156 356.10181,59.953256 C 353.95881,60.310456 353.96381,59.600656 351.82081,60.672056 C 349.67781,61.743456 347.19581,62.453256 347.19581,62.453256 C 347.19581,62.453256 343.96781,62.801456 342.53881,63.515756 C 341.11081,64.230056 337.19581,65.297056 337.19581,65.297056 C 337.19581,65.297056 336.46781,65.297056 335.03881,65.297056 C 333.61081,65.297056 330.41381,66.015756 330.41381,66.015756 L 327.53881,68.172056 L 323.25781,69.234556 L 328.25781,71.734556 L 328.60181,73.859556 L 326.47681,75.672056 L 323.60181,76.734556 L 324.32081,79.578256 L 327.19581,79.953256 L 328.25781,82.078256 L 331.82081,81.359556 L 329.69581,84.234556 L 332.19581,85.672056 L 336.82081,85.672056 L 338.60181,83.172056 L 341.10181,81.734556 L 345.41381,81.015756 L 348.60181,79.234556 L 351.47681,83.515756 L 351.82081,85.672056 L 353.97681,84.953256 L 358.97681,88.515756 L 355.41381,88.859556 L 351.82081,91.734556 L 354.69581,93.172056 L 358.60181,92.078256 L 362.53881,91.015756 L 364.32081,91.734556 L 366.47681,93.859556 L 365.75781,97.797056 L 368.97681,99.95326 L 371.10181,102.79706 L 373.97681,104.95326 L 380.75781,105.67206 L 383.60181,105.29706 L 383.60181,102.07826 L 387.53881,99.95326 C 387.53881,99.95326 391.82981,100.65416 393.25781,100.29706 C 394.68681,99.93986 397.19581,99.57826 397.19581,99.57826 L 401.82081,95.297056 L 406.47681,93.515756 L 400.41381,101.01576 L 394.32081,104.95326 L 389.32081,108.51575 L 386.10181,111.01575 L 388.25781,115.67205 L 388.60181,119.95325 L 383.97681,116.01575 L 375.41381,116.01575 L 372.19581,114.23455 L 368.97681,112.07825 L 366.10181,110.67205 L 358.25781,109.23455 L 351.10181,108.51575 L 349.69581,111.35955 L 347.53881,113.85955 L 350.75781,116.73455 L 347.19581,117.45325 L 343.97681,119.95325 L 341.82081,119.23455 L 338.97681,116.73455 L 337.19581,121.35955 L 337.19581,123.85955 L 335.75781,128.85955 L 332.91381,130.29705 L 327.53881,133.51575 L 323.60181,136.01575 L 320.75781,135.29705 L 319.32081,137.45325 L 317.53881,139.95325 L 315.75781,143.17205 L 312.91381,144.23455 L 310.41381,146.73455 L 307.19581,147.45325 L 304.69581,148.85955 L 301.82081,150.29705 L 299.32081,148.85955 L 296.10181,148.85955 L 294.32081,152.45325 L 295.03881,156.35955 L 298.25781,156.01575 L 300.41381,153.51575 L 302.53881,154.95325 L 304.69581,155.67205 L 307.19581,157.79705 L 307.53881,161.73455 L 310.03881,162.79705 L 312.91381,162.07825 C 312.91381,162.07825 314.32081,157.44435 314.32081,156.01575 C 314.32081,154.58725 315.03881,153.51575 315.03881,153.51575 L 316.82081,154.23455 L 320.41381,152.79705 L 322.53881,152.07825 L 326.47681,148.51575 L 328.60181,147.79705 L 334.69581,149.95325 L 338.60181,150.67205 L 342.91381,150.67205 L 345.75781,153.85955 L 348.97681,153.51575 L 351.82081,156.73455 L 352.91381,159.23455 L 355.41381,159.23455 L 357.19581,159.57825 L 361.10181,156.73455 L 363.25781,152.79705 L 364.69581,147.07825 L 368.60181,143.51575 L 371.82081,142.45325 L 373.60181,140.67205 L 377.91381,140.67205 L 383.60181,139.23455 L 388.97681,141.35955 L 391.82081,143.51575 L 395.41381,147.07825 L 398.25781,149.95325 L 400.75781,147.07825 L 407.19581,149.95325 L 409.32081,149.95325 L 411.10181,151.35955 L 415.75781,148.17205 L 414.69581,145.29705 L 418.97681,145.29705 L 423.60181,145.29705 L 427.91381,148.85955 L 429.69581,150.67205 L 434.69581,153.51575 L 438.60181,152.45325 L 439.69581,149.57825 L 434.69581,148.85955 L 430.03881,147.45325 L 430.03881,144.95325 L 435.75781,142.45325 L 433.25781,138.51575 L 438.25781,143.85955 L 441.10181,145.29705 L 443.25781,145.29705 L 447.53881,145.29705 L 447.19581,147.07825 L 450.03881,149.95325 L 454.32081,148.85955 L 468.25781,145.67205 L 472.53881,147.07825 L 478.25781,149.57825 L 483.25781,152.45325 L 485.75781,148.51575 L 488.97681,148.51575 L 493.97681,150.67205 L 497.19581,147.79705 L 500.75781,144.95325 L 503.60181,140.67205 L 508.25781,142.07825 L 516.47681,140.67205 L 520.03881,136.35955 L 520.03881,131.35955 L 517.53881,128.17205 L 512.19581,126.73455 L 505.75781,124.95325 C 505.75781,124.95325 503.26281,123.16755 501.47681,122.45325 C 499.69081,121.73895 495.75781,119.95325 495.75781,119.95325 L 499.69581,117.07825 L 502.91381,116.35955 L 508.60181,116.01575 L 511.47681,112.45325 L 511.47681,108.17205 L 510.03881,106.01576 L 512.53881,104.57826 L 516.10181,106.73455 L 520.41381,105.29706 L 521.47681,101.73456 L 521.10181,97.453256 L 526.47681,98.17206 L 527.91381,94.578256 L 531.47681,93.172056 L 533.60181,89.234556 L 535.03881,84.953256 L 539.32081,79.578256 L 540.03881,72.453256 L 538.60181,68.172056 L 537.19581,64.578256 L 536.10181,61.359556 L 537.53881,59.234556 L 535.41381,54.578256 L 529.32081,52.453256 L 521.10181,48.859556 L 517.53881,47.078256 L 514.69581,47.797056 L 506.10181,45.672056 L 503.97681,49.953256 L 501.10181,56.015756 L 497.19581,58.172056 L 493.60181,57.078256 L 492.91381,53.515756 L 489.32081,51.015756 L 486.47681,50.672056 L 486.10181,45.672056 L 488.60181,44.234556 L 491.47681,44.953256 L 494.69581,41.734556 L 499.69581,39.578256 L 501.82081,36.359556 L 501.82081,31.734556 L 498.60181,21.359556 L 496.47681,21.015756 L 493.25781,16.015756 L 486.82081,9.234556 L 484.69581,4.9532556 L 489.69581,8.859556 L 493.97681,10.297056 L 498.60181,13.172056 L 498.25781,9.578256 L 493.25781,2.7970556 L 491.82081,-2.5467444 L 405.75781,-2.5467444 z M 630.19581,58.265756 L 625.16381,61.390756 L 620.16381,69.265756 L 621.57081,81.390756 L 615.16381,95.703256 L 606.57081,102.82826 L 606.57081,112.82825 L 601.57081,109.98455 L 590.16381,122.10955 L 590.16381,127.82825 L 583.72681,127.82825 L 580.88281,134.98455 L 573.00781,138.54705 L 560.88281,143.54705 L 549.44581,147.10955 L 538.72681,151.39075 L 528.72681,152.82825 L 524.47681,156.45325 L 521.28881,163.48455 C 521.67981,170.18935 520.17681,174.88545 521.91381,176.20325 L 520.75781,188.14075 L 508.00781,197.10955 L 498.00781,201.39075 L 486.57081,202.82825 L 475.88281,207.82825 L 469.44581,212.82825 L 468.00781,216.39075 L 478.00781,221.39075 L 466.57081,223.54705 L 458.00781,227.10955 L 448.72681,219.98455 L 437.28881,219.98455 L 432.28881,217.10955 L 426.57081,218.54705 L 426.57081,210.70325 L 421.28881,207.01575 L 427.35181,206.01575 L 426.35181,202.48455 C 426.35181,202.48455 423.84081,198.94815 421.82081,199.45325 C 419.79981,199.95825 415.22681,201.45325 415.22681,201.45325 L 410.69581,198.42205 L 406.13281,195.39075 L 408.66381,199.45325 L 408.66381,203.98455 L 408.66381,208.01575 L 408.16381,216.60955 L 412.19581,219.64075 L 412.72681,225.20325 L 411.69581,228.73455 L 412.72681,235.29705 L 411.69581,240.85955 L 411.69581,245.89075 L 414.72681,249.95325 L 410.69581,252.48455 L 406.13281,252.48455 L 402.10181,248.92205 L 398.07081,247.42205 L 393.00781,247.92205 L 389.97681,249.95325 L 386.44581,247.42205 L 379.88281,247.42205 L 375.85181,249.45325 L 371.28881,249.45325 L 371.28881,246.42205 L 366.75781,241.35955 L 361.69581,235.29705 L 354.13281,231.26575 L 350.07081,232.26575 L 345.53881,234.29705 L 345.53881,237.32825 L 340.47681,237.32825 L 335.94581,237.32825 L 332.91381,233.79705 L 326.85181,235.79705 L 323.32081,235.79705 L 319.28881,235.79705 L 312.69581,238.32825 L 307.16381,239.85955 L 306.13281,243.89075 L 305.13281,246.92205 L 308.16381,249.45325 L 315.22681,247.42205 L 317.75781,246.42205 L 320.28881,248.92205 L 319.78881,251.45325 L 316.75781,252.98455 L 311.69581,250.95325 L 310.69581,253.48455 L 311.19581,256.01575 L 315.72681,254.98455 L 319.28881,258.01575 L 317.75781,262.07825 L 313.22681,261.04705 L 305.63281,262.57825 L 309.16381,266.10955 L 314.22681,268.64075 L 313.22681,274.70325 L 317.25781,277.73455 L 318.25781,274.70325 L 325.85181,275.70325 L 329.88281,277.73455 L 332.91381,281.26575 L 336.94581,282.26575 L 340.47681,285.79705 L 345.03881,287.82825 L 348.07081,291.35955 L 352.10181,293.39075 L 358.16381,297.92205 L 363.22681,299.95325 L 370.78881,300.95325 L 373.32081,306.01575 L 370.28881,309.04705 C 370.28881,309.04705 370.79981,311.06305 372.82081,312.57825 C 374.84081,314.09355 378.38281,314.60955 378.38281,314.60955 L 380.38281,320.14075 L 384.41381,324.20325 L 380.38281,329.73455 L 380.38281,334.79705 L 383.91381,343.39075 L 386.94581,348.42205 C 386.94581,348.42205 387.45681,353.50055 389.47681,355.01575 C 391.49681,356.53105 394.53881,359.04705 394.53881,359.04705 L 401.10181,364.60955 L 407.16381,367.64075 L 405.13281,371.17205 L 407.66381,377.23455 L 405.13281,386.82825 L 402.10181,390.85955 L 400.10181,394.39075 L 410.69581,408.04705 L 414.22681,418.64075 L 408.16381,409.04705 L 403.13281,403.48455 L 399.57081,412.57825 L 397.57081,421.67205 L 393.50781,433.797 L 388.97681,445.422 L 390.47681,448.95321 L 388.47681,456.01571 L 383.41381,469.14071 L 382.41381,478.73451 L 375.35181,492.39071 L 372.32081,498.45321 L 365.22681,502.48451 C 374.95614,530.02621 409.69972,534.03699 434.6788,537.60388 C 452.25728,541.9481 471.19247,577.26819 504.1308,572.72325 C 513.91649,556.19372 525.59169,571.68097 537.28881,574.26571 L 533.72681,572.82821 L 533.72681,569.26571 L 530.88281,565.32821 L 529.44581,561.04701 L 528.72681,554.60951 L 530.50781,546.04701 L 532.28881,541.04701 L 535.16381,535.70321 L 539.07081,531.39071 L 543.38281,529.26571 L 548.00781,529.26571 L 557.66381,521.76571 L 565.16381,516.76571 L 569.44581,516.76571 L 571.22681,519.98451 L 571.57081,521.76571 C 612.87132,514.01454 597.0818,425.28874 601.75032,417.45535 C 621.05239,401.28556 627.87598,432.56505 635.19926,416.8066 C 643.73349,398.44239 689.35326,416.27826 688.44751,360.46916 C 695.12365,346.57589 691.83937,350.11933 707.43437,334.93223 C 699.71522,333.4635 696.04531,334.4241 697.56178,329.90489 C 699.77778,321.04019 705.77783,280.86344 722.90847,266.37663 C 733.41748,251.30869 736.65372,214.85115 724.73005,214.57823 C 695.71054,213.91401 701.26881,188.13895 691.53881,164.39075 C 674.03381,121.66045 676.15581,104.72216 666.07081,87.234556 C 654.82081,67.728756 643.37981,64.319856 630.19581,58.265756 z"
id="path3626"
style="fill:#aade87;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
<g
id="layer4"
style="display:inline">
<path
d="M 311.7467,1.2553 L 208.1753,1.2553 L 208.8895,3.7553 L 206.7467,5.1838 L 203.8895,3.7553 L 202.461,5.541 L 198.5324,6.9696 L 194.961,8.3981 L 192.1038,10.541 C 192.1038,10.541 193.1753,10.541 194.6038,10.541 C 196.0324,10.541 200.6753,12.32671 200.6753,12.32671 L 198.1753,14.46957 L 196.3895,16.25528 L 189.6038,16.96957 L 191.7467,20.541 L 192.1038,27.68385 L 188.5324,25.541 L 187.1038,22.32671 L 182.461,24.46957 L 180.3181,21.61242 L 173.5324,23.39814 L 169.961,26.25528 L 172.461,29.11242 L 179.2467,30.89814 L 188.5324,31.61242 L 186.3895,34.11242 L 174.961,35.541 L 171.0324,38.75528 L 171.3895,41.61242 L 172.461,44.82671 L 177.1038,46.25528 L 181.0324,47.32671 L 185.6753,47.68385 L 182.1038,50.541 L 176.3895,52.32671 L 171.3895,54.11242 L 177.1038,56.25528 C 177.1038,56.25528 179.6038,55.541 181.7467,55.541 C 183.8895,55.541 187.461,55.89814 187.461,55.89814 L 189.2467,57.68385 L 184.2467,60.89814 L 185.3181,62.68385 L 189.961,63.39814 L 193.8895,63.39814 L 197.1038,66.61242 L 200.3181,66.61242 L 204.2467,63.75528 L 207.461,65.89814 L 212.1038,64.11242 C 212.1038,64.11242 213.1753,66.25528 214.6038,66.96957 C 216.0324,67.68385 218.1753,65.541 218.1753,65.541 L 222.1038,66.61242 L 224.961,63.39814 L 228.5324,61.25528 L 232.1038,59.11242 L 236.3895,60.541 L 240.3181,59.11242 L 244.6038,57.68385 L 246.0324,54.46957 L 249.961,56.61242 L 253.5324,55.89814 L 255.6753,52.32671 L 255.8538,52.32671 L 256.5681,51.43385 L 258.711,50.18385 L 261.5681,49.29099 L 266.211,49.82671 L 268.8895,49.46957 L 272.6395,51.79099 L 274.2467,52.14814 L 277.9967,51.61242 C 277.9967,51.61242 279.7824,49.82671 279.7824,49.11242 C 279.7824,48.39814 281.9253,49.64814 281.9253,49.64814 L 285.3181,51.79099 L 289.2467,51.43385 L 293.3538,53.93385 L 295.4967,51.07671 L 294.7824,48.75528 L 293.711,46.43385 L 294.6038,43.39814 L 296.7467,41.25528 L 299.6038,38.21957 L 301.3895,35.18385 L 302.461,32.14814 L 303.5324,29.29099 C 303.5324,29.29099 307.461,24.46957 308.1753,23.93385 C 308.8895,23.39814 309.7824,20.54099 309.7824,20.54099 L 310.8538,16.96957 L 311.9253,14.82671 C 311.9253,14.82671 312.6395,10.36242 312.6395,9.4696 C 312.6395,8.5767 311.9253,6.4338 311.9253,6.4338 L 311.7467,1.2553 z"
id="path2236"
style="fill:#fcf5e3;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 789.2467,563.93385 C 789.037,563.93385 786.9377,563.93385 785.6753,563.93385 C 784.8435,563.93385 783.7154,564.55669 783.1753,564.82671 C 782.0862,565.37129 781.4909,565.51701 781.0325,566.43385 C 780.4957,567.50738 781.2934,568.24015 781.9253,568.39814 C 783.0875,568.68868 784.4394,568.93385 785.6753,568.93385 C 786.657,568.93385 787.5195,568.57671 788.711,568.57671 C 789.8068,568.57671 790.5085,568.75823 791.211,568.93385 C 792.0541,569.14462 792.0712,568.47983 792.461,567.50528 C 792.7978,566.66337 792.8005,565.43314 792.9967,564.64814 C 793.4163,562.96986 792.3651,563.13696 791.7467,563.75528 C 791.1658,564.33618 789.7991,564.1548 789.2467,563.93385 z"
id="path3232"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 808.711,585.71957 C 807.8322,586.59835 807.4299,586.9074 807.9967,588.04099 C 808.3678,588.78304 808.8995,589.11491 809.6039,589.29099 C 810.6776,589.55942 810.8539,587.99291 810.8539,587.14814 C 810.8539,586.09792 809.5786,585.28576 808.711,585.71957 z"
id="path3234"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 816.211,591.07671 C 816.211,590.24125 815.4417,592.98595 816.0325,593.57671 C 816.7329,594.2772 817.6964,594.77814 817.9967,593.57671 C 818.2429,592.59199 818.8764,591.43385 817.2825,591.43385 C 816.906,591.43385 816.5682,591.19576 816.211,591.07671 z"
id="path3236"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 788.8896,587.14814 C 788.5968,587.14814 786.7467,586.8602 786.7467,588.21957 C 786.7467,588.90387 787.8072,589.3329 788.3539,589.46957 C 789.493,589.75434 789.1575,587.81786 788.8896,587.14814 z"
id="path3238"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 779.7825,574.82671 C 780.4873,575.00293 778.3562,575.90754 778.5325,576.61242 C 778.7766,577.58919 779.9171,577.17009 780.3182,576.96957 C 781.5384,576.35943 781.1974,574.82671 779.7825,574.82671 z"
id="path3240"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 769.6039,553.75528 C 770.1698,553.47231 770.24,555.03039 770.8539,555.18385 C 771.9431,555.45615 772.248,554.82019 772.461,553.75528 C 772.8385,551.86777 770.0222,553.50427 769.6039,553.75528 z"
id="path3242"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 774.961,533.39814 C 775.0481,532.96263 772.5937,534.13537 772.2825,534.29099 C 771.439,534.71271 772.7456,536.07671 773.3539,536.07671 C 774.9348,536.07671 775.0016,535.63851 775.4967,534.64814 C 775.6995,534.24268 775.1396,533.8148 774.961,533.39814 z"
id="path3244"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 754.3537,565.82908 L 752.8385,562.79862 L 753.5961,559.26309 L 754.6063,554.7174 L 756.8791,554.96994 L 758.3943,557.24278 L 758.8994,562.54608 L 759.657,566.58669 L 758.1418,570.12223 L 759.9096,574.92045 C 759.9096,574.92045 759.9096,581.23391 760.1621,582.24406 C 760.4146,583.25421 760.9197,588.30497 760.9197,588.30497 L 761.6773,594.11335 L 760.1621,598.15396 L 756.8791,603.7098 L 754.8588,606.9928 L 754.3537,614.82148 L 755.3639,619.11463 L 752.3334,620.37732 L 751.8283,623.15524 C 751.8283,623.15524 754.3537,624.67047 753.091,625.17554 C 751.8283,625.68062 750.0606,627.70092 750.0606,627.70092 L 750.8182,631.489 L 749.303,636.28722 L 745.5149,632.24661 L 742.2319,629.21615 L 737.9387,628.45854 L 734.1507,625.93316 L 732.6354,623.15524 L 733.3931,621.89255 L 735.4134,620.37732 L 736.171,618.35701 L 733.1405,616.84178 L 731.1202,616.84178 L 728.3423,615.32656 L 731.6253,613.30625 L 733.1405,609.77072 L 731.6253,608.00295 L 728.0898,608.25549 L 726.8271,606.74026 L 727.3321,604.21488 L 729.3524,601.94203 L 730.8677,601.18442 L 727.8372,597.64889 L 725.8169,596.13366 L 725.3118,593.35574 L 726.0694,590.83036 L 728.3423,590.83036 L 728.8474,588.81005 L 725.8169,586.78975 L 726.0694,584.76944 L 728.0898,583.25421 L 730.1101,580.22375 L 730.3626,577.44583 L 731.1202,575.42553 L 732.6354,575.67807 L 733.8981,575.67807 L 734.9083,573.65776 L 737.1811,572.64761 L 740.2116,572.64761 L 741.9793,571.63746 L 743.9997,568.85954 L 745.2623,567.84939 L 748.0403,566.83923 L 750.8182,567.59685 L 751.3233,569.61715 L 754.1012,569.11208 L 754.3537,565.82908 z"
id="path3246"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 758.6469,742.60578 L 760.4146,735.02963 L 763.1926,719.62481 L 764.9603,698.15906 L 762.4349,693.61338 L 759.657,690.33038 L 761.9299,684.77454 L 764.9603,681.23901 L 766.7281,674.42048 L 766.7281,667.09687 L 764.4552,663.56134 L 766.223,659.26819 L 767.4857,655.48012 L 764.2027,656.74281 L 759.9096,655.73266 L 760.4146,653.71235 L 764.7078,653.20728 L 763.6976,651.69205 L 760.1621,651.18697 L 759.9096,648.40905 L 760.6672,645.37859 L 758.3943,643.35829 L 756.1215,641.59052 L 753.3436,639.31768 L 751.8283,641.59052 L 749.0504,641.59052 L 748.0403,639.31768 L 745.7674,639.82275 L 745.7674,643.35829 L 745.2623,644.62098 L 741.7268,645.63113 L 738.1913,646.38875 L 734.1507,651.94458 L 729.8575,654.7225 L 725.8169,656.49027 L 721.2712,658.25804 L 716.473,658.51058 L 713.4425,656.23773 L 711.9273,653.71235 L 711.9273,650.42936 L 710.4121,653.20728 L 711.4222,657.50042 L 708.8969,661.03596 L 708.8969,664.57149 L 710.1595,668.35956 L 711.1697,671.64256 L 713.19,672.40017 L 715.9679,675.93571 L 715.9679,680.22886 L 717.9882,685.27962 L 718.2408,690.33038 L 718.2408,695.12861 L 714.9578,697.14891 L 715.2103,703.46236 L 718.9984,705.23013 L 721.7763,708.76567 L 720.7661,713.31135 L 717.7357,711.29105 L 716.473,716.84689 L 717.4831,721.89765 L 715.9679,724.67557 L 715.4628,726.44334 L 713.9476,731.74664 L 715.9679,734.27202 L 714.7052,737.30248 L 715.9679,740.33293 L 717.2306,743.36339 L 719.5035,744.87862 L 721.0187,749.17177 L 722.7864,752.45476 L 725.3118,753.46492 L 728.8474,753.46492 C 728.8474,753.46492 730.1101,754.47507 731.1202,754.47507 C 732.1304,754.47507 737.4337,752.95984 737.4337,752.95984 C 737.4337,752.95984 738.6964,750.93953 738.1913,749.67684 C 737.6862,748.41415 737.6862,746.64639 737.6862,745.13116 C 737.6862,743.61593 740.7167,740.08039 740.7167,740.08039 L 743.7471,738.8177 L 747.5352,739.57532 L 750.0606,741.84816 L 752.5859,743.36339 L 758.6469,742.60578 z"
id="path3248"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 714.2002,743.61593 C 713.4255,743.73004 711.6748,743.80107 711.6748,745.88877 C 711.6748,747.734 712.0822,747.81148 712.9375,748.66669 C 714.4201,750.14931 714.7052,747.6921 714.7052,746.64639 C 714.7052,746.39304 714.2674,743.95213 714.2002,743.61593 z"
id="path3250"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 709.907,740.58547 C 709.907,738.87706 709.6176,738.25872 707.3816,738.8177 C 705.7913,739.21529 705.8549,740.30989 706.3715,741.34309 C 706.7512,742.10251 708.4709,742.18362 709.1494,742.35324 C 710.5815,742.71127 710.1166,741.63329 709.907,740.58547 z"
id="path3252"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 716.0103,647.46396 C 716.0103,645.75555 715.7209,645.13721 713.485,645.69619 C 711.8946,646.09378 711.9582,647.18838 712.4748,648.22158 C 712.8545,648.981 714.5743,649.06211 715.2527,649.23173 C 716.6849,649.58976 716.2199,648.51178 716.0103,647.46396 z"
id="path3254"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 853.8962,857.32316 C 853.8962,855.61475 853.6067,854.99641 851.3708,855.55539 C 849.7805,855.95298 849.844,857.04758 850.3606,858.08078 C 850.7404,858.8402 852.4601,858.92131 853.1386,859.09093 C 854.5707,859.44896 854.1057,858.37098 853.8962,857.32316 z"
id="path3256"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 855.9165,800.24954 C 855.9165,798.54113 855.627,797.92279 853.3911,798.48177 C 851.8008,798.87936 851.8643,799.97396 852.3809,801.00716 C 852.7607,801.76658 854.4804,801.84769 855.1589,802.01731 C 856.591,802.37534 856.126,801.29736 855.9165,800.24954 z"
id="path3258"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 896.5327,762.05121 C 895.8239,762.15507 894.3499,762.66401 894.7649,764.32406 C 895.1617,765.91106 896.9755,764.70109 897.2903,764.07152 C 897.9353,762.78146 898.443,762.05121 896.5327,762.05121 z"
id="path3262"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 974.3123,754.46181 C 973.6035,754.56567 972.1295,755.07461 972.5445,756.73466 C 972.9413,758.32166 974.7551,757.11169 975.0699,756.48212 C 975.7149,755.19206 976.2226,754.46181 974.3123,754.46181 z"
id="path3264"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 968.7564,763.30064 C 968.0477,763.4045 966.5737,763.91344 966.9887,765.57349 C 967.3854,767.16049 969.1993,765.95052 969.5141,765.32095 C 970.1591,764.03089 970.6667,763.30064 968.7564,763.30064 z"
id="path3266"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 965.4734,775.42248 C 964.7647,775.52634 963.2907,776.03528 963.7057,777.69533 C 964.1024,779.28233 965.9163,778.07236 966.2311,777.44279 C 966.8761,776.15273 967.3837,775.42248 965.4734,775.42248 z"
id="path3268"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 941.7349,768.09887 C 941.0261,768.20273 939.5521,768.71167 939.9671,770.37172 C 940.3639,771.95872 942.1777,770.74875 942.4925,770.11918 C 943.1375,768.82912 943.6452,768.09887 941.7349,768.09887 z"
id="path3270"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 949.311,767.08872 C 948.6023,767.19258 947.1282,767.70152 947.5432,769.36157 C 947.94,770.94857 949.7538,769.7386 950.0686,769.10903 C 950.7136,767.81897 951.2213,767.08872 949.311,767.08872 z"
id="path3272"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 963.9582,769.6141 C 963.2495,769.71796 961.7754,770.2269 962.1905,771.88695 C 962.5872,773.47395 964.401,772.26398 964.7158,771.63441 C 965.3609,770.34435 965.8685,769.6141 963.9582,769.6141 z"
id="path3276"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 964.4633,772.39202 C 963.7545,772.49588 962.2805,773.00482 962.6955,774.66487 C 963.0923,776.25187 964.9061,775.0419 965.2209,774.41233 C 965.8659,773.12227 966.3736,772.39202 964.4633,772.39202 z"
id="path3278"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 958.9096,765.58676 C 957.3426,765.62163 956.6368,765.74881 956.6368,768.36468 C 956.6368,769.42903 958.1302,769.62737 959.1621,769.62737 C 960.765,769.62737 961.1825,770.70457 961.1825,768.11214 C 961.1825,766.28383 960.5488,766.57024 958.9096,765.58676 z"
id="path3280"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 863.9531,796.88822 C 863.2444,796.99208 861.7703,797.50102 862.1854,799.16107 C 862.5821,800.74807 864.3959,799.5381 864.7107,798.90853 C 865.3558,797.61847 865.8634,796.88822 863.9531,796.88822 z"
id="path3282"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 866.4806,801.6997 C 866.3643,801.6997 863.9734,801.6997 862.44,801.6997 C 860.307,801.6997 861.3447,803.12974 861.935,803.72 C 862.3677,804.15275 864.3698,804.32872 864.9654,804.47762 C 867.0305,804.99389 866.8682,803.24976 866.4806,801.6997 z"
id="path3284"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 868.2484,808.26569 L 869.5111,802.20478 L 871.0263,799.17432 L 874.5619,794.62863 L 877.0873,792.60833 L 879.6126,789.57787 L 880.8753,788.56772 L 882.8956,793.1134 L 885.9261,795.38625 L 889.7142,795.38625 L 892.4921,793.36594 L 892.7446,789.83041 L 894.2598,788.31518 L 896.5327,789.83041 L 899.8157,788.31518 L 902.5936,787.30503 L 903.8563,788.06264 L 904.3614,791.34564 L 905.8766,792.86087 L 908.6545,792.35579 L 910.1697,790.84056 L 911.4324,793.36594 L 913.4527,795.63878 L 917.7459,797.65909 C 917.7459,797.65909 919.0086,798.66924 920.0187,798.66924 C 921.0289,798.66924 924.817,797.65909 924.817,797.65909 L 926.5847,793.61848 L 929.1101,794.37609 C 929.1101,794.37609 931.6355,794.88117 934.1609,795.13371 C 936.6863,795.38625 939.7167,795.63878 939.7167,795.63878 C 939.7167,795.63878 942.7472,795.89132 943.7573,795.38625 C 944.7675,794.88117 947.5454,793.87102 947.5454,793.87102 L 951.3335,791.85071 L 953.8588,789.83041 L 957.1418,787.05249 L 960.4248,787.30503 L 964.2129,786.79995 L 967.2434,788.06264 C 967.2434,788.06264 969.5162,788.82025 970.5264,788.31518 C 971.5365,787.8101 972.7992,786.79995 972.7992,786.79995 L 974.567,783.76949 L 975.8297,780.4865 L 978.1025,783.76949 L 980.8804,783.76949 L 983.6583,779.72888 L 985.9312,779.22381 L 987.4464,779.22381 L 988.9616,781.49665 L 987.4464,786.54741 L 984.921,791.85071 L 980.6279,799.17432 L 976.5873,805.48777 L 975.5771,810.286 L 975.5771,813.56899 L 972.5467,817.10453 L 972.5467,820.38752 L 972.5467,824.68067 L 973.5568,827.71113 L 976.8398,827.96367 L 978.6076,829.73143 L 978.8601,832.00428 L 977.0924,833.01443 L 977.5974,835.03473 L 979.8703,837.05504 L 981.8906,841.09565 L 978.8601,843.36849 L 975.8297,845.13626 L 974.0619,848.67179 L 974.567,852.7124 L 974.3144,854.48017 L 974.8195,858.77332 L 971.5365,859.02586 L 969.5162,857.51063 L 965.9807,856.50048 L 963.7078,855.9954 L 961.1825,858.26824 L 957.1418,857.25809 L 954.1114,855.23778 L 951.0809,854.22763 L 948.303,853.72256 L 945.2725,848.67179 L 943.5048,846.39895 L 938.454,844.12611 L 933.6558,841.60073 C 933.6558,841.60073 931.1304,839.58042 929.3626,839.58042 C 927.5949,839.58042 924.5644,839.07534 924.5644,839.07534 L 919.2611,837.56012 L 915.9781,834.52966 L 912.9477,832.00428 L 908.9071,830.48905 L 904.6139,828.97382 L 901.3309,826.70098 L 898.8055,824.42813 L 894.0073,821.14514 L 890.9768,820.64006 L 887.9464,818.61976 L 884.9159,818.11468 L 881.6329,818.87229 L 877.5923,819.37737 L 875.3195,818.36722 C 875.3195,818.36722 874.3093,815.33676 873.2992,815.33676 C 872.289,815.33676 871.0263,814.83168 871.0263,814.83168 L 870.5213,812.55884 L 868.2484,808.26569 z"
id="path3286"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 866.4785,915.32861 C 865.7697,915.43247 864.2957,915.94141 864.7107,917.60146 C 865.1075,919.18846 866.9213,917.97849 867.2361,917.34892 C 867.8811,916.05886 868.3888,915.32861 866.4785,915.32861 z"
id="path3288"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 887.4392,899.4187 C 886.7304,899.52256 885.2564,900.0315 885.6714,901.69155 C 886.0682,903.27855 887.882,902.06858 888.1968,901.43901 C 888.8418,900.14895 889.3495,899.4187 887.4392,899.4187 z"
id="path3290"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 948.0505,900.69465 C 947.2181,900.34871 944.9861,898.6065 944.2624,897.15912 C 943.9678,896.57002 945.0795,894.14304 945.2725,893.37104 C 945.5668,892.19409 942.8346,891.60328 941.737,891.60328 C 939.7611,891.60328 939.2711,889.75626 939.9692,888.82536 C 940.3645,888.29832 943.4776,889.00796 943.7573,889.0779 C 944.4837,889.25948 945.1129,890.68603 945.5251,891.0982 C 946.2967,891.86977 946.6425,892.46816 947.2929,893.11851 C 948.0782,893.90388 948.3461,894.27647 949.5657,894.88627 C 950.5972,895.402 951.2437,895.62145 952.3436,895.89642 C 952.9551,896.04929 953.8857,897.46541 954.1114,897.91673 C 954.7948,899.28365 955.1604,899.02406 954.869,900.18957 C 954.5982,901.27263 952.763,901.7048 951.3335,901.7048 C 949.7122,901.7048 948.4775,902.82997 948.0505,900.69465 z"
id="path3292"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 875.572,917.6147 C 874.8088,917.6147 872.5847,917.44851 873.5517,919.38247 C 873.9579,920.19482 876.1341,919.88755 877.0873,919.88755 C 879.3192,919.88755 879.5994,918.86417 878.6025,917.86724 C 877.8279,917.09267 876.7396,917.32281 875.572,917.6147 z"
id="path3294"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 902.5914,660.51761 C 901.8827,660.62147 900.4087,661.13041 900.8237,662.79046 C 901.2204,664.37746 903.0343,663.16749 903.3491,662.53792 C 903.9941,661.24786 904.5017,660.51761 902.5914,660.51761 z"
id="path3296"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 886.429,655.71939 C 885.7203,655.82325 884.2462,656.33219 884.6612,657.99224 C 885.058,659.57924 886.8718,658.36927 887.1866,657.7397 C 887.8316,656.44964 888.3393,655.71939 886.429,655.71939 z"
id="path3298"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 882.1359,653.19401 C 881.4271,653.29787 879.9531,653.80681 880.3681,655.46686 C 880.7648,657.05386 882.5787,655.84389 882.8935,655.21432 C 883.5385,653.92426 884.0461,653.19401 882.1359,653.19401 z"
id="path3300"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 933.2748,671.85049 C 932.651,671.49842 931.1741,670.99774 930.4852,672.5641 C 929.8267,674.06152 932.0016,674.21626 932.636,673.91147 C 933.9361,673.28691 934.7847,673.02069 933.2748,671.85049 z"
id="path3302"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 921.7865,664.31895 C 920.0724,663.12953 919.3636,663.40946 917.7459,663.81388 C 916.4998,664.1254 919.2421,666.52392 919.5137,666.5918 C 921.5811,667.10865 922.4799,666.05243 921.7865,664.31895 z"
id="path3304"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 256.8514,852.19407 C 256.1426,852.29793 254.6686,852.80687 255.0836,854.46692 C 255.4804,856.05392 257.2942,854.84395 257.609,854.21438 C 258.254,852.92432 258.7617,852.19407 256.8514,852.19407 z"
id="path3312"
style="fill:#fcf5e3;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 331.0976,873.91235 C 330.3889,874.01621 328.9148,874.52515 329.3298,876.1852 C 329.7266,877.7722 331.5404,876.56223 331.8552,875.93266 C 332.5002,874.6426 333.0079,873.91235 331.0976,873.91235 z"
id="path3314"
style="fill:#fcf5e3;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 428.5773,681.47828 C 427.8686,681.58214 426.3945,682.09108 426.8096,683.75113 C 427.2063,685.33813 429.0201,684.12816 429.3349,683.49859 C 429.98,682.20853 430.4876,681.47828 428.5773,681.47828 z"
id="path3316"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 733.1384,819.36411 C 732.4296,819.46797 730.9556,819.97691 731.3706,821.63696 C 731.7673,823.22396 733.5812,822.01399 733.896,821.38442 C 734.541,820.09436 735.0486,819.36411 733.1384,819.36411 z"
id="path3318"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 778.8478,828.45549 C 778.139,828.55935 776.665,829.06829 777.08,830.72834 C 777.4768,832.31534 779.2906,831.10537 779.6054,830.4758 C 780.2504,829.18574 780.7581,828.45549 778.8478,828.45549 z"
id="path3320"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 805.6168,839.56717 C 804.9081,839.67103 803.434,840.17997 803.849,841.84002 C 804.2458,843.42702 806.0596,842.21705 806.3744,841.58748 C 807.0194,840.29742 807.5271,839.56717 805.6168,839.56717 z"
id="path3322"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 826.0724,937.04688 C 825.3636,937.15074 823.8896,937.65968 824.3046,939.31973 C 824.7014,940.90673 826.5152,939.69676 826.83,939.06719 C 827.475,937.77713 827.9827,937.04688 826.0724,937.04688 z"
id="path3324"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 814.6757,905.61965 C 813.9669,905.72351 812.4929,906.23245 812.9079,907.8925 C 813.3047,909.4795 815.1185,908.26953 815.4333,907.63996 C 816.0783,906.3499 816.586,905.61965 814.6757,905.61965 z"
id="path3326"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 509.1399,726.86965 C 508.4312,726.97351 506.9572,727.48245 507.3722,729.1425 C 507.7689,730.7295 509.5828,729.51953 509.8976,728.88996 C 510.5426,727.5999 511.0502,726.86965 509.1399,726.86965 z"
id="path3328"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 562.4247,699.67429 C 562.4247,698.97125 562.4247,696.60763 562.4247,695.12861 C 562.4247,693.60029 561.3112,692.27314 560.4044,691.59307 C 559.0498,690.57708 558.9373,688.7839 557.1214,688.05754 C 555.8208,687.5373 554.6373,687.55246 553.0808,687.55246 C 551.1081,687.55246 550.5733,687.04739 548.7877,687.04739 C 547.2673,687.04739 546.7417,685.91737 545.2521,686.28977 C 543.9898,686.60535 543.6846,688.16222 543.2318,689.06769 C 542.8317,689.86806 544.3669,690.45525 544.9996,691.088 C 545.6003,691.68867 545.6771,693.6749 546.0098,694.11845 C 546.273,694.46944 549.7651,694.11845 550.3029,694.11845 C 551.9944,694.11845 552.5366,694.33183 553.3334,695.12861 C 554.1049,695.90018 554.4508,696.49856 555.1011,697.14891 C 555.8727,697.92049 556.2185,698.51887 556.8689,699.16922 C 557.5482,699.84856 558.4377,700.33243 559.1417,700.68445 C 560.1236,701.1754 560.6011,701.44206 562.1722,701.44206 C 562.7674,701.44206 562.3406,700.26355 562.4247,699.67429 z"
id="path3330"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 449.5401,733.76694 C 450.5455,733.76694 452.7359,733.81056 453.8333,733.26186 C 454.6967,732.83018 455.4055,730.2558 455.6011,729.47379 C 455.8755,728.37585 457.3688,728.64595 457.3688,726.44334 C 457.3688,724.96241 455.1391,724.42303 453.8333,724.42303 C 452.0574,724.42303 451.236,725.14451 449.7927,725.43318 C 448.487,725.69431 447.1696,726.23966 446.2571,726.69587 C 444.9246,727.36213 447.8626,729.72633 444.9944,729.72633 C 443.3538,729.72633 442.2165,730.55853 442.2165,731.99917 C 442.2165,733.71686 442.6976,733.97154 443.2267,735.02963 C 443.4537,735.48373 445.3913,735.88645 446.0046,736.03978 C 447.4052,736.38992 447.4294,736.96891 448.7825,736.29232 C 449.5686,735.89929 449.327,734.61956 449.5401,733.76694 z"
id="path3332"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 455.3485,745.13116 C 456.5948,744.508 452.9123,743.70134 451.5604,743.36339 C 449.4048,742.82447 451.1609,740.91149 451.813,740.58547 C 453.4985,739.74273 451.8703,738.4877 450.5503,738.8177 C 449.5509,739.06756 448.7985,740.68008 447.7724,741.09055 C 446.6996,741.51964 446.924,743.18192 447.2673,743.86847 C 447.844,745.02195 448.0449,745.13116 449.7927,745.13116 C 450.6228,745.13116 451.1037,746.14131 452.5706,746.14131 C 454.0827,746.14131 453.9413,746.25696 455.3485,745.13116 z"
id="path3334"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 485.6531,704.47252 C 487.3043,704.47252 488.425,704.48456 489.1886,702.95729 C 489.6736,701.98735 491.6003,701.87773 492.4716,701.44206 C 493.6534,700.85118 494.2676,699.9127 495.2495,699.42175 C 496.386,698.85353 497.2994,698.37213 498.0275,697.40145 C 498.5142,696.75248 499.9466,695.88622 501.0579,695.88622 C 502.4505,695.88622 503.531,694.27088 504.3409,693.86592 C 505.351,693.36087 506.3589,692.85691 507.3714,692.35069 C 508.4141,691.82931 509.1185,690.83546 510.4018,690.83546 C 511.1135,690.83546 512.977,690.33038 514.1899,690.33038 C 515.7511,690.33038 517.071,690.38199 517.978,690.83546 C 518.9429,691.3179 518.6969,692.44837 518.9881,693.61338 C 519.2976,694.85137 518.9881,696.62378 518.9881,697.90653 C 518.9881,698.66564 520.8302,699.20637 521.261,699.42175 C 522.7489,700.16567 523.9632,699.43858 524.544,698.66414 C 525.0869,697.9403 527.0103,698.20742 527.827,698.4116 C 528.5508,698.59254 529.4364,699.76841 529.8473,700.17937 C 530.5646,700.89669 530.3524,702.58715 530.3524,703.7149 C 530.3524,705.50558 528.9817,705.38341 527.5745,705.73521 C 526.7946,705.93017 527.5745,708.87128 527.5745,709.27074 C 527.5745,709.89741 524.2664,710.68997 523.7864,710.78597 C 522.9216,710.95892 521.261,712.33789 521.261,713.31135 C 521.261,715.47582 520.8741,715.60032 520.2508,716.84689 C 519.8023,717.74398 517.9287,718.76557 517.2204,719.11973 C 515.6939,719.88295 515.6727,721.02187 514.1899,721.39257 C 511.962,721.94955 513.8049,723.43982 511.412,721.64511 C 510.0234,720.60365 510.6722,718.92485 508.6341,718.10958 C 507.2359,717.55033 505.885,717.61894 504.846,717.09942 C 502.9405,716.1467 502.1249,716.35772 501.3105,714.3215 C 500.849,713.16788 501.563,711.41773 501.563,710.02836 C 501.563,708.74566 499.0522,707.51028 498.0275,706.9979 C 496.3542,706.16128 495.7193,706.88929 494.4919,707.50297 C 493.2358,708.13102 492.9317,709.09072 493.2292,710.28089 C 493.7453,712.345 490.9064,709.17078 490.7039,708.76567 C 489.8171,706.99214 487.9485,707.04301 487.1683,705.48267 C 486.8968,704.93973 486.1582,704.80923 485.6531,704.47252 z"
id="path3336"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 815.3417,964.08172 C 815.4423,963.88188 816.4102,963.20736 816.7306,962.56649 C 816.8396,962.34861 818.2814,961.64314 818.4984,961.55634 C 819.0969,961.31693 819.4301,960.83794 820.0136,960.54619 C 820.4595,960.32327 821.1148,959.66718 821.4026,959.2835 C 821.5443,959.09454 822.8263,958.88731 823.0441,958.77842 C 823.7091,958.44592 823.7561,957.8542 824.433,957.51573 C 824.9786,957.24296 825.438,957.01065 826.0745,957.01065 C 826.7979,957.01065 826.9529,956.02244 827.0847,955.49542 C 827.1349,955.29478 825.3765,953.7205 825.3169,953.60139 C 825.0163,953.00004 823.9971,952.3387 823.2966,952.3387 C 822.7126,952.3387 822.0339,952.81046 822.0339,953.47512 C 822.0339,954.27318 821.9607,955.04716 821.7814,955.49542 C 821.6115,955.92019 820.6668,956.43155 820.2662,956.63185 C 819.5669,956.98149 819.0894,957.33643 818.3721,957.51573 C 818.0361,957.59974 817.7693,958.72146 817.6145,959.03096 C 817.3433,959.5735 816.7911,959.94115 816.2256,960.16738 C 815.6242,960.40794 814.801,960.29365 814.079,960.29365 C 813.3297,960.29365 813.0584,960.81957 812.8163,961.3038 C 812.5088,961.91885 812.69,962.11651 812.69,962.9453 C 812.69,963.63405 813.2688,963.78448 813.9527,963.95545 C 814.4841,964.0883 814.6866,964.08172 815.3417,964.08172 z"
id="path3338"
style="fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1683.189,810.286 L 1691.2702,809.78092 L 1701.3718,808.26569 L 1710.7157,802.70985 L 1715.7664,799.17432 L 1720.3121,796.64894 L 1729.9086,787.55756 L 1741.7779,777.70858 L 1743.2931,777.70858 L 1739.2525,784.52711 L 1735.717,789.57787 L 1733.6967,792.35579 L 1729.151,794.88117 C 1729.151,794.88117 1728.6459,796.3964 1728.1408,797.40655 C 1727.6357,798.4167 1727.1307,800.43701 1727.1307,800.43701 L 1725.6154,801.6997 L 1722.8375,805.23523 C 1722.8375,805.23523 1723.8477,808.26569 1725.1104,809.52838 C 1726.373,810.79107 1731.1713,814.07407 1731.1713,814.07407 L 1734.4543,817.10453 L 1729.4035,817.10453 L 1727.1307,819.37737 L 1725.3629,821.14514 L 1720.8172,820.64006 L 1718.5444,821.65021 L 1717.0291,824.68067 L 1716.2715,829.22636 L 1711.7258,833.51951 L 1704.1497,840.0855 L 1700.1091,841.34819 L 1696.0685,843.11595 L 1695.8159,846.14641 L 1697.8362,848.67179 L 1694.5532,849.42941 L 1692.0279,847.15656 L 1688.4923,844.63118 L 1683.6941,845.89387 C 1683.6941,845.89387 1679.906,847.4091 1678.8959,847.66164 C 1677.8857,847.91418 1674.0977,847.91418 1674.0977,847.91418 L 1669.0469,844.12611 L 1665.2588,839.83296 L 1663.7436,836.8025 L 1661.4707,834.52966 L 1660.7131,830.23651 L 1665.0063,831.4992 L 1666.774,832.76189 L 1668.0367,828.46874 L 1670.8147,824.68067 L 1672.3299,823.16544 L 1676.118,822.66037 L 1679.906,823.41798 L 1683.6941,823.67052 L 1684.7043,819.12483 L 1685.2093,815.33676 L 1683.189,812.55884 L 1683.189,810.286 z"
id="path3340"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1381.4697,873.8835 C 1380.9314,873.411 1379.5886,872.61806 1378.5931,874.0098 C 1377.6414,875.34027 1379.7383,875.93786 1380.4218,875.7697 C 1381.8224,875.42508 1382.7075,875.33853 1381.4697,873.8835 z"
id="path3346"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1406.6507,898.26978 C 1406.074,897.84474 1404.6687,897.16896 1403.7952,898.64038 C 1402.9602,900.04703 1405.1004,900.46397 1405.7671,900.23825 C 1407.1332,899.77567 1408.0078,899.6141 1406.6507,898.26978 z"
id="path3348"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1422.9966,892.13399 C 1422.3207,891.89657 1420.7791,891.66224 1420.3751,893.32501 C 1419.9889,894.91464 1422.1573,894.68614 1422.7286,894.27497 C 1423.8992,893.4324 1424.6881,893.02172 1422.9966,892.13399 z"
id="path3350"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1336.1995,905.98469 C 1335.4907,906.08855 1334.0167,906.59749 1334.4317,908.25754 C 1334.8285,909.84454 1336.6423,908.63457 1336.9571,908.005 C 1337.6021,906.71494 1338.1098,905.98469 1336.1995,905.98469 z"
id="path3352"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1342.7676,914.33171 C 1343.0458,913.53513 1342.5211,912.82854 1342.2625,912.3114 C 1341.9299,911.64609 1341.6637,910.74929 1340.9999,910.41737 C 1340.299,910.06694 1340.0303,910.10621 1339.1058,910.2911 C 1338.3078,910.45069 1337.9284,910.82691 1337.4643,911.17498 C 1337.1004,911.44789 1338.0503,912.39232 1338.0957,912.43767 C 1338.4815,912.82346 1338.7806,912.99638 1339.1058,913.32156 C 1339.4944,913.71014 1340.014,913.90191 1340.3685,914.07917 C 1340.8168,914.30333 1341.4112,914.33171 1342.01,914.33171 C 1342.0695,914.33171 1342.0942,914.41589 1342.1363,914.45798 C 1342.288,914.60973 1342.5572,914.3738 1342.7676,914.33171 z"
id="path3356"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1356.9254,896.43385 L 1361.5682,896.43385 L 1364.6039,896.61242 L 1364.9611,899.11242 L 1365.8539,902.14814 C 1365.8539,902.14814 1368.3539,902.32671 1369.4254,902.32671 C 1370.4968,902.32671 1374.9611,901.61242 1375.8539,901.61242 C 1376.7468,901.61242 1381.5682,899.46957 1381.5682,899.46957 C 1381.5682,899.46957 1382.8182,898.041 1384.6039,898.041 C 1386.3896,898.041 1388.8896,896.25528 1388.8896,896.25528 C 1388.8896,896.25528 1391.7468,895.18385 1392.8182,895.18385 C 1393.8896,895.18385 1395.8539,894.46957 1396.5682,894.46957 C 1397.2825,894.46957 1399.4254,894.11242 1400.1396,893.75528 C 1400.8539,893.39814 1403.5325,891.96957 1403.5325,891.96957 C 1403.5325,891.96957 1405.6754,891.96957 1406.9254,891.96957 C 1408.1754,891.96957 1410.8539,890.18385 1410.8539,890.18385 C 1410.8539,890.18385 1413.7111,890.00528 1415.6754,890.18385 C 1417.6396,890.36242 1420.3182,890.00528 1420.3182,890.00528 L 1424.4254,887.14814 L 1425.6754,884.291 L 1425.8539,881.791 L 1427.4611,879.291 L 1425.6754,878.57671 L 1423.7111,872.86242 L 1421.5682,877.50528 L 1419.0682,880.18385 L 1416.5682,878.75528 L 1415.4968,878.93385 L 1412.9968,880.71957 C 1412.9968,880.71957 1411.5682,882.14814 1410.8539,882.14814 C 1410.1396,882.14814 1408.7111,883.21957 1408.7111,883.21957 L 1406.5682,885.18385 L 1404.4254,886.07671 C 1404.4254,886.07671 1402.4611,885.36242 1402.6396,884.291 C 1402.8182,883.21957 1402.9968,881.791 1402.9968,881.791 L 1403.3539,876.61242 C 1403.3539,876.61242 1401.9254,875.89814 1401.2111,876.07671 C 1400.4968,876.25528 1397.9968,876.791 1397.9968,876.791 L 1396.0325,877.14814 L 1394.9611,879.291 L 1391.3896,880.541 L 1388.7111,880.541 L 1386.2111,879.46957 L 1382.9968,879.46957 L 1380.4968,880.541 C 1380.4968,880.541 1377.9968,881.43385 1377.2825,881.07671 C 1376.5682,880.71957 1374.4254,880.71957 1374.4254,880.71957 L 1373.5325,878.39814 L 1371.2111,878.39814 L 1366.9254,878.93385 L 1364.0682,878.57671 L 1359.2468,879.64814 L 1357.1039,880.18385 L 1354.9611,881.61242 L 1353.5325,882.86242 L 1350.1396,883.75528 L 1347.1039,884.46957 L 1344.4254,885.00528 L 1343.1754,884.64814 L 1341.9254,881.43385 L 1341.5682,880.71957 L 1339.9611,879.64814 L 1337.8182,879.291 L 1339.2468,877.14814 L 1338.5325,876.07671 L 1335.4968,873.93385 L 1333.5325,875.00528 L 1334.0682,877.14814 L 1334.4254,878.75528 L 1332.6396,879.291 L 1329.9611,880.00528 L 1326.5682,879.291 L 1324.4254,879.291 L 1322.2825,878.21957 L 1322.2825,875.71957 L 1319.7825,873.21957 L 1319.4254,874.46957 L 1320.3182,876.61242 L 1320.6754,878.75528 L 1320.8539,880.71957 C 1320.8539,880.71957 1320.4968,882.14814 1319.7825,882.14814 C 1319.0682,882.14814 1318.3539,882.14814 1318.3539,882.14814 L 1317.1039,881.43385 L 1315.6754,879.11242 L 1315.3182,876.96957 L 1313.8896,876.96957 L 1314.4254,881.61242 L 1314.2468,889.46957 L 1314.2468,893.39814 C 1314.2468,893.39814 1315.6754,895.18385 1316.3896,895.89814 C 1317.1039,896.61242 1319.9611,896.791 1319.9611,896.791 L 1322.6396,893.93385 L 1324.6039,894.291 C 1324.6039,894.291 1326.9254,894.11242 1328.1754,894.291 C 1329.4254,894.46957 1333.3539,894.46957 1334.0682,894.64814 C 1334.7825,894.82671 1335.1396,895.18385 1335.1396,895.18385 C 1335.1396,895.18385 1339.0682,895.541 1340.3182,895.541 C 1341.5682,895.541 1343.3539,894.82671 1344.4254,894.82671 C 1345.4968,894.82671 1347.8182,893.75528 1347.8182,893.75528 L 1350.4968,893.75528 L 1352.9968,895.00528 L 1356.9254,896.43385 z"
id="path3358"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1302.6141,870.64261 C 1302.903,870.06052 1302.9973,867.36854 1302.3615,866.09692 C 1301.5584,864.49066 1299.7217,863.80049 1299.0785,865.08677 C 1298.3594,866.52504 1298.7904,866.78334 1299.3311,867.86469 C 1299.7665,868.73555 1300.5373,869.32346 1301.0988,869.885 C 1301.7906,870.57674 1300.9077,871.0692 1302.6141,870.64261 z"
id="path3362"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1446.0557,867.10708 C 1447.0676,868.11898 1447.436,864.59897 1448.076,863.31901 C 1448.5335,862.40409 1450.1398,862.30885 1451.6116,862.30885 C 1452.5182,862.30885 1451.4123,864.42877 1450.6014,864.83423 C 1449.4523,865.40877 1449.0613,866.65168 1448.5811,867.61215 C 1447.9791,868.81608 1446.7264,867.64359 1446.0557,867.10708 z"
id="path3364"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1289.4821,854.48017 C 1288.8612,855.72192 1290.22,851.80092 1290.4922,850.43956 C 1290.8346,848.72756 1291.5922,848.84297 1289.7346,847.91418 C 1288.1915,847.14261 1287.2193,845.99893 1285.694,845.3888 C 1284.8379,845.04636 1282.9161,842.44293 1282.9161,845.3888 C 1282.9161,846.87099 1283.4295,847.42583 1283.9262,848.41926 C 1284.5571,849.681 1283.6737,850.18576 1283.6737,851.70225 C 1283.6737,852.91564 1284.5274,853.66217 1284.9364,854.48017 C 1285.4867,855.5808 1286.425,855.42054 1287.7143,855.74286 C 1289.0528,856.07749 1289.2431,855.67482 1289.4821,854.48017 z"
id="path3366"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1470.8045,822.15529 C 1471.315,821.84917 1473.0112,819.64183 1473.3298,818.36722 C 1473.6215,817.20045 1474.4869,816.26453 1474.8451,814.83168 C 1475.1231,813.71959 1476.6669,812.91063 1477.3704,812.55884 C 1478.6533,811.91739 1479.5131,811.80902 1480.1484,810.53853 C 1480.8387,809.15792 1481.7998,808.75085 1482.4212,807.50808 C 1482.7534,806.8436 1484.2357,805.33816 1484.9466,804.9827 C 1486.3538,804.27908 1485.8052,802.79825 1487.472,803.21493 C 1488.5168,803.47614 1488.7538,804.55416 1488.9872,805.48777 C 1489.2425,806.50897 1488.6733,807.63089 1488.2296,808.51823 C 1487.712,809.55332 1487.2194,810.9651 1487.2194,812.05376 C 1487.2194,813.48481 1487.2194,814.91586 1487.2194,816.34691 C 1487.2194,817.83059 1485.1991,817.08926 1485.1991,819.12483 C 1485.1991,820.06697 1485.9207,821.00111 1486.2093,822.15529 C 1486.5978,823.70942 1484.9748,823.60034 1483.6839,823.92306 C 1482.2035,824.29315 1481.781,824.95099 1481.1585,826.1959 C 1480.6159,827.28106 1480.6534,828.4874 1480.6534,829.98397 C 1480.6534,832.03325 1480.813,833.10082 1479.1382,833.51951 C 1477.5503,833.9165 1476.8332,834.38729 1475.6027,833.77204 C 1474.2283,833.08487 1473.5824,831.5885 1473.5824,829.98397 C 1473.5824,828.49294 1474.0875,827.34543 1474.0875,825.94336 C 1474.0875,823.72535 1471.9835,824.12039 1470.8045,822.15529 z"
id="path3368"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1457.4199,863.31901 C 1457.4199,862.53708 1457.8073,860.77657 1458.4301,859.53093 C 1459.2091,857.97287 1459.915,857.45001 1459.1877,855.9954 C 1458.3603,854.3405 1456.8364,853.65277 1456.1572,851.95479 C 1455.6139,850.59633 1455.9047,849.58228 1455.9047,847.91418 C 1455.9047,846.54934 1456.6623,845.59569 1456.6623,844.12611 C 1456.6623,842.92187 1457.1674,841.8814 1457.1674,840.33803 C 1457.1674,838.25944 1455.9386,837.78721 1454.8946,838.57027 C 1454.0005,839.24078 1454.3895,841.17728 1454.3895,842.35834 C 1454.3895,844.00714 1453.8844,844.47365 1453.8844,846.39895 C 1453.8844,847.83 1453.8844,849.26105 1453.8844,850.6921 C 1453.8844,851.68652 1452.6023,853.28548 1451.8641,853.47002 C 1451.2923,853.61298 1452.8023,856.35649 1452.8742,856.50048 C 1453.3634,857.47876 1454.0011,858.24911 1454.3895,859.02586 C 1454.8736,859.99411 1454.8409,860.8316 1455.1471,862.05631 C 1455.4027,863.0786 1456.0824,863.0515 1457.4199,863.31901 z"
id="path3370"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1367.0113,801.6997 C 1367.0782,801.96724 1363.681,800.06631 1363.2232,798.92178 C 1362.4844,797.07469 1363.1001,796.6363 1363.4757,795.13371 C 1363.8028,793.82563 1364.8129,793.36594 1366.2537,793.36594 C 1367.4468,793.36594 1368.274,791.1699 1368.274,793.87102 C 1368.274,795.12911 1368.6208,797.09011 1369.0316,797.91163 C 1369.891,799.63047 1368.1891,801.1108 1367.0113,801.6997 z"
id="path3372"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1375.0925,800.68955 C 1375.513,801.53052 1374.2051,798.91471 1373.0722,796.64894 C 1372.034,794.57252 1371.4267,795.33308 1372.3146,793.1134 C 1372.8231,791.84212 1374.1681,791.48381 1374.84,790.58802 C 1375.8702,789.21438 1376.0463,788.56772 1377.8704,788.56772 C 1378.3939,788.56772 1379.6227,790.06746 1379.8907,790.33548 C 1380.6884,791.13316 1380.9009,791.74347 1380.9009,793.1134 C 1380.9009,794.03306 1381.1534,795.60941 1381.1534,796.90148 C 1381.1534,798.60108 1379.8148,798.82115 1379.1331,800.18447 C 1378.3574,801.73586 1376.7585,802.02231 1375.0925,800.68955 z"
id="path3374"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1417.5167,846.13316 C 1416.808,846.23702 1415.334,846.74596 1415.749,848.40601 C 1416.1457,849.99301 1417.9596,848.78304 1418.2744,848.15347 C 1418.9194,846.86341 1419.427,846.13316 1417.5167,846.13316 z"
id="path3376"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1425.598,845.123 C 1424.8892,845.22686 1423.4152,845.7358 1423.8302,847.39585 C 1424.227,848.98285 1426.0408,847.77288 1426.3556,847.14331 C 1427.0006,845.85325 1427.5083,845.123 1425.598,845.123 z"
id="path3378"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1440.4977,841.08239 C 1439.789,841.18625 1438.3149,841.69519 1438.73,843.35524 C 1439.1267,844.94224 1440.9405,843.73227 1441.2553,843.1027 C 1441.9004,841.81264 1442.408,841.08239 1440.4977,841.08239 z"
id="path3380"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1373.3226,835.27402 C 1372.6138,835.37788 1371.1398,835.88682 1371.5548,837.54687 C 1371.9516,839.13387 1373.7654,837.9239 1374.0802,837.29433 C 1374.7252,836.00427 1375.2329,835.27402 1373.3226,835.27402 z"
id="path3382"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1429.8911,819.61665 C 1429.1824,819.72051 1427.7083,820.22945 1428.1234,821.8895 C 1428.5201,823.4765 1430.3339,822.26653 1430.6487,821.63696 C 1431.2938,820.3469 1431.8014,819.61665 1429.8911,819.61665 z"
id="path3384"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1470.5498,815.07097 C 1469.841,815.17483 1468.367,815.68377 1468.782,817.34382 C 1469.1787,818.93082 1470.9926,817.72085 1471.3074,817.09128 C 1471.9524,815.80122 1472.46,815.07097 1470.5498,815.07097 z"
id="path3386"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1329.886,827.1928 C 1329.1773,827.29666 1327.7032,827.8056 1328.1183,829.46565 C 1328.515,831.05265 1330.3288,829.84268 1330.6436,829.21311 C 1331.2887,827.92305 1331.7963,827.1928 1329.886,827.1928 z"
id="path3388"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1330.8962,815.3235 C 1330.1874,815.42736 1328.7134,815.9363 1329.1284,817.59635 C 1329.5252,819.18335 1331.339,817.97338 1331.6538,817.34381 C 1332.2988,816.05375 1332.8065,815.3235 1330.8962,815.3235 z"
id="path3390"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1337.4622,787.29177 C 1336.7534,787.39563 1335.2794,787.90457 1335.6944,789.56462 C 1336.0911,791.15162 1337.905,789.94165 1338.2198,789.31208 C 1338.8648,788.02202 1339.3724,787.29177 1337.4622,787.29177 z"
id="path3392"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1341.2502,789.81715 C 1340.5415,789.92101 1339.0674,790.42995 1339.4825,792.09 C 1339.8792,793.677 1341.6931,792.46703 1342.0078,791.83746 C 1342.6529,790.5474 1343.1605,789.81715 1341.2502,789.81715 z"
id="path3394"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1437.4673,771.12933 C 1436.7585,771.23319 1435.2845,771.74213 1435.6995,773.40218 C 1436.0962,774.98918 1437.9101,773.77921 1438.2249,773.14964 C 1438.8699,771.85958 1439.3775,771.12933 1437.4673,771.12933 z"
id="path3396"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1438.7299,781.73593 C 1438.0212,781.83979 1436.5472,782.34873 1436.9622,784.00878 C 1437.3589,785.59578 1439.1728,784.38581 1439.4876,783.75624 C 1440.1326,782.46618 1440.6402,781.73593 1438.7299,781.73593 z"
id="path3398"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1442.2655,787.03923 C 1441.5567,787.14309 1440.0827,787.65203 1440.4977,789.31208 C 1440.8945,790.89908 1442.7083,789.68911 1443.0231,789.05954 C 1443.6681,787.76948 1444.1758,787.03923 1442.2655,787.03923 z"
id="path3400"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1444.5383,800.67629 C 1443.8296,800.78015 1442.3555,801.28909 1442.7706,802.94914 C 1443.1673,804.53614 1444.9812,803.32617 1445.2959,802.6966 C 1445.941,801.40654 1446.4486,800.67629 1444.5383,800.67629 z"
id="path3402"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1385.4444,791.07984 C 1384.7357,791.1837 1383.2616,791.69264 1383.6766,793.35269 C 1384.0734,794.93969 1385.8872,793.72972 1386.202,793.10015 C 1386.847,791.81009 1387.3547,791.07984 1385.4444,791.07984 z"
id="path3404"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1307.4101,819.86919 C 1306.7014,819.97305 1305.2273,820.48199 1305.6424,822.14204 C 1306.0391,823.72904 1307.8529,822.51907 1308.1677,821.8895 C 1308.8128,820.59944 1309.3204,819.86919 1307.4101,819.86919 z"
id="path3406"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1315.776,786.07588 C 1315.5062,785.17773 1314.5861,783.36549 1312.6346,784.21873 C 1310.7691,785.03455 1312.6168,787.15348 1313.4518,787.44144 C 1315.1627,788.03135 1316.1599,788.54997 1315.776,786.07588 z"
id="path3408"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1.27505957999999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1300.0865,813.55574 C 1299.3777,813.6596 1297.9037,814.16854 1298.3187,815.82859 C 1298.7155,817.41559 1300.5293,816.20562 1300.8441,815.57605 C 1301.4891,814.28599 1301.9968,813.55574 1300.0865,813.55574 z"
id="path3410"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1318.0076,814.87641 C 1317.3247,815.01065 1315.9044,815.66846 1316.3043,817.81409 C 1316.6866,819.8653 1318.4342,818.3014 1318.7375,817.48768 C 1319.3591,815.82026 1319.8482,814.87641 1318.0076,814.87641 z"
id="path3412"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1.11596096000000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1465.2486,821.14514 C 1463.5696,821.46257 1462.9278,819.65387 1464.491,818.87229 C 1465.9568,818.1394 1466.6647,817.51046 1467.5215,818.36722 C 1468.3991,819.24483 1465.3757,821.06886 1465.2486,821.14514 z"
id="path3414"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1473.0773,803.21493 C 1473.9737,802.04555 1474.0049,800.01934 1473.3298,798.66924 C 1472.2875,796.58451 1471.5667,796.70862 1470.2994,797.65909 C 1469.1331,798.53381 1468.7841,798.90839 1468.7841,800.68955 C 1468.7841,801.44639 1470.4489,802.1018 1470.8045,802.45731 C 1471.5661,803.219 1471.6288,803.21493 1473.0773,803.21493 z"
id="path3416"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1456.4098,813.31645 C 1457.0645,813.97122 1455.8542,811.27931 1456.4098,810.53853 C 1457.337,809.30229 1458.8526,811.63614 1458.9352,811.80123 C 1459.5993,813.12957 1457.1535,813.16772 1456.4098,813.31645 z"
id="path3418"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1454.8946,812.3063 C 1455.4066,813.33039 1454.9085,809.53535 1453.8844,809.02331 C 1452.2361,808.19916 1452.1942,810.59611 1452.3692,811.29615 C 1452.6512,812.42442 1453.4421,812.3063 1454.8946,812.3063 z"
id="path3420"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1440.4999,806.49792 C 1440.7101,807.33873 1441.906,805.23523 1442.7727,805.23523 C 1444.6425,805.23523 1445.3413,805.76686 1446.3083,804.47762 C 1447.3496,803.08922 1448.3286,804.17893 1448.3286,805.48777 C 1448.3286,807.01049 1446.4438,807.22843 1445.0456,807.50808 C 1443.3984,807.8375 1441.7174,807.47197 1440.4999,806.49792 z"
id="path3422"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1437.722,802.20478 C 1436.3187,802.48543 1439.1023,799.69667 1439.7423,798.4167 C 1440.3069,797.28738 1442.2956,798.16417 1443.2778,798.16417 C 1444.6813,798.16417 1445.2807,796.21357 1445.5506,795.13371 C 1445.8056,794.11392 1447.3461,792.9733 1448.076,792.60833 C 1449.3709,791.96087 1449.8695,790.89207 1449.3387,789.83041 C 1448.7608,788.67457 1446.3504,789.68305 1445.5506,790.08295 C 1444.2237,790.74643 1443.2004,791.31061 1441.7626,791.59817 C 1440.3261,791.88546 1440.0982,793.31424 1438.9846,793.87102 C 1438.0912,794.31777 1439.0989,796.84437 1437.9745,797.40655 C 1436.8986,797.94452 1434.8887,798.27494 1434.439,799.17432 C 1433.9963,800.05965 1435.6297,801.12271 1435.9542,801.44716 C 1436.6232,802.11615 1436.4366,801.88344 1437.722,802.20478 z"
id="path3424"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1454.642,801.44716 C 1454.0528,801.11044 1453.4635,800.77373 1452.8742,800.43701 C 1450.9894,799.35993 1452.4008,798.37452 1453.1268,797.40655 C 1453.2745,797.20957 1456.0862,796.0531 1456.4098,795.89132 C 1457.7216,795.23544 1458.9601,795.353 1459.6928,794.37609 C 1460.1066,793.82431 1461.832,792.67516 1462.4707,792.35579 C 1464.0088,791.58675 1464.9129,792.94696 1465.2486,793.61848 C 1465.812,794.74534 1465.0194,796.8549 1464.7435,797.40655 C 1464.0258,798.84201 1463.1745,798.74584 1461.4605,799.17432 C 1459.9983,799.53989 1459.062,799.98221 1457.925,800.43701 C 1456.5474,800.98805 1456.1916,801.44716 1454.642,801.44716 z"
id="path3426"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1397.3159,826.44844 C 1395.9986,826.97534 1394.9096,825.39064 1393.5278,825.94336 C 1391.8213,826.62594 1391.8067,827.25278 1392.7702,828.2162 C 1393.4218,828.86788 1395.6954,828.72128 1396.5582,828.72128 C 1397.0696,828.72128 1397.2272,826.80322 1397.3159,826.44844 z"
id="path3428"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1381.6585,829.98397 C 1383.6289,829.98397 1383.3093,826.75519 1381.911,826.1959 C 1380.0727,825.46057 1381.3451,823.16544 1378.628,823.16544 C 1377.1813,823.16544 1376.0578,824.39867 1375.345,824.93321 C 1374.1595,825.82235 1375.2549,827.1159 1375.8501,827.71113 C 1376.6592,828.52017 1376.7195,828.90344 1377.8704,829.47889 C 1378.9507,830.01901 1378.932,830.74159 1380.3958,830.74159 C 1381.5743,830.74159 1378.2071,833.43533 1381.6585,829.98397 z"
id="path3430"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1409.4377,815.08422 C 1410.643,815.08422 1406.9802,816.38085 1405.9022,815.84184 C 1403.4679,814.62471 1407.2568,814.32661 1407.9225,814.32661 C 1408.6878,814.32661 1409.9952,814.31715 1410.4478,812.05376 C 1410.7865,810.36069 1412.2342,810.73258 1413.4783,811.04361 C 1415.1966,811.47318 1414.9331,810.27522 1415.2461,809.02331 C 1415.6442,807.43095 1417.2708,808.27008 1417.7714,808.77077 C 1418.5304,809.52969 1418.9676,809.76716 1419.2867,811.04361 C 1419.4469,811.68454 1420.7257,812.4065 1421.0544,813.06392 C 1422.5338,816.02264 1419.1612,814.26387 1418.7816,814.07407 C 1418.4498,813.90819 1416.5088,810.89314 1416.5088,813.56899 C 1416.5088,815.35952 1417.3309,815.57316 1415.2461,816.09437 C 1413.3313,816.57307 1412.1584,815.95133 1411.7105,814.83168 C 1411.4274,814.12393 1410.1852,814.93473 1409.4377,815.08422 z"
id="path3432"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1336.2016,823.92306 C 1336.0333,823.58634 1335.8649,823.24962 1335.6966,822.9129 C 1335.1219,821.76357 1335.1915,820.43317 1335.1915,818.87229 C 1335.1915,816.97051 1337.309,818.96953 1337.4643,819.12483 C 1338.2432,819.90367 1338.2219,820.83532 1338.2219,822.15529 C 1338.2219,823.05013 1336.7606,823.2243 1336.2016,823.92306 z"
id="path3434"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1339.9897,820.64006 C 1339.9897,821.97105 1337.6759,816.90663 1338.4745,815.84184 C 1339.016,815.11986 1342.6852,818.79505 1342.7676,819.12483 C 1343.1674,820.72379 1341.1879,820.64006 1339.9897,820.64006 z"
id="path3436"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1344.2828,817.35706 C 1345.4428,816.75136 1346.9578,816.60938 1347.3133,814.83168 C 1347.4979,813.90887 1344.4211,812.05855 1343.7778,811.80123 C 1341.9776,811.08117 1342.1401,812.20876 1340.9999,813.06392 C 1339.8599,813.91891 1340.9168,815.17074 1341.2524,815.84184 C 1341.759,816.85504 1343.0057,817.35706 1344.2828,817.35706 z"
id="path3438"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1356.4047,820.38752 C 1356.8256,821.22932 1354.4765,818.52764 1355.142,817.86214 C 1356.237,816.76714 1357.0684,817.76826 1357.6674,818.36722 C 1358.1058,818.80561 1359.6866,819.37683 1360.1928,819.62991 C 1361.5813,820.32418 1361.4096,821.35634 1359.9402,821.65021 C 1358.3173,821.9748 1357.9166,820.6899 1356.4047,820.38752 z"
id="path3440"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1364.991,818.36722 C 1363.7016,818.62509 1367.2585,816.62615 1367.5164,815.33676 C 1367.8635,813.60103 1368.2119,813.07942 1366.2537,813.56899 C 1364.8031,813.93162 1364.2392,815.07263 1363.7283,816.09437 C 1363.0925,817.36594 1363.3097,817.94691 1364.991,818.36722 z"
id="path3442"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1348.576,807.50808 C 1348.049,808.56217 1349.4093,804.80588 1348.576,803.97254 C 1347.3059,802.70244 1346.7598,800.94209 1344.7879,800.94209 C 1342.742,800.94209 1342.6204,801.11097 1343.0202,802.70985 C 1343.2043,803.44626 1344.6236,804.06073 1345.0405,804.47762 C 1345.7277,805.16487 1346.1967,806.03243 1346.5557,806.75046 C 1347.0126,807.66434 1347.2909,807.50808 1348.576,807.50808 z"
id="path3444"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1338.9795,797.65909 C 1338.989,797.67808 1339.8104,794.88117 1337.2118,794.88117 C 1335.0248,794.88117 1335.3896,795.49501 1334.6864,796.90148 C 1333.8289,798.6164 1335.2876,799.19834 1336.2016,799.42686 C 1337.462,799.74196 1338.5416,798.75396 1338.9795,797.65909 z"
id="path3446"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1372.3146,813.56899 C 1373.5204,813.87044 1370.2454,811.49178 1370.5468,810.286 C 1370.8808,808.9499 1372.8071,809.77466 1373.3247,810.03346 C 1374.1406,810.4414 1374.2329,811.62396 1375.0925,812.05376 C 1376.5028,812.7589 1376.8603,811.9752 1376.8603,814.07407 C 1376.8603,816.24179 1376.3739,816.09437 1374.3349,816.09437 C 1373.2569,816.09437 1372.9126,814.46596 1372.3146,813.56899 z"
id="path3448"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1362.9707,801.6997 C 1362.064,801.6997 1362.8401,804.00519 1361.9605,804.22508 C 1360.1914,804.66737 1358.7318,804.58613 1358.1724,803.46747 C 1357.3075,801.73754 1358.4012,801.22635 1359.1826,800.18447 C 1360.2761,798.72652 1360.2065,798.22386 1361.4554,797.91163 C 1362.7748,797.58179 1362.1211,800.63775 1362.9707,801.6997 z"
id="path3450"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1332.6661,790.08295 C 1333.7286,789.81731 1335.0995,786.90374 1335.444,786.04234 C 1336.2063,784.13654 1333.7372,782.66353 1332.9186,782.25426 C 1331.4588,781.52433 1331.2671,782.77934 1330.6458,784.02203 C 1330.164,784.98556 1331.4271,786.34224 1331.6559,786.79995 C 1332.1305,787.74899 1332.1154,788.70622 1332.6661,790.08295 z"
id="path3452"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1327.8679,779.98142 C 1327.8831,780.01193 1329.6058,776.81786 1329.8882,775.68827 C 1330.2864,774.09518 1330.9565,772.91035 1328.6255,772.91035 C 1326.9674,772.91035 1326.6925,774.1294 1325.595,774.67812 C 1324.5748,775.18822 1324.5849,776.60927 1324.5849,778.21365 C 1324.5849,778.83554 1325.4104,780.2532 1325.595,780.99157 C 1325.7961,781.79589 1327.2816,780.56766 1327.8679,779.98142 z"
id="path3454"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1340.9999,775.1832 C 1341.3108,776.42709 1341.3683,772.22107 1342.5151,771.64766 C 1343.6164,771.09701 1344.5421,772.67116 1344.7879,773.16289 C 1345.3125,774.21208 1341.8154,775.04727 1340.9999,775.1832 z"
id="path3456"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1350.3438,784.02203 C 1351.0012,785.33695 1349.3336,781.19901 1349.3336,779.72888 C 1349.3336,778.12627 1349.1079,776.95096 1350.8488,776.95096 C 1351.2613,776.95096 1352.3902,778.74486 1352.6166,778.97127 C 1353.7646,780.11928 1352.0977,781.52422 1351.859,782.00173 C 1351.3442,783.03129 1351.0692,782.20846 1350.3438,784.02203 z"
id="path3458"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1364.4859,781.24411 C 1363.2811,779.5486 1362.1268,779.01442 1364.2334,777.96112 C 1364.3698,777.89291 1366.3415,779.11949 1366.7587,779.22381 C 1368.2083,779.5862 1367.7689,776.81213 1367.7689,775.68827 C 1367.7689,774.11245 1368.6677,773.9205 1370.2943,773.9205 C 1371.8587,773.9205 1372.3798,774.55592 1372.8197,775.43573 C 1373.2093,776.2151 1371.1657,777.93888 1370.7994,778.21365 C 1369.6058,779.10885 1368.381,779.67538 1367.2638,780.23396 C 1365.9143,780.9087 1366.7006,781.24411 1364.4859,781.24411 z"
id="path3462"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1375.345,807.25554 C 1376.2825,805.20468 1377.3298,805.11427 1378.3755,803.72 C 1379.358,802.40997 1380.2922,801.90697 1380.9009,800.68955 C 1381.7147,799.06191 1381.5421,798.66924 1383.6788,798.66924 C 1383.8569,798.66924 1385.5606,800.29851 1385.6991,800.43701 C 1386.8119,801.54982 1387.4388,800.99813 1386.7093,802.45731 C 1386.2627,803.35037 1383.6821,802.96239 1382.6686,802.96239 C 1381.5711,802.96239 1381.7789,805.08177 1380.9009,805.74031 C 1379.9417,806.45966 1378.8561,807.26534 1377.6179,807.76062 C 1377.3052,807.88567 1376.9444,807.76062 1376.6077,807.76062"
id="path3464"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1390.2448,806.49792 C 1388.9588,807.01232 1391.3877,804.28497 1392.0126,803.97254 C 1393.1953,803.3812 1392.6928,801.86464 1394.0329,801.19462 C 1395.3909,800.51559 1395.7634,799.77244 1396.3057,798.4167 C 1397.053,796.54839 1396.8495,796.50331 1398.5785,795.63878 C 1399.8981,794.97902 1400.929,796.47398 1401.3565,796.90148 C 1401.6763,797.22135 1405.0813,797.07506 1405.3971,797.15401 C 1407.4567,797.66893 1404.4077,799.04284 1403.8818,799.17432 C 1401.9262,799.66324 1401.2756,798.78643 1400.5989,798.92178 C 1399.5618,799.12918 1398.9952,800.98631 1398.0735,801.44716 C 1397.1419,801.91293 1396.648,803.42259 1395.5481,803.97254 C 1394.3224,804.58539 1394.034,805.73795 1393.5278,806.75046 C 1393.1703,807.46547 1390.817,806.72682 1390.2448,806.49792 z"
id="path3466"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1409.6902,794.37609 C 1409.2246,795.30741 1408.1963,792.08191 1408.9326,791.34564 C 1409.3675,790.91078 1412.5299,791.34564 1413.2258,791.34564 C 1413.6717,791.34564 1415.3771,790.33548 1415.7511,790.33548 C 1416.3346,790.33548 1413.1843,792.77642 1412.9732,792.86087 C 1411.5498,793.43022 1411.2134,794.07146 1409.6902,794.37609 z"
id="path3468"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1389.7397,791.85071 C 1388.7034,792.26523 1387.9341,788.71892 1388.2245,787.55756 C 1388.4453,786.67421 1389.8535,788.42894 1390.4973,789.07279 C 1391.2643,789.83979 1390.3662,791.06762 1389.7397,791.85071 z"
id="path3470"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1395.043,769.62736 C 1395.9279,770.51224 1396.4491,767.40909 1397.5684,766.84944 C 1398.7869,766.2402 1399.0155,765.49453 1400.3463,764.82913 C 1401.4197,764.29244 1402.5862,763.88493 1403.1242,762.80883 C 1403.8742,761.30888 1404.0192,760.23903 1404.3869,758.76822 C 1404.7165,757.44975 1401.188,759.48381 1401.1039,759.52583 C 1399.5722,760.2917 1399.2901,761.19036 1398.0735,761.79867 C 1396.7297,762.47054 1395.5569,762.8044 1394.5379,763.3139 C 1393.0353,764.0652 1392.0126,763.86975 1392.0126,765.83928 C 1392.0126,767.38696 1392.1699,768.75811 1392.5176,769.62736 C 1392.7752,770.27134 1394.8474,769.66649 1395.043,769.62736 z"
id="path3472"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1339.9897,761.54614 C 1340.5221,762.87713 1340.2422,758.68651 1340.2422,757.25299 C 1340.2422,755.65935 1341.143,755.03486 1342.2625,754.47507 C 1342.3161,754.4483 1343.7388,756.66995 1343.7778,756.74791 C 1344.4737,758.13978 1345.7792,757.75806 1347.3133,757.75806 C 1348.5262,757.75806 1348.9206,758.69983 1349.3336,759.52583 C 1349.8414,760.54145 1350.1082,761.3616 1350.3438,762.30375 C 1350.4762,762.83359 1351.7915,764.00398 1352.1115,764.32406 C 1352.728,764.94052 1352.5045,766.98983 1353.1217,767.60705 C 1353.8752,768.36053 1354.8974,768.36666 1355.8996,768.6172 C 1357.2204,768.94739 1358.874,768.60318 1359.9402,768.86974 C 1361.0558,769.14865 1362.0079,769.38666 1362.9707,769.62736 C 1363.4438,769.74565 1363.2232,772.76284 1363.2232,773.41543 C 1363.2232,774.91834 1360.1035,773.87587 1359.6877,773.66797 C 1358.2533,772.95077 1357.0636,772.22964 1355.8996,771.64766 C 1354.4419,770.91879 1353.0417,770.36256 1352.1115,769.12228 C 1351.1615,767.85553 1349.1309,768.21184 1348.3235,766.5969 C 1347.7193,765.38854 1345.2195,763.5297 1344.2828,763.06136 C 1342.7341,762.28699 1342.4739,761.54614 1339.9897,761.54614 z"
id="path3474"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1434.439,791.0931 C 1435.5449,790.71144 1436.65,789.19639 1437.2169,788.06264 C 1438.1181,786.26016 1436.1162,785.36574 1434.944,784.77964 C 1433.3683,783.99176 1432.48,783.92645 1431.156,783.26442 C 1429.693,782.53294 1429.2393,780.44122 1428.6306,779.22381 C 1427.6725,777.30771 1426.0481,777.84911 1424.59,778.21365 C 1423.5004,778.48604 1424.5534,780.7025 1425.3476,781.49665 C 1426.0738,782.22286 1427.0861,782.36588 1427.873,782.75934 C 1428.8328,783.23928 1429.0676,783.988 1430.1458,784.52711 C 1431.073,784.99069 1431.3395,785.75531 1432.4187,786.29487 C 1433.1431,786.6571 1433.2486,788.3519 1433.4288,789.07279 C 1433.7024,790.16715 1431.7276,791.0931 1434.439,791.0931 z"
id="path3476"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1417.7714,777.2035 C 1418.0784,778.43121 1416.953,774.54732 1417.5189,773.41543 C 1418.5197,771.41379 1417.4584,771.64766 1415.4986,771.64766 C 1413.8563,771.64766 1414.1814,772.94468 1414.4885,774.17304 C 1414.7003,775.02058 1415.274,776.55752 1415.4986,777.45604 C 1415.7783,778.57467 1417.2267,777.31245 1417.7714,777.2035 z"
id="path3478"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1425.6001,774.42558 C 1425.9711,775.90957 1424.5808,775.68827 1422.5697,775.68827 C 1421.6399,775.68827 1421.3873,772.91035 1422.3171,772.91035 C 1424.2332,772.91035 1424.0155,773.15785 1425.6001,774.42558 z"
id="path3480"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1421.5595,767.85959 C 1422.3537,767.85959 1420.1042,769.10946 1420.2968,769.87989 C 1420.617,771.16048 1422.9044,770.05624 1423.0747,769.37482 C 1423.248,768.68186 1421.927,768.47208 1421.5595,767.85959 z"
id="path3482"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1430.3984,763.81898 C 1430.5866,763.06606 1428.6949,764.83382 1428.8831,765.58675 C 1429.2409,767.01766 1431.6241,765.66068 1431.9136,765.08167 C 1432.4182,764.07242 1430.8777,763.97875 1430.3984,763.81898 z"
id="path3484"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1413.4783,765.08167 C 1413.9735,764.09123 1414.485,762.81565 1414.9935,761.79867 C 1415.6935,760.39869 1412.8542,759.21378 1411.9631,758.76822 C 1411.0142,758.2938 1410.1878,760.85354 1409.4377,761.04106 C 1407.7252,761.46917 1407.552,762.08452 1407.9225,763.56644 C 1408.1038,764.29176 1410.0594,764.41636 1410.7004,764.57659 C 1411.8471,764.86328 1412.1934,765.08167 1413.4783,765.08167 z"
id="path3486"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1416.5088,756.24284 C 1417.8256,756.57204 1419.2325,755.40855 1420.5494,755.73776 C 1421.2598,755.91537 1422.165,757.10081 1422.5697,757.50553 C 1423.6446,758.58041 1424.7004,756.19578 1424.8425,755.48522 C 1425.1429,753.98331 1425.9223,753.46492 1427.6204,753.46492 C 1430.0116,753.46492 1430.1638,753.39315 1430.6509,751.44461 C 1431.1847,749.30953 1431.5029,749.34525 1429.6407,748.41415 C 1428.3386,747.76307 1426.938,749.77901 1426.6103,750.43446 C 1425.9974,751.66013 1423.842,750.18578 1422.5697,749.67684 C 1420.6099,748.89294 1420.9226,748.48009 1419.0341,749.42431 C 1417.7604,750.06117 1416.8826,750.87889 1415.7511,751.44461 C 1414.2263,752.20701 1413.8901,752.64137 1413.2258,753.96999 C 1412.7369,754.94765 1414.1467,756.15364 1414.4885,756.49537 C 1414.9683,756.97527 1415.8433,756.37593 1416.5088,756.24284 z"
id="path3488"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1387.7194,739.07024 C 1387.996,739.34685 1384.4634,737.76783 1383.9313,737.55501 C 1382.5462,737.00097 1381.4506,734.6138 1380.9009,733.5144 C 1380.5527,732.81795 1383.3541,731.65645 1383.6788,731.4941 C 1384.7211,730.97296 1385.6991,729.18187 1385.6991,727.95856 C 1385.6991,725.33909 1384.2347,725.7874 1383.4263,724.17049 C 1383.1223,723.56263 1380.3742,722.15019 1379.3856,722.15019 C 1377.1184,722.15019 1379.0913,719.5122 1379.3856,719.11973 C 1379.7483,718.63622 1382.4228,718.35877 1382.9212,718.10958 C 1384.0244,717.55795 1385.9852,718.43364 1386.7093,718.61465 C 1387.9608,718.92755 1388.7082,719.11973 1390.2448,719.11973 C 1391.7673,719.11973 1391.8149,720.81065 1390.4973,721.14003 C 1388.7474,721.57751 1388.9511,722.59329 1389.4872,723.66542 C 1390.0762,724.84343 1390.5059,725.19789 1391.0024,726.1908 C 1391.4652,727.11632 1391.5359,728.32468 1391.76,729.22125 C 1392.1127,730.63216 1391.6223,732.27455 1391.2549,733.00933 C 1390.8054,733.90843 1389.7068,734.84296 1389.2346,735.78725 C 1388.6878,736.88095 1388.4357,737.27962 1387.7194,739.07024 z"
id="path3490"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1366.2537,724.42303 C 1367.3586,724.2661 1368.9669,723.79469 1369.5367,722.65526 C 1370.4969,720.73478 1369.2951,719.6292 1368.0214,719.11973 C 1366.8381,718.64638 1365.5247,720.48722 1364.991,720.8875 C 1363.772,721.80172 1365.338,724.42303 1366.2537,724.42303"
id="path3496"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1329.6356,720.63496 C 1331.2591,720.14709 1331.7634,718.53935 1331.4034,717.09942 C 1331.1752,716.18675 1328.7164,714.41239 1328.1204,713.81643 C 1326.6672,712.36325 1326.7344,711.10312 1325.09,710.28089 C 1323.6518,709.56184 1322.9413,708.51727 1322.0595,710.28089 C 1321.5,711.39989 1321.5162,712.65347 1321.807,713.81643 C 1322.0256,714.69117 1323.2088,715.27498 1323.8273,715.5842 C 1325.6504,716.49575 1323.113,717.09942 1322.0595,717.09942 C 1320.2469,717.09942 1319.3824,716.99864 1318.524,717.85704 C 1318.1331,718.24786 1320.5567,719.31224 1320.7968,719.37227 C 1322.0484,719.68516 1322.7958,719.87734 1324.3323,719.87734 C 1325.7862,719.87734 1326.4936,720.20036 1327.3628,720.63496 C 1328.4202,721.16367 1328.0699,721.26124 1329.6356,720.63496 z"
id="path3498"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1337.4643,684.26947 C 1338.1447,684.60967 1339.3424,680.68732 1339.4846,679.97632 C 1339.8018,678.39035 1340.6314,677.16423 1338.4745,677.70347 C 1337.3216,677.99168 1336.1139,679.14162 1335.6966,679.97632 C 1335.1897,680.99002 1336.2103,682.51907 1336.4542,683.00678 C 1336.6952,683.48888 1337.1276,683.84857 1337.4643,684.26947 z"
id="path3500"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1386.7093,696.89637 C 1387.3911,698.25998 1389.7304,696.3913 1391.2549,696.3913 C 1392.2586,696.3913 1393.2971,696.89637 1394.7905,696.89637 C 1396.2215,696.89637 1397.6526,696.89637 1399.0836,696.89637 C 1400.2196,696.89637 1400.8966,694.64989 1401.1039,693.61338 C 1401.4613,691.82658 1402.413,691.43331 1401.609,689.82531 C 1400.7326,688.07248 1398.6469,687.94162 1397.8209,686.28977 C 1397.2481,685.14418 1394.658,683.69815 1393.7803,683.25931 C 1392.0029,682.37059 1392.8709,681.08875 1393.2752,679.47124 C 1393.5041,678.55587 1390.461,677.1984 1389.4872,677.1984 C 1388.0528,677.1984 1387.3758,677.62068 1385.6991,677.95601 C 1383.6798,678.35988 1383.9627,678.14576 1383.1737,679.72378 C 1382.357,681.35712 1383.2631,682.22682 1381.1534,682.75424 C 1379.6521,683.12956 1378.533,683.47248 1377.3653,683.76439 C 1376.7137,683.92729 1375.7421,685.18036 1374.3349,685.53216 C 1372.8806,685.89574 1372.5928,686.99604 1372.062,688.05754 C 1371.6778,688.82598 1372.9303,690.55169 1373.0722,690.83546 C 1373.559,691.80906 1375.2586,691.88715 1376.1027,692.09815 C 1377.2217,692.37792 1378.1435,692.73978 1378.8806,693.1083 C 1379.8069,693.57147 1382.1093,693.1083 1383.1737,693.1083 C 1383.6486,693.1083 1383.8631,689.1565 1383.9313,688.81515 C 1384.2121,687.41158 1385.7329,687.283 1386.7093,686.79485 C 1387.7457,686.27664 1387.9719,688.47027 1387.9719,689.32023 C 1387.9719,691.08902 1386.2636,691.51509 1384.9415,691.84561 C 1384.3726,691.98784 1384.5766,694.67922 1384.689,695.12861 C 1384.8714,695.85825 1385.9345,696.50898 1386.7093,696.89637 z"
id="path3502"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1373.8298,657.75296 C 1374.1333,658.96701 1370.8539,657.89635 1370.2943,659.01565 C 1369.7479,660.10849 1370.1817,660.53088 1371.8095,660.53088 C 1373.8695,660.53088 1375.1394,659.93561 1373.8298,657.75296 z"
id="path3504"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1375.0925,652.7022 C 1376.12,652.7022 1372.5671,653.44243 1372.5671,654.46997 C 1372.5671,655.57961 1375.1338,654.81001 1375.345,653.96489 C 1375.4491,653.54847 1375.1767,653.1231 1375.0925,652.7022 z"
id="path3506"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1359.6877,647.65144 C 1359.851,646.99797 1358.1432,645.27249 1358.425,643.86336 C 1358.8145,641.91586 1359.6002,642.01308 1360.9504,641.33798 C 1361.781,640.92266 1364.3152,640.83291 1364.991,640.83291 C 1366.4101,640.83291 1366.1662,639.5265 1367.7689,640.32783 C 1368.5069,640.69684 1369.1073,641.89342 1369.2841,642.60067 C 1369.6867,644.21085 1368.4794,644.50649 1367.0113,644.87352 C 1365.6182,645.2218 1364.4797,646.1393 1363.4757,646.64128 C 1361.8743,647.442 1362.0605,648.44237 1359.6877,647.65144 z"
id="path3508"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1349.3336,664.31895 C 1348.1266,664.92247 1349.0811,661.62784 1349.0811,660.27834 C 1349.0811,658.2471 1349.7767,657.83566 1350.5963,656.74281 C 1351.5532,655.46699 1351.2901,653.83724 1350.8488,652.95474 C 1350.0077,651.27255 1348.2883,651.97975 1347.5658,652.7022 C 1346.8383,653.42974 1346.8834,655.58235 1346.5557,656.23773 C 1345.6022,658.14481 1344.1939,655.30937 1343.0202,654.7225 C 1341.3798,653.90234 1340.5819,654.46774 1339.2321,655.48012 C 1337.9503,656.44144 1336.8448,655.70897 1336.2016,656.99535 C 1335.613,658.17267 1334.7004,658.27203 1335.9491,659.52073 C 1336.7485,660.32018 1336.9369,660.94639 1337.2118,662.04611 C 1337.536,663.34317 1337.4564,664.05847 1338.2219,664.82403 C 1339.0777,665.67978 1340.009,665.58164 1341.5049,665.58164 C 1343.2895,665.58164 1343.2727,664.46748 1343.2727,662.80372 C 1343.2727,660.83987 1343.1331,660.3697 1344.7879,660.78342 C 1345.4801,660.95646 1345.8248,662.8571 1346.0506,663.3088 C 1346.693,664.5935 1346.4794,664.67868 1348.0709,665.07657 C 1348.5471,665.19562 1348.9127,664.57149 1349.3336,664.31895 z"
id="path3510"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1311.4529,630.22631 C 1312.8436,630.57399 1311.3577,627.32388 1311.7054,625.93316 C 1312.061,624.51091 1312.4569,623.42001 1312.9681,622.39762 C 1313.6555,621.02289 1314.9679,621.31921 1316.2511,621.64001 C 1317.8118,622.03019 1318.2136,622.08724 1319.029,622.9027 C 1319.6975,623.57112 1320.0863,624.60642 1320.2917,625.42808 C 1320.5531,626.47349 1320.5402,627.93717 1320.7968,628.96361 C 1321.337,631.12433 1320.1222,631.65765 1318.7765,631.99407 C 1317.106,632.4117 1316.111,632.68165 1314.7359,631.99407 C 1313.1105,631.18135 1313.8173,630.6992 1311.4529,630.22631 z"
id="path3512"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1349.0811,633.00422 C 1347.874,632.40071 1351.9147,633.3552 1353.1217,632.75169 C 1354.3734,632.12582 1354.8629,631.30283 1355.3945,629.97377 C 1355.4387,629.86323 1355.5629,629.80541 1355.6471,629.72123 C 1356.5762,628.79208 1353.0937,627.95346 1352.1115,627.95346 C 1350.3825,627.95346 1349.3971,628.44584 1348.0709,628.71108 C 1346.57,629.01126 1345.8544,629.86112 1345.293,630.98392 C 1344.7991,631.9717 1346.8877,632.53887 1347.3133,632.75169 C 1347.8457,633.01789 1348.4974,632.88749 1349.0811,633.00422 z"
id="path3514"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1317.7663,708.76567 C 1318.5117,709.13834 1315.7965,709.72498 1315.9986,710.53343 C 1316.389,712.09507 1317.87,711.18743 1318.2714,710.78597 C 1319.1264,709.93099 1318.3232,709.32255 1317.7663,708.76567 z"
id="path3516"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1307.9174,705.48267 C 1308.482,704.91798 1306.8026,707.04123 1307.1597,707.75551 C 1307.8037,709.04338 1309.3706,709.01369 1309.6851,707.75551 C 1310.075,706.19609 1309.6647,706.06512 1307.9174,705.48267 z"
id="path3518"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1288.2194,705.98775 C 1288.6227,704.37461 1287.4588,704.21998 1290.4922,704.21998 C 1291.0146,704.21998 1292.2449,705.72013 1292.5125,705.98775 C 1293.2218,706.69698 1294.281,706.87199 1295.0379,707.25044 C 1296.9447,708.20385 1294.4639,709.09858 1293.7752,709.27074 C 1292.7144,709.53594 1290.5737,708.03247 1289.9871,707.25044 C 1289.2861,706.31565 1286.7063,705.68514 1289.4821,706.24028"
id="path3520"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1298.0684,705.98775 C 1297.2987,704.96157 1296.5559,703.70941 1297.3108,702.19967 C 1297.6842,701.4527 1299.4872,701.11146 1300.3412,700.68445 C 1301.2852,700.21243 1302.2902,700.14681 1302.6141,701.44206 C 1303.1193,703.46313 1302.337,703.96744 1300.5938,703.96744 C 1298.875,703.96744 1300.1079,705.98775 1298.0684,705.98775 z"
id="path3522"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1280.8958,706.74536 C 1280.5804,706.74536 1283.7755,704.42164 1284.1788,704.21998 C 1285.0854,703.76666 1284.8846,706.3438 1284.4313,707.25044 C 1283.4812,709.15067 1282.4688,707.79402 1280.8958,706.74536 z"
id="path3524"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1458.3403,604.73584 C 1458.7909,603.81237 1457.8984,607.33011 1458.8219,607.78064 C 1459.8192,608.26716 1460.2529,605.62289 1459.5859,605.06253 C 1459.2573,604.78639 1458.7556,604.84471 1458.3403,604.73584 z"
id="path3526"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1422.8182,611.61242 C 1423.5325,611.37433 1424.2468,611.13623 1424.9611,610.89814 C 1427.2325,610.14098 1429.3825,608.89096 1428.1754,607.68385 C 1426.1549,605.66331 1421.9874,606.48833 1421.3896,607.68385 C 1420.3686,609.72586 1420.3275,610.118 1422.8182,611.61242 z"
id="path3528"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1295.2905,777.2035 C 1296.8224,776.85253 1297.3108,775.96058 1297.3108,773.9205 C 1297.3108,772.93799 1294.8101,772.10157 1294.2803,771.39512 C 1293.1966,769.95017 1291.3036,772.8029 1291.2498,772.91035 C 1290.9064,773.59719 1287.7235,771.39974 1287.7143,771.39512 C 1286.4274,770.75166 1286.7633,772.54633 1288.2194,772.91035 C 1289.6231,773.26128 1289.7777,773.96358 1290.4922,774.67812 C 1290.8055,774.99138 1292.9817,775.54403 1293.2701,775.68827 C 1294.6836,776.39501 1292.7205,777.2035 1295.2905,777.2035 z"
id="path3530"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1193.0125,792.60833 C 1194.1591,793.18162 1195.6959,790.77716 1196.043,790.08295 C 1196.5999,788.96907 1198.6035,790.66473 1199.0734,788.31518 C 1199.102,788.1721 1195.4619,786.02523 1195.2853,785.7898 C 1194.1956,784.33676 1193.5865,783.51695 1191.4973,783.51695 C 1188.7337,783.51695 1189.6045,782.47617 1187.9617,781.24411 C 1186.6982,780.29647 1185.8575,779.13913 1184.9313,780.99157 C 1184.3033,782.24754 1184.3263,783.7168 1183.9211,784.52711 C 1183.4184,785.53253 1184.8369,786.70556 1185.1838,787.05249 C 1185.9554,787.82406 1186.5538,788.16991 1187.2041,788.82025 C 1187.9757,789.59183 1188.5741,789.93767 1189.2244,790.58802 C 1189.9088,791.27237 1191.1181,792.03993 1191.7498,792.35579 C 1192.1337,792.54775 1192.5916,792.52415 1193.0125,792.60833 z"
id="path3532"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1179.8805,773.16289 C 1181.1223,773.78377 1182.5328,772.15274 1183.9211,772.15274 C 1185.1431,772.15274 1185.8737,773.09515 1186.4465,773.66797 C 1186.825,774.04649 1189.0778,772.35232 1189.477,772.15274 C 1191.6344,771.07402 1188.6976,768.81055 1188.2143,768.6172 C 1186.6615,767.99608 1185.7847,766.6544 1184.4262,765.83928 C 1183.4742,765.2681 1181.9095,763.3139 1184.4262,763.3139 C 1186.6389,763.3139 1185.9915,761.39363 1185.4364,760.28345 C 1184.5727,758.55608 1183.9211,758.8451 1183.9211,756.24284 C 1183.9211,754.51443 1182.3983,753.46189 1181.1432,752.95984 C 1181.1194,752.95032 1178.0324,754.87395 1177.6077,754.98014 C 1176.1266,755.35041 1177.8595,757.25228 1178.1128,757.50553 C 1178.8336,758.22634 1178.3653,760.81618 1178.3653,761.79867 C 1178.3653,763.59873 1175.5413,762.65954 1174.8298,762.30375 C 1173.636,761.70686 1173.2703,759.36176 1171.7993,762.30375 C 1171.438,763.02627 1172.0755,763.5901 1172.8095,764.32406 C 1173.8538,765.36845 1172.4326,765.9636 1171.7993,766.5969 C 1171.495,766.90117 1172.2166,769.52892 1172.3044,769.87989 C 1172.5147,770.72135 1173.8879,771.2228 1174.5772,771.39512 C 1175.7837,771.69674 1176.7087,771.70325 1177.6077,772.15274 C 1178.8881,772.79292 1177.696,773.59979 1179.8805,773.16289 z"
id="path3534"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1184.4262,744.87862 C 1184.7384,745.03473 1182.4059,741.69825 1182.4059,740.58547 C 1182.4059,739.3609 1179.6015,737.92056 1178.8704,737.55501 C 1177.7525,736.9961 1176.8501,739.06435 1176.8501,740.08039 C 1176.8501,741.39446 1177.1793,742.50665 1177.6077,743.36339 C 1178.0616,744.27118 1178.1128,745.88002 1178.1128,747.15146 C 1178.1128,748.95749 1177.9337,749.58733 1179.1229,750.18192 C 1179.909,750.57496 1180.8622,749.81734 1181.6483,749.42431 C 1182.4104,749.04325 1183.6686,751.87209 1183.6686,749.42431 C 1183.6686,747.77564 1184.4995,747.11482 1185.4364,746.64639 C 1186.0434,746.34287 1184.8502,745.40858 1184.4262,744.87862 z"
id="path3536"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1161.6978,721.39257 C 1163.0446,720.71914 1159.163,719.37227 1157.6572,719.37227 C 1156.3769,719.37227 1156.9541,721.75413 1157.1521,722.15019 C 1157.5214,722.88889 1159.087,723.83259 1159.6775,724.42303 C 1160.2401,724.98561 1161.6336,725.27483 1162.4554,725.68572 C 1163.362,726.13904 1163.1612,723.5619 1162.7079,722.65526 C 1162.4669,722.17316 1162.0345,721.81347 1161.6978,721.39257 z"
id="path3538"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1147.3031,697.40145 C 1147.0984,696.99213 1147.4136,694.59198 1146.798,693.36084 C 1145.9934,691.75151 1144.2943,691.20342 1143.01,691.84561 C 1141.3293,692.68593 1142.7298,693.86592 1140.232,693.86592 C 1138.3149,693.86592 1137.8101,694.16418 1137.2016,695.38114 C 1136.5407,696.70282 1136.9141,697.079 1137.4541,698.15906 C 1137.9591,699.16894 1138.2436,699.70621 1138.9693,700.43191 C 1139.8177,701.28024 1139.791,702.01115 1140.7371,702.95729 C 1141.8102,704.03034 1142.2655,704.48569 1143.01,705.23013 C 1143.7815,706.00171 1144.3799,706.34755 1145.0303,706.9979 C 1145.7681,707.73578 1145.7636,708.92118 1146.0404,710.02836 C 1146.3295,711.18461 1146.9777,711.6334 1147.8082,712.04866 C 1148.7382,712.51367 1150.0539,712.73636 1151.3437,713.05881 C 1152.521,713.35313 1153.0616,713.91777 1153.8691,714.3215 C 1154.8924,714.83315 1155.3912,715.33507 1156.3945,715.83673 C 1157.4268,716.3529 1157.0234,712.2963 1156.8996,712.04866 C 1156.2226,710.6947 1154.9903,709.24298 1153.8691,709.52328 C 1151.528,710.10855 1151.3852,709.79655 1149.8285,709.0182 C 1149.1006,708.65424 1149.0184,705.12509 1148.8183,704.72506 C 1147.8893,702.86696 1147.5223,702.23934 1146.5455,700.93698 C 1145.4449,699.46959 1143.2349,699.56183 1145.5353,698.4116 C 1146.0274,698.16558 1146.6116,697.74721 1147.3031,697.40145 z"
id="path3540"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1128.3627,690.83546 C 1129.4328,690.30041 1126.1199,692.0382 1125.5848,693.1083 C 1125.0865,694.10496 1127.5886,694.11845 1128.3627,694.11845 C 1130.4246,694.11845 1128.8683,691.46739 1128.3627,690.83546 z"
id="path3542"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1133.161,694.62353 C 1134.2258,694.62353 1130.6067,694.6813 1130.1305,695.63368 C 1129.3292,697.2363 1131.3038,697.69477 1132.1508,697.90653 C 1132.7269,698.05055 1133.161,695.05112 1133.161,694.62353 z"
id="path3544"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1135.1813,688.56261 C 1136.1124,688.7954 1132.6756,689.39925 1132.9084,690.33038 C 1133.2407,691.65958 1134.8676,691.11855 1135.4338,690.83546 C 1136.1972,690.45378 1135.2548,688.74645 1135.1813,688.56261 z"
id="path3546"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 334.6572,111.52398 C 335.6847,111.52398 332.1318,112.26421 332.1318,113.29175 C 332.1318,114.40139 334.6985,113.63179 334.9097,112.78667 C 335.0138,112.37025 334.7414,111.94488 334.6572,111.52398 z"
id="path3548"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 272.6607,158.39696 C 274.1482,158.39696 269.0047,160.22114 269.0047,162.75336 C 269.0047,165.4879 272.7205,163.59133 273.0262,161.50866 C 273.1769,160.48246 272.7826,159.4342 272.6607,158.39696 z"
id="path3550"
style="fill:#fcf5e3;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1.88880146px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 405.3715,237.23827 C 406.399,237.23827 402.8461,237.9785 402.8461,239.00604 C 402.8461,240.11568 405.4128,239.34608 405.624,238.50096 C 405.7281,238.08454 405.4557,237.65917 405.3715,237.23827 z"
id="path3554"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 399.6572,195.8097 C 400.6847,195.8097 397.1318,196.54993 397.1318,197.57747 C 397.1318,198.68711 399.6985,197.91751 399.9097,197.07239 C 400.0138,196.65597 399.7414,196.2306 399.6572,195.8097 z"
id="path3556"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 308.9429,231.88113 C 309.9704,231.88113 306.4175,232.62136 306.4175,233.6489 C 306.4175,234.75854 308.9842,233.98894 309.1954,233.14382 C 309.2995,232.7274 309.0271,232.30203 308.9429,231.88113 z"
id="path3558"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 296.0857,238.66684 C 297.1132,238.66684 293.5603,239.40707 293.5603,240.43461 C 293.5603,241.54425 296.127,240.77465 296.3382,239.92953 C 296.4423,239.51311 296.1699,239.08774 296.0857,238.66684 z"
id="path3560"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 350.0836,306.54644 C 350.5198,308.03806 347.6423,303.28071 345.7421,303.83651 C 343.6899,304.43672 346.203,307.74652 347.8556,307.59599 C 348.6699,307.52187 349.3409,306.89634 350.0836,306.54644 z"
id="path3562"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1.70714915px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 398.8895,223.57671 C 399.1988,222.88931 399.6038,221.90147 399.6038,220.71957 C 399.6038,219.8916 397.7461,218.83788 397.2824,218.21957 C 397.0695,217.93571 394.5136,218.21957 394.0681,218.21957 C 392.8069,218.21957 392.6395,218.89511 392.6395,220.18385 C 392.6395,221.06617 393.1231,221.42082 393.8895,221.61242 C 394.6981,221.81455 395.4623,222.25629 396.0324,222.68385 C 396.5532,223.07443 397.0633,223.46714 397.6395,223.75528 C 398.016,223.94351 398.4768,223.65925 398.8895,223.57671 z"
id="path3566"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 383.3538,208.04099 C 381.6499,208.04099 381.7903,207.061 382.2824,206.07671 C 382.7765,205.08845 383.4005,204.71408 384.2467,204.29099 C 385.0598,203.88442 385.8062,203.9148 386.7467,204.29099 C 387.4914,204.58889 387.9967,205.04106 387.9967,205.89814 C 385.8668,207.07829 386.0053,207.74821 383.3538,208.04099 z"
id="path3568"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 390.4967,208.39814 C 390.4967,208.98739 389.2467,209.05888 389.2467,209.64814 C 389.2467,210.55938 389.8904,210.89814 390.8538,210.89814 C 391.7733,210.89814 391.6921,208.79662 390.4967,208.39814 z"
id="path3570"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 371.4429,339.38113 C 372.4704,339.38113 368.9175,340.12136 368.9175,341.1489 C 368.9175,342.25854 371.4842,341.48894 371.6954,340.64382 C 371.7995,340.2274 371.5271,339.80203 371.4429,339.38113 z"
id="path3572"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 358.2286,305.45256 C 359.2561,305.45256 355.7032,306.19279 355.7032,307.22033 C 355.7032,308.32997 358.2699,307.56037 358.4811,306.71525 C 358.5852,306.29883 358.3128,305.87346 358.2286,305.45256 z"
id="path3574"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 341.4429,288.3097 C 342.4704,288.3097 338.9175,289.04993 338.9175,290.07747 C 338.9175,291.18711 341.4842,290.41751 341.6954,289.57239 C 341.7995,289.15597 341.5271,288.7306 341.4429,288.3097 z"
id="path3576"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 324.6572,281.16684 C 325.6847,281.16684 322.1318,281.90707 322.1318,282.93461 C 322.1318,284.04425 324.6985,283.27465 324.9097,282.42953 C 325.0138,282.01311 324.7414,281.58774 324.6572,281.16684 z"
id="path3578"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 356.0857,302.59541 C 357.1132,302.59541 353.5603,303.33564 353.5603,304.36318 C 353.5603,305.47282 356.127,304.70322 356.3382,303.8581 C 356.4423,303.44168 356.1699,303.01631 356.0857,302.59541 z"
id="path3580"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 404.704,378.92112 C 405.142,379.85057 402.9578,376.95226 402.0283,377.39031 C 401.0245,377.86335 402.8149,379.85705 403.6694,379.68782 C 404.0905,379.60446 404.3591,379.17672 404.704,378.92112 z"
id="path3582"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 399.961,370.71957 C 399.2811,369.79287 397.962,369.04297 397.461,368.04099 C 396.9843,367.08768 395.3529,366.65882 394.7824,365.89814 C 394.2651,365.2084 392.6395,365.3336 392.6395,366.43385 C 392.6395,367.35528 392.037,367.79556 392.8181,368.57671 C 393.5253,369.28392 394.1241,369.73479 394.961,370.36242 C 395.6952,370.91312 396.8178,371.09449 397.461,371.25528 C 398.1786,371.43468 398.6945,371.87205 399.2467,372.14814 C 400.5535,372.80155 401.1266,372.17664 399.961,370.71957 z"
id="path3584"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 400.3181,383.04099 C 400.5025,383.13317 399.6208,380.55795 399.2467,380.18385 C 398.5923,379.52944 397.4954,378.10985 397.1038,377.32671 C 396.5168,376.15257 395.4967,375.99294 395.4967,377.50528 C 395.4967,378.41888 395.0495,379.10951 395.3181,380.18385 C 395.4727,380.80231 396.1548,381.37771 396.5681,381.79099 C 397.1251,382.34798 397.3067,383.13837 397.461,383.75528 C 397.5839,384.24709 398.6392,384.71948 399.0681,384.82671 C 400.4431,385.17046 400.8093,384.51442 400.3181,383.04099 z"
id="path3586"
style="fill:#2ca02c;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 569.59744,1131.5888 L 561.78494,1198.495 L 562.78494,1198.62 L 570.59744,1131.7138 L 569.59744,1131.5888 z"
id="path3643"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 566.63004,1117.157 L 569.48334,1117.5094 L 574.93724,1126.1887 L 575.68604,1120.1253 C 575.76584,1119.4793 575.74324,1119.0672 575.61834,1118.889 C 575.45394,1118.6484 575.16494,1118.5024 574.75144,1118.4514 L 574.38694,1118.4064 L 574.42244,1118.1194 L 578.08214,1118.5714 L 578.04664,1118.8583 L 577.67454,1118.8124 C 577.22994,1118.7575 576.89804,1118.8529 576.67874,1119.0987 C 576.54464,1119.2501 576.44114,1119.6204 576.36834,1120.2096 L 575.27384,1129.072 L 574.99474,1129.0375 L 569.10874,1119.7145 L 568.30914,1126.1888 C 568.22934,1126.8349 568.24934,1127.2467 568.36904,1127.4242 C 568.53864,1127.6655 568.82764,1127.8115 569.23604,1127.8619 L 569.60824,1127.9078 L 569.57274,1128.1948 L 565.91304,1127.7428 L 565.94854,1127.4559 L 566.31294,1127.5009 C 566.76264,1127.5564 567.09714,1127.4613 567.31644,1127.2154 C 567.45054,1127.0641 567.55404,1126.6938 567.62684,1126.1045 L 568.52984,1118.7928 C 568.26884,1118.3986 568.06664,1118.1348 567.92304,1118.0016 C 567.77944,1117.8684 567.56114,1117.7339 567.26834,1117.598 C 567.12414,1117.5329 566.89964,1117.4816 566.59464,1117.444 L 566.63004,1117.157 z"
id="text3645"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Times New Roman" />
<path
d="M 574.22884,1139.2252 L 569.57324,1138.6123 L 564.91764,1137.9995 L 567.77614,1134.2741 L 570.63464,1130.5486 L 572.43174,1134.8869 L 574.22884,1139.2252 z"
id="path3649"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
<path
d="M 598.04864,1151.0129 L 598.04864,1158.2465 L 817.93104,1158.2465 C 817.93104,1158.2465 817.93104,1152.4337 817.93104,1150.4961"
id="path4620"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
<path
d="M 598.55454,1177.4386 L 598.55454,1170.7001 L 810.85914,1170.7001 L 810.85914,1177.4386"
id="path4622"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
<path
d="M 595.21894,1142.5636 C 595.21894,1141.3553 595.40124,1140.3149 595.76584,1139.4425 C 596.13044,1138.5701 596.61484,1137.9204 597.21894,1137.4933 C 597.68774,1137.1548 598.17204,1136.9855 598.67214,1136.9855 C 599.48454,1136.9855 600.21374,1137.3996 600.85964,1138.2277 C 601.66684,1139.2537 602.07054,1140.6443 602.07054,1142.3995 C 602.07054,1143.6287 601.89344,1144.673 601.53924,1145.5324 C 601.18514,1146.3917 600.73324,1147.0154 600.18384,1147.4034 C 599.63434,1147.7915 599.10434,1147.9855 598.59394,1147.9855 C 597.58354,1147.9855 596.74244,1147.3891 596.07054,1146.1964 C 595.50284,1145.1912 595.21894,1143.9803 595.21894,1142.5636 L 595.21894,1142.5636 z M 596.75024,1142.7589 C 596.75024,1144.2173 596.92994,1145.4074 597.28924,1146.3292 C 597.58614,1147.1053 598.02884,1147.4933 598.61744,1147.4933 C 598.89864,1147.4933 599.19034,1147.367 599.49244,1147.1144 C 599.79444,1146.8618 600.02364,1146.4386 600.17994,1145.8449 C 600.41944,1144.949 600.53924,1143.686 600.53924,1142.0558 C 600.53924,1140.8475 600.41424,1139.8397 600.16424,1139.0324 C 599.97674,1138.4334 599.73454,1138.0089 599.43774,1137.7589 C 599.22414,1137.5871 598.96634,1137.5011 598.66424,1137.5011 C 598.31014,1137.5011 597.99504,1137.66 597.71894,1137.9777 C 597.34394,1138.41 597.08874,1139.0897 596.95334,1140.0167 C 596.81794,1140.9438 596.75024,1141.8579 596.75024,1142.7589 L 596.75024,1142.7589 z"
id="text4624"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Times New Roman" />
<path
d="M 594.71094,1184.6886 C 594.71094,1183.4803 594.89324,1182.4399 595.25784,1181.5675 C 595.62244,1180.6951 596.10684,1180.0454 596.71094,1179.6183 C 597.17974,1179.2798 597.66404,1179.1105 598.16404,1179.1105 C 598.97654,1179.1105 599.70574,1179.5246 600.35154,1180.3527 C 601.15884,1181.3787 601.56254,1182.7693 601.56254,1184.5245 C 601.56254,1185.7537 601.38544,1186.798 601.03124,1187.6574 C 600.67714,1188.5167 600.22524,1189.1404 599.67584,1189.5284 C 599.12634,1189.9165 598.59634,1190.1105 598.08594,1190.1105 C 597.07554,1190.1105 596.23444,1189.5141 595.56254,1188.3214 C 594.99484,1187.3162 594.71094,1186.1053 594.71094,1184.6886 L 594.71094,1184.6886 z M 596.24224,1184.8839 C 596.24224,1186.3423 596.42194,1187.5324 596.78124,1188.4542 C 597.07814,1189.2303 597.52084,1189.6183 598.10944,1189.6183 C 598.39064,1189.6183 598.68234,1189.492 598.98444,1189.2394 C 599.28644,1188.9868 599.51564,1188.5636 599.67194,1187.9699 C 599.91144,1187.074 600.03124,1185.811 600.03124,1184.1808 C 600.03124,1182.9725 599.90624,1181.9647 599.65624,1181.1574 C 599.46874,1180.5584 599.22654,1180.1339 598.92974,1179.8839 C 598.71614,1179.7121 598.45834,1179.6261 598.15624,1179.6261 C 597.80214,1179.6261 597.48704,1179.785 597.21094,1180.1027 C 596.83594,1180.535 596.58074,1181.2147 596.44534,1182.1417 C 596.30994,1183.0688 596.24224,1183.9829 596.24224,1184.8839 L 596.24224,1184.8839 z"
id="text4628"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Times New Roman" />
<path
d="M 813.02124,1137.0866 L 812.41184,1138.4147 L 809.22434,1138.4147 L 808.52904,1139.8366 C 809.90924,1140.0397 811.00294,1140.5527 811.81024,1141.3756 C 812.50294,1142.084 812.84934,1142.9173 812.84934,1143.8756 C 812.84934,1144.4329 812.73604,1144.9485 812.50954,1145.4225 C 812.28294,1145.8965 811.99774,1146.3001 811.65404,1146.6334 C 811.31024,1146.9668 810.92744,1147.235 810.50554,1147.4381 C 809.90664,1147.7246 809.29204,1147.8678 808.66184,1147.8678 C 808.02644,1147.8678 807.56414,1147.7597 807.27514,1147.5436 C 806.98604,1147.3274 806.84154,1147.0892 806.84154,1146.8287 C 806.84154,1146.6829 806.90144,1146.554 807.02124,1146.442 C 807.14104,1146.33 807.29204,1146.2741 807.47434,1146.2741 C 807.60974,1146.2741 807.72824,1146.2949 807.82984,1146.3366 C 807.93134,1146.3782 808.10454,1146.485 808.34934,1146.6569 C 808.73994,1146.9277 809.13584,1147.0631 809.53684,1147.0631 C 810.14624,1147.0631 810.68134,1146.8326 811.14234,1146.3717 C 811.60324,1145.9108 811.83374,1145.3496 811.83374,1144.6881 C 811.83374,1144.0475 811.62794,1143.4498 811.21654,1142.8951 C 810.80504,1142.3405 810.23734,1141.9121 809.51344,1141.61 C 808.94564,1141.3756 808.17224,1141.2402 807.19304,1141.2037 L 809.22434,1137.0866 L 813.02124,1137.0866 z M 814.65404,1142.4459 C 814.65404,1141.2376 814.83634,1140.1972 815.20094,1139.3248 C 815.56544,1138.4524 816.04984,1137.8027 816.65404,1137.3756 C 817.12274,1137.0371 817.60714,1136.8678 818.10714,1136.8678 C 818.91964,1136.8678 819.64884,1137.2819 820.29464,1138.11 C 821.10194,1139.136 821.50554,1140.5267 821.50554,1142.2819 C 821.50554,1143.511 821.32854,1144.5553 820.97434,1145.4147 C 820.62014,1146.2741 820.16834,1146.8978 819.61884,1147.2858 C 819.06934,1147.6738 818.53944,1147.8678 818.02904,1147.8678 C 817.01864,1147.8678 816.17744,1147.2714 815.50554,1146.0787 C 814.93784,1145.0735 814.65404,1143.8626 814.65404,1142.4459 L 814.65404,1142.4459 z M 816.18524,1142.6412 C 816.18524,1144.0996 816.36494,1145.2897 816.72434,1146.2116 C 817.02124,1146.9876 817.46394,1147.3756 818.05244,1147.3756 C 818.33374,1147.3756 818.62534,1147.2493 818.92744,1146.9967 C 819.22954,1146.7441 819.45874,1146.3209 819.61494,1145.7272 C 819.85454,1144.8313 819.97434,1143.5683 819.97434,1141.9381 C 819.97434,1140.7298 819.84934,1139.722 819.59934,1138.9147 C 819.41184,1138.3157 819.16964,1137.8913 818.87274,1137.6412 C 818.65924,1137.4694 818.40144,1137.3834 818.09934,1137.3834 C 817.74514,1137.3834 817.43004,1137.5423 817.15404,1137.86 C 816.77904,1138.2923 816.52384,1138.972 816.38844,1139.8991 C 816.25294,1140.8261 816.18524,1141.7402 816.18524,1142.6412 L 816.18524,1142.6412 z M 822.65404,1142.4459 C 822.65404,1141.2376 822.83634,1140.1972 823.20094,1139.3248 C 823.56544,1138.4524 824.04984,1137.8027 824.65404,1137.3756 C 825.12274,1137.0371 825.60714,1136.8678 826.10714,1136.8678 C 826.91964,1136.8678 827.64884,1137.2819 828.29464,1138.11 C 829.10194,1139.136 829.50554,1140.5267 829.50554,1142.2819 C 829.50554,1143.511 829.32854,1144.5553 828.97434,1145.4147 C 828.62014,1146.2741 828.16834,1146.8978 827.61884,1147.2858 C 827.06934,1147.6738 826.53944,1147.8678 826.02904,1147.8678 C 825.01864,1147.8678 824.17744,1147.2714 823.50554,1146.0787 C 822.93784,1145.0735 822.65404,1143.8626 822.65404,1142.4459 L 822.65404,1142.4459 z M 824.18524,1142.6412 C 824.18524,1144.0996 824.36494,1145.2897 824.72434,1146.2116 C 825.02124,1146.9876 825.46394,1147.3756 826.05244,1147.3756 C 826.33374,1147.3756 826.62534,1147.2493 826.92744,1146.9967 C 827.22954,1146.7441 827.45874,1146.3209 827.61494,1145.7272 C 827.85454,1144.8313 827.97434,1143.5683 827.97434,1141.9381 C 827.97434,1140.7298 827.84934,1139.722 827.59934,1138.9147 C 827.41184,1138.3157 827.16964,1137.8913 826.87274,1137.6412 C 826.65924,1137.4694 826.40144,1137.3834 826.09934,1137.3834 C 825.74514,1137.3834 825.43004,1137.5423 825.15404,1137.86 C 824.77904,1138.2923 824.52384,1138.972 824.38844,1139.8991 C 824.25294,1140.8261 824.18524,1141.7402 824.18524,1142.6412 L 824.18524,1142.6412 z M 836.69304,1136.5709 L 836.69304,1143.6959 L 838.51344,1142.0319 C 838.89884,1141.6777 839.12274,1141.4537 839.18524,1141.36 C 839.22694,1141.2975 839.24774,1141.235 839.24774,1141.1725 C 839.24774,1141.0683 839.20484,1140.9785 839.11884,1140.903 C 839.03294,1140.8274 838.89104,1140.7845 838.69304,1140.7741 L 838.69304,1140.5241 L 841.80244,1140.5241 L 841.80244,1140.7741 C 841.37534,1140.7845 841.01994,1140.8496 840.73604,1140.9694 C 840.45224,1141.0892 840.14104,1141.3027 839.80244,1141.61 L 837.96654,1143.3053 L 839.80244,1145.6256 C 840.31284,1146.2662 840.65664,1146.6725 840.83374,1146.8444 C 841.08374,1147.0892 841.30244,1147.248 841.48994,1147.3209 C 841.62014,1147.373 841.84674,1147.3991 842.16964,1147.3991 L 842.16964,1147.6803 L 838.69304,1147.6803 L 838.69304,1147.3991 C 838.89104,1147.3938 839.02514,1147.3639 839.09544,1147.3092 C 839.16574,1147.2545 839.20094,1147.1777 839.20094,1147.0787 C 839.20094,1146.9589 839.09674,1146.7662 838.88844,1146.5006 L 836.69304,1143.6959 L 836.69304,1146.0709 C 836.69304,1146.5345 836.72564,1146.8392 836.79074,1146.985 C 836.85584,1147.1308 836.94834,1147.235 837.06804,1147.2975 C 837.18784,1147.36 837.44834,1147.3938 837.84934,1147.3991 L 837.84934,1147.6803 L 834.20874,1147.6803 L 834.20874,1147.3991 C 834.57334,1147.3991 834.84674,1147.3548 835.02904,1147.2662 C 835.13844,1147.2089 835.22174,1147.1204 835.27904,1147.0006 C 835.35714,1146.8287 835.39624,1146.5319 835.39624,1146.11 L 835.39624,1139.5944 C 835.39624,1138.7662 835.37794,1138.2597 835.34154,1138.0748 C 835.30504,1137.8899 835.24514,1137.7623 835.16184,1137.692 C 835.07854,1137.6217 834.96914,1137.5866 834.83374,1137.5866 C 834.72434,1137.5866 834.56024,1137.6308 834.34154,1137.7194 L 834.20874,1137.4459 L 836.33374,1136.5709 L 836.69304,1136.5709 z M 844.70094,1141.8366 C 845.22174,1141.3157 845.52904,1141.0162 845.62274,1140.9381 C 845.85714,1140.7402 846.10974,1140.5866 846.38054,1140.4772 C 846.65144,1140.3678 846.91964,1140.3131 847.18524,1140.3131 C 847.63314,1140.3131 848.01864,1140.4433 848.34154,1140.7037 C 848.66444,1140.9642 848.88054,1141.3418 848.98994,1141.8366 C 849.52644,1141.2116 849.97954,1140.8014 850.34934,1140.6061 C 850.71914,1140.4108 851.09934,1140.3131 851.48994,1140.3131 C 851.87014,1140.3131 852.20744,1140.4108 852.50164,1140.6061 C 852.79594,1140.8014 853.02904,1141.1204 853.20094,1141.5631 C 853.31544,1141.8652 853.37274,1142.3392 853.37274,1142.985 L 853.37274,1146.0631 C 853.37274,1146.511 853.40664,1146.8183 853.47434,1146.985 C 853.52644,1147.0996 853.62274,1147.1972 853.76344,1147.278 C 853.90404,1147.3587 854.13314,1147.3991 854.45094,1147.3991 L 854.45094,1147.6803 L 850.91964,1147.6803 L 850.91964,1147.3991 L 851.06804,1147.3991 C 851.37534,1147.3991 851.61494,1147.3392 851.78684,1147.2194 C 851.90664,1147.136 851.99254,1147.0032 852.04464,1146.8209 C 852.06544,1146.7324 852.07584,1146.4798 852.07594,1146.0631 L 852.07594,1142.985 C 852.07584,1142.4017 852.00554,1141.9902 851.86494,1141.7506 C 851.66184,1141.4173 851.33634,1141.2506 850.88844,1141.2506 C 850.61234,1141.2506 850.33504,1141.3196 850.05634,1141.4576 C 849.77774,1141.5957 849.44044,1141.8522 849.04464,1142.2272 L 849.02904,1142.3131 L 849.04464,1142.6491 L 849.04464,1146.0631 C 849.04464,1146.5527 849.07194,1146.8574 849.12664,1146.9772 C 849.18134,1147.097 849.28424,1147.1972 849.43524,1147.278 C 849.58634,1147.3587 849.84414,1147.3991 850.20874,1147.3991 L 850.20874,1147.6803 L 846.59154,1147.6803 L 846.59154,1147.3991 C 846.98734,1147.3991 847.25944,1147.3522 847.40794,1147.2584 C 847.55634,1147.1647 847.65924,1147.0241 847.71654,1146.8366 C 847.74254,1146.748 847.75554,1146.4902 847.75554,1146.0631 L 847.75554,1142.985 C 847.75554,1142.4017 847.66964,1141.9824 847.49774,1141.7272 C 847.26864,1141.3939 846.94824,1141.2272 846.53684,1141.2272 C 846.25554,1141.2272 845.97694,1141.3027 845.70094,1141.4537 C 845.26864,1141.6829 844.93524,1141.9407 844.70094,1142.2272 L 844.70094,1146.0631 C 844.70094,1146.5319 844.73344,1146.8366 844.79854,1146.9772 C 844.86364,1147.1178 844.96004,1147.2233 845.08764,1147.2936 C 845.21524,1147.3639 845.47434,1147.3991 845.86494,1147.3991 L 845.86494,1147.6803 L 842.32594,1147.6803 L 842.32594,1147.3991 C 842.65404,1147.3991 842.88314,1147.3639 843.01344,1147.2936 C 843.14364,1147.2233 843.24254,1147.1113 843.31024,1146.9576 C 843.37794,1146.804 843.41184,1146.5058 843.41184,1146.0631 L 843.41184,1143.3287 C 843.41184,1142.5423 843.38844,1142.0345 843.34154,1141.8053 C 843.30504,1141.6334 843.24774,1141.5149 843.16964,1141.4498 C 843.09154,1141.3847 842.98474,1141.3522 842.84934,1141.3522 C 842.70354,1141.3522 842.52904,1141.3912 842.32594,1141.4694 L 842.20874,1141.1881 L 844.36494,1140.3131 L 844.70094,1140.3131 L 844.70094,1141.8366 z"
id="text4632"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Times New Roman" />
<path
d="M 800.37074,1181.4562 C 800.67284,1180.7426 801.05434,1180.1919 801.51534,1179.8038 C 801.97624,1179.4158 802.55044,1179.2218 803.23794,1179.2218 C 804.08694,1179.2218 804.73794,1179.4979 805.19104,1180.0499 C 805.53484,1180.4614 805.70674,1180.9015 805.70674,1181.3702 C 805.70674,1182.1411 805.22234,1182.938 804.25354,1183.7609 C 804.90464,1184.0161 805.39684,1184.3807 805.73014,1184.8546 C 806.06344,1185.3286 806.23014,1185.8859 806.23014,1186.5265 C 806.23014,1187.4432 805.93844,1188.2374 805.35514,1188.9093 C 804.59474,1189.7843 803.49314,1190.2218 802.05044,1190.2218 C 801.33694,1190.2218 800.85124,1190.1333 800.59344,1189.9562 C 800.33564,1189.7791 800.20674,1189.589 800.20674,1189.3859 C 800.20674,1189.2348 800.26794,1189.102 800.39034,1188.9874 C 800.51264,1188.8728 800.65984,1188.8156 800.83174,1188.8156 C 800.96194,1188.8156 801.09474,1188.8364 801.23014,1188.8781 C 801.31864,1188.9041 801.51924,1188.9992 801.83174,1189.1632 C 802.14424,1189.3273 802.36034,1189.4249 802.48014,1189.4562 C 802.67284,1189.5135 802.87854,1189.5421 803.09734,1189.5421 C 803.62854,1189.5421 804.09084,1189.3364 804.48404,1188.9249 C 804.87724,1188.5135 805.07384,1188.0265 805.07384,1187.464 C 805.07384,1187.0525 804.98274,1186.6515 804.80044,1186.2609 C 804.66504,1185.9692 804.51654,1185.7479 804.35514,1185.5968 C 804.13114,1185.3885 803.82384,1185.1997 803.43324,1185.0304 C 803.04264,1184.8611 802.64424,1184.7765 802.23794,1184.7765 L 801.98794,1184.7765 L 801.98794,1184.5421 C 802.39944,1184.49 802.81214,1184.3416 803.22624,1184.0968 C 803.64024,1183.852 803.94104,1183.5578 804.12854,1183.214 C 804.31604,1182.8703 804.40984,1182.4926 804.40984,1182.0812 C 804.40984,1181.5447 804.24184,1181.1111 803.90594,1180.7804 C 803.56994,1180.4497 803.15204,1180.2843 802.65204,1180.2843 C 801.84474,1180.2843 801.17024,1180.7166 800.62854,1181.5812 L 800.37074,1181.4562 z M 808.13634,1184.7999 C 808.13634,1183.5916 808.31864,1182.5512 808.68324,1181.6788 C 809.04784,1180.8065 809.53224,1180.1567 810.13634,1179.7296 C 810.60514,1179.3911 811.08954,1179.2218 811.58954,1179.2218 C 812.40204,1179.2218 813.13114,1179.6359 813.77704,1180.464 C 814.58434,1181.49 814.98794,1182.8807 814.98794,1184.6359 C 814.98794,1185.865 814.81084,1186.9093 814.45674,1187.7687 C 814.10254,1188.6281 813.65074,1189.2518 813.10124,1189.6398 C 812.55174,1190.0278 812.02184,1190.2218 811.51134,1190.2218 C 810.50094,1190.2218 809.65984,1189.6255 808.98794,1188.4327 C 808.42024,1187.4275 808.13634,1186.2166 808.13634,1184.7999 L 808.13634,1184.7999 z M 809.66764,1184.9952 C 809.66764,1186.4536 809.84734,1187.6437 810.20674,1188.5656 C 810.50354,1189.3416 810.94624,1189.7296 811.53484,1189.7296 C 811.81604,1189.7296 812.10774,1189.6033 812.40984,1189.3507 C 812.71194,1189.0981 812.94104,1188.6749 813.09734,1188.0812 C 813.33694,1187.1854 813.45674,1185.9223 813.45674,1184.2921 C 813.45674,1183.0838 813.33174,1182.076 813.08174,1181.2687 C 812.89424,1180.6697 812.65204,1180.2453 812.35514,1179.9952 C 812.14154,1179.8234 811.88374,1179.7374 811.58174,1179.7374 C 811.22754,1179.7374 810.91244,1179.8963 810.63634,1180.214 C 810.26134,1180.6463 810.00614,1181.326 809.87074,1182.2531 C 809.73534,1183.1801 809.66764,1184.0942 809.66764,1184.9952 L 809.66764,1184.9952 z M 816.13634,1184.7999 C 816.13634,1183.5916 816.31864,1182.5512 816.68324,1181.6788 C 817.04784,1180.8065 817.53224,1180.1567 818.13634,1179.7296 C 818.60514,1179.3911 819.08954,1179.2218 819.58954,1179.2218 C 820.40204,1179.2218 821.13114,1179.6359 821.77704,1180.464 C 822.58434,1181.49 822.98794,1182.8807 822.98794,1184.6359 C 822.98794,1185.865 822.81084,1186.9093 822.45674,1187.7687 C 822.10254,1188.6281 821.65074,1189.2518 821.10124,1189.6398 C 820.55174,1190.0278 820.02184,1190.2218 819.51134,1190.2218 C 818.50094,1190.2218 817.65984,1189.6255 816.98794,1188.4327 C 816.42024,1187.4275 816.13634,1186.2166 816.13634,1184.7999 L 816.13634,1184.7999 z M 817.66764,1184.9952 C 817.66764,1186.4536 817.84734,1187.6437 818.20674,1188.5656 C 818.50354,1189.3416 818.94624,1189.7296 819.53484,1189.7296 C 819.81604,1189.7296 820.10774,1189.6033 820.40984,1189.3507 C 820.71194,1189.0981 820.94104,1188.6749 821.09734,1188.0812 C 821.33694,1187.1854 821.45674,1185.9223 821.45674,1184.2921 C 821.45674,1183.0838 821.33174,1182.076 821.08174,1181.2687 C 820.89424,1180.6697 820.65204,1180.2453 820.35514,1179.9952 C 820.14154,1179.8234 819.88374,1179.7374 819.58174,1179.7374 C 819.22754,1179.7374 818.91244,1179.8963 818.63634,1180.214 C 818.26134,1180.6463 818.00614,1181.326 817.87074,1182.2531 C 817.73534,1183.1801 817.66764,1184.0942 817.66764,1184.9952 L 817.66764,1184.9952 z M 830.18324,1184.1906 C 830.70404,1183.6697 831.01134,1183.3703 831.10514,1183.2921 C 831.33954,1183.0942 831.59214,1182.9406 831.86294,1182.8312 C 832.13374,1182.7218 832.40204,1182.6671 832.66764,1182.6671 C 833.11554,1182.6671 833.50094,1182.7973 833.82384,1183.0577 C 834.14684,1183.3182 834.36294,1183.6958 834.47234,1184.1906 C 835.00874,1183.5656 835.46194,1183.1554 835.83174,1182.9601 C 836.20144,1182.7648 836.58164,1182.6671 836.97234,1182.6671 C 837.35254,1182.6671 837.68974,1182.7648 837.98404,1182.9601 C 838.27834,1183.1554 838.51134,1183.4744 838.68324,1183.9171 C 838.79784,1184.2192 838.85514,1184.6932 838.85514,1185.339 L 838.85514,1188.4171 C 838.85514,1188.865 838.88894,1189.1723 838.95674,1189.339 C 839.00874,1189.4536 839.10514,1189.5512 839.24574,1189.632 C 839.38634,1189.7127 839.61554,1189.7531 839.93324,1189.7531 L 839.93324,1190.0343 L 836.40204,1190.0343 L 836.40204,1189.7531 L 836.55044,1189.7531 C 836.85774,1189.7531 837.09734,1189.6932 837.26924,1189.5734 C 837.38894,1189.49 837.47494,1189.3572 837.52704,1189.1749 C 837.54784,1189.0864 837.55824,1188.8338 837.55824,1188.4171 L 837.55824,1185.339 C 837.55824,1184.7557 837.48794,1184.3442 837.34734,1184.1046 C 837.14414,1183.7713 836.81864,1183.6046 836.37074,1183.6046 C 836.09474,1183.6046 835.81734,1183.6736 835.53874,1183.8117 C 835.26004,1183.9497 834.92284,1184.2062 834.52704,1184.5812 L 834.51134,1184.6671 L 834.52704,1185.0031 L 834.52704,1188.4171 C 834.52704,1188.9067 834.55434,1189.2114 834.60904,1189.3312 C 834.66374,1189.451 834.76654,1189.5512 834.91764,1189.632 C 835.06864,1189.7127 835.32644,1189.7531 835.69104,1189.7531 L 835.69104,1190.0343 L 832.07384,1190.0343 L 832.07384,1189.7531 C 832.46974,1189.7531 832.74184,1189.7062 832.89034,1189.6124 C 833.03874,1189.5187 833.14154,1189.3781 833.19884,1189.1906 C 833.22494,1189.102 833.23794,1188.8442 833.23794,1188.4171 L 833.23794,1185.339 C 833.23794,1184.7557 833.15204,1184.3364 832.98014,1184.0812 C 832.75094,1183.7479 832.43064,1183.5812 832.01924,1183.5812 C 831.73794,1183.5812 831.45934,1183.6567 831.18324,1183.8077 C 830.75094,1184.0369 830.41764,1184.2947 830.18324,1184.5812 L 830.18324,1188.4171 C 830.18324,1188.8859 830.21584,1189.1906 830.28094,1189.3312 C 830.34604,1189.4718 830.44234,1189.5773 830.56994,1189.6476 C 830.69754,1189.7179 830.95674,1189.7531 831.34734,1189.7531 L 831.34734,1190.0343 L 827.80824,1190.0343 L 827.80824,1189.7531 C 828.13634,1189.7531 828.36554,1189.7179 828.49574,1189.6476 C 828.62594,1189.5773 828.72494,1189.4653 828.79264,1189.3117 C 828.86034,1189.158 828.89424,1188.8598 828.89424,1188.4171 L 828.89424,1185.6827 C 828.89424,1184.8963 828.87074,1184.3885 828.82384,1184.1593 C 828.78744,1183.9874 828.73014,1183.8689 828.65204,1183.8038 C 828.57384,1183.7387 828.46714,1183.7062 828.33174,1183.7062 C 828.18584,1183.7062 828.01134,1183.7453 827.80824,1183.8234 L 827.69104,1183.5421 L 829.84734,1182.6671 L 830.18324,1182.6671 L 830.18324,1184.1906 z M 842.31604,1178.9249 C 842.53484,1178.9249 842.72104,1179.0018 842.87464,1179.1554 C 843.02834,1179.3091 843.10514,1179.4953 843.10514,1179.714 C 843.10514,1179.9328 843.02834,1180.1203 842.87464,1180.2765 C 842.72104,1180.4328 842.53484,1180.5109 842.31604,1180.5109 C 842.09734,1180.5109 841.90984,1180.4328 841.75354,1180.2765 C 841.59734,1180.1203 841.51924,1179.9328 841.51924,1179.714 C 841.51924,1179.4953 841.59604,1179.3091 841.74964,1179.1554 C 841.90334,1179.0018 842.09214,1178.9249 842.31604,1178.9249 L 842.31604,1178.9249 z M 842.96454,1182.6671 L 842.96454,1188.4171 C 842.96454,1188.865 842.99704,1189.1632 843.06214,1189.3117 C 843.12724,1189.4601 843.22364,1189.5708 843.35124,1189.6437 C 843.47884,1189.7166 843.71194,1189.7531 844.05044,1189.7531 L 844.05044,1190.0343 L 840.57384,1190.0343 L 840.57384,1189.7531 C 840.92284,1189.7531 841.15724,1189.7192 841.27704,1189.6515 C 841.39684,1189.5838 841.49184,1189.4718 841.56214,1189.3156 C 841.63244,1189.1593 841.66764,1188.8598 841.66764,1188.4171 L 841.66764,1185.6593 C 841.66764,1184.8833 841.64424,1184.3807 841.59734,1184.1515 C 841.56084,1183.9848 841.50354,1183.8689 841.42544,1183.8038 C 841.34734,1183.7387 841.24054,1183.7062 841.10514,1183.7062 C 840.95934,1183.7062 840.78224,1183.7453 840.57384,1183.8234 L 840.46454,1183.5421 L 842.62074,1182.6671 L 842.96454,1182.6671 z M 847.39424,1178.9249 L 847.39424,1188.4171 C 847.39424,1188.865 847.42674,1189.1619 847.49184,1189.3077 C 847.55694,1189.4536 847.65724,1189.5643 847.79264,1189.6398 C 847.92804,1189.7153 848.18064,1189.7531 848.55044,1189.7531 L 848.55044,1190.0343 L 845.04264,1190.0343 L 845.04264,1189.7531 C 845.37074,1189.7531 845.59474,1189.7192 845.71454,1189.6515 C 845.83434,1189.5838 845.92804,1189.4718 845.99574,1189.3156 C 846.06344,1189.1593 846.09734,1188.8598 846.09734,1188.4171 L 846.09734,1181.9171 C 846.09734,1181.1098 846.07914,1180.6137 846.04264,1180.4288 C 846.00614,1180.244 845.94754,1180.1176 845.86684,1180.0499 C 845.78614,1179.9822 845.68324,1179.9484 845.55824,1179.9484 C 845.42284,1179.9484 845.25094,1179.99 845.04264,1180.0734 L 844.90984,1179.7999 L 847.04264,1178.9249 L 847.39424,1178.9249 z M 850.57384,1185.5734 C 850.56864,1186.6359 850.82644,1187.4692 851.34734,1188.0734 C 851.86814,1188.6775 852.48014,1188.9796 853.18324,1188.9796 C 853.65204,1188.9796 854.05954,1188.8507 854.40594,1188.5929 C 854.75224,1188.3351 855.04264,1187.8937 855.27704,1187.2687 L 855.51924,1187.4249 C 855.40984,1188.1385 855.09214,1188.7882 854.56604,1189.3742 C 854.04004,1189.9601 853.38114,1190.2531 852.58954,1190.2531 C 851.73014,1190.2531 850.99444,1189.9184 850.38244,1189.2492 C 849.77054,1188.5799 849.46454,1187.6801 849.46454,1186.5499 C 849.46454,1185.326 849.77834,1184.3716 850.40594,1183.6867 C 851.03354,1183.0018 851.82124,1182.6593 852.76924,1182.6593 C 853.57124,1182.6593 854.23014,1182.9236 854.74574,1183.4523 C 855.26134,1183.9809 855.51924,1184.688 855.51924,1185.5734 L 850.57384,1185.5734 z M 850.57384,1185.1202 L 853.88634,1185.1202 C 853.86034,1184.6619 853.80564,1184.339 853.72234,1184.1515 C 853.59214,1183.8598 853.39814,1183.6307 853.14034,1183.464 C 852.88244,1183.2973 852.61294,1183.214 852.33174,1183.214 C 851.89944,1183.214 851.51264,1183.382 851.17154,1183.7179 C 850.83044,1184.0538 850.63114,1184.5213 850.57384,1185.1202 L 850.57384,1185.1202 z M 861.08954,1182.6671 L 861.08954,1185.1046 L 860.83174,1185.1046 C 860.63374,1184.339 860.37984,1183.8182 860.06994,1183.5421 C 859.76004,1183.2661 859.36554,1183.1281 858.88634,1183.1281 C 858.52184,1183.1281 858.22754,1183.2244 858.00354,1183.4171 C 857.77964,1183.6098 857.66764,1183.8234 857.66764,1184.0577 C 857.66764,1184.3494 857.75094,1184.5994 857.91764,1184.8077 C 858.07914,1185.0213 858.40724,1185.2479 858.90204,1185.4874 L 860.04264,1186.0421 C 861.09994,1186.5577 861.62854,1187.2374 861.62854,1188.0812 C 861.62854,1188.7322 861.38244,1189.257 860.89034,1189.6554 C 860.39814,1190.0538 859.84734,1190.2531 859.23794,1190.2531 C 858.80044,1190.2531 858.30044,1190.1749 857.73794,1190.0187 C 857.56604,1189.9666 857.42544,1189.9406 857.31604,1189.9406 C 857.19624,1189.9406 857.10254,1190.0083 857.03484,1190.1437 L 856.77704,1190.1437 L 856.77704,1187.589 L 857.03484,1187.589 C 857.18064,1188.3182 857.45934,1188.8676 857.87074,1189.2374 C 858.28224,1189.6072 858.74314,1189.7921 859.25354,1189.7921 C 859.61294,1189.7921 859.90594,1189.6867 860.13244,1189.4757 C 860.35904,1189.2648 860.47234,1189.0109 860.47234,1188.714 C 860.47234,1188.3546 860.34604,1188.0525 860.09344,1187.8077 C 859.84084,1187.563 859.33694,1187.2531 858.58174,1186.8781 C 857.82644,1186.5031 857.33174,1186.1645 857.09734,1185.8624 C 856.86294,1185.5656 856.74574,1185.1906 856.74574,1184.7374 C 856.74574,1184.1489 856.94754,1183.6567 857.35124,1183.2609 C 857.75484,1182.865 858.27704,1182.6671 858.91764,1182.6671 C 859.19884,1182.6671 859.54004,1182.727 859.94104,1182.8468 C 860.20674,1182.9249 860.38374,1182.964 860.47234,1182.964 C 860.55564,1182.964 860.62074,1182.9458 860.66764,1182.9093 C 860.71454,1182.8729 860.76924,1182.7921 860.83174,1182.6671 L 861.08954,1182.6671 z"
id="text4636"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Times New Roman" />
<path
d="M 761.1824,370.35443 C 764.2454,367.2604 765.3474,363.81953 763.2539,359.81347 C 762.2008,355.36852 761.1839,350.28205 765.078,346.87035 C 770.6818,340.1596 767.0983,336.11016 760.0338,334.7799 C 755.3359,333.22258 750.6486,330.4671 745.9441,329.66492 C 742.3638,332.26731 738.9164,329.1135 735.4235,327.92801 C 733.26,331.175 731.6766,335.50588 726.9636,333.98895 C 722.7727,334.19151 719.1778,330.78779 714.857,332.33565 C 710.6967,332.36439 707.0633,336.48887 703.0219,333.85839 C 698.2101,333.28917 695.8259,331.20463 697.8806,326.34945 C 697.9669,320.88434 701.3863,315.82553 701.2772,310.54062 C 699.6266,305.70329 703.5638,301.11271 704.4971,296.38947 C 707.5394,287.64726 709.8255,278.20963 716.77,271.59759 C 721.4205,266.58686 725.3579,260.78081 728.9995,255.08695 C 730.0667,249.97892 731.6672,244.57945 731.5909,239.48769 C 730.1578,236.0285 726.1496,232.60318 729.5414,229.0805 C 731.9057,225.43569 729.8987,222.05394 727.7455,218.90583 C 725.8044,215.51774 724.0053,210.98453 719.5193,213.84248 C 715.2798,215.97152 712.3062,215.95894 710.8861,210.86771 C 709.6076,207.47259 705.4543,204.80873 704.9205,201.61214 C 708.5468,198.30803 705.8406,195.14047 702.6222,192.90919 C 700.1036,190.21782 695.5042,188.72388 694.3337,185.25668 C 694.4697,180.52206 692.049,176.76424 689.2997,173.13195 C 687.7418,169.90199 688.7126,165.77107 686.8904,162.35543 C 685.0807,157.19604 678.9744,153.37755 680.3702,147.23704 C 680.7928,143.44579 681.1921,139.7468 678.9995,136.36034 C 676.5554,129.73157 671.0769,124.56021 665.5755,120.44488 C 660.8872,118.19585 657.0728,114.19175 651.532,114.35679 C 647.2317,113.30818 642.8575,113.10669 638.4488,113.27061 C 634.3241,109.4221 629.2479,105.78896 623.2966,106.70461 C 618.1136,105.53112 614.9521,101.51886 611.1747,98.11831"
id="path2414"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 750.5758,244.59044 C 749.0606,243.24357 747.5453,241.8967 746.0301,240.54983 C 745.3567,241.55998 744.6832,242.57013 744.0098,243.58028 C 742.6629,243.74864 741.316,243.917 739.9692,244.08536 C 738.4539,243.07521 736.9387,242.06505 735.4235,241.0549 C 734.0766,241.0549 732.7298,241.0549 731.3829,241.0549"
id="path2417"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 653.6011,269.84424 C 653.0935,267.64827 650.4739,265.38403 651.6358,263.24218 C 653.4353,259.86872 655.1969,256.47279 657.1367,253.17673 C 658.0616,249.66236 655.8711,244.35856 659.4636,242.36658 C 663.7151,240.56893 664.532,235.86655 666.2506,232.14799 C 667.8598,230.55682 668.6166,226.6663 670.7427,226.40996 C 672.4991,229.77789 673.3046,223.24518 675.0216,222.32551 C 677.4053,220.46641 680.9015,224.5523 682.5041,220.72323 C 684.797,219.35262 685.4468,216.20331 687.8374,215.31216 C 691.082,214.71494 689.3822,209.87888 692.1812,208.21274 C 692.5408,204.91019 695.2909,203.03321 698.553,203.67926 C 699.1119,200.48265 701.2249,198.3807 703.9351,196.82635 C 704.4981,196.41691 705.061,196.00748 705.624,195.59804"
id="path2421"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 771.2839,216.81125 C 770.8454,215.81909 771.4186,212.32273 769.9265,213.93862 C 768.5411,215.41706 765.1216,216.27967 766.8645,218.70528 C 767.3615,220.72021 769.039,222.85202 767.2433,224.63992 C 766.7425,226.81066 764.6778,226.60264 762.8918,226.9069 C 760.6121,227.66048 758.4043,228.64669 756.1316,229.43815 C 754.4214,228.34872 752.9559,227.06836 753.6404,224.86494 C 753.547,222.9758 754.599,220.95866 753.6583,219.18429 C 752.8825,216.95376 751.0933,215.3069 749.8545,213.34134 C 748.4822,211.97684 747.3718,209.42029 745.1593,209.72987 C 743.1091,209.54744 741.3631,211.14499 739.288,210.75033 C 737.6468,210.99702 735.504,210.04587 734.4519,211.71718 C 733.2829,213.21587 731.7995,214.2233 729.8686,214.35255 C 728.2142,214.84147 726.5233,214.82014 724.8169,214.79094"
id="path2427"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 630.3677,245.60058 C 629.114,243.46983 627.2711,241.45563 626.3845,239.25225 C 626.4568,237.53499 627.6794,235.5657 626.9924,234.01481 C 624.1346,230.31911 621.6498,226.37356 619.256,222.36708 C 617.2594,222.6169 615.5164,222.55736 615.7656,220.06771 C 615.3861,217.16496 614.1402,214.50482 613.1951,211.76048 C 615.3593,206.84417 617.8487,202.076 620.3466,197.33651 C 621.3007,195.06051 621.3538,192.69342 620.984,190.28357 C 620.4296,188.30056 620.9316,186.78483 622.8535,185.89724 C 625.4699,182.70525 629.7194,184.42748 633.2935,183.89447 C 636.7,183.18975 640.2265,182.34898 642.6662,179.70923 C 644.3258,178.23537 646.536,177.1298 646.7244,174.67206 C 647.6599,171.60179 648.9856,168.59108 648.5504,165.31164 C 648.561,163.11554 650.6156,161.50563 651.502,159.56068 C 655.0744,153.68632 659.1819,148.12137 662.7767,142.28428 C 662.9883,140.57517 664.5145,138.58783 663.8262,137.06917 C 662.0364,135.23594 660.5603,133.21273 659.871,130.71295 C 658.9194,128.61777 658.5958,126.03401 656.2504,125.02339 C 654.4214,123.90653 652.92,121.78222 650.5392,122.36198 C 647.7977,122.614 645.1546,121.87205 642.4895,121.35183 C 640.2592,122.59975 638.3866,124.93056 635.6018,124.49938 C 632.9441,124.52313 630.1814,124.98639 627.5878,124.74193 C 624.1023,122.82578 620.8256,120.41396 616.8255,119.7194 C 613.3369,119.14643 610.4305,116.94725 608.3329,114.17724 C 607.7649,113.53831 607.197,112.89938 606.6291,112.26045"
id="path2431"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 676.5821,131.2008 C 681.3999,131.11364 686.3222,131.58066 691.0084,130.30115 C 692.4699,129.67712 693.8753,128.92979 695.2699,128.17036"
id="path2434"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 638.9539,113.14433 L 633.3981,113.77567 L 629.61,113.77567 L 627.3372,115.2909 L 619.0034,115.54344 L 614.9628,116.30105 L 610.9222,116.55359"
id="path2436"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 648.9292,113.90196 C 646.9769,112.23069 644.0809,110.22858 642.742,107.9673 C 645.1251,105.08511 640.1867,104.2816 640.3509,101.59926 C 639.989,100.45354 640.5042,98.67557 639.575,97.93874 C 635.7547,96.0951 631.8727,94.40105 627.8423,93.06755 C 625.817,91.4601 623.8832,89.7642 622.435,87.59895 C 621.5073,86.45641 620.4241,85.38272 620.4894,83.80065 C 620.415,83.35408 620.3405,82.90751 620.2661,82.46094"
id="path2438"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 658.9045,116.5536 C 660.983,114.55118 663.0419,112.53248 664.5133,110.02332 C 665.402,107.66304 665.5793,105.04837 665.4704,102.51887 C 664.7753,99.48803 663.171,96.51325 664.63,93.3043 C 664.6007,91.92967 663.2169,90.83424 662.6177,89.57708 C 661.4133,87.49982 658.8117,86.85372 657.1519,85.18242 C 656.151,84.23453 655.1201,83.37084 653.6549,83.72364 C 652.0028,83.49144 653.787,85.83033 653.7504,86.80692 C 654.6654,88.20611 653.0506,89.10737 652.3662,90.19177 C 651.0191,91.32104 649.1044,91.71453 647.5402,92.56247 C 646.7815,94.10861 646.3059,95.70927 646.5301,97.44469 C 646.9396,99.17831 644.5313,97.9877 643.5325,98.25983 C 642.2589,98.21266 640.9852,98.16548 639.7115,98.11831"
id="path2440"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 658.0206,85.74394 C 658.2271,84.55766 660.0557,82.77562 659.3314,81.65724 C 658.6994,80.45046 658.0191,79.29368 656.6485,78.8506 C 655.5375,77.96459 654.108,78.9226 652.8436,78.92541 C 652.8324,77.59151 653.2749,75.93986 651.434,75.88748 C 649.4229,75.0695 647.1345,74.72066 645.6752,72.96884 C 644.6006,72.15918 643.0163,72.45969 641.7319,72.10688 C 642.9798,69.92841 644.5891,67.89789 645.6129,65.62765 C 645.8727,63.70152 647.0283,61.73631 646.0139,59.86577 C 645.6809,58.8112 644.9691,57.37782 644.6361,56.32325"
id="path2442"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 641.4793,72.10688 C 640.008,72.74043 637.9667,72.51756 637.1407,74.12089 C 636.2421,75.29949 635.8709,76.59988 637.6913,76.9051 C 639.0381,76.73675 640.385,76.56839 641.7319,76.40003 C 641.9411,77.51298 643.8008,79.00032 642.7397,79.82511 C 641.2682,80.6783 640.3495,82.09796 639.273,83.32486 C 637.5102,83.76584 637.6761,84.87948 638.487,86.21806 C 638.8895,87.44537 637.1475,88.38906 636.6445,89.49661 C 635.0935,91.0819 633.8867,93.21538 631.636,93.8507 C 631.4657,93.92637 631.2955,94.00203 631.1252,94.0777"
id="path2444"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 761.461,337.96957 C 764.3182,338.08862 767.1753,338.20767 770.0325,338.32672 C 768.8397,336.89431 767.6338,335.44824 766.1125,334.34901 C 764.6802,333.08536 763.179,331.89265 761.4946,330.98071 C 760.2766,330.15767 758.8956,329.65745 757.5117,329.19582 C 756.4697,328.96969 755.6571,328.39097 755.0519,327.51913 C 754.0011,326.37647 753.0622,325.07482 751.6808,324.30659 C 750.6552,323.62283 749.6295,322.93907 748.6039,322.25531 C 749.8111,324.3544 751.1055,326.40893 752.1422,328.60098 C 750.2187,328.53337 748.357,327.80851 746.414,327.97159 C 745.6841,327.90344 745.7386,328.02903 746.3539,328.33433 C 747.8299,329.21166 749.2325,330.23948 750.7958,330.95314 C 751.9893,331.22469 753.199,331.56064 754.0953,332.44528 C 756.5505,334.28671 759.0058,336.12814 761.461,337.96957 z"
id="path2451"
style="fill:#27aaea;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 719.2611,388.53717 C 716.0438,390.76134 713.0835,393.8959 709.7071,395.55685 C 704.1643,394.8334 698.0755,393.7305 693.1532,397.14123 C 689.1902,399.88763 684.4553,400.58655 679.8651,401.66916 C 676.8537,398.57121 675.8498,392.80801 673.6844,389.26811 C 670.9254,387.71601 668.5163,385.49628 664.9664,386.80917 C 660.9486,387.0641 656.9741,387.46704 653.5682,389.81634 C 649.9322,391.05955 649.8514,394.65657 647.5403,397.62853 C 645.452,399.71243 639.4304,399.92783 638.2823,402.58489 C 637.4105,407.80649 636.0448,413.00223 636.4286,418.33667 C 633.6121,419.44626 630.3106,419.8799 628.8524,422.88235 C 628.8149,419.65143 625.986,418.13259 624.7984,415.52519 C 624.2901,411.77392 622.2198,411.38118 619.3664,413.53256 C 616.9948,415.83691 614.5515,416.05273 612.0248,413.84031 C 609.7724,412.16794 606.5244,410.84946 604.7677,413.88742 C 603.2031,416.55075 599.5163,418.65658 600.963,422.11099 C 602.4528,424.69342 604.7481,426.51453 600.9661,428.54533 C 598.2631,430.2961 600.4142,433.81504 600.1224,436.44412 C 600.4983,442.16655 601.3625,447.94087 601.4414,453.63174 C 598.4186,461.4899 598.9553,470.05209 597.847,478.28893 C 597.1423,485.92323 596.4992,493.56397 595.5174,501.16918 C 592.7607,503.19054 590.5259,505.59651 589.5867,508.9573 C 588.5159,513.69237 588.5724,518.79898 585.5143,522.84898 C 585.1447,523.53524 584.7752,524.2215 584.4057,524.90776"
id="path3425"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 590.4666,527.93822 C 590.9592,524.9729 591.3208,522.03818 588.9985,519.73036 C 587.3334,517.93547 583.4591,518.07949 581.2692,519.28679 C 579.1953,520.59355 574.9778,521.27149 574.1282,522.71144 L 574.3042,522.88744"
id="path3427"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 602.0834,417.07397 C 602.5566,409.04647 601.9743,399.59441 602.8193,391.66867 C 605.4361,387.0893 608.0529,382.50994 610.6697,377.93057 C 609.9337,372.47403 608.3792,366.53804 611.4494,361.51302 C 611.9488,358.36138 615.9885,359.67307 618.2458,358.73767 C 621.1643,358.96513 624.4326,360.11255 626.0296,356.86621 C 628.7758,354.24299 630.7923,350.45099 634.9361,350.06666 C 638.9584,348.55565 643.3323,348.75137 647.5402,348.13107"
id="path3429"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 616.7306,358.73767 C 617.3315,356.37709 618.6705,354.10753 618.7509,351.66662"
id="path3431"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 595.0123,502.17931 C 597.2184,504.29548 599.6306,506.2113 601.6882,508.47315 C 603.1668,510.24746 604.6454,512.02176 606.1239,513.79607 C 608.2454,514.34162 610.5162,514.50032 612.417,515.67733 C 614.1962,516.59255 615.9728,517.54338 617.9326,518.01224 C 619.3839,518.45879 620.8351,518.90536 622.2864,519.35192 C 624.8798,516.79198 627.4705,514.22531 629.7981,511.41654 C 629.9879,511.19957 630.1778,510.98259 630.3677,510.76561"
id="path3437"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 648.5504,396.11331 C 648.8648,395.02637 649.7416,393.36863 650.0656,392.0727 C 650.4284,390.62143 651.4151,389.68416 652.0859,388.7897 C 653.0087,387.5593 653.137,386.37013 654.3588,385.75924 C 655.5783,385.14946 656.4526,384.71232 657.3892,384.24401 C 658.4258,383.72573 660.4725,384.09132 661.1773,383.73894 C 662.2064,383.22438 663.3343,383.23386 664.9654,383.23386 C 666.2709,383.23386 667.4264,383.58048 668.2484,383.99148 C 669.1984,384.46647 669.9578,384.84621 670.7737,385.25417 C 671.6648,385.6997 672.5198,386.12718 673.2991,386.51686 C 674.6505,387.19256 674.4066,387.93475 673.5517,388.7897 C 672.8531,389.48828 670.2078,389.04224 669.2585,389.04224 C 667.2854,389.04224 666.8051,388.03209 665.2179,388.03209 C 663.9595,388.03209 662.476,387.45488 661.1773,387.77955 C 659.7231,388.14309 658.8305,389.35026 657.8943,390.05239 C 656.3533,391.2081 656.1137,390.50952 654.6113,390.81001 C 652.8239,391.16748 652.2983,391.39537 651.5808,392.83031 C 650.7846,394.42274 649.8987,394.42785 648.5504,396.11331 z"
id="path3441"
style="fill:#27aaea;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 475.3092,510.76558 C 472.7679,504.0094 470.4577,497.16984 468.0962,490.34967 C 466.0691,486.2198 463.3552,483.44014 458.6116,483.15993 C 454.8102,480.97971 451.3126,478.1911 447.8304,475.63302 C 442.9574,475.20734 441.1431,470.86646 438.4237,467.52492 C 435.0804,464.20641 434.3216,458.86133 429.9561,456.49212 C 426.6543,455.08345 422.4024,456.62645 420.5698,452.31006 C 418.2243,449.06691 412.5579,445.45581 414.548,441.02965 C 415.8691,437.33189 414.0676,433.29461 414.0299,429.44285 C 413.5798,425.57243 413.1298,421.70202 412.6797,417.8316"
id="path3443"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 462.6823,484.50165 C 466.9511,483.74625 471.0195,483.4249 472.5589,488.21958 C 474.9418,491.78766 477.594,495.33771 481.2596,497.68098 C 483.665,503.15184 490.323,498.60133 494.1702,497.24784 C 495.587,496.60351 497.0286,495.99178 498.5427,495.61333"
id="path3445"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 440.5456,470.56875 C 444.1989,469.02028 448.8207,464.57339 453.072,465.55553 C 456.5817,465.96535 459.3563,469.36678 461.8241,464.95831 C 466.1544,462.42776 471.721,466.69648 476.4647,467.09537 C 481.6476,468.67133 486.7817,465.17357 491.4716,469.34939"
id="path3447"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 413.7824,418.14814 C 414.3776,421.60052 414.2586,423.26719 414.8538,426.71957 C 416.2286,428.09699 417.4123,429.65 418.524,431.24329 C 418.8134,432.44038 417.6313,433.20449 417.164,434.15973 C 416.4343,435.29869 415.7305,436.45395 415.0324,437.61243 C 413.7498,434.74312 412.4753,431.86937 411.1038,429.04101 C 411.1209,425.78311 411.2172,422.49036 410.5504,419.28189 C 410.284,417.21481 412.0377,417.28374 411.8578,415.20746 C 413.133,415.08219 411.8441,416.21998 412.6982,416.8232 C 412.9985,417.20656 413.4778,417.76818 413.7824,418.14814 z"
id="path3463"
style="fill:#27aaea;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 578.2468,391.89816 C 572.0604,386.79849 581.7299,376.93213 572.343,375.39838 C 564.8298,371.86605 569.3496,359.78786 559.026,359.34891 C 554.5568,356.68375 551.9357,351.63229 547.8963,349.03537 C 547.6712,341.1647 542.643,333.88699 546.5718,326.34618 C 542.3127,319.55405 535.2901,313.74279 529.3032,308.83718 C 522.3595,304.00411 514.5004,299.97 506.6885,306.00282 C 504.5495,313.43836 496.2529,314.24123 491.4672,319.57287 C 483.7361,319.89387 477.2298,324.65907 469.2578,323.51762 C 461.9186,324.14363 452.8068,332.85593 446.3723,325.95902 C 442.7287,320.27699 435.4531,312.63259 428.6038,318.32672 C 422.9392,316.87442 419.6956,312.38401 413.8448,315.46957 C 405.2001,312.78612 398.6206,326.63913 390.7037,318.68115 C 387.4548,314.30823 381.7215,309.50173 376.8181,314.75531"
id="path3475"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 548.0681,349.2196 C 548.5416,353.69018 549.1837,358.63044 546.4584,361.432 C 550.6964,366.65886 557.9409,370.27565 554.5689,377.93509 C 557.8967,384.36225 555.5068,390.72854 557.9922,397.25538 C 558.2609,398.56882 558.1094,399.96975 557.5325,401.18387"
id="path3479"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 591.1039,295.11243 C 587.251,290.8058 583.9817,286.04844 580.3896,281.54101 C 577.8425,279.15584 574.9835,276.831 571.3588,277.86579 C 568.0302,278.18818 564.5444,277.85019 561.5643,279.63661 C 557.9032,280.91486 554.6092,283.36924 550.6151,283.4157 C 548.5147,284.37409 547.2882,282.43701 545.8326,281.25899 C 544.3906,278.1338 542.2066,275.1162 538.961,273.68387 C 537.402,272.18171 535.2635,271.06166 535.0325,268.68387 C 534.0516,266.84339 534.5198,265.07703 535.4578,263.3347 C 535.9272,261.70685 535.3564,259.25996 533.35,259.00753 C 531.2506,258.66215 530.4779,256.36454 532.6228,255.37926 C 534.8272,253.45062 531.3855,252.3693 530.2961,254.32525 C 529.0462,255.93425 526.0626,256.47474 527.8546,253.78891 C 528.8263,251.91585 529.3637,250.21164 526.8296,249.60874 C 525.4366,249.62278 525.8836,253.5388 523.5136,252.82942 C 521.5237,253.3846 522.7384,249.91892 522.1753,248.68387 C 519.9109,248.90373 517.6085,248.8425 515.3895,249.39815 C 512.8379,248.76479 514.3162,246.19499 514.0136,245.1505 C 512.3112,244.81665 510.1855,246.59352 508.9347,245.70463 C 506.8389,243.57257 505.7465,240.54025 503.0681,239.04101 C 506.0734,235.762 502.6224,236.44611 501.3783,235.8135 C 503.5209,233.73633 500.8643,230.67948 498.2467,231.54101 C 496.0909,232.80906 491.8968,230.2704 496.2126,230.23521 C 498.7739,231.09292 499.6601,226.478 498.1244,225.52976 C 496.0091,225.75226 494.2645,227.36169 493.1621,229.02032 C 491.4674,228.98768 494.2296,223.03256 491.2043,221.88699 C 489.6905,221.52495 489.8962,228.66467 488.5369,225.42494 C 490.0261,223.3484 488.9896,219.31291 486.2782,219.60515 C 483.7809,219.35601 485.1367,222.68973 483.1707,223.36603 C 481.681,224.44718 479.843,222.32833 478.3325,221.80691 C 478.0658,221.65876 477.7991,221.5106 477.5324,221.36244"
id="path3485"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 950.014,11.23064 C 953.849,12.94098 954.4724,7.8444 958.0497,9.2664 C 960.6094,10.59607 962.1292,8.6954 963.3063,7.4806 C 965.0671,7.5335 967.4784,7.7379 967.7162,5.4367 C 968.142,3.8063 970.4362,2.0138 971.1028,4.5011 C 971.9227,6.4679 974.1554,6.261 975.6623,5.6134 C 977.5632,6.3785 979.8938,6.9586 981.4441,5.2177 C 986.6446,1.1322 993.7436,1.7141 999.8159,2.9503 C 1003.2492,4.2798 1006.9307,4.9205 1010.3209,6.2474 C 1013.5781,8.2612 1014.2667,12.80438 1017.628,14.90843 C 1018.8008,18.24774 1020.6545,21.4946 1021.0854,25.00838 C 1021.0854,25.23723 1021.0854,25.46608 1021.0854,25.69493"
id="path3489"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 561.461,300.29101 C 561.8687,298.4061 563.3919,296.46712 561.9857,294.67012 C 561.0428,292.47747 558.9325,290.81332 559.1922,288.2122 C 558.3321,286.74376 556.2769,285.93242 555.0968,284.54377 C 554.4622,283.80394 553.5669,283.54018 552.711,283.14816"
id="path3491"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 700.0325,502.61242 C 702.9803,499.60023 706.4215,496.9437 707.7968,492.79807 C 708.9175,490.45921 711.4092,487.62848 707.3668,487.14197 C 704.2873,486.43012 702.8603,484.86299 704.3394,481.79184 C 705.0556,479.48848 704.9039,476.4809 706.1298,474.59115 C 708.3093,473.47012 711.3215,473.23215 711.865,470.37602 C 713.3104,468.5118 713.6708,464.61994 715.8595,464.14439 C 718.4509,464.45364 721.1351,465.30518 723.3559,463.45074 C 725.5346,461.75783 728.0254,461.81529 730.6029,462.35835 C 733.5603,463.68151 734.2149,460.06282 735.7467,458.32672 C 737.6475,456.49036 739.2224,454.05522 742.1705,454.14408 C 746.046,453.28767 749.9066,452.08599 753.8668,453.18101 C 756.311,453.39434 757.6778,456.31305 760.4248,455.71231 C 763.0516,453.4021 764.1273,454.27139 766.7382,455.45978 C 769.416,455.30664 772.6,456.67518 774.4818,454.12897 C 776.7399,452.25981 778.5933,456.20862 780.4743,457.19873 C 782.8778,459.43029 784.532,457.07652 786.7018,459.81773 C 790.0993,461.57507 794.2427,462.07632 797.0428,464.80368 C 800.106,465.07685 801.2881,463.84948 801.7983,461.07974 C 802.724,457.51772 805.6196,459.72871 808.1351,459.36951 C 810.9974,460.17099 812.3854,457.03802 814.8453,457.77826 C 821.0525,458.73289 827.415,460.77157 833.6821,459.70875 C 839.4674,457.09825 845.9424,456.80596 852.0074,455.22534 C 854.2222,455.40385 856.4853,455.22685 858.6621,455.71231"
id="path3497"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 809.6697,506.97756 C 810.6474,504.01721 810.9689,500.66317 813.7949,498.81181 C 816.764,496.32332 818.9487,493.24974 820.5297,489.72574 C 821.5823,487.20438 822.4393,484.22723 822.6153,481.60355 C 821.1358,479.32758 820.4085,476.89377 820.9687,474.18978 C 820.8901,471.7839 824.5739,471.30295 826.4067,470.50868 C 829.7775,470.43625 832.7685,468.53975 836.1862,469.09683 C 839.4576,466.02113 843.1979,463.25454 847.8403,462.93503 C 849.6636,462.91351 854.0167,463.10297 856.6418,463.28845"
id="path3499"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 834.4184,468.8443 C 835.0077,470.69625 835.5969,472.5482 836.1862,474.40015 C 836.9438,474.9894 837.7015,475.57865 838.4591,476.16791 C 840.0096,476.26675 841.5673,476.31519 843.1134,476.44552 C 844.1715,476.6897 845.2296,476.93388 846.2878,477.17807 C 847.2137,478.35658 848.1397,479.53508 849.0657,480.71359 C 850.3565,481.05848 851.6267,481.49459 852.9312,481.77875 C 854.3364,482.01295 855.7417,482.24715 857.1469,482.48135"
id="path3501"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 835.9337,469.09683 C 841.1077,471.52876 846.0885,474.5313 851.9121,475.01536 C 853.9023,475.31234 855.8971,475.52456 857.9045,475.66284"
id="path3503"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 825.5796,459.50038 C 827.5946,462.105 830.6024,466.25318 830.6304,469.72818"
id="path3505"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 840.4794,457.48007 C 841.8191,454.45981 844.1408,452.29115 846.7928,450.40903 C 851.1723,450.80894 855.0491,450.92925 859.4197,451.41918"
id="path3507"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 825.8321,447.88364 C 832.5476,448.80838 837.3217,449.85907 844.1412,449.39885 C 844.3937,449.65139 846.5403,450.40902 846.7928,450.66156"
id="path3509"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 801.336,446.36841 C 801.064,449.19342 800.9693,451.88907 804.5112,451.93016 C 807.4097,452.17666 808.9034,454.38268 810.3741,456.62075 C 810.8969,457.32809 811.4197,458.03543 811.9426,458.74277"
id="path3511"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 753.6062,413.28592 C 755.8976,416.28369 758.5629,419.31042 759.8952,422.7933 C 759.2476,425.49979 759.8833,427.77846 762.0898,429.53355 C 763.4843,431.89171 762.2631,434.44736 760.4108,436.2092 C 759.7854,439.55862 759.888,444.44915 763.4825,446.14366 C 765.8511,447.22583 769.2792,447.29985 769.8159,450.40197 C 770.2584,452.87366 773.9191,452.71072 775.7034,453.69202"
id="path3513"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 749.9444,452.42933 C 747.3987,448.49323 741.4496,447.6458 739.7372,443.02405 C 738.1687,440.89776 736.8827,438.65354 736.4336,436.01434 C 733.2523,434.92045 734.5176,431.97105 733.0248,429.80257 C 730.6706,426.75059 730.4666,422.69125 729.8677,419.01844 C 729.8677,418.53865 730.0462,416.45172 730.0462,415.97193"
id="path3515"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 734.6659,458.9953 C 728.6295,456.22665 724.6263,449.82141 716.7271,450.42979 C 708.0566,452.25719 706.6702,444.41731 706.215,437.69207 C 700.9941,432.30091 699.7966,419.18573 689.9501,422.41992 C 684.4072,422.92482 679.1271,423.0874 675.3194,418.33667"
id="path3517"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 678.6024,472.12729 C 681.4215,473.20833 684.1859,474.41895 686.9362,475.66284 C 690.0997,474.40024 687.7389,470.71827 690.2502,469.30839 C 693.382,466.9725 696.5905,464.36599 697.3533,460.31099 C 698.1859,457.92163 698.3609,455.11864 699.3834,452.92659 C 701.4739,450.87013 703.9206,449.36973 706.9625,449.6514 C 707.7791,449.6514 709.2269,449.14632 710.0434,449.14632"
id="path3519"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 856.1368,510.00801 C 856.2292,508.97858 856.2954,507.94481 856.4041,506.91808 C 856.747,505.57329 857.0652,504.22017 857.4235,502.88059 C 857.668,502.31012 857.9125,501.73965 858.157,501.16918 C 859.9248,500.15903 861.6926,499.14887 863.4603,498.13872"
id="path3557"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 263.6822,757.24286 C 260.0479,755.91593 256.593,753.9657 252.6849,753.59038 C 249.7935,753.37895 247.5441,751.35027 244.9944,750.17175 C 243.8159,748.99324 242.6374,747.81474 241.4589,746.63623 C 240.1575,746.94039 238.7781,748.30692 237.5285,747.9085 C 235.4714,746.64263 233.4144,745.37677 231.3573,744.1109 C 225.5877,745.3112 219.8056,746.44711 213.9599,747.19752 C 208.8596,748.46648 203.7339,749.77239 198.5688,750.67688 C 195.7037,750.71913 192.7922,750.38464 190.0479,751.40778 C 185.9988,752.37899 181.9566,753.52764 177.8607,754.2124 C 174.5041,754.29318 171.1054,754.05286 167.7748,754.33186 C 164.3388,755.33917 160.7138,755.84749 157.6162,757.74792 C 156.4483,760.66082 155.0481,763.44593 153.1527,765.95844 C 152.6202,766.75715 152.0877,767.55585 151.5553,768.35455"
id="path3561"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 685.926,906.74539 C 688.9606,904.19565 691.0893,900.87565 692.9938,897.45268 C 697.0261,895.80343 702.7717,896.54786 707.262,897.51183 C 710.8699,897.06814 711.3292,891.71139 713.664,889.29376 C 716.6256,885.00155 721.2534,882.12114 724.4552,877.96503 C 728.0264,875.15919 726.7851,868.08653 730.8711,866.60111 C 735.8416,865.82288 740.8536,864.18163 745.8836,865.47798 C 749.4789,864.74396 748.4603,868.04951 748.5555,870.37994 C 753.2438,870.49774 756.7156,868.67752 758.5939,864.31901 C 760.4098,859.06504 766.9853,862.0104 770.2899,858.27242 C 773.8238,855.0929 775.4656,849.95181 776.8923,845.44723 C 777.2115,844.33003 777.5307,843.21284 777.8499,842.09564"
id="path3564"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 754.1396,413.50529 C 754.9152,412.61006 755.3896,411.68609 755.3896,410.11243 C 755.3896,409.01091 755.3585,407.73697 755.5682,406.89814 C 755.8007,405.96817 756.5791,405.35442 756.8182,404.39814 C 757.0563,403.44572 757.9192,402.95475 758.6039,402.61243 C 759.0069,402.41091 760.6323,401.00529 758.961,401.00529 C 757.8929,401.00529 757.1007,401.93544 756.461,402.25529 C 755.3599,402.80586 754.5087,402.76701 753.961,403.86243 C 753.4939,404.7966 753.2467,404.81006 753.2467,406.36243 C 753.2467,407.91065 753.0356,408.03475 752.5325,409.041 C 752.1454,409.81509 751.7566,410.51576 751.1039,411.00529 C 750.2527,411.64366 749.4372,412.05291 748.4253,412.25529 C 747.4047,412.4594 748.2617,413.83244 747.8896,414.57672 C 747.3704,415.61504 746.461,414.90324 746.461,416.00529 C 746.461,416.4557 746.1039,417.72187 746.1039,418.68386 C 746.1039,419.80503 746.7615,419.87292 747.3539,419.57671 C 748.068,419.21963 748.7328,417.5332 748.961,417.07671 C 749.5465,415.90574 749.7554,415.3277 750.0325,414.21957 C 750.2081,413.51703 751.4431,413.14814 752.1753,413.14814 C 753.1496,413.14814 752.7325,413.7867 754.1396,413.50529 z"
id="path3569"
style="fill:#27aaea;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 729.6753,417.43387 C 728.7262,416.64539 727.9116,415.4806 726.8182,414.93387 C 725.914,414.4818 725.0559,413.195 724.6753,412.43387 C 724.5083,412.09988 726.4054,413.10643 726.461,413.14815 C 727.0745,413.60827 727.532,413.86244 728.4253,413.86244 C 728.6863,413.86244 729.9715,411.96326 730.0325,411.71958 C 730.1637,411.19478 731.5524,410.52637 731.9967,409.93387 C 732.622,409.10013 733.2844,408.23252 733.6039,407.43387 C 733.9616,406.5395 733.7962,405.44201 734.1396,404.75529 C 734.7015,403.63139 735.2875,403.46707 736.2825,402.96958 C 737.1974,402.5121 737.4464,402.21227 738.2467,402.61244 C 739.57,403.27409 737.5977,404.11399 737.1753,404.21958 C 736.2854,404.44207 735.7217,405.34117 735.3896,406.00529 C 735.078,406.62845 735.3896,408.32644 735.3896,409.04101 C 735.3896,410.4039 735.4342,410.97187 734.6753,411.54101 C 733.8203,412.18226 733.2292,412.62562 732.5325,413.14815 C 731.6101,413.8399 731.2058,414.01566 730.7467,414.93387 C 730.035,416.35736 731.692,416.42552 729.6753,417.43387 z"
id="path3571"
style="fill:#27aaea;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 786.8182,521.89809 C 789.1297,522.41753 791.3592,523.57327 793.7332,523.64553 C 796.0711,523.53924 798.4089,523.43299 800.7467,523.32671 C 802.4166,521.39229 805.1815,521.94164 807.4371,521.88368 C 809.3356,522.34491 811.0499,521.44237 812.468,520.26391 C 813.8985,518.77393 815.8418,519.05571 817.7094,519.17272 C 821.0037,519.26395 824.3123,519.33284 827.5325,520.11242 C 828.2415,522.29857 827.7701,525.07969 829.4744,526.7642 C 831.3385,528.36501 832.4933,531.23392 835.2557,531.22848 C 837.3241,531.90053 839.2882,532.09678 840.8137,530.291 C 843.2459,529.44588 842.8939,526.56294 841.2389,525.05025 C 839.1701,522.09481 837.1013,519.13934 835.0325,516.18389"
id="path3573"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 861.8182,543.32674 C 862.5554,545.90358 865.3326,548.32812 864.1796,551.04475 C 862.5745,556.1802 862.5953,561.61198 861.8182,566.89812 C 860.2359,569.10886 855.7072,570.39081 856.4606,573.33557 C 857.1517,576.6997 857.6788,580.25925 860.6643,582.42196 C 863.8725,584.88808 864.9246,588.83806 865.8893,592.147 C 869.4765,592.70691 871.6901,597.13913 871.2831,599.96115 C 867.6024,602.17541 866.9565,605.95198 866.9922,609.89647 C 867.2321,613.22055 863.0578,614.11964 861.1262,616.25082 L 860.7467,616.541"
id="path3575"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 861.8182,584.39809 C 863.6038,581.08727 866.6594,578.47302 870.4347,577.85402 C 871.1401,577.67729 871.8468,577.49963 872.5325,577.2553"
id="path3577"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 878.961,579.04097 C 880.9045,581.26934 883.1825,583.16549 886.0331,584.09415 C 889.588,584.52364 892.5501,589.9928 895.971,587.63768 C 899.0421,587.46217 902.8887,589.17157 905.5921,590.81425 C 907.173,593.53747 910.815,597.46782 914.0886,595.17335 C 917.9225,593.01039 921.0331,589.82111 924.4127,587.04247 C 925.994,584.47318 926.9204,581.43167 928.2467,578.68389"
id="path3579"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 921.1039,622.25533 C 924.8872,624.38939 922.2993,629.97445 927.2238,631.52029 C 931.0561,635.39718 936.4366,638.38822 937.795,644.0097 C 939.9367,647.1911 944.4124,648.0383 947.3024,650.54973 C 950.9265,653.02559 955.549,653.09027 959.6822,654.21089 C 965.3235,655.06455 971.0003,655.98098 976.6966,656.21054 C 980.0063,654.38011 981.2948,649.9501 979.5612,646.49471 C 985.035,646.01183 990.2102,643.99244 993.5907,639.43123 C 996.9718,635.73484 1001.3453,633.1559 1004.6754,629.39812"
id="path3581"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1029.6753,678.68392 C 1027.1095,675.81526 1024.5747,672.76839 1020.829,671.42251 C 1016.0114,669.04824 1012.2196,665.07669 1007.2027,663.04795 C 1002.9684,661.05404 998.3723,657.54539 993.8028,660.67949 C 990.5981,660.83811 987.0296,661.30587 983.961,660.11242"
id="path3583"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1694.3181,1209.7553 C 1691.8595,1202.2796 1692.2224,1192.486 1685.5699,1187.3287 C 1676.9411,1181.3342 1683.6367,1168.4527 1681.3563,1159.5027 C 1678.9093,1150.5589 1681.5651,1142.2104 1685.4568,1134.1204 C 1689.3878,1126.7173 1689.3402,1118.2851 1689.0487,1110.118 C 1688.2282,1098.5189 1683.4603,1087.0736 1675.6805,1078.4419 C 1667.0385,1073.1126 1670.6312,1063.9529 1674.0286,1056.6732 C 1672.2492,1048.4173 1668.7948,1039.7996 1665.3205,1032.1309 C 1659.0219,1026.2881 1661.319,1017.194 1658.6039,1009.7553"
id="path3597"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1679.6754,1083.148 C 1679.4206,1074.7104 1674.4452,1064.2422 1681.3323,1057.379 C 1688.8393,1049.9676 1695.451,1041.7039 1702.3085,1033.6463 C 1706.5491,1027.7485 1708.3765,1021.6199 1712.1753,1015.4696"
id="path3599"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1674.8538,1077.7911 C 1667.4502,1079.3204 1660.3337,1074.3574 1657.3974,1067.7388 C 1656.1827,1060.1674 1651.5418,1055.1064 1644.9549,1051.8869 C 1639.6297,1043.4416 1629.2513,1045.2842 1621.5059,1041.4429 C 1619.4095,1039.8744 1618.2477,1037.309 1615.9253,1036.0053"
id="path3601"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1652.5326,1055.8268 C 1651.4354,1046.6865 1645.0565,1037.1707 1635.7047,1035.6195 C 1634.6397,1030.7744 1630.9924,1025.729 1626.1321,1023.2421"
id="path3603"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1660.3896,1072.2553 C 1659.1425,1063.9161 1662.7782,1053.457 1656.9588,1046.7542 C 1655.0086,1039.3061 1653.6698,1031.3663 1650.8772,1023.6774 C 1647.5029,1015.096 1640.4123,1031.4262 1635.1217,1023.0589 L 1634.1396,1021.8981"
id="path3605"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1650.3896,1021.3624 C 1652.7793,1018.6045 1656.2881,1015.303 1653.9611,1011.3624"
id="path3607"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1670.3898,1067.4339 C 1660.79,1064.7459 1669.5273,1055.3665 1666.4457,1049.1849 C 1664.9381,1042.856 1665.2846,1038.6323 1671.2771,1035.0446 C 1675.627,1031.3349 1675.1427,1024.281 1681.9035,1024.0074 C 1683.3125,1017.4903 1686.5732,1011.9881 1688.4253,1005.6481"
id="path3609"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1673.0681,1051.3623 C 1677.1296,1044.2064 1680.5093,1035.5774 1688.7115,1032.2628 C 1696.1726,1027.5084 1696.7588,1019.3211 1700.5681,1012.0767"
id="path3611"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1698.2467,1017.7909 C 1693.7421,1022.7227 1685.3413,1020.4295 1687.5778,1013.5399 L 1687.198,1012.1833 L 1686.8181,1010.8267"
id="path3613"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1314.241,322.62472 C 1320.2257,311.75131 1325.3221,326.33969 1333.1813,327.17041 C 1345.0588,330.75423 1347.6262,346.40063 1357.3576,353.70159 C 1360.0688,362.40705 1368.5163,380.92852 1375.3553,376.16281 C 1377.3722,380.32126 1386.1458,386.51146 1389.7499,381.97118"
id="path3635"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1395.0533,379.19327 C 1389.1994,372.3578 1394.8846,364.74835 1389.0812,357.80612 C 1385.4541,347.66 1385.8209,337.37998 1387.7295,326.91788 C 1382.347,314.95082 1374.2436,304.54136 1364.2267,296.21404 C 1354.8322,289.2886 1346.4153,280.34138 1340.7575,269.84424 C 1337.8367,265.89948 1334.5457,262.25446 1331.4135,258.48004"
id="path3637"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1449.6014,369.60115 C 1422.821,363.76399 1427.0509,381.49378 1413.301,381.95081 C 1425.4721,385.34125 1443.1249,376.12452 1453.4626,381.07539"
id="path3639"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1276.8653,378.94073 C 1263.8998,385.80904 1260.4465,403.24361 1268.7841,415.30621 C 1262.7978,422.73229 1266.07,431.08738 1269.273,438.93925 C 1273.2155,447.84638 1272.6033,458.16854 1280.9059,464.80369 C 1285.8332,470.36387 1289.786,475.53586 1294.543,481.21867"
id="path3641"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 930.3829,378.43564 C 939.3787,375.80894 948.1163,376.71514 956.6469,380.45596 C 968.4585,378.5276 976.6013,393.55586 988.5478,387.55947 C 995.5069,391.9007 1004.2624,389.32257 1011.2341,391.49002 C 1016.7405,397.08753 1022.6027,401.34672 1028.6901,405.37726 C 1036.8229,406.68233 1041.0998,412.25058 1049.076,412.78082 C 1062.0455,411.05504 1071.8143,421.2769 1084.4312,421.87221"
id="path3644"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1004.6292,490.56258 C 994.8423,483.40241 988.0843,473.48 979.4385,465.30876 C 986.168,463.61017 994.4114,452.11644 1002.1924,447.81543 C 1013.442,439.17197 1020.4909,439.67074 1034.4287,444.09556 C 1045.7272,450.68511 1053.6129,441.72663 1065.7434,444.09555 C 1078.6176,439.9978 1083.9654,460.73176 1096.2735,449.48223 C 1104.4596,445.41658 1113.1465,444.75175 1115.2409,455.20724 C 1124.0565,461.07412 1133.837,458.45049 1138.9795,449.14632"
id="path3646"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1104.6343,508.74532 C 1096.7657,499.08214 1108.6912,493.93253 1109.9449,489.06181 C 1102.2696,477.80101 1085.0689,474.37177 1098.6444,457.92202 C 1099.6041,454.9003 1099.6502,450.71902 1100.7723,447.7484"
id="path3648"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1177.8704,515.8164 C 1187.1335,520.18486 1196.3945,512.79534 1187.4668,504.7047 C 1173.91,502.84766 1174.5763,486.75082 1166.215,478.79066 C 1165.4707,471.72023 1166.7018,462.96681 1160.8873,456.75427 C 1159.9823,455.3968 1159.7087,454.67068 1158.8037,453.3132"
id="path3650"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 981.9007,416.31637 C 990.6284,415.10722 994.9502,423.88625 1002.0686,427.39279 C 1006.1683,431.8076 1011.8457,435.8481 1014.7613,441.27432"
id="path3652"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1128.878,318.33157 C 1118.7511,321.64094 1120.554,330.52145 1117.2192,338.34506 C 1115.466,345.29299 1110.79,352.69995 1116.7561,359.74783 C 1119.6569,366.03257 1122.6511,375.64178 1119.6852,382.07295 C 1115.5776,389.88559 1120.0266,398.59399 1122.817,406.21484 C 1115.305,413.99202 1127.1296,421.20253 1129.2121,428.88237 C 1131.0178,431.30031 1131.0105,435.57317 1131.5512,438.45307"
id="path3660"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1120.0824,381.31817 C 1129.5254,385.19117 1140.2763,386.80363 1147.4568,385.07952 C 1156.8341,377.1572 1167.1003,386.99182 1176.3551,381.97119 C 1183.0317,387.71809 1190.8087,386.00796 1197.2132,385.67244 C 1202.1434,386.41097 1219.8713,391.81755 1227.336,383.17091 C 1237.0847,378.54991 1239.9603,368.19053 1239.9947,358.2326"
id="path3662"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1117.8529,363.84972 C 1117.4171,350.21169 1130.2033,347.82292 1140.4947,343.58538"
id="path3664"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1044.7393,317.94904 C 1040.7961,308.52536 1036.2578,296.96426 1030.3881,288.53207 C 1033.7814,278.46607 1031.2662,265.4267 1040.4897,258.22751"
id="path3666"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1012.7104,336.00925 C 1021.6127,331.60332 1023.3871,321.33654 1031.9033,316.81634"
id="path3668"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 805.0325,352.25531 C 808.6737,350.86887 812.2418,349.31356 815.7467,347.61243 C 819.2464,348.2154 822.7391,349.11945 826.3173,348.50948 C 830.3297,348.34247 833.472,345.4372 837.0191,343.875 C 839.237,343.03698 840.926,341.50256 842.442,339.74097 C 844.8438,337.23681 847.2398,334.70862 849.6753,332.2553 C 851.7256,328.30507 847.3011,324.42956 846.8182,320.44726 C 846.624,316.68513 849.5052,312.75512 851.1916,309.31288 C 853.8662,305.26232 857.9283,302.98087 862.711,302.61244 C 864.9216,301.97224 867.1165,301.26055 869.4183,301.78865 C 871.0971,301.85062 872.8823,302.31262 874.496,302.12979 C 876.6204,300.74359 878.58,299.02176 880.8056,297.84155 C 882.7783,297.1072 885.0938,296.99094 886.5128,295.25806 C 887.7733,294.04121 889.3783,293.02083 890.4285,291.68402 C 890.6536,290.44587 890.8787,289.20772 891.1039,287.96957"
id="path3685"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1340.3896,556.18392 C 1342.2374,556.67137 1344.8795,555.68122 1346.0593,557.41155 C 1347.5605,559.07317 1348.4484,561.61544 1350.9745,561.7967 C 1357.933,563.94913 1364.5741,566.99155 1371.5252,569.17304 C 1374.2349,569.51367 1374.3424,572.82284 1375.7319,574.70073 C 1377.2645,577.69604 1379.0467,580.57906 1379.8597,583.87965 C 1379.4677,585.50495 1375.3674,584.51356 1374.9989,587.14517 C 1374.2028,589.8284 1369.5507,588.95483 1370.7529,592.37975 C 1370.9617,595.31891 1370.0994,598.52357 1371.6375,601.20669 C 1372.6602,603.46518 1371.981,606.00801 1372.1753,608.40102 C 1371.329,610.97438 1368.6847,611.50091 1367.1753,613.86245"
id="path3688"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1372.8896,569.57674 C 1374.4444,566.92285 1374.3417,563.99164 1373.8176,561.07115 C 1373.7463,560.39443 1373.6751,559.71772 1373.6039,559.041"
id="path3690"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1321.5646,759.76822 L 1324.3425,758.75807 L 1325.8577,760.52583 L 1328.6356,757.74792 L 1329.8983,759.51568 L 1332.9288,759.76822 L 1334.1915,756.48522 L 1333.1813,752.69715 C 1333.1813,752.69715 1334.6965,748.90908 1333.4339,748.90908 C 1332.1712,748.90908 1329.6458,749.91923 1328.3831,750.17177 C 1327.1204,750.42431 1320.3019,748.90908 1320.3019,748.90908 L 1319.2917,744.86847 L 1317.2714,742.34309 L 1315.7562,737.7974 L 1316.0087,734.51441 L 1312.4732,731.73649 L 1312.4732,728.20095 L 1307.675,728.20095 L 1302.6242,729.46364 L 1296.3107,726.43319 L 1291.5125,725.92811 L 1288.4821,724.91796 L 1285.1991,721.8875 L 1282.4211,717.84689 L 1279.3907,714.81643 L 1274.845,715.57405 L 1272.3196,717.34181 L 1270.8044,719.36212 L 1268.279,721.38242 L 1262.7232,726.43319 C 1262.7232,726.43319 1263.7333,726.93826 1265.2486,726.93826 C 1266.7638,726.93826 1269.2892,725.1705 1269.2892,725.1705 L 1271.3095,725.67557 C 1271.3095,725.67557 1272.5722,726.43319 1274.5925,727.1908 C 1276.6128,727.94842 1278.128,727.94842 1279.8958,728.45349 C 1281.6635,728.95857 1282.9262,729.96872 1284.1889,730.97887 C 1285.4516,731.98903 1286.4618,732.24156 1287.2194,733.25172 C 1287.977,734.26187 1289.2397,736.28217 1289.2397,736.28217 L 1290.7549,736.53471 L 1292.2701,736.02964 L 1294.0379,738.04994 C 1294.0379,738.04994 1294.0379,739.31263 1295.3006,740.32278 C 1296.5633,741.33294 1297.5734,742.09055 1298.5836,742.34309 C 1299.5937,742.59563 1300.6039,742.84817 1302.6242,743.1007 C 1304.6445,743.35324 1306.9173,742.34309 1306.9173,742.34309 L 1310.7054,743.1007 L 1313.9884,746.63624 C 1313.9884,746.63624 1314.241,748.15147 1314.9986,749.16162 C 1315.7562,750.17177 1318.029,752.19208 1319.0392,753.45477 C 1320.0493,754.71746 1323.5849,757.74792 1323.5849,757.74792 L 1321.5646,759.76822 z"
id="path4665"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 491.4716,559.25292 C 494.6749,556.20941 494.3831,551.16948 498.6209,551.47767 C 498.3652,547.07907 502.3643,544.4508 501.661,539.86205 C 501.4972,535.4851 505.1711,532.53593 507.129,528.94835 C 508.3401,534.17697 514.2627,533.5289 517.4428,530.43717 C 520.9832,530.99636 524.9771,532.72442 528.9729,530.43218 C 531.9074,529.03898 533.9519,532.88107 536.4234,533.99913"
id="path2415"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 431.3675,536.52452 C 427.5014,531.79391 424.3617,525.39788 427.2722,519.43085 C 428.3965,515.16694 429.8626,510.52286 426.2904,507.01772 C 425.407,502.70264 424.2332,498.78561 420.1158,496.33881 C 417.0507,493.61131 413.2995,490.37551 408.9914,492.27161 C 404.6432,494.25756 401.0234,491.61023 397.6102,489.10252 C 392.6767,490.33658 388.7044,493.91988 383.8904,495.61333 C 384.483,501.16047 378.9844,501.40565 374.7918,501.16918 C 372.9719,501.45078 372.1236,499.00658 370.7584,498.13872"
id="path2418"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 268.2279,505.71486 C 272.9083,506.23198 277.3903,506.98444 277.8389,512.52057 C 279.5171,516.55561 280.8986,521.64584 286.3197,519.85698 C 289.8869,515.45106 293.0793,518.36085 296.6289,521.57856 C 303.3565,524.05034 312.1497,525.20475 315.2127,532.72036 C 318.2952,536.77719 322.0903,540.246 327.2742,541.17222 C 332.4834,542.8272 335.5001,548.28573 341.1404,549.31122 C 346.8525,553.24805 350.2523,560.07281 356.6163,563.29357 C 361.772,573.9836 371.0105,581.89473 378.3345,591.07274 C 385.4566,594.85008 390.6336,600.96449 395.5071,607.23516 C 400.369,610.19922 404.551,615.07538 410.7523,614.27191 C 414.6348,614.40383 418.7474,607.94508 421.7589,611.26358 C 423.5046,614.8835 422.0477,618.0164 428.371,618.20189 C 431.7407,621.10302 433.4434,625.17505 429.3472,628.44841 C 424.9911,630.95142 424.9133,635.09617 425.679,639.56459 C 425.0687,642.59195 427.6651,643.62845 429.3472,645.62096"
id="path2420"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 323.7863,658.24791 C 320.8886,663.36049 318.3396,668.65519 315.7051,673.90526 C 317.1105,677.75222 319.4742,681.24318 321.3314,684.71179 C 323.2175,688.92118 319.068,693.07703 320.4339,696.86229 C 322.9455,700.3334 323.1212,705.69448 328.0938,706.61612 C 337.3142,711.02182 347.9584,709.56983 357.7792,710.00761 C 361.2557,709.10566 366.7788,704.47885 368.795,709.59846 C 370.943,712.22127 373.2236,719.14625 376.8851,717.42977 C 379.778,714.71297 384.2526,711.62376 387.477,715.58358 C 388.1334,716.0013 388.7898,716.41901 389.4462,716.83673"
id="path2422"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 333.3827,751.18194 C 339.1344,754.59006 341.7524,761.04123 344.4944,766.83929 C 349.6236,769.76691 351.036,763.15015 355.13,763.55992 C 359.3187,764.55314 362.8534,764.24986 366.7178,762.29364"
id="path3397"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 98.5223,760.52581 C 99.6608,755.45438 103.4502,748.68506 101.571,743.62406 C 98.3744,740.79937 94.3163,737.22145 96.6842,732.56693 C 98.3967,728.77413 99.2571,724.81463 99.2921,720.747 C 101.0405,716.09722 103.6159,710.69523 108.4423,708.91336 C 111.7333,703.79433 114.7368,698.46772 119.2304,694.10834 C 120.586,690.06631 120.957,684.80635 126.5451,686.00001 C 130.9905,687.14601 133.889,681.6592 137.8837,683.05891 C 143.45,684.19392 148.7019,687.87126 154.4622,685.62679 C 156.0911,687.41241 159.9303,693.95901 162.9469,689.46522 C 164.7733,684.42875 169.3639,686.87188 173.2904,687.37676 C 178.4771,688.11222 183.6324,688.08173 188.4259,690.57275 C 191.1584,686.37046 196.1356,688.54229 199.5461,686.61615 C 203.8895,683.00966 208.1581,677.86741 213.3141,676.1673 C 218.9232,676.87843 219.117,683.48879 220.7126,687.54307 C 225.2182,692.24677 229.6513,697.29722 234.0259,701.91598 C 237.6175,703.41961 242.6633,705.41674 245.6806,702.53556 C 245.4774,696.42949 249.5671,698.13352 253.7715,699.10667 L 254.0858,699.15906"
id="path3399"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 47.5096,675.42046 C 51.2746,673.36915 56.2986,672.41266 59.3106,669.70645 C 60.8121,665.94623 60.1156,659.84405 65.6935,660.42745 C 70.5853,660.66249 72.9573,657.41776 74.6973,653.30043 C 75.821,648.41359 80.9881,648.97397 84.8452,647.76954 C 90.3633,639.88627 94.8251,647.13762 102.8154,646.12605 C 108.2755,646.9071 112.172,640.29823 117.7797,642.54156 C 127.0813,643.05093 136.3727,646.23059 145.5796,644.76172 C 148.9551,641.19402 153.3403,642.50771 157.1349,644.54647 C 160.8518,648.41726 166.9642,646.54804 171.8481,647.13622 C 178.7379,644.64772 184.1223,649.26092 190.7804,650.31043 C 197.3737,650.76518 203.7284,652.37566 209.979,654.47729 C 214.8956,656.82263 218.0261,651.13714 222.2722,649.55679 C 225.7949,647.89579 230.9978,649.82991 233.0913,653.25378 C 239.3518,659.56435 248.9781,658.01079 257.1162,658.75298 C 259.6757,654.77693 263.0527,652.63659 267.8575,653.7022 C 271.4069,653.51907 274.8397,654.72399 278.3294,655.21746"
id="path3401"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 100.7467,524.041 C 101.9372,524.041 103.1276,524.041 104.3181,524.041 C 105.8983,522.17441 107.552,520.3765 109.3181,518.68383 C 114.3181,518.80289 119.3181,518.92195 124.3181,519.041 C 125.1503,518.50933 126.1291,518.11634 126.8735,517.50166 C 127.6884,515.87191 128.5032,514.24216 129.3181,512.61242 C 131.4263,511.47293 133.7823,509.79419 136.2765,510.80091 C 137.7615,510.7586 139.6705,512.73513 140.7329,511.19764 C 141.8477,510.12091 142.8241,508.86292 144.2873,508.2423 C 144.9988,507.91739 145.6355,507.52868 145.7374,506.68483 C 146.3357,505.08927 146.9341,503.49371 147.5324,501.89815 C 147.7705,501.89815 148.0086,501.89815 148.2467,501.89815"
id="path3407"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 145.0324,506.89815 C 146.2285,508.11729 147.1121,509.70357 148.6875,510.47722 C 149.4906,510.83693 150.1673,511.81676 151.1235,511.42512 C 153.1407,511.1066 155.158,510.78808 157.1753,510.46956"
id="path3409"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 96.461,562.61242 C 100.2457,562.92495 102.3379,566.44804 105.3419,568.36002 C 108.971,569.42783 113.1468,569.08018 116.9381,569.85014 C 124.1061,570.71076 131.4304,571.38981 138.5985,571.33844 C 142.6633,568.93171 143.3362,571.96223 147.0239,573.13418 C 150.0554,573.63585 152.6774,575.20151 155.3896,576.541 C 155.6005,578.99727 155.9636,581.31894 158.9189,581.3493 C 161.0924,582.64166 163.1575,581.95569 165.1957,580.77763 C 168.2322,580.22279 168.8574,576.98432 170.3896,574.7553 C 174.9077,575.25038 180.615,574.04961 182.4538,569.41014 C 183.819,566.6014 186.2156,564.56525 188.2467,562.2553 C 193.0844,562.21298 194.2394,569.32104 199.3412,569.39814 C 204.9326,569.31432 210.5188,569.50551 216.1038,569.7553 C 220.4116,572.6692 222.9253,579.23921 228.9756,574.56904 C 233.7909,572.40318 239.2409,574.74349 244.3181,573.95171 C 248.8973,574.12004 253.4262,570.48037 257.823,572.94738 C 262.1306,574.28209 267.2368,576.63297 271.2378,573.32671 C 272.1654,572.76251 273.0734,572.16618 273.961,571.541"
id="path3413"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 237.0273,573.70552 C 240.8559,570.71703 245.5933,567.76506 248.2754,563.59723 C 249.6944,561.84039 251.1134,560.08355 252.5324,558.32671"
id="path3415"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 195.8513,568.1175 C 199.3319,563.85807 203.6916,559.57234 207.0097,555.22356 C 208.4239,552.34191 210.2588,549.87334 212.5324,547.61242"
id="path3417"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 202.1753,592.61242 C 199.9134,590.46955 197.6515,588.32669 195.3896,586.18383 C 192.8228,586.95632 190.9359,586.38932 190.1358,583.68113 C 189.1276,581.48137 187.715,579.67204 185.4474,578.68826 C 183.2652,577.38409 181.9731,574.05374 180.2633,572.21198"
id="path3419"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 42.8896,984.04096 C 41.6929,982.34456 36.4643,976.90486 35.0324,974.04096 C 34.217,972.41026 33.7041,970.31286 32.8896,968.68385 C 31.9459,966.7966 31.7109,965.25512 30.7467,963.32671 C 29.6501,961.13354 29.3181,960.42927 29.3181,957.61242 C 29.3181,956.0284 30.6948,953.89138 31.1038,952.25528 C 31.6486,950.07614 31.4687,947.98493 30.7467,946.541 C 29.6061,944.25989 28.0513,943.37383 27.1753,941.18385 C 26.1837,938.70503 23.2477,937.97156 22.1753,935.82671 C 21.9865,935.44912 20.8562,934.50764 20.7467,934.39814"
id="path3433"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 103.961,945.11242 C 103.0497,943.28979 103.2467,941.07876 103.2467,939.041 C 103.2467,937.03325 100.9334,935.12867 100.3895,934.041 C 99.3567,931.97536 99.2666,929.98449 97.5324,928.68385 C 95.6828,927.29667 95.5029,924.45481 93.2467,923.32671 C 91.1992,922.30294 90.0324,920.38447 90.0324,917.61242 C 90.0324,915.77079 91.1038,914.53233 91.1038,912.25528"
id="path3435"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 170.0324,917.96957 C 170.0324,917.80846 165.6461,915.7764 164.3181,915.11242 C 161.9882,913.94745 161.8338,912.10929 159.3181,912.61242 C 157.0507,913.06591 155.6501,914.43679 153.961,915.11242 C 151.2949,916.17885 149.5101,915.13931 148.6038,913.32671 C 147.5264,911.17186 145.2272,910.14493 144.3181,908.32671 C 143.1597,906.00996 141.8279,905.46957 138.961,905.46957 C 136.3337,905.46957 135.9022,902.72903 134.3181,901.541 C 132.1587,899.92144 131.0791,897.92004 130.0324,895.82671 C 129.1497,894.06136 126.4267,892.96957 124.3181,892.96957 C 121.3644,892.96957 120.6956,893.53082 118.961,894.39814 C 117.0069,895.37517 115.2754,895.31952 113.2467,895.82671 C 111.154,896.34989 110.5005,897.39053 109.6753,899.041 C 108.8007,900.79008 107.6341,901.33767 106.8181,902.96957 C 106.3016,904.00252 102.1022,904.91276 101.1038,905.11242 C 100.1094,905.31132 98.4377,905.33252 97.8896,905.46957"
id="path3439"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 212.6695,968.36472 C 211.7176,967.96498 214.6571,964.45488 215.1949,962.3038 C 215.3709,961.59976 216.8516,959.9297 217.2152,959.02081 C 217.8478,957.43941 218.3644,956.89933 219.2355,955.73781 C 220.086,954.60386 220.3967,953.36593 220.7507,951.94974 C 221.1181,950.48038 221.7429,949.51431 222.0134,948.16167 C 222.3123,946.6674 223.9237,946.58154 224.2863,945.13121 C 224.5833,943.94323 225.9737,942.8813 226.5591,942.10075 C 227.4719,940.88367 228.1028,940.04245 228.832,939.07029 C 229.7075,937.90293 230.0845,936.34296 230.3472,935.02968 C 230.5993,933.76913 231.7953,932.50964 232.3675,931.74669 C 233.2303,930.59622 233.7624,929.78656 234.8929,929.22131 C 235.7809,928.7773 236.8505,926.94785 237.4183,926.19085 C 238.0033,925.41085 239.3505,924.71964 240.4487,924.17054 C 241.1576,923.8161 242.4398,921.70364 242.7216,921.14009 C 243.437,919.70913 244.2217,919.75868 245.4995,919.11978 C 246.3808,918.67913 248.7839,919.11978 249.7926,919.11978 C 251.4748,919.11978 251.5257,917.42145 252.0655,916.34186 C 252.9318,914.60914 252.4088,914.40242 254.0858,913.56394 C 255.5172,912.84825 255.6359,911.65244 256.8637,911.03856 C 257.8661,910.53737 258.5563,909.56091 259.6416,909.01826 C 260.8242,908.42697 261.3453,907.53507 262.4195,906.99795 C 263.439,906.48821 264.5346,905.86144 265.1974,904.97765 C 265.7332,904.26332 267.7375,904.47257 268.9855,904.47257 C 269.8204,904.47257 271.4157,903.25749 272.016,902.95734 C 273.135,902.39784 274.9643,901.77064 275.299,900.43196 C 275.4814,899.70211 277.0727,898.06703 277.5718,897.4015 C 278.4264,896.26205 279.1602,895.78868 279.8447,894.87612"
id="path3449"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 251.5604,926.44339 C 252.4999,925.19073 248.8795,924.77267 247.7723,923.66547 C 247.0192,922.9123 247.2693,920.62667 247.5198,919.62486 C 247.5935,919.32978 247.9133,918.83781 248.0249,918.6147"
id="path3451"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1697.8896,831.89814 C 1696.8436,829.0581 1698.4602,824.23257 1700.7468,821.18385 C 1703.1873,817.92985 1704.6921,815.63977 1707.8896,814.041 C 1710.6143,812.67864 1714.0344,812.61242 1718.6039,812.61242 C 1723.0557,812.61242 1723.9371,812.16813 1725.7468,809.75528"
id="path3453"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1875.7469,534.7553 C 1870.3737,534.99324 1864.4632,532.95055 1859.9314,536.76028 C 1854.1803,542.87514 1845.9752,545.54562 1839.2194,550.36549 C 1836.825,552.9519 1835.7049,556.4832 1831.4478,557.26193 C 1826.7262,557.67919 1827.7252,563.03461 1829.1763,565.71492 C 1834.9469,568.54698 1841.9523,569.51658 1846.7064,573.89914 C 1848.656,577.85582 1850.5579,582.67782 1847.3686,586.51169 C 1845.6089,591.09206 1838.2396,591.23402 1838.2916,596.91964 C 1835.2049,606.25103 1847.6653,603.20244 1853.2379,604.041 C 1861.5734,604.00451 1870.0649,604.80159 1877.8896,607.791 C 1880.2402,612.74392 1876.6792,617.65458 1872.7111,620.291 C 1871.6889,624.74787 1872.5847,629.52688 1871.4514,633.53402 C 1868.6546,639.48116 1862.245,643.05798 1860.0325,649.39812 C 1856.3114,650.88441 1853.2464,651.46649 1850.9941,655.13698 C 1848.2899,658.47462 1841.4127,656.5829 1841.2418,662.01166 C 1838.5318,667.24347 1843.4232,672.26 1843.9611,677.43385 C 1851.0587,675.3846 1851.5038,685.94088 1855.9254,689.93386 C 1860.2824,692.20277 1868.6701,693.15593 1866.8554,700.18742 C 1865.6839,704.80037 1867.5587,709.2758 1866.4611,713.86243 C 1866.2754,720.42792 1874.4324,721.84325 1879.1396,724.04101 C 1883.3462,719.56973 1895.2096,729.33349 1896.7883,718.26501 C 1905.9699,711.84051 1916.9609,717.51954 1927.4656,714.19725 C 1931.8029,713.45423 1937.8953,711.48326 1940.6511,716.20555 C 1946.2501,721.2861 1954.4649,722.206 1960.5989,726.59682 C 1966.7342,728.52201 1974.4244,729.34429 1976.6396,736.36243 C 1984.501,741.25285 1993.4057,743.55316 2000.7576,749.33933 C 2005.5128,755.07048 2015.0844,756.51669 2020.0325,750.11243 C 2027.4832,744.80412 2037.0112,736.52619 2046.4611,742.07672"
id="path3455"
style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1836.8182,801.18385 C 1836.8802,798.69645 1834.7166,797.00131 1833.9611,795.11242 C 1832.9828,792.66662 1831.9384,792.49219 1833.9611,790.46957 C 1835.5812,788.84941 1837.3364,789.13904 1838.9611,788.32671 C 1840.6122,787.50112 1839.8974,783.41359 1839.6754,782.96957 C 1838.9803,781.57936 1835.6641,780.38686 1834.6754,779.39814 C 1834.3049,779.02772 1828.9868,777.98241 1828.9611,777.96957 C 1826.5072,776.74265 1826.6417,774.041 1823.6039,774.041 C 1820.8103,774.041 1820.0885,774.91984 1817.8896,775.46957 C 1814.5615,776.3016 1815.2838,776.81878 1812.5325,774.75528 C 1811.3136,773.84111 1811.1071,770.83306 1810.3896,769.39814 C 1809.4911,767.60097 1809.9346,765.63096 1808.9611,763.68385 C 1808.0656,761.89292 1806.9412,759.84751 1805.3896,758.68385 C 1804.1727,757.77117 1803.9611,754.8561 1803.9611,752.61242 C 1803.9611,750.71966 1804.6754,749.35257 1804.6754,747.25528 C 1804.6754,745.81981 1805.0325,743.49396 1805.0325,741.541 C 1805.0325,738.15837 1804.3704,738.02172 1802.5325,736.18385 C 1800.6812,734.33254 1800.5289,732.25528 1797.5325,732.25528 C 1795.1595,732.25528 1794.1068,733.74955 1793.2468,735.46957 C 1792.3219,737.31925 1791.5157,737.47379 1792.1754,740.11242 C 1792.8718,742.89824 1791.9265,744.28178 1790.0325,744.75528 C 1789.7743,744.81984 1789.5563,744.99338 1789.3182,745.11242"
id="path3460"
style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1795.7468,726.18385 C 1794.1973,726.57123 1797.8896,728.87238 1797.8896,730.46957 C 1797.8896,731.18385 1797.8896,731.89814 1797.8896,732.61242"
id="path3465"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1745.7468,722.25528 C 1745.7468,724.20781 1747.5718,718.48562 1749.3182,717.61242 C 1750.7586,716.89226 1751.8312,713.9892 1752.1754,712.61242 C 1752.6523,710.70457 1753.4279,709.38796 1753.9611,707.25528 C 1754.4303,705.37851 1753.9611,702.77558 1753.9611,700.82671 C 1753.9611,699.24255 1752.2878,696.76598 1751.8182,695.82671 C 1750.9081,694.00643 1751.1168,691.20959 1750.3896,689.75528 C 1749.7462,688.46845 1750.3896,685.16381 1750.3896,683.68385 C 1750.3896,681.48979 1750.6491,679.78873 1751.1039,677.96957 C 1751.7946,675.20707 1748.5747,675.45497 1747.1754,674.75528 C 1744.9071,673.62114 1743.7851,671.54624 1742.8896,669.75528 C 1742.132,668.23998 1743.3149,665.19705 1743.6039,664.041 C 1743.9656,662.59448 1744.386,660.19849 1744.6754,659.041 C 1745.1717,657.05543 1745.3896,655.66517 1745.3896,653.32671 C 1745.3896,651.2289 1744.6754,650.2207 1744.6754,647.61242"
id="path3467"
style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1750.7684,679.62901 C 1750.7684,679.51923 1753.6083,675.28006 1753.9611,674.39814 C 1754.9056,672.0368 1755.0082,671.541 1757.8896,671.541"
id="path3469"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1631.9339,746.13116 C 1634.0928,746.48205 1635.4726,740.55957 1635.9745,738.04994 C 1636.5728,735.05847 1639.3793,735.52456 1642.5405,735.52456 C 1644.9297,735.52456 1646.9136,736.49156 1649.1065,737.03979 C 1651.5825,737.65877 1655.1261,737.03979 1657.6928,737.03979 C 1659.6759,737.03979 1662.0244,738.44795 1663.2487,739.06009 C 1665.1861,740.02882 1667.1642,740.76532 1668.8045,741.58547 C 1670.5077,742.43709 1672.0765,743.3422 1673.3502,744.61593 C 1674.5737,745.83942 1678.0083,745.78045 1679.4111,746.13116 C 1681.6361,746.6874 1682.2654,748.4804 1683.4517,749.66669 C 1684.9949,751.20984 1686.1916,751.90153 1687.4923,753.20223 C 1688.3245,754.03444 1691.9264,754.9421 1693.0482,755.22253 C 1695.5672,755.85228 1699.0216,755.22253 1701.6345,755.22253 C 1703.8686,755.22253 1705.7355,756.51543 1707.1903,757.24284"
id="path3471"
style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1585.4669,759.76822 C 1587.8119,759.76822 1582.3728,755.47718 1582.9415,753.20223 C 1583.7234,750.07485 1579.5904,746.98095 1577.8908,746.13116 C 1576.0008,745.18617 1576.8806,739.44118 1576.8806,737.54486 C 1576.8806,734.9204 1576.5069,734.27194 1575.8705,732.99917"
id="path3473"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1441.0151,761.78852 C 1441.0151,759.52975 1445.7208,760.56508 1447.076,758.75806 C 1448.3072,757.11655 1448.8014,752.65642 1449.0963,751.18192 C 1449.7866,747.73072 1450.3466,746.51619 1453.1369,745.12101 C 1455.7721,743.80342 1457.1195,744.61593 1460.208,744.61593 C 1463.4141,744.61593 1466.4809,744.50992 1468.2892,743.60578 C 1470.5372,742.48178 1471.7319,739.75082 1472.8349,737.54486 C 1473.4972,736.22034 1477.0925,735.52456 1479.4009,735.52456 C 1481.2025,735.52456 1486.0262,733.97967 1486.977,733.50425 C 1489.3327,732.32641 1491.252,731.17149 1492.5329,729.46364 C 1493.4499,728.24101 1496.9185,727.44334 1499.0989,727.44334 C 1501.3571,727.44334 1502.2143,722.55772 1502.6344,720.87734 C 1503.3612,717.97012 1504.5885,715.95911 1505.6649,713.80628 C 1506.8389,711.45827 1507.647,707.89815 1508.1902,705.72506 C 1508.8006,703.28369 1510.9402,700.56198 1512.7359,699.66414 C 1513.9822,699.04099 1516.3177,693.51072 1516.7765,692.59307 C 1518.2656,689.615 1520.0278,688.67955 1520.8172,685.52201 C 1521.5029,682.77922 1523.4881,680.61251 1524.3527,678.45094 C 1525.37,675.90766 1526.8555,674.45542 1527.8882,672.39002"
id="path3477"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1475.8654,736.53471 C 1476.3415,735.34462 1478.1703,740.19844 1478.3907,741.0804 C 1478.903,743.1295 1481.2142,744.40889 1482.4314,745.62608 C 1483.6941,746.88877 1485.7144,747.39385 1486.977,748.65654 C 1486.9996,748.67912 1488.3652,749.11926 1488.4923,749.16162"
id="path3481"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1437.4796,741.0804 C 1438.8096,742.41044 1442.6972,736.37227 1443.0354,735.01948 C 1444.0377,731.01027 1443.3036,731.60239 1446.5709,729.96872 C 1448.3335,729.08745 1453.1361,729.96872 1455.1572,729.96872 C 1455.9362,729.96872 1459.2543,725.39482 1460.208,724.91795 C 1461.8975,724.0732 1465.5779,725.42303 1467.7841,725.42303 C 1469.4499,725.42303 1470.8425,722.07032 1471.3197,720.87734"
id="path3483"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1421.3171,711.78597 C 1421.9714,711.78597 1425.7556,707.74536 1429.9034,707.74536 C 1433.2706,707.74536 1436.6378,707.74536 1440.005,707.74536 C 1442.6424,707.74536 1443.546,704.18779 1444.0456,702.18952 C 1444.7745,699.27377 1445.3265,697.06594 1446.0659,694.1083 C 1446.829,691.05583 1446.3853,688.79002 1447.076,686.02708 C 1447.7497,683.33229 1450.0749,681.03951 1451.1166,678.95601"
id="path3487"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1441.5202,707.74536 C 1442.2333,704.89289 1446.6611,707.24029 1449.6014,707.24029 C 1450.9495,707.24029 1455.5741,705.76915 1456.6725,705.21998 C 1458.4735,704.31948 1463.6034,706.82645 1465.2588,707.24029 C 1469.2985,708.25021 1469.68,703.82184 1470.3095,700.67429 C 1470.9152,697.64579 1472.5323,695.8587 1473.8451,694.1083 C 1474.7018,692.96596 1479.5737,695.96247 1479.906,696.12861 C 1483.0036,697.67744 1485.7219,694.73586 1486.977,694.1083 C 1488.5346,693.32951 1491.9738,691.86246 1493.543,691.07784 C 1496.2815,689.70861 1497.2832,688.64832 1498.5938,686.02708 C 1500.0046,683.20558 1500.4605,680.77848 1501.6243,678.45094 C 1503.2004,675.29861 1502.0069,674.41033 1506.675,674.41033 C 1508.8191,674.41033 1513.0105,672.00019 1514.2512,671.37987 C 1515.1928,670.90904 1515.6464,670.82179 1516.7765,670.36972"
id="path3492"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1390.5075,657.74281 C 1388.1324,659.3401 1385.4846,660.27935 1382.9313,659.25804 C 1380.9956,658.48375 1378.4936,654.42309 1377.8806,653.19712"
id="path3494"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1417.2765,653.19712 C 1414.756,652.18891 1420.6587,648.75971 1421.3171,646.12606 C 1421.8355,644.05243 1425.2172,642.64758 1425.8628,640.06514 C 1426.2757,638.41367 1429.2487,636.77285 1429.9034,633.49915 C 1430.286,631.58637 1425.8628,629.79041 1425.8628,625.92301"
id="path3521"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1444.0456,630.97377 C 1444.0988,630.70783 1448.6224,626.41253 1449.6014,625.92301 C 1451.4353,625.00605 1453.8896,622.39739 1454.6522,620.87224 C 1455.7492,618.67823 1456.0937,616.62151 1456.6725,614.30625"
id="path3523"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1453.642,622.89255 C 1454.0561,622.06441 1460.208,624.77436 1460.208,627.43823 C 1460.208,631.27227 1459.434,632.01663 1458.1877,634.5093 C 1457.2332,636.41829 1463.6948,636.02453 1464.7537,636.02453 C 1466.9931,636.02453 1469.3327,632.86093 1469.8045,630.97377 C 1470.7706,627.10936 1472.3765,629.04678 1473.34,630.97377 C 1474.6953,633.68437 1475.8636,634.00423 1478.8958,634.00423 C 1481.2827,634.00423 1481.4525,633.38564 1482.4314,632.99407"
id="path3525"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1597.5887,636.52961 C 1600.8577,636.52961 1593.4948,631.37221 1592.0329,628.44839 C 1590.5652,625.51293 1591.3242,623.70699 1592.0329,620.87224 C 1593.1158,616.54056 1589.8977,614.76535 1587.4872,613.80117 C 1583.7213,612.29481 1582.7358,609.1526 1579.9111,607.74026 C 1576.967,606.26824 1575.4979,604.7098 1572.3349,604.7098 C 1568.3936,604.7098 1566.6135,606.0553 1564.2537,607.23518 C 1561.9771,608.37347 1558.9678,608.24534 1555.6674,608.24534 C 1551.8742,608.24534 1550.4815,609.57559 1548.0913,610.77072 C 1546.1723,611.7302 1545.8081,612.79102 1541.5253,612.79102 C 1538.3693,612.79102 1537.2613,612.39762 1534.4542,613.80117 C 1531.3912,615.33268 1529.3558,615.82148 1525.8679,615.82148 C 1521.9017,615.82148 1519.9284,614.10458 1518.7969,611.27579 C 1517.551,608.16109 1514.0761,606.38006 1512.7359,603.69965 C 1511.9231,602.07403 1516.4781,599.55572 1517.2816,599.15396 C 1519.1598,598.2149 1521.2248,592.27775 1521.8273,591.07274 C 1523.0328,588.6618 1523.259,585.8511 1523.8476,583.4966 C 1524.7181,580.01482 1525.3336,578.51901 1526.373,575.92045 C 1528.0194,571.80456 1524.8578,571.91305 1524.8578,567.83923 C 1524.8578,565.34798 1527.2661,563.76192 1527.8882,561.27324"
id="path3527"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1569.8096,527.43313 C 1569.8096,525.09422 1572.2991,531.40206 1573.3451,533.49405 C 1574.6772,536.15821 1574.7096,536.87889 1576.3755,538.54481 C 1577.9374,540.10665 1578.5566,541.40311 1580.9212,542.58542 C 1583.0635,543.65658 1586.7458,543.04323 1589.5075,543.59557 C 1592.4452,544.1831 1595.7712,543.49421 1597.5887,542.58542 C 1599.7072,541.52621 1605.3301,541.57527 1607.1852,541.57527 C 1611.1195,541.57527 1611.4468,541.79622 1613.2461,543.59557 C 1613.4145,543.76393 1613.5828,543.93229 1613.7512,544.10065"
id="path3529"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1778.911,558.74782 C 1775.0191,563.08689 1770.3591,566.59803 1764.5392,567.52267 C 1759.1546,571.93033 1755.053,577.90474 1751.3386,583.75189 C 1746.3557,592.40314 1740.1635,600.01682 1735.5763,608.89699 C 1728.744,615.02115 1721.7814,620.79916 1715.8819,628.07574 C 1709.6201,635.66984 1698.8336,638.33999 1689.6898,634.9526 C 1682.9475,630.15815 1675.8018,626.04201 1666.9856,628.51161 C 1658.6523,628.99463 1653.1961,620.73361 1645.9763,617.40963 C 1646.1731,608.4044 1643.6721,598.4656 1638.8511,591.32466 C 1641.3849,583.87131 1641.2474,573.50226 1649.4938,570.04322 C 1655.5588,564.43279 1658.861,556.13576 1666.5426,552.20832 C 1673.9096,547.55711 1680.8182,539.22066 1676.9242,530.20763 C 1674.7036,525.42008 1664.61,529.10486 1664.0463,525.41326 C 1672.4103,520.44716 1682.5846,518.09894 1692.1181,520.66428 C 1702.1506,520.9108 1708.1515,509.51722 1706.3034,500.58221 C 1707.1974,494.25421 1707.1541,487.84683 1707.1903,481.4712"
id="path3531"
style="fill:none;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1520.3121,296.1082 C 1522.6582,295.30396 1525.9071,284.72441 1531.4238,281.96606 C 1535.1091,280.12339 1540.5096,276.58594 1542.5354,273.88484 C 1546.5363,268.5503 1551.0084,269.06072 1553.6471,263.78332 C 1556.3962,258.28521 1557.6931,252.64465 1558.6979,247.62088 C 1559.7687,242.26683 1564.1768,237.45898 1565.7689,233.47874 C 1568.0102,227.87572 1573.482,229.43813 1579.9111,229.43813 C 1588.4526,229.43813 1589.3187,227.76478 1594.0532,225.39752 C 1600.4507,222.19878 1591.1514,209.33157 1591.0228,209.23508 C 1586.4467,205.80305 1584.9487,198.17604 1585.972,194.08279 C 1588.3912,184.40579 1587.5199,185.03505 1582.9415,178.9305 C 1581.2396,176.66123 1568.3204,179.94066 1565.7689,179.94066 C 1557.4418,179.94066 1555.1149,176.63392 1549.6065,173.87974 C 1545.4138,171.78337 1539.2096,169.69144 1535.4644,167.81883 C 1531.4146,165.79395 1521.7783,165.79852 1518.2918,165.79852 C 1513.8817,165.79852 1508.4223,161.75791 1503.1395,161.75791 C 1497.4124,161.75791 1493.4543,159.73761 1485.9669,159.73761 C 1480.9948,159.73761 1477.6778,155.697 1470.8146,155.697 C 1465.3049,155.697 1458.7474,150.38241 1456.6725,147.61578 C 1451.6313,140.89419 1449.1015,138.90191 1442.5303,140.54471 C 1434.6116,142.5244 1430.9915,136.33322 1426.3679,134.48379 C 1421.6741,132.60628 1416.2664,123.55538 1416.2664,118.32135 C 1416.2664,115.88398 1413.4246,104.55658 1412.2258,102.15891 C 1409.9271,97.5616 1410.2055,92.23997 1410.2055,85.99647 C 1410.2055,76.89533 1408.3407,74.26363 1406.1648,68.82388 C 1403.7926,62.89315 1404.9409,59.7915 1406.1648,53.67159 C 1407.3855,47.56848 1412.2258,45.54821 1412.2258,38.5193 C 1412.2258,31.73317 1409.1953,30.8754 1409.1953,23.36701 C 1409.1953,14.69005 1408.9302,11.11262 1403.1344,8.2147 C 1400.7625,7.0288 1399.7852,3.5366 1399.0938,2.1538"
id="path3535"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1415.6028,117.99575 C 1415.6028,111.65522 1419.7765,117.91039 1419.7765,111.41489 C 1419.7765,108.4626 1419.1974,98.75023 1419.966,90.49703 C 1420.825,81.27381 1423.1003,73.51739 1424.3476,71.85434 C 1428.5476,66.25433 1428.116,64.9671 1436.1736,64.9671 C 1439.3828,64.9671 1443.2517,65.64905 1445.5608,66.80357 C 1451.9225,69.98444 1455.5295,66.3246 1456.6725,61.75281 C 1458.0124,56.3931 1463.5975,51.79732 1464.7537,50.64113 C 1466.8437,48.55113 1472.507,53.3173 1475.8654,46.60052 C 1478.3103,41.71075 1480.8855,37.66251 1481.9263,32.45839 C 1483.6199,23.99028 1477.6899,20.14076 1473.8451,16.29595 C 1471.5944,14.0453 1480.2109,4.5745 1480.9161,3.164"
id="path3537"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1464.3966,51.29414 C 1464.656,50.77523 1472.7742,61.69209 1473.8451,62.76296 C 1477.5447,66.46261 1486.2478,63.21129 1487.9872,59.73251 C 1490.8483,54.01025 1492.8003,54.11725 1499.0989,55.6919 C 1502.6315,56.57506 1508.7876,57.86153 1512.2309,58.72235 C 1516.9421,59.90016 1515.9686,48.77229 1520.3121,46.60052 C 1527.0818,43.21566 1531.4238,52.39342 1531.4238,42.55991 C 1531.4238,33.81704 1525.8569,37.53112 1530.4136,28.41778 C 1530.9768,27.29134 1545.6706,28.41778 1547.5862,28.41778 C 1553.5958,28.41778 1555.6298,24.39596 1559.708,22.35686"
id="path3539"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1274.845,68.82388 C 1278.2088,67.142 1295.0521,66.80357 1302.1191,66.80357 C 1309.1604,66.80357 1314.0571,65.38026 1319.2917,62.76296 C 1324.87,59.97384 1329.7691,61.56487 1335.4542,58.72235 C 1339.5945,56.65217 1345.2417,54.68174 1349.5963,54.68174 C 1356.3934,54.68174 1358.8259,55.76101 1362.7283,57.7122 C 1366.1348,59.41545 1369.2722,61.22566 1371.8197,63.77312 C 1374.5519,66.50541 1379.0786,67.40261 1381.9212,68.82388 C 1386.0592,70.89289 1388.3727,73.25513 1391.0126,75.89495 C 1393.7296,78.61194 1397.6627,80.52482 1400.1039,82.96601 C 1403.4017,86.26379 1404.0019,88.45655 1405.1547,93.06754 C 1406.2943,97.62582 1408.177,100.10597 1409.1953,104.17922 C 1410.4943,109.3754 1412.8909,113.04822 1415.6133,115.77059"
id="path3541"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1350.6065,4.1741 C 1350.9657,4.5334 1353.4047,12.8011 1354.6471,15.28579 C 1356.3152,18.62203 1361.0239,20.41553 1364.7486,21.34671 C 1368.7495,22.34693 1372.137,24.4565 1375.8603,25.38732 C 1382.4877,27.04417 1383.1846,26.6507 1386.9719,30.43808 C 1389.4973,32.96346 1392.5278,34.98377 1395.0532,37.50915 C 1398.1395,40.59545 1400.533,41.97882 1403.1344,44.58022 C 1405.1696,46.61543 1405.6127,48.06874 1407.175,49.63098"
id="path3543"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1337.4745,191.05234 C 1339.311,192.88883 1349.9558,185.82183 1351.6166,184.99142 C 1357.9687,181.81538 1360.8608,187.62285 1361.7181,191.05234 C 1362.6527,194.79065 1364.8475,198.51919 1365.7587,202.16401 C 1366.8405,206.49105 1370.2942,207.46222 1373.84,209.23508 C 1377.6522,211.1412 1383.7306,210.19251 1387.9821,211.25539 C 1391.1976,212.05926 1395.5779,217.07361 1398.0836,218.32645 C 1401.8506,220.20992 1404.9622,223.1847 1407.175,225.39752 C 1409.3032,227.5257 1414.6003,229.11016 1417.2765,230.44828 C 1421.0473,232.33368 1424.2639,234.46798 1428.3882,235.49905 C 1433.5615,236.79236 1438.4949,236.5092 1443.5405,236.5092 C 1448.9227,236.5092 1454.1113,237.75398 1457.6826,239.53966 C 1461.8693,241.63301 1465.2454,241.80584 1468.7943,243.58027 C 1470.7997,244.58299 1473.4403,251.25677 1474.8552,252.67164 C 1477.9415,255.75794 1481.3452,256.13116 1483.9466,258.73256 C 1486.472,261.25794 1489.5024,263.27824 1492.0278,265.80362 C 1494.5532,268.329 1496.5735,271.35946 1499.0989,273.88484 C 1502.1957,276.98171 1503.4162,279.48901 1505.1598,282.97622 C 1506.3512,285.35897 1506.915,285.00746 1507.4759,287.25142"
id="path3545"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1365.7587,245.60057 C 1367.6635,249.4101 1374.071,247.73642 1377.8806,249.64118 C 1381.8082,251.605 1383.3189,253.52614 1387.9821,254.69195 C 1391.7349,255.63014 1395.0276,258.70701 1397.0735,260.75286 C 1399.5989,263.27824 1398.5887,269.33916 1401.1141,271.86454 C 1403.7636,274.51402 1405.8269,278.25981 1407.175,280.95591 C 1409.0006,284.60717 1410.5043,287.61454 1412.2258,291.05744 C 1414.2285,295.0629 1416.4131,296.25496 1419.2968,299.13866 C 1422.4107,302.25251 1423.4532,304.97598 1428.3882,306.20973 C 1431.9906,307.11034 1434.494,311.3054 1436.4694,313.28079 C 1439.7115,316.52283 1441.8169,317.46975 1445.5608,319.34171 C 1449.5803,321.35145 1451.6171,323.38116 1455.6623,324.39247 C 1459.3909,325.32461 1462.7558,327.93919 1465.7638,329.44323"
id="path3547"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1531.4238,281.96606 C 1536.3671,283.20189 1527.1247,271.37129 1529.4035,266.81378 C 1532.516,260.5886 1535.1182,257.40457 1537.4847,252.67164 C 1540.3836,246.87388 1542.649,246.83787 1539.505,240.54981"
id="path3549"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1732.4441,200.14371 C 1734.0686,196.89469 1741.9911,191.8347 1745.5761,190.04218 C 1748.6913,188.4846 1755.5696,185.55049 1758.7081,183.98127 C 1763.1,181.7853 1765.6809,176.39139 1766.7893,170.84928 C 1767.836,165.61555 1770.1515,160.41602 1772.8502,157.7173 C 1777.2215,153.34597 1779.18,153.67669 1786.9924,153.67669 C 1793.5531,153.67669 1799.2911,153.58822 1803.1548,151.65639 C 1807.4508,149.50839 1811.1463,145.77483 1813.2563,141.55486 C 1815.4144,137.23869 1824.545,140.847 1826.3883,133.47364 C 1827.945,127.24678 1832.0106,124.11649 1833.4594,118.32135 C 1834.7742,113.06192 1835.4797,108.79921 1835.4797,102.15891 C 1835.4797,96.43472 1835.4797,90.71052 1835.4797,84.98632 C 1835.4797,79.26212 1835.4797,73.53792 1835.4797,67.81373 C 1835.4797,63.01367 1841.5406,60.94873 1841.5406,53.67159 C 1841.5406,45.14313 1835.995,43.8175 1830.4289,46.60052 C 1823.2918,50.16907 1824.2098,38.955 1816.2868,40.53961 C 1811.3206,41.53284 1810.4671,48.37963 1807.1954,51.65129 C 1804.3642,54.48244 1792.0019,50.11545 1791.033,49.63098 C 1783.7762,46.00259 1781.6068,45.08673 1776.8908,41.54976 C 1775.4468,40.46674 1769.4424,26.65292 1768.8096,25.38732 C 1765.8631,19.49433 1756.7193,21.40967 1753.6573,15.28579 C 1751.3301,10.63136 1747.7627,7.5372 1745.5761,3.164"
id="path3551"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1651.6319,2.1538 C 1651.2415,1.3731 1662.4023,6.8633 1664.7639,9.2249 C 1669.8184,14.27939 1658.6993,16.0425 1667.7944,18.31625 C 1672.4218,19.47312 1677.7148,19.3264 1682.9466,19.3264 C 1687.5877,19.3264 1689.0548,24.56628 1690.0177,28.41778 C 1691.0325,32.47714 1693.5067,35.39579 1695.0685,38.5193 C 1696.6987,41.77976 1700.0188,44.47979 1702.1395,46.60052 C 1706.1742,50.63518 1708.5164,52.02956 1711.2309,46.60052 C 1713.8782,41.30591 1719.9693,47.43419 1722.3426,48.62083 C 1726.4253,50.66219 1729.7407,52.82497 1733.4543,54.68174 C 1737.6343,56.77174 1740.5741,56.75083 1743.5558,59.73251 C 1747.7439,63.92065 1753.8382,57.62176 1755.6776,56.70205 C 1760.0095,54.53613 1764.3626,54.68174 1770.8299,54.68174 C 1773.6764,54.68174 1783.9877,48.37572 1788.8393,48.37572"
id="path3553"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1775.6461,154.39098 C 1779.9673,154.39098 1766.2507,140.50003 1764.769,138.5244 C 1760.5479,132.89633 1755.675,132.46349 1747.5964,132.46349 C 1743.3372,132.46349 1738.4064,128.42288 1731.434,128.42288 C 1722.3014,128.42288 1719.7768,126.58846 1714.2614,124.38227 C 1707.8572,121.82061 1705.0397,119.36408 1697.0888,121.35181 C 1691.4166,122.76986 1691.1741,126.40257 1682.9466,126.40257 C 1676.1805,126.40257 1671.8706,127.41272 1665.774,127.41272 C 1660.6375,127.41272 1654.9154,128.42288 1648.6015,128.42288 C 1643.6263,128.42288 1645.571,118.90079 1645.571,114.28074 C 1645.571,109.46378 1647.5913,105.3019 1647.5913,99.12846 C 1647.5913,92.35768 1638.8502,91.66626 1640.5202,84.98632 C 1641.2647,82.00839 1647.1571,79.64757 1648.6015,78.9254"
id="path3555"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1762.7487,179.94066 C 1762.8231,179.64283 1777.6484,179.94066 1781.9416,179.94066 C 1788.1278,179.94066 1794.4433,181.8034 1799.1142,182.97111 C 1802.5914,183.84041 1807.5149,187.17147 1811.236,189.03203 C 1817.0527,191.9404 1820.1285,193.07264 1827.3985,193.07264 C 1832.3374,193.07264 1836.4842,195.09295 1841.5406,195.09295 C 1847.2648,195.09295 1852.989,195.09295 1858.7132,195.09295 C 1862.8338,195.09295 1861.7941,195.60642 1864.7741,196.1031"
id="path3559"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1695.0685,305.19957 C 1696.5367,305.19957 1706.5178,308.23003 1712.2411,308.23003 C 1720.3572,308.23003 1725.7681,308.66995 1727.3934,302.16912 C 1728.5422,297.57368 1735.4523,298.1285 1741.5355,298.1285 C 1747.2597,298.1285 1752.9839,298.1285 1758.7081,298.1285 C 1762.782,298.1285 1770.3326,294.07757 1771.8401,292.06759 C 1775.0621,287.77154 1777.2743,282.01742 1778.9111,277.92545 C 1780.6312,273.6254 1784.0127,270.85439 1790.0228,270.85439 C 1795.6881,270.85439 1802.6502,266.56099 1806.1852,264.79347 C 1811.0919,262.34016 1810.5432,258.73256 1818.3071,258.73256 C 1820.3967,258.73256 1825.3178,264.73317 1826.3883,265.80362 C 1829.5122,268.92754 1830.0612,270.67052 1834.4695,272.87469 C 1837.4394,274.35964 1845.4966,274.27198 1848.6117,274.895 C 1854.1129,275.99524 1856.1207,278.14443 1859.7233,279.94576 C 1862.4557,281.31195 1864.136,287.49488 1864.7741,290.04728 C 1865.7838,294.08613 1868.7912,296.01401 1869.8249,300.14881 C 1870.7966,304.03559 1874.9027,305.25364 1876.8959,309.24018 C 1878.3349,312.11808 1879.9585,314.35511 1880.9365,316.31125"
id="path3563"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1171.8095,680.97632 C 1172.5155,683.36316 1175.5043,686.19317 1180.9008,687.54231 C 1183.2078,688.11904 1185.6077,688.34023 1188.477,689.05754 C 1191.1229,689.71902 1193.6304,689.58828 1195.548,690.06769 C 1197.8968,690.65488 1199.2587,690.99536 1201.609,691.58292 C 1204.4917,692.30361 1206.3513,692.69143 1208.1749,693.60323 C 1210.0917,694.5616 1210.7541,696.23625 1211.7105,698.14891 C 1212.3448,699.41749 1215.6778,700.40344 1216.7612,700.67429 C 1220.2276,701.54087 1221.77,698.82189 1222.3171,696.63368 C 1222.5451,695.72146 1227.2016,694.61338 1228.8831,694.61338 C 1233.2154,694.61338 1233.8338,693.90576 1236.4592,692.59307 C 1238.5273,691.55902 1239.4897,688.22825 1239.4897,685.52201 C 1239.4897,681.72666 1239.3312,681.86101 1241.51,678.95601 C 1243.2084,676.69144 1245.2028,676.93571 1248.581,676.93571 C 1250.7353,676.93571 1250.5425,676.98045 1251.5809,676.46127"
id="path3565"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1186.4567,643.0956 C 1187.4005,643.0956 1189.8641,650.09892 1190.4973,651.6819 C 1191.492,654.16878 1190.9759,657.13199 1191.5074,659.25804 C 1192.1083,661.66152 1194.0764,662.33208 1195.548,663.80373 C 1196.9301,665.1858 1201.4235,666.0302 1202.6191,666.32911 C 1204.2221,666.72984 1204.2962,670.51223 1204.6394,671.88495 C 1205.5219,675.41504 1204.7073,675.99346 1206.6597,677.94586 C 1208.3136,679.59977 1211.4158,678.59828 1212.7206,677.94586 C 1213.8699,677.37122 1215.0688,670.75063 1215.246,669.86464 C 1215.8105,667.04224 1217.8988,664.75019 1219.7917,663.80373 C 1222.27,662.56455 1223.8959,659.63599 1224.8425,657.74281 C 1226.2965,654.8347 1228.0825,653.87391 1228.8831,650.67174 C 1229.5436,648.02951 1230.9116,646.12606 1233.9338,646.12606 C 1237.5903,646.12606 1239.1489,646.2493 1241.0049,647.64128 C 1241.8812,648.29854 1241.988,648.62437 1242.5201,649.15651"
id="path3567"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1196.0531,696.12861 C 1197.5762,697.27089 1199.175,700.35207 1200.0937,702.18952 C 1200.9506,703.9032 1200.2495,708.87355 1200.5988,710.27074 C 1201.0504,712.07705 1203.2644,712.57141 1204.1343,714.31135 C 1205.0379,716.1185 1205.2767,719.38609 1205.6496,720.87734 C 1206.1231,722.77155 1206.7031,725.09142 1207.1648,726.93826 C 1207.7849,729.41862 1208.7725,730.15372 1209.6902,731.98902 C 1211.1871,734.98296 1207.1191,737.17749 1205.6496,737.54486 C 1203.9622,737.96671 1202.8947,742.68766 1203.1242,743.60578 C 1203.5821,745.43739 1204.4715,747.81572 1205.1445,749.16162 C 1206.1694,751.21148 1206.359,753.10578 1207.1648,754.71745 C 1207.5496,755.48703 1207.8432,755.73513 1208.1749,756.23268"
id="path3585"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1252.6217,588.54736 C 1253.3374,589.97879 1255.4687,593.41468 1256.6623,594.60828 C 1257.6036,595.54958 1258.3452,598.81469 1258.6826,600.16412 C 1259.2302,602.35458 1259.188,605.21609 1259.6927,607.23518 C 1260.6998,611.26346 1258.7487,612.75796 1256.6623,613.80117 C 1254.8696,614.6975 1261.6469,618.06128 1262.2181,618.34686 C 1264.6003,619.53794 1266.7651,619.86275 1268.7841,620.87224 C 1270.6424,621.8014 1272.4531,622.42085 1274.3399,622.89255 C 1276.0058,623.30902 1277.4888,625.72966 1278.8856,626.42808 C 1280.2787,627.1246 1280.7098,627.84523 1281.9161,628.44839"
id="path3587"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1178.3754,642.59052 C 1178.7824,641.59819 1179.8073,640.57022 1181.911,640.57022 C 1184.0787,640.57022 1184.8956,640.47858 1183.9313,638.54991 C 1183.1319,636.95107 1182.0495,636.11831 1181.4059,634.5093 C 1180.616,632.53465 1178.6027,633.25924 1177.6178,633.75169 C 1176.4104,634.35542 1177.3648,636.52864 1177.6178,637.03468 C 1178.1333,638.06563 1178.628,638.42683 1178.628,639.8126 C 1178.628,641.53408 1176.7598,639.8978 1178.3754,642.59052 z"
id="path4558"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1168.2739,639.05499 C 1168.2739,639.23989 1170.5873,636.83208 1170.7993,635.77199 C 1171.0761,634.38777 1171.3044,633.41476 1171.3044,631.73138 C 1171.3044,629.65203 1170.7522,629.08822 1170.2942,627.94331 C 1169.6897,626.43199 1168.8833,625.67047 1166.7587,625.67047 C 1165.5133,625.67047 1164.9909,627.30271 1164.9909,628.44839 C 1164.9909,629.99737 1165.2435,630.89072 1165.2435,632.23646 C 1165.2435,633.21381 1166.0584,634.23339 1166.2536,635.01438 C 1166.5149,636.05951 1166.4968,637.24994 1166.7587,638.29737 C 1166.9317,638.98946 1167.5803,638.91627 1168.2739,639.05499 z"
id="path4560"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1122.8171,595.87097 C 1122.9625,594.7097 1121.8069,593.6321 1121.8069,591.83036 C 1121.8069,590.54858 1123.7406,590.73726 1124.5848,590.31513 C 1125.2599,589.97758 1125.8239,587.07941 1126.1,586.52706 C 1126.6697,585.38768 1128.7487,586.59167 1129.8881,586.02198 C 1131.0821,585.42497 1131.8896,584.09578 1132.161,582.73898 C 1132.4359,581.36427 1133.4237,580.63822 1133.4237,578.95091 C 1133.4237,577.25484 1133.4981,576.17299 1135.1914,576.17299 C 1136.7716,576.17299 1137.7111,576.42409 1138.727,576.67807 C 1139.9119,576.97431 1140.6372,577.50691 1141.5049,577.94076 C 1142.6404,578.50852 1143.4336,578.67549 1144.5353,578.95091 C 1145.6687,579.23426 1146.2075,579.78698 1147.0607,580.2136 C 1147.7863,580.57641 1148.3486,581.75406 1148.8285,582.23391 C 1149.48,582.88547 1150.991,583.28757 1151.6064,583.74914 C 1152.7747,584.62536 1150.8331,586.28234 1150.3437,586.52706 C 1149.4905,586.95366 1149.3336,588.63043 1149.3336,590.06259 C 1149.3336,590.95445 1150.6126,591.71228 1151.3539,592.08289 C 1152.2152,592.51355 1152.776,593.4119 1153.1216,594.1032 C 1153.6179,595.09581 1153.3742,597.51954 1153.3742,598.64889 C 1153.3742,600.40825 1152.8691,601.17916 1152.8691,602.94203 C 1152.8691,604.58448 1153.0737,605.27551 1153.3742,606.47757 C 1153.6765,607.6868 1154.2275,608.62547 1154.8894,609.50803 C 1156.1056,611.12964 1158.0847,612.1983 1158.93,613.04356 C 1159.8469,613.96047 1160.4445,614.5584 1161.9605,615.3164 C 1163.1489,615.91063 1163.5905,616.38396 1164.4858,616.83163 C 1165.5457,617.36155 1166.1188,618.32977 1166.5062,619.10448 C 1166.9398,619.97186 1166.7945,621.77311 1167.0112,622.64001 C 1167.3398,623.95445 1167.2917,624.71622 1167.7688,625.67047 C 1167.9333,625.99946 1168.1758,626.28086 1168.2739,626.42808"
id="path4562"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1115.9985,594.86081 C 1115.0679,593.73968 1114.9425,592.23211 1116.2511,591.57782 C 1117.2246,591.09104 1118.5316,590.55234 1119.029,589.55751 C 1119.2828,589.04987 1120.9364,586.77959 1118.7764,586.77959 C 1118.6081,586.77959 1118.4397,586.77959 1118.2714,586.77959"
id="path4566"
style="fill:#ff8080;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1104.3818,579.20345 C 1103.5245,579.20345 1103.86,577.18314 1106.4021,577.18314 C 1107.2195,577.18314 1108.7201,578.46841 1109.18,578.69837 C 1110.3293,579.27302 1111.9838,578.81168 1112.7155,578.44584 C 1113.6972,577.95499 1113.7072,576.44401 1114.4833,575.66792 C 1115.0771,575.07411 1115.4934,577.91371 1115.4934,578.44584 C 1115.4934,579.88101 1115.9881,580.67718 1116.2511,581.72883 C 1116.4979,582.71605 1117.8089,583.28663 1118.2714,583.74914 C 1119.0502,584.52798 1119.029,585.45962 1119.029,586.77959 C 1119.029,587.94718 1115.1875,587.1317 1114.9884,587.03213 C 1113.4364,586.25614 1112.6548,585.08855 1111.2003,584.50675 C 1109.8091,583.95027 1108.2274,582.6015 1107.6648,581.47629 C 1106.8576,579.86202 1104.8164,580.94212 1104.3818,579.20345 z"
id="path4568"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 935.4337,481.21865 C 934.4118,479.40106 932.0684,477.31199 928.6152,478.69327 C 928.2656,478.83309 927.9417,479.02999 927.605,479.19835 C 927.1573,479.42222 931.2288,481.26275 931.6456,481.47119 C 932.6287,481.96273 932.9519,483.03003 933.6659,483.74403 C 935.3898,485.4679 935.4337,482.67629 935.4337,481.21865 z"
id="path4570"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 935.9388,488.7948 C 936.7149,489.57089 938.1242,489.04733 939.2218,489.04733 C 940.0831,489.04733 940.5019,489.43922 941.9997,490.56256 C 943.1207,491.40331 943.5456,491.7143 944.7776,492.33033 C 946.0728,492.97792 947.5462,493.33814 948.5657,493.59302 C 948.9462,493.68815 950.3458,495.37316 950.8385,495.86586 C 951.5172,496.5445 952.5623,496.87602 953.6165,496.87602 C 954.4134,496.87602 955.3154,498.32244 955.8893,498.89632 C 956.4598,499.46683 957.9031,499.90322 958.4147,500.15901 C 959.5288,500.71605 959.7367,501.22845 960.435,501.92678 C 961.2956,502.78736 961.6905,502.92257 962.2028,503.94709 C 962.3819,504.30535 964.0726,505.26082 964.4756,505.46231 C 965.4974,505.97322 966.1218,506.53796 967.001,506.97754 C 968.0714,507.51273 969.2563,508.42525 970.5365,508.74531 C 971.4173,508.9655 971.9568,510.08682 972.8094,510.51308 C 973.6733,510.94506 974.3376,512.29389 974.8297,512.78592 C 975.6771,513.63331 976.2519,513.70969 977.6076,514.04861 C 979.2836,514.46761 980.3915,514.80922 981.3957,515.3113 C 982.2774,515.75219 982.7894,516.58348 983.1634,517.33161 C 984.0442,519.09317 983.3631,519.17572 981.6482,519.60445 C 979.8343,520.05792 978.1044,520.10953 976.0924,520.10953 C 974.8764,520.10953 973.2187,517.58414 976.0924,517.58414 C 979.0162,517.58414 975.8847,515.12723 975.0822,514.80622 C 973.7647,514.27924 972.3461,513.85177 971.5467,512.78592 C 970.7562,511.73191 968.6467,511.44471 967.7586,510.26054 C 966.7324,508.89227 964.692,508.74531 964.2231,508.74531 C 963.2414,508.74531 965.0441,510.57653 965.7383,511.27069 C 966.5708,512.10317 967.1437,513.18114 967.7586,513.79607 C 968.494,514.53145 968.8062,515.38614 969.2738,516.32145 C 969.9721,517.71806 970.5329,518.34176 968.5162,518.34176 C 966.7508,518.34176 965.3688,517.71972 964.2231,516.57399 C 962.6141,514.96499 962.0777,513.60727 960.435,512.78592 C 959.6457,512.39129 958.2081,509.90469 956.8995,509.25039 C 955.6699,508.63561 954.0629,506.64677 953.3639,505.71485 C 952.4674,504.51956 950.5362,503.96488 949.5758,502.68439 C 948.4501,501.18341 946.6865,499.72447 945.5352,499.14886 C 944.0502,498.40636 944.1303,496.2011 943.0099,495.36079 C 941.2926,494.07283 940.9959,493.21737 939.2218,492.33033 C 937.8392,491.63904 936.2161,490.45855 935.9388,488.7948 z"
id="path4572"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 939.7269,485.25926 C 938.7481,484.76986 940.0108,487.80032 940.9896,488.28972 C 941.8978,488.74383 942.5041,489.55224 943.5149,489.80495 C 945.9183,490.40578 944.8272,487.37863 944.5251,486.77449 C 943.8062,485.33665 942.7695,485.0668 940.9896,485.5118 C 940.5731,485.61591 940.1478,485.34344 939.7269,485.25926 z"
id="path4574"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 992.2548,547.88872 C 990.6946,548.27878 995.4448,547.38364 997.053,547.38364 C 998.8173,547.38364 997.2394,549.68956 996.8005,549.90903 C 995.2986,550.65995 993.8466,550.8312 992.5073,550.16156 C 991.6521,549.73392 991.2024,547.25729 993.5175,548.64634"
id="path4576"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1002.6089,543.0905 C 1001.8056,542.68883 1005.0817,540.97022 1005.3868,540.81765 C 1006.6178,540.20214 1006.7988,539.8075 1008.9224,539.8075 C 1010.3911,539.8075 1010.4861,540.56511 1011.9528,540.56511 C 1013.7143,540.56511 1014.8979,540.47979 1015.7409,541.32273 C 1016.8251,542.40693 1019.0444,542.33288 1020.5391,542.33288 C 1021.7724,542.33288 1023.011,541.32273 1024.8323,541.32273 C 1026.8735,541.32273 1029.1664,541.46948 1030.3881,542.08034 C 1032.4013,543.08696 1030.0521,543.88984 1029.1254,544.35319 C 1027.4575,545.18716 1024.6652,544.60572 1022.812,544.60572 C 1021.4337,544.60572 1019.7686,544.60895 1018.7713,544.85826 C 1017.7614,545.11076 1015.6978,545.16992 1014.7307,545.36334 C 1012.4813,545.81322 1011.6653,545.29884 1009.9325,544.60572 C 1008.2883,543.94805 1006.9727,542.74703 1005.6394,542.08034 C 1005.3875,541.9544 1001.9786,543.56321 1001.5987,543.84811"
id="path4578"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1012.963,551.67679 C 1010.471,550.43083 1013.7723,549.90903 1014.9833,549.90903 C 1016.4742,549.90903 1017.9894,550.16156 1019.529,550.16156 C 1020.8484,550.16156 1022.223,549.5724 1023.5696,549.90903 C 1025.1509,550.30436 1027.0267,550.39843 1028.3678,550.66664 C 1029.7507,550.94323 1030.1961,551.202 1031.1457,551.67679 C 1033.1571,552.68249 1029.1011,553.44456 1028.3678,553.44456 C 1026.6,553.44456 1024.8323,553.44456 1023.0645,553.44456 C 1021.544,553.44456 1020.2815,553.95064 1019.0239,554.20217 C 1017.2802,554.55091 1016.1431,553.6971 1014.9833,553.6971 C 1014.2961,553.6971 1013.1382,552.37769 1012.963,551.67679 z"
id="path4580"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1009.68,560.26309 C 1008.7848,560.26309 1007.1619,560.29236 1007.6597,562.28339 C 1007.9073,563.27388 1009.9916,563.37145 1010.6901,563.54609 C 1012.059,563.20386 1012.0699,561.21908 1010.9427,560.76817 C 1010.5218,560.59981 1010.1009,560.43145 1009.68,560.26309 z"
id="path4582"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1018.5188,561.0207 C 1017.2076,559.89683 1018.9121,559.25294 1020.5391,559.25294 C 1021.6446,559.25294 1023.0817,559.89288 1023.8221,560.26309 C 1025.4283,561.06617 1023.3794,562.53593 1022.3069,562.53593 C 1021.4711,562.53593 1020.166,561.71804 1019.7815,561.52578 L 1018.5188,561.0207 z"
id="path4584"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1039.732,559.25294 C 1038.2403,559.25294 1042.5625,557.69771 1044.0252,557.99025 C 1046.2581,558.43684 1048.2668,559.55573 1050.0861,560.01055 C 1051.1022,560.26457 1052.5934,560.38032 1053.3691,560.76817 C 1054.9271,561.5472 1053.7191,562.53593 1052.3589,562.53593 C 1050.9279,562.53593 1049.4968,562.53593 1048.0658,562.53593 C 1046.6734,562.53593 1044.9012,561.52578 1043.7726,561.52578 C 1042.3749,561.52578 1041.0397,559.90679 1039.732,559.25294 z"
id="path4586"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 1030.1356,549.40395 C 1030.0418,549.40395 1025.9551,547.38364 1028.8729,547.38364 C 1030.4241,547.38364 1032.0299,547.6047 1033.166,547.88872 C 1034.1922,548.14526 1036.1976,548.39407 1037.2066,548.64634 C 1038.3608,548.93489 1039.8066,550.11707 1040.9947,550.4141 C 1042.2011,550.71569 1043.2246,551.63384 1043.7726,552.18187 C 1045.263,553.67228 1044.7828,554.14779 1044.7828,554.45471 C 1044.7828,555.85118 1041.3136,553.32467 1041.2472,553.19202 C 1040.6875,552.07255 1038.7014,550.4141 1037.4592,550.4141 C 1035.5702,550.4141 1034.6345,549.16311 1032.6609,549.65649 C 1031.238,550.01223 1032.0805,550.57093 1030.1356,549.40395 z"
id="path4588"
style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
<path
d="M 798.053,284.99655 C 808.204,280.71032 819.7138,281.11007 829.7546,277.49128 C 838.0138,275.55124 841.2783,264.22207 849.7411,264.79349 C 857.4289,266.27771 863.7716,273.58735 871.6825,274.96316 C 880.4113,287.20419 896.6818,287.65801 908.4527,295.61935 C 916.0312,297.53347 924.3129,304.26054 931.8837,301.92383 C 939.7448,297.98867 944.432,305.53444 950.9015,295.56118 C 959.5843,287.32777 972.1935,293.06296 982.9109,292.0676 C 988.3877,298.60647 993.5639,305.74274 1003.114,304.18945 C 1010.6077,295.89503 1015.7908,309.81201 1022.4646,313.04927 C 1034.6517,322.00747 1051.0824,316.85591 1064.2579,312.90269 C 1074.6811,307.07288 1076.8651,319.27568 1077.0018,327.14895 C 1076.3174,334.05617 1067.7977,342.44745 1074.5899,349.47038 C 1080.8671,357.57529 1071.7913,366.11017 1076.2153,373.41426 C 1080.3207,381.42435 1079.2832,390.70094 1072.8145,397.12347 C 1078.3688,405.77669 1081.0583,416.16823 1085.9464,424.79109 C 1083.353,434.28578 1096.664,436.17875 1103.3451,433.61963 C 1112.5674,434.58878 1124.5364,432.39893 1131.8067,437.86385 C 1132.4095,448.99015 1139.8343,448.74884 1144.9626,451.56274 C 1149.12,461.60936 1157.7001,452.34107 1164.4154,451.25891 C 1166.9149,440.63668 1176.116,450.68013 1181.1737,452.40065 C 1190.0853,447.88109 1194.5816,464.00984 1200.3475,455.62654 C 1203.0829,444.89635 1208.9858,448.49184 1216.1165,451.50375 C 1214.1839,454.03418 1204.1088,461.59486 1218.0239,468.59176 C 1220.9858,474.51964 1239.9519,471.36451 1228.2807,479.02366 C 1216.6149,491.23321 1242.7115,486.59834 1248.8336,483.23897 C 1263.1563,486.18691 1276.8783,485.93792 1291.0297,481.67123 C 1304.476,478.89523 1319.2288,488.64643 1329.3614,475.0948 C 1334.7022,464.76867 1342.7527,457.47943 1354.4655,454.06039 C 1363.038,448.88065 1372.8779,447.64279 1382.1229,445.04274 C 1388.5765,440.82884 1393.0314,433.43686 1397.0735,426.67044 C 1391.0866,412.23384 1390.8503,402.54616 1389.7657,387.00715 C 1386.39,367.87759 1440.0358,391.53878 1451.0834,394.82672"
id="path3633"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#27aaea;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
</g>
<rect
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect5722"
y="3.5720174"
x="2.2351589"
height="1211"
width="2048" />
<text
sodipodi:linespacing="125%"
style="font-size:40.00000381px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"
id="text3528"
transform="matrix(0.99954939,-0.03001684,0.03001684,0.99954939,0,0)"
y="559.44977"
x="211.39047"><tspan
style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Lucida Bright;-inkscape-font-specification:Lucida Bright"
id="tspan3530" /></text>
<text
sodipodi:linespacing="125%"
style="font-size:40.00000381px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"
id="text3629"
transform="matrix(0.99954939,-0.03001684,0.03001684,0.99954939,0,0)"
y="559.44977"
x="211.39047"><tspan
style="font-size:64px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Lucida Bright;-inkscape-font-specification:Lucida Bright"
id="tspan3631" /></text>
<rect
y="1020.0335"
x="3.2234876"
height="194.49152"
width="454.15341"
id="rect3170"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.11569786;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<text
sodipodi:linespacing="110%"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:110.00000238%;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
xml:space="preserve"
id="text3172"
y="1081.6006"
x="79.337463"><tspan
id="tspan3174"
y="1081.6006"
x="79.337463">Gallic Empire</tspan></text>
<path
style="fill:#71c837;fill-opacity:1;stroke:none"
id="path3176"
d="m 66.554316,1070.5656 a 13.644835,13.644835 0 1 1 -27.289669,0 13.644835,13.644835 0 1 1 27.289669,0 z" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;display:inline"
id="path3180"
d="m 66.554316,1117.2144 a 13.644835,13.644835 0 1 1 -27.289669,0 13.644835,13.644835 0 1 1 27.289669,0 z" />
<text
sodipodi:linespacing="110%"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:110.00000238%;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans"
xml:space="preserve"
id="text3182"
y="1128.2495"
x="77.657776"><tspan
id="tspan3184"
y="1128.2495"
x="77.657776">Roman Empire</tspan></text>
<g
transform="translate(-58.159469,20.331277)"
id="g3186">
<path
d="m 122.25771,1046.533 a 13.644835,13.644835 0 1 1 -27.289669,0 13.644835,13.644835 0 1 1 27.289669,0 z"
transform="translate(2.4560751,96.998901)"
id="path3188"
style="fill:#ffd42a;fill-opacity:1;stroke:none;display:inline" />
<text
x="135.81725"
y="1154.567"
id="text3190"
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:110.00000238%;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans"
sodipodi:linespacing="110%"><tspan
x="135.81725"
y="1154.567"
id="tspan3192">Palmyrene Empire</tspan></text>
</g>
<path
id="path3194"
d="m 50.120561,1083.0669 c -1.532321,-0.2316 -4.208148,-1.8433 -5.94628,-3.5814 -5.292311,-5.2923 -5.319406,-12.4141 -0.06721,-17.6663 5.225657,-5.2256 12.373411,-5.2256 17.599068,0 8.943371,8.9434 1.182,23.1776 -11.585575,21.2477 z"
style="fill:#aade87;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</svg>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
var bgMapDragState;
var bgSvgmap_drag = d3.behavior.drag()
.origin(function(d) { return d; })
.on("dragstart", bgMapDragStarted)
.on("drag", bgMapDragMove);
var lambda = d3.scale.linear()
.domain([0, width])
.range([-180, 180]);
var phi = d3.scale.linear()
.domain([0, mapHeight])
.range([90, -90]);
function bgMapDragStarted() {
bgMapDragState = 'inactive';
}
function bgMapDragMove(d) {
if (d3.event && d3.event.dx && d3.event.dy) {
bgMapDragState = 'drag';
}
d.x = (d.x || d3.event.sourceEvent.pageX) + (d3.event ? d3.event.dx : 0);
d.y = (d.y || d3.event.sourceEvent.pageY) + (d3.event ? d3.event.dy : 0);
projection.rotate([lambda(d.x), phi(d.y)]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment