blob: d773350448d8566ff66f06f9371980ebc3739eda [file] [log] [blame]
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" height="504.000000" width="576.000000" onmousemove='showCoords(evt)' onmouseover='showDatatip(evt)' onmouseout='hideDatatip(evt)' onzoom='updateCoords()' onscroll='updateCoords()' onresize='updateCoords()' viewBox="0 0 576 504" onload='initCoords(evt)'><title>mtsthelens / map8x11</title>
<script type='text/ecmascript' >
<![CDATA[
var ox, oy;
var newScale;
var distscale =1.000000;
var prevtarget;
var delaytime = 500;
var dttime;
var hcolor;
function getElemTitle (elem) {
var childs = elem.childNodes;
var found = null;
for (var i=0; i<childs.length; i++) {
if (childs.item(i).nodeType == 1 && childs.item(i).nodeName == "title") found = childs.item(i);
}
if(found) {
childs = found.childNodes;
for (var i=0; childs && i<childs.length; i++)
if (childs.item(i).nodeType == 3) {
return childs.item(i).nodeValue;
}
}
return "";
}
function Highlight (){ var mystyle = new String(prevtarget.getAttribute('style'));
var results;
if(prevtarget.getAttribute('fill')=='none'){
var now = new String('stroke:'+hcolor);
results = now;
if(mystyle && mystyle !="") {
results = mystyle.replace(/stroke:rgb\(\d+,\d+,\d+\)/gi,now);
} }
else {
var fill = new String('fill:'+hcolor);
results = fill;
if(mystyle&& mystyle !="") {
results = mystyle.replace(/fill:rgb\(\d+,\d+,\d+\)/gi,fill);
}
}
prevtarget.setAttribute('style',results);
}
function showDatatip (evt) {
var targ = evt.target;
if(targ) {
var title = getElemTitle(targ);
var x = evt.clientX;
var y = evt.clientY;
if (title) {
prevtarget = targ;
prevstyle = targ.getAttribute('style');
Highlight();
if (dttime != null) clearTimeout(dttime);
var dtr = svgDoc.getElementById('DatatipRect');
dtr.setAttribute('x',x + 8);
dtr.setAttribute('y',y + 8);
dtr.setAttribute('width',title.length*6);
dtr.setAttribute('height',16);
var newtransform;
if(svgRoot.getScreenCTM) {
var matrix = svgRoot.getScreenCTM();
var inv = matrix.inverse();
newtransform = 'matrix('+inv.a+' '+inv.b+' '+inv.c+' '+inv.d+' '+inv.e+' '+inv.f+')';
}
else {
newtransform = 'translate('+ox+' '+oy+') scale('+newScale+')';
};
dtr.setAttribute('transform',newtransform);
var dt = svgDoc.getElementById('Datatip');
dt.firstChild.nodeValue = title;
dt.setAttribute( 'x',x+(title.length*3 + 8));
dt.setAttribute( 'y',y + 20);
dt.setAttribute( 'transform',newtransform);
dtr.setAttribute('visibility', 'visible');
dt.setAttribute('visibility', 'visible');
}
}
}
function delayHide(){ svgDoc.getElementById('DatatipRect').setAttribute('visibility', 'hidden');
svgDoc.getElementById('Datatip').setAttribute('visibility', 'hidden');
}
function hideDatatip (evt) {
if(prevtarget) {
if(prevstyle && prevstyle!=""){
prevtarget.setAttribute('style',prevstyle);
}
}
if(dttime != null)clearTimeout(dttime);
dttime = setTimeout('delayHide()',delaytime);
}
// vars referencing SVG Object
var textX;
var textY;
var svgRoot;
var svgDoc;
// vars used for maintaining non-zooming objects
var coordElem;
var origWidth;
var origHeight;
var origPixSize;
var initLeft;
var initTop;
var pixSize;
var show;
function StaticElem(obj,x,y) {
this.obj = obj;
this.x = x;
this.y = y;
}
function initCoords(evt) {
if ( window.svgDocument == null )
svgDoc = evt.target.ownerDocument;
else svgDoc = svgDocument;
svgRoot = svgDoc.documentElement;
textX = svgDoc.getElementById("coordx");
textY = svgDoc.getElementById("coordy");
textX = textX.firstChild;
textY = textY.firstChild;
var viewboxes = svgRoot.getAttribute("viewBox").split(" ");
initLeft = parseFloat(viewboxes[0]);
initTop = parseFloat(viewboxes[1]);
var initHeight = viewboxes[3];
origWidth = svgRoot.getAttribute("width");
origHeight = svgRoot.getAttribute("height");
origPixSize = initHeight / origHeight;
var obj = svgDoc.getElementById('Coords');
var trans = getTranslate('Coords');
coordElem = new StaticElem(obj, trans.x/origWidth ,trans.y/origHeight);
updateCoords();
}
function formatCoord(base){
if (base==null)return;
var degrees = Math.floor(base);
var minutes = Math.floor( t = (base - degrees)*60 );
var seconds = Math.floor( t2 = (t - minutes)*6000 );
seconds = seconds/100.00;
return "" + degrees + "\u00B0 " + minutes + "\u0027 " + seconds + "\u0022";
}
function makeLat(l){
var north;
if (l >0) {
north = "N ";
}
else {
north = "S "; l = -1 * l;
}
if (l>90) l=90;
lat = north + formatCoord(l);
return lat;
}
function makeLon(l){
l= -l;
var east="";
if (l >0){
east = "W ";
}
else {
east="E ";
l = -1 * l;
}
lon = east + formatCoord(l);
return lon;
}
function showCoords(evt) {
var loc = new Point2D();
var loc2 = new Point2D();
var m_loc = new Point2D();
var x = evt.clientX;
var y = evt.clientY;
if(svgRoot.getScreenCTM) {
var matrix=svgRoot.getScreenCTM();
var inv = matrix.inverse();
loc.x= inv.a*x + inv.c*y + inv.e;
loc.y= inv.b*x - inv.d*y - inv.f;
}
else {
loc.x = ox + (x*newScale);
loc.y = - oy - (y*newScale);
}
var loc2 = transform2D(loc,DtoL);
var m_loc = transform2D(loc2,LtoG);
if(isLatLon) {
textY.data = makeLat(m_loc.y);
textX.data = makeLon(m_loc.x);
}
else {
textY.data = Math.round(m_loc.y);
textX.data = Math.round(m_loc.x);
}
}
function transform2D(pt,M){
var newpt = new Point2D();
newpt.x = pt.x * M[0][0] + pt.y * M[0][1] + M[0][2];
newpt.y = pt.x * M[1][0] + pt.y * M[1][1] + M[1][2];
return newpt;
}
function updateCoords() {
if(svgRoot.getScreenCTM) {
var matrix = svgRoot.getScreenCTM();
var inv = matrix.inverse();
var newtransform = "matrix("+inv.a+" "+inv.b+" "+inv.c+" "+inv.d+" "+inv.e+" "+inv.f+")";
coordElem.obj.setAttribute('transform',newtransform);
}
else {
var scale = parseFloat(svgRoot.currentScale);
var trans = svgRoot.currentTranslate;
pixSize = origPixSize / scale;
ox = initLeft - (trans.x * pixSize); //pan settings.
oy = initTop - (trans.y * pixSize);
newScale = 1 / scale;
var height = origHeight * pixSize;
var width = origWidth * pixSize;
newtransform = "translate("+(ox + width * coordElem.x)+" "+ (oy + height * coordElem.y) + ") " + " scale(" + newScale + ")";
coordElem.obj.setAttribute('transform',newtransform);
newScale *= distscale; }
}
function Point2D() { //initializes 2dpoint
this.x = 0;
this.y = 0;
}
function getTranslate(myElement) {
element = svgDoc.getElementById(myElement);
var offset = new Point2D();
var curTransform = element.getAttribute("transform");
curTransform = new String(curTransform);
var translateRegExp=/translate\(([-+]?\d+)(\s*[\s,]\s*)([-+]?\d+)\)\s*/;
if (curTransform.length != 0) {
var result = curTransform.match(translateRegExp); //extract the translation-part from the transform
if (result != null && result.index != -1) {
offset.x = result[1];
offset.y = result[3];
}
}
return offset;
}
]]>
</script>
<defs><clipPath id ="masterclip" ><path d="M0,0L576,0L576,504L0,504" /></clipPath></defs><g style="clip-path:url(#masterclip)" ><g id="screen">
<rect width="100%" height="100%" opacity="0" />
</g>
<rect style="fill:rgb(254,254,254);" x="0" y="0" width="575" height="503" /><g id="L0" >
<g id="L1" >
<defs><clipPath id ="cp0" >
<path d="M0,0v503h575v-503z " />
</clipPath></defs>
<image x="0" y="0" height="504" width="576" xlink:href="mtsthelens0.jpg" />
</g>
<g id="L2" >
<path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-329,902v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-194,-614v1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-60,900v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M74,-616v1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M209,898v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,-619v1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,895v-1515" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,-622v1515" />
<path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-373,858h1070" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M695,724h-1069" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-375,589h1069" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M692,454h-1068" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-376,320h1066" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M689,185h-1066" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-378,50h1065" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M685,-83h-1064" />
<path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-380,-218h1063" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M682,-353h-1063" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-382,-488h1062" /><path style="stroke-width:0.653086;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M678,-622h-57" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-42,858h-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-43,724h-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-44,589h-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-45,454h-336" />
<path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-46,320h-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-47,185h-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-47,50h-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-48,-85h-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-49,-219h-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-50,-354h-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-51,-489h-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-330,570v337" />
<path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-195,569v337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-61,568v337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M74,567v337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M209,566v336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,565v336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,563v336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,561v337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M365,858h337" />
<path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,724h336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M362,589h336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,454h337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,320h336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M357,185h336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M355,50h336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M353,-85h337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,-219h336" />
<path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,-354h336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,-489h337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,-623h336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-330,-282v-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-195,-283v-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-61,-284v-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M74,-285v-337" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M209,-287v-336" />
<path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,-288v-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,-290v-336" /><path style="stroke-width:1.306172;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,-291v-337" /><path style="stroke-width:5.224689;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-373,902l1071,-10" /><path style="stroke-width:5.224689;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M698,892l-20,-1515" /><path style="stroke-width:5.224689;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M678,-623l-1060,10" /><path style="stroke-width:5.224689;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-382,-613l9,1515" />
</g>
<g id="L3" >
<defs><clipPath id ="cp1" >
<path d="M0,0v503h575v-503z " />
</clipPath></defs>
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,426l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,311l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,242h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,439l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,15h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M3,6l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,20l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,411h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,89h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,297z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M3,229l-3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,172l4,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M3,117l-1,-10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,15l-5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M3,6l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M3,117h-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M0,123l12,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,133l-1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,175v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M0,494l6,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,280h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,248l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,242v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,223v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M1,89l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,97l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M0,153h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,229h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,226l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,251h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,297l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,303l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M5,500h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M7,419l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M1,313h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,241h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,224l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,185l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,175v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M3,153l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,133l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M3,90l16,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,98l11,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,19h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M14,124h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M8,128l-7,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,176l-1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,185l-6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,219l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,224l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,253l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,253h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M5,313l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M1,411l7,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,438l4,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M7,433l4,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M7,433l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M5,500v3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M6,491l-2,9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,303l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,298l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,251l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M5,227l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M5,226h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M5,216l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M4,154l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,137l3,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M7,215l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,220l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,221z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,241l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,293l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M8,299l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M7,419l-3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,423v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,497l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M8,406l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M8,299l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,220l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,198l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,168l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M17,165l-11,-9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M12,143v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,133z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,128v-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M14,124l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,130v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M11,145l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M12,146z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M11,148l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M7,183l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,185l8,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M8,201l1,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,221l2,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,233v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,311l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,394l6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,378l10,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,405v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,423h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,421l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,401l-1,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,307l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,293h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M5,242h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,233z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M14,124z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,130l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,198h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M14,230l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,233l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,242h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,253h-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,293v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M15,469l-3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M14,501l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,471l1,12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,420l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,404h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,393l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,376l5,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,296l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,292l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,280l11,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,253h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,242l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,231l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,208l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,179l-3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M11,148h3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M11,145l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M19,138z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M14,134v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,131v2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,141l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M14,136l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M8,172l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M17,165v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,179l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,198l7,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,210l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,215v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,234h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M16,232l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,279l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,290l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,307l-4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,401l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,497l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,429l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,323l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,253l2,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,213v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,186h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M14,178h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,67h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,76z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M17,167l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M17,194v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M10,212l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,215l-5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M14,289l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,395l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M15,469v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,483l1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M15,468l3,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M14,432l20,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M16,424l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M15,304l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M16,288l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M16,249l4,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M15,240h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M17,193h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,83l9,-16" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,81l3,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M19,193h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,230l2,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,230l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,237l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,245z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M17,240h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,280z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M17,303l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,374h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,467l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,479v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M14,486v8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,467l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,327l2,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M17,202l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M19,151l-5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M13,102l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,143l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M19,151h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,207l-2,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M23,458l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,479l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,481l2,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M19,473l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,459l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,415l7,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,374l-7,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,334l1,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,279l-7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M16,249l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,245l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,235l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M19,186l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M15,178h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,143l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,128l-1,10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M15,129l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M9,131z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,145h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M21,151h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,245h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,237l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,245l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M19,302l4,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,348l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,424l7,-9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,466l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,475l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,493l-1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,497v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,374h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,343l4,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M23,301h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,225h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,193l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,185l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M22,165h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,145h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M14,105l9,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,107l16,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,15l7,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M4,5l9,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M12,85l7,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M23,88l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,134v-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,145h-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M22,151l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M16,178l9,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,186z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M17,202l7,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M23,234h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M19,286l9,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,301l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,363l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,397z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,397z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,405l1,-8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M36,401z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,463l6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,497l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,498l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,493v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M23,458l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,457h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,363l1,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,334l-3,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,304v3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,280l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,279l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,253l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,234l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,203l11,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,174l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,134l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M23,110l4,14" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M18,117l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,91l8,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,83l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,81l2,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,7l-41,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,67z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M26,75l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,124l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M20,123v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,137v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M26,165h-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,186l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M21,225h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M26,225l5,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,233l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,253l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,281h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,307v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M26,457z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M26,457h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,500l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,462h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,397v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M24,374l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,350l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,315l-3,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,289h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,246h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,185l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,171h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M29,161l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M25,150l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M26,126l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,107z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M22,67l26,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M26,75l9,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,110l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,128v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,145h-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M28,149h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M29,161l-3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M33,171l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,351l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,378v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,380l-2,14" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M36,389v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M17,425l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,375l2,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,373l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,357l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M25,312l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,281z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,255l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,246l-2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,171l-6,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M30,160z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M29,149h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,145l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,138h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,110h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,137l1,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,138z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,144h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M30,149h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M31,149l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M31,160h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M27,248l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,281l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,280l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,364l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,378h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,500h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,380h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M36,389l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,367l3,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,258z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M33,153v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,144h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,132l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,110v14" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,107l1,-8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,124l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,137l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,137h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,144h4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M33,160h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,244v-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,277v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,277z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M29,289l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,354z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,396l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M37,398z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,457h4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M31,462h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,500h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,457z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,462h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M33,408l-6,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M36,401z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,354z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,301z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,294l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,240h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M33,160l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M33,153h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,138v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M33,128v2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M34,153l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M36,154h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M32,230l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,258z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M35,279l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,297v4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,301l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M30,354z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M35,500l7,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,430l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,410l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M38,407l-2,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,321v-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,305v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,277l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,276v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,258l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M33,249l2,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,226l-4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,226v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,170h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M41,134v-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,113l4,-7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M44,120l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M39,152l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M35,198l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,212l-7,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,212h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M33,250l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,254z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,272h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,309v-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M37,398l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,410l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M38,407l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M35,418l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M37,412l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,457h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M34,462h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M40,457l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M35,462l12,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M37,420l8,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M40,415l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,403v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M28,394l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M36,393l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M38,382l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M37,368l-3,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,341l2,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,309z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,307z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,254l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M33,249v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,225l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M37,196l4,-7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M35,170l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M35,162l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M38,153l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,138l-3,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M37,154l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M39,164z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M43,163l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,244l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,261l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,309z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,307l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,356l-1,-15" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M38,382l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,390l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,403z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M36,429h8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,395v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,293l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M37,262l10,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M41,234l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,224l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M42,144l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,123l-1,-10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M45,120h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,105l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M41,134l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M40,150l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M41,234l-2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,249l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,292l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M42,378l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,403l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,457l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M39,408l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,405v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,401v1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M40,381l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,321l2,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,290l-4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,264z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,258h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,212l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M43,163l-4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,258z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,272h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,290l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,369l-7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,395l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,431l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,486z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M46,406l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,397l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,390v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,384l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,369h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,356h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M40,331v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,309v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,309v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,272l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,245l1,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,232h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,232l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,214h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M41,189l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M41,173l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M42,144l-1,5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M43,141l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M40,125l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,124l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M39,123v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M45,120v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,72l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M35,77l9,11" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M45,124z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M45,124z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M46,127l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M49,129l-3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,150l1,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,172l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,184l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M45,223h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M45,231h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,230l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,294l3,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,310v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M38,311v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M40,332v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,325l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,384l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,429l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M45,430l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,486z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M42,411l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,406h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M45,383h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M55,340l3,-7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M46,297l6,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,274l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M56,233h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,223h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,214h-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,184l-5,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,106l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M45,119l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M46,162h6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M47,202l3,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,223l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,214l4,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,230h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,264l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M46,276v6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,314l2,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M45,376h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,383h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M45,422h3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M42,416h7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,482l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,457v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,422h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,416l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M47,410h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,405l3,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,383l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,322l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,249l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M47,202l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,184z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,172l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M45,139l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,73l7,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M44,88l15,10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M49,118l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M52,162h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,173l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M52,202l-3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,252l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,306l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M49,376l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,376l-3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M50,377l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,384l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,397v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M53,407z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,405h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M49,410l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,422l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M51,417l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,486z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,503l-7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,479l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,433l2,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M51,310l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M46,282v7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,264v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M46,258l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,245l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,226l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M50,195l3,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,150l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,146l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M48,134v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M49,129l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M51,117z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,101l-12,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M43,103l18,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M51,117l5,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M51,151l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M51,182h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M50,196v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,233v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M49,265h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,259l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,265z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,260h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,301l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,304l1,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,304l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M45,356l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M53,407l-3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,443l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,486v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,458h-12" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,467h7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M47,431z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M53,407z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M48,405z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,397l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,396l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,321l-1,-11" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,265l14,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,260l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,253l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M56,233l-8,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,206l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M52,202l2,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M56,178l-4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,174l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M51,145l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M53,162l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M54,160l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M55,163l4,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M54,193h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,205v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M54,200l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,254h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,376l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M53,379l6,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M55,392l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M55,392z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,394v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,395h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,404l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M55,402l3,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,424l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M56,421l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,482v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,487l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M55,427h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,422h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,394v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M55,392l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M46,361l11,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M50,369l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,322v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,293l1,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,215l-3,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,175l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,146v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,147l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,252l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,321v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,328z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,467l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M55,490l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,478l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M56,446l-1,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,430v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,404v2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M55,402l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,388v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,328l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,320l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,305v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,267z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,261l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M59,190l-5,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M63,151v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M56,156l3,-12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M59,130l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M62,140h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,232h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,232l5,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,291l-6,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,307v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,305z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M55,340l4,9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,399v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M58,399v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,409l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,457l-1,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,491l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,479h3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,469h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,430l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,427l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,422h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,410l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,406v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,398v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M58,397l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M59,382l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,387l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,305l-1,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,291l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,252l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M53,211l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,206l-4,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M61,143l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M58,157l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M64,203l-5,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M58,198l-2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M69,253l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,251l8,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,305z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,371l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M61,383v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,388z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,403l2,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M58,399z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,412l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,422h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,422l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,457h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,457l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,479h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M58,447l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,414z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M61,385h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,377l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,349l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M59,322l-2,6" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M59,190l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M60,161l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M61,132l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M62,133l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M59,167l6,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M68,186v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M62,189l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,305z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,378l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,392l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M64,388l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,414l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M63,415l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,431l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,495l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,496z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,450l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,391l-1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M64,388v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M64,380z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M63,385h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M57,354l8,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M52,368l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,320l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,305z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,288l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M64,203z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M58,198l6,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M62,171l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M63,151h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M56,156l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,146v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M59,144l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M56,125l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M66,137l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,146l-3,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M59,144z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M66,194l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M66,195v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M65,203h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M65,196h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,286l5,-18" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,288h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M63,350l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M65,359v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M54,369v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M64,380l3,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M64,385v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M64,387v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,392l-5,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M61,390l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M63,433l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,502l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M78,497l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,496h6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,469l6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M63,453v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M65,434l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,364l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,305l7,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,268v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,282l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M65,203h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M64,151l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M68,144l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M60,7l4,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,121l-3,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M68,186l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,355l-9,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,364l5,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,388l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M64,386z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M64,424l3,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,428v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,429l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M70,439l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,440z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,468l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,479h6" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M74,491h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,440l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,417h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,388v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,388z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,388z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,357l3,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,267z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M69,253l-7,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M63,222l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M66,195l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M66,174l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M68,144l-2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,122l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,121v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,101l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M61,109l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,120h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M62,171l8,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M70,178l-2,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M67,190l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M77,193l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M68,220l8,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M69,314l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,317l7,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M68,496l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M74,491l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,467h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M68,479h7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M75,491h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,417l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,316l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M76,217l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M70,166z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,156l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,120l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,135z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,135l-5,8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M76,143l3,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,149l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M70,158h4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M70,166l7,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M74,234l-3,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,290l-1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M70,418h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M70,499l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M76,493l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,500l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M78,497z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M70,439l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M68,436v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,431h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M71,418l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,282v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,151h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,124z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,126l1,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,107l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,124v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,126l2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M62,305z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,343l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,431h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,441l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,284l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,267h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,252l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M66,247l9,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,151v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M76,109v4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M77,169z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M70,203h9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M85,237l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M75,239l6,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M81,243h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M67,267h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,280h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,290l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M78,294l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,435l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,431l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,435v3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,427l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,303v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M74,234l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M77,169z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,151h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,149l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,125v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,131l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M56,78l37,-13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M76,143l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M78,175l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M76,420l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,435h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,438l-4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M78,422l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,320h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,251l7,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,243l-5,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,203l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M77,193l-6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M77,169v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M78,151l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,133l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M76,113l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,120h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,112v12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,120z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M74,158l6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M79,179v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M79,179v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,280l4,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M73,341l14,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,424l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M81,434v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,427l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,424v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,297l3,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,283l8,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M93,286l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M81,229l-10,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M80,187l-1,-7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M78,175l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M77,171v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,138l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M79,126l3,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M81,135l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,149l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,150l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M83,173l-1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M84,176l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M80,191l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M81,229h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,303l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M81,433l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M83,431v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M86,305l-6,15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,248h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,211l-5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,170v-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,133v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M84,193l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,427v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M85,429l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M85,195l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M80,187l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M85,179v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M83,173v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M82,170v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M80,157l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M85,147z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M85,147l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M83,160l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M89,168v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M84,176l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M85,181h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M85,189h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M85,237l-4,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M97,473l-24,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M75,479l15,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M77,491h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M86,236l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M86,229l-5,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M92,213l-2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M86,189l5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M89,167v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,149l6,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M93,155v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,181l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M87,196l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M88,200l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M89,228l2,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M89,229l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,427l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M72,343l18,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,247l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M92,215v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M88,182l3,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M89,168l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M89,165l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M90,173v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M91,174l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M91,186h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,235l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,247h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M90,483l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M78,491l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,476h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M89,228v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M91,225l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M89,205v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M92,186l4,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M91,174h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M92,179l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M90,173z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M93,155l-3,7" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M92,215l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M92,223l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M89,326l-2,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M98,330l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M97,338v-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M95,289l-2,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M91,247h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M90,236l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M89,236h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M92,230h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M93,217v4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M89,206l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M92,179h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M93,173l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M93,178l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M93,173h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M94,173z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M94,177l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M97,196v1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M97,197v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M100,230l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M100,230h-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M95,293h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,423l11,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M96,293l1,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M95,289v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M87,277l9,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M94,284h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M94,173l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M98,175z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M93,65l3,16" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M98,168l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,245h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M97,238l-3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M96,274l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M96,284l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M104,291l-1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M97,297h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M98,297l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M100,351l-10,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M94,247l9,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M102,216v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M97,198l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M96,192l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M96,170l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M98,175z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M102,216l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M90,325l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M100,328l-2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M101,328l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,354l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,476l6,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M98,422h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,303l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M100,300z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,184v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M98,175l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M98,168v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M96,81l11,-24" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M99,166l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M101,165l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,167l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,184z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M99,197h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M101,217h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M100,282l5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M103,289l3,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M90,325l13,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M100,328z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M97,473l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M91,485l22,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M80,495l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M101,474h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M100,300l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M102,217h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M104,168l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M99,197l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M104,199h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,319l3,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M100,328h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M112,414l-12,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M102,474l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,492l-11,11" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M82,496l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M103,292l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M99,272l5,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M104,245z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M104,237l-7,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M102,215h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,124l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,124v3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,127l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M104,217l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,227h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,227l-8,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,268h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,303l3,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,353l-3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M106,345l-9,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,323h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M101,328z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,309l2,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M104,294l3,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M104,291l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M108,268h-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M104,229h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M104,199l6,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,184l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M109,174l-3,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M100,173l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M108,123l-3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M110,176v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,177l3,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M104,188l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,189v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M107,192l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M105,279l8,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M106,287l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M107,297l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M107,322l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,353z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M106,345l6,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M104,476z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M111,366l-5,-9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M107,322v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M108,316l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,239l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M107,132l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M108,134l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M110,177v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M104,245h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,239l-12,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M110,301l1,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,307z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M109,317v3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M113,320v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M107,331l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M111,208l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,188l-6,-10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M109,174l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,176v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M114,142l-4,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M112,123h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M117,150v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,161v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,189h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M109,195h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,354z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M112,350l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M103,353v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M112,343v7" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M110,330l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,312l-3,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,307z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M114,294h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,280z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M108,288l5,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M106,245l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M112,123h-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M111,208l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M109,247l1,12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,280z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M113,286h4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M114,294l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,295l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M109,320z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,323l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M117,338l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,349l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M109,482h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,492l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,492l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,483l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,415l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M111,366l4,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M115,326l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,212l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,126l-2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M117,150z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M117,150l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,152z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M114,199l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M110,204l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M118,202v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M112,205v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,294z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M115,343l-1,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,358l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M117,482l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,483l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,491l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,415l9,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,358v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,324l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,323v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,294z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M119,210l6,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,160z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,128l-1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M114,142l3,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,161z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M121,172l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,178v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M113,316v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M117,316v4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M117,320h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M120,325l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M115,368l7,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,490l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,495l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M115,341v2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M117,338l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M118,320l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M114,312l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,307l-2,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M117,301l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M118,295l-3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M108,268h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M118,203l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M110,195l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,161l2,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,152v8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,144v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M120,175l-2,13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,178l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M119,205h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M121,205l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,280z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M117,286l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M120,285l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M123,289v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,298l-1,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,313l-2,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M120,325l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M119,336l4,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M118,481l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M120,497l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,487l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M121,480z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,298l-4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M113,280l8,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,238h-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M116,128l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M121,129l6,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M110,259l11,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M121,278l7,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M121,305l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,479v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M121,480l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,487l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M123,334h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,313l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M135,243h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M125,212l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,206h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M118,188v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,182l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,144l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,142l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,147l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,153l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,162v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,183l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M130,187l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,202v-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M124,206l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M115,227l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,317l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,360l-1,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,486h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,493l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,496l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M124,325l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,239l-3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M129,231l-10,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,162v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,147v3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,143h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,153l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,197l-1,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M130,194v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M123,289l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M127,334l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,357l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,486l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,490l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,493v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,485l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M124,321v4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M127,291h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M128,284z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,204l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,164l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,156v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,150l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,158v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M110,268l11,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M128,284z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M128,291h10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M132,311h6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M136,317l-4,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M133,473l-11,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M128,484l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M128,354l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M129,170l-3,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,143l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M127,135l8,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M130,146z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M134,152l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M128,284l-5,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M133,326l-2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M132,352z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,338v-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M128,284z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M132,237l-7,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M132,230l-3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M131,215l1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M126,202v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,197l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M130,194l2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M125,189l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M130,187v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M130,146l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M135,136l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M135,184l2,-8" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M135,184h-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M135,189l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M136,192l-4,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M132,210l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M134,238l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M142,233l-10,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M129,333l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M132,352z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M128,284z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M134,152v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M132,147l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M134,153h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M123,278l12,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M138,291v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M133,473l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M134,471l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,338l6,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M133,326l7,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M135,273l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M135,243l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M140,159v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M140,162l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M133,214l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M142,234l6,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M143,263z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M136,317l-5,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M132,334l8,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M139,223l-5,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M135,189h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M141,166v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M137,139l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M136,153l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M140,158l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M140,159v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M141,167v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M145,186l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M140,186l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M137,270h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M122,419l20,17" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,324l1,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M140,310l3,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M142,282l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M134,238l2,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M142,234v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M141,168l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M139,154z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M140,141l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M136,137l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M144,143l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M139,155v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M146,182l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M137,176l3,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M136,244h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M142,282h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M138,287l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M140,310l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,333l-1,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M142,436l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,335v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M145,271l-6,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M139,223l4,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M145,186l9,11" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M143,230l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M145,271l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M143,438l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M145,440l6,9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M132,352h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,333z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,333z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M141,324l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M142,318l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M147,289h-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M154,197l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M139,0l-34,50" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M130,49l30,-43" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M156,48l11,-15" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M143,281v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M143,282l4,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M145,319l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M151,331v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M151,331z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M151,331z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M133,352l12,17" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M148,473h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M135,473h13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M145,369l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M147,289l-4,17" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M143,263l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M143,263l4,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M137,244z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M146,182v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M140,185v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M152,131l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M152,131v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M145,172v7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M137,244l11,5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M148,240h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M149,249h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M153,242l-4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M147,258l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M147,266l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M153,331h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M149,288l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M143,282l8,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M153,129l-1,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M149,138l3,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M149,273l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M147,286l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M151,331l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M151,449l2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M147,372l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M149,315l2,-25" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M147,231l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M149,138l-3,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M151,283l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M151,330l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M159,463l-6,-9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M157,473h-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M160,481h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M147,372l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M154,335l-7,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M152,329l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M152,269l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M149,268l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M151,260l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M149,249l6,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M153,242h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M107,57l-2,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M138,75l-8,-26" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M159,57l-3,-9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M153,259h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M157,276h4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M160,333h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M160,333l5,12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M156,382l-7,-9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M161,269l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M155,258l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M152,235l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M155,237l11,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M155,258l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M160,268l-4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M149,315l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M159,333l-5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M155,199l3,-8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M160,481l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M159,463l-2,10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M160,268z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M161,269v7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M158,485l4,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M155,252l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M154,242l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M152,122l10,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M176,186l-18,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M156,265l10,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M162,491l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M163,481l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M168,311l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M157,276l-5,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M168,224v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M138,76l23,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M158,60l9,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M167,82l1,8" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M166,257z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M166,286l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M169,361v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M165,478l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M156,382l10,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M150,289l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M158,254h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M168,90l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M156,244l11,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M169,243h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M172,260l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M173,313h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M166,385l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M165,478l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M164,492l7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M165,345l4,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M168,310l1,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M168,297l-2,-11" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M169,243l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M168,224l-2,10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M168,223z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M169,287l-1,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M168,310v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M167,386v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M169,476h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M170,476l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M168,387l7,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M170,362l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M169,282l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M168,223l11,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M162,125l13,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M161,74l5,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M167,59l5,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M138,75v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M159,57l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M166,81l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,119v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M170,300l5,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M169,352v5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M170,362l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M174,469v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M172,473z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M167,387h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M169,302l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M166,257l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M171,243h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,118l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M179,85h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M179,85l-8,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,243h-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M171,278l3,-8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M173,361h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M174,469l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M174,463l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M175,365v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M169,360v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M173,313l-4,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M177,58l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,319l-5,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M173,361h3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M175,365v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,378v-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,382l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M174,463v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M171,491l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,460v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M177,459l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,391l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,382l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,378l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,375l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M177,369v1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M175,367l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,361l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M179,333v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,288l-6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M160,6l18,23" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M167,33l6,8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M172,66l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M177,58l3,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M179,251l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,292v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M178,328z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M177,370v1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M177,371z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M175,379v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M178,384v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M177,393z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M177,393l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M177,459l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,394l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M178,385h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M177,371z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,365l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M179,333z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M178,328l1,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,288h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M171,278l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M174,270l5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M179,251v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,93v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M178,29h3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M173,41l7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M176,243h3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M177,259l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M179,267z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,288l-6,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,319l-2,9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,365h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M179,385z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M178,460l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,492l6,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,496l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,365v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,364v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M179,254l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M185,245l-6,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,93l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M176,75l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M182,65h-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,29l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,40l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M180,52l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,86l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,76l-6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M183,65h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,86l8,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,76l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M183,65l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M184,249l-4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M184,249l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,255h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M179,267l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M185,269l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,362l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,366l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M184,371v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,373l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,374l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,378v-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M180,385h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,461l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,486l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M180,385l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,374v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,368l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,333l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M200,209z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,261v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M180,333h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,362l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M184,371l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,378l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M184,379l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,473z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M182,462l1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M185,380l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,345l-4,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M174,313h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,255l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,29l-3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,41l-10,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M195,53l-11,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M188,248v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,261l-2,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,274l4,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M175,313v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M185,336h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M183,361l4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M183,386l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M184,467l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,489l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,473v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M186,470l1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M183,465l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M181,396l7,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,358z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M186,336l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,299l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,241v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M184,51l-4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,13l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,3l7,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M176,186l13,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,255l8,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M203,258h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,255h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,305v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,358l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,358h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,372l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,376v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,474l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,407l7,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,299l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M188,248h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,255h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M185,245h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,241z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,179l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,165l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M201,171l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,95l-9,23" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M178,0l10,13" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,0l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,14l13,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M197,8l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,165v8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M201,171v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M200,182l2,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M186,245l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,241l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M192,242z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M188,385l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,496v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,479l2,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M195,411l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M190,386l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,374v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,345l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,255z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M200,209l-21,10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M187,79l6,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M184,66l12,-9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M192,237l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,358h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,376l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M200,416l-4,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M192,483l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M190,374v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,307l8,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M195,268l1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M179,118l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M192,237l4,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M192,242z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M194,284l-3,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M197,311l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M198,312v12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M193,351v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M193,370l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M188,489l-1,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M198,312z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M194,289l-2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,173v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M201,173v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M198,246l-6,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M198,324l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M195,385l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M195,369h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,303v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,28l16,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M196,38l9,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M204,48l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M191,274v6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,303z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M200,370l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M197,384z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M197,384l7,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M200,370z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M194,284v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M198,246l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M196,232l4,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M200,228h10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M200,247l4,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M200,370l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M203,373l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M200,503l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M201,499l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M210,376l-4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M201,371z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,292v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M203,258l-7,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M200,182v27" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M203,326l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M203,373l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,374l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,493l-2,-12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,303v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M199,253l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,258z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,249z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M210,177l10,6" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M201,174l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M189,28l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M196,38l-5,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M204,48l-9,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M193,75l6,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M196,57l13,9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M214,155l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M207,169h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M206,250l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M206,251v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,252h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,258l6,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,302l1,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,304l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M206,305l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M204,327l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M207,316l1,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,282l2,-12" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M212,283v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M193,162l21,-7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M202,170l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M203,16l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M199,9l9,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,15l18,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M208,7l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,284v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M207,331l2,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M212,467h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,252l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M210,257z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,20z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M214,8h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M209,339l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,493l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M204,388l16,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M210,341l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M214,298v-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M212,264l-4,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,20z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M214,8l5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,22l18,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,35l11,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M206,47h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M205,284v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M213,288l-1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M207,316l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M214,428l-14,-12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M209,319l3,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M212,258l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M213,289l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M213,324l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M213,324h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M212,467l-2,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M210,477l-7,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M208,318l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M216,303l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M213,288v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M208,269l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M215,277l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M212,264h3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M215,259l-3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M215,245l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M211,173l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,114v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M227,79l8,-12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,114l-48,-34" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M227,79l-18,-13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M216,246l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M217,247l2,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M226,253l-1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M215,259l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M215,264l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M218,265h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M225,268h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M217,306l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M211,343l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M217,351l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M214,428h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M215,428l6,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M219,352l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M215,347l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M211,343z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M218,288v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M215,245h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M210,228l16,-16" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M217,157z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M208,169l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,21h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M216,34l11,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M209,47l22,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,154l24,-40" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M226,212l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M217,245l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M225,249h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M216,324l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M218,325l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M220,327v3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M222,398l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M221,430l10,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M217,310l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M214,298l2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M218,288l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M215,277l10,-9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M218,257v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,259l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M220,264l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,286l-5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,286l-4,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M225,297l-2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M225,356l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M222,398l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M224,399z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M220,330l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M218,314l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M216,309l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M221,315l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M219,352l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M222,353l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M226,341l-2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M219,333l5,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M224,316h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,286v7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M220,264v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M227,268l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M225,297l1,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M224,316v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,337v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,337z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M210,376l21,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M224,399l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M224,317l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,286h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,286l8,-12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M235,282l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M230,326l-2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,355l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M217,467l7,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,474l-9,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M226,341l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M219,255l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M226,253l-3,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M220,183l29,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M236,350l-6,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M231,379z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M230,344l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M232,291v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M228,265l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M220,242l13,-21" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M228,244l9,-13" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M237,246l3,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M220,242l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M228,244l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M237,246l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M232,252l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M238,253l5,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,254z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M234,337v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M230,360l7,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M230,327l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M230,326v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M228,311l-2,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,310l-5,-19" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M217,157h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M235,282l-2,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M226,318l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M232,329l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M233,332v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M233,332l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M230,313l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M238,311l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M233,289l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M232,314l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M234,337l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M231,379l6,9" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M236,339v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,286z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M236,350l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,351v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,388l9,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,365l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,352l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M236,339l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M238,330l1,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M232,274l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M236,281l3,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M236,318l2,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M238,330l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M241,333l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M238,340l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M240,342l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,474l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M240,473l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,471h4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M226,400l7,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M241,333z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M239,331l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M238,322h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,319l-1,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M230,313l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M238,311l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M241,312l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,314l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M248,329z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M241,333z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M238,366l7,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M240,429l-9,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,443l-9,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,499l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,429v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M240,429h3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M239,354l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M239,322v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,324z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,297l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,286l-1,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,286z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M232,252l-2,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M236,263l2,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,254z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M223,20h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M219,5l14,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M233,221l4,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,231l7,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M240,241l11,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M236,263l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,254l-2,14" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M251,267v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M244,282l-1,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M248,294z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M241,355l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M244,357l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,324l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M239,322z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,321l2,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M239,322z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,319v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,297l2,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M244,282l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,288z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M233,272l2,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M239,276l4,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M248,274l3,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,20z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M233,3l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M246,0l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,249l4,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,254z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M251,264h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,288z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M242,314v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,314v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M241,333l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M248,329h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M243,346l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M246,359l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,372l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M245,348h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M252,264z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,254h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M229,210h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,248z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,254h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,315v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,336l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M249,329l4,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M247,348l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M248,349l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M233,403l15,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M243,430l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,375l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M246,337l2,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M253,333z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,317h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,309l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,308v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M248,294l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,288l-1,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,279l3,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,248h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M249,254h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,280z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,277v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M250,292v-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,298l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M252,309v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M252,319l-3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M253,320l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M249,362z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M248,412l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,499l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M250,500l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,413l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M246,390h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M248,340l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M253,333l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M250,299l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,291l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,288l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,280z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,288z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M250,254l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,263h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M248,248h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,20z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M236,11l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M247,3l3,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,0l3,10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M274,0l2,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,220l13,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M244,229l20,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,238l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M259,244l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,280z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,277z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,288z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,291l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M252,309l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M249,376l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M251,390l2,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M251,503v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M252,503h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M249,363v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,334l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M253,310l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M252,294v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,288l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,278z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,277v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,277z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,279v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M259,244h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M251,248l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M253,239l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,263l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,283z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,282l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,305l1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M253,320l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M252,342l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,472l14,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,394l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M253,393l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,322h3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,305z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,304v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M252,295l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,288v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,267l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M252,255l8,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,263l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,267l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,276l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M257,279v-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M256,295l-1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M255,299l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M254,311l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M250,363l7,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M257,368h3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M252,414l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M257,417h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,377l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M253,353h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,344l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M259,316z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M257,312l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M257,297h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M257,300h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M256,295l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,290l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,283l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M255,282v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,292l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,293v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,297l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M258,300v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M259,303l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M258,313l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M257,322l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M249,363h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M261,402l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,472h-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M254,443h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M245,431v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M264,418l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M256,395l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M254,353l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,346l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,334l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,334h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,324z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M259,316h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,299l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M258,301z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,293l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,287v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M261,275l-1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M257,274v-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M225,21h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M263,32l-36,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M231,50l16,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,262v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M256,264v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,283l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M256,281l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,288v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,294l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M259,303l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M261,306v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M261,306z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,323l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,324z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,334z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M261,380v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M264,418l-5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M252,503z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M259,397h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M258,378l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,368l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,334v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M261,306h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M260,304l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M261,301l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M258,301z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,290v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,276v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M257,279v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,266v-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,267v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M263,247l-3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M262,256l-7,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,266v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,269v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,281l1,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,284v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,284z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M261,295l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,299h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M262,302h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M260,316l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,329l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M262,369l6,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M261,381l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M263,405v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M263,406h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M262,403l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M261,402l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,397v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,335l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M260,324l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,299z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,303l-1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M263,298v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M263,247l6,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M262,256l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,234l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M252,239h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,290l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,299l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,303z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,325z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M256,354l9,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,386h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,405l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,406h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,471l-5,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,448l1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,397l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M263,385l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M265,357l4,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M263,339l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,325l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M263,318l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M263,306l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,303l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,303h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,300l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,291v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,284v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,269l1,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,236l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M269,255l2,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,259l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,281l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,293h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,301z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,301h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,304h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M266,308l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,329v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,330h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,386z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M266,419l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,471l4,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,480h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,479v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M267,420l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,375z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M262,348h6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M266,319h3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M268,309z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,301v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M267,304l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M267,293v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,276v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M247,49l36,17" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M270,265l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,289v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M267,294l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,302h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,305h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M268,309z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M268,309l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M269,362l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,375z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,405h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M270,424l-2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M271,426l-1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M271,431v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,448l-11,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,386z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,375l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M270,364l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M268,348l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M269,319l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M269,310l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M269,305l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M269,302l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M269,297l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M269,296v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,289l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,286v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,286z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M271,259l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M265,260l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,238l6,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M270,261v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,284l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,291l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,298l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,303l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,306l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,340h-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,349l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M271,431l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,478l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M271,426v3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M270,424v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,386l4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,340h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M269,330l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M271,311l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,307l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,304v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,299h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,293z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,286l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,293l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,299l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,305h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,309h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M272,312h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M270,320l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,331l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M273,374l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M273,480l2,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,451l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M273,432l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M266,405v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,397l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,383h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,374h-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M272,365h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,340h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M273,312l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M273,305h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M273,300h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M274,294h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M275,270l-3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,205l-43,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M250,223l21,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M273,281z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,294z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,295l-1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,300h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M274,309h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M275,313h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,351l4,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M275,365z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,374l4,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,383z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M269,401v3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M280,424h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,443l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,478z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M275,430l5,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,383l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,352l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M272,351z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M273,340l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,332l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M272,321l5,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M276,313h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,309h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M276,305h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M276,300h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,294h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M274,280l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M276,268l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M276,240l13,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,280h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,295l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,300l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,301l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,306l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,309h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M277,313z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M277,313h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M277,322h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,333l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M276,364l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,382v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M276,476l3,-8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M284,414v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M270,400l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,373z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,371l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,339l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M278,305h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M278,296l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,280l4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,113z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M271,65l-36,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,20l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,17l26,15" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M251,14l28,17" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M264,11l16,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,8l4,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M277,205l11,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M271,220l9,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,277l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,294z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,306h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,309z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M278,322h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M278,332h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,339l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M276,364v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,371l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,373z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M278,381h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,394l-3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M275,477v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,502l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,502l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M276,477h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M276,476v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,469l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M283,432l-1,-8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M282,406l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,394l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,370z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,338z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,332l5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M280,322l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M278,313h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,309l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,306l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M279,309h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,302l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,294l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,294z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M276,268l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,20z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M237,17z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M250,13l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M263,10l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M276,7l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,286z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,294h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,301l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,307h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,310z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M281,313h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M281,321h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M282,321l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,338h-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,352l-4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,368h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,381h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,392l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M284,411l-2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,391z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,381l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,368l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M276,363l7,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M283,313z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,310h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,307z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M282,300h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M282,294h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,286z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M281,269l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M224,154l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M286,267l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,280l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,288z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,292v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,294l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,300l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,307h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,310h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M283,313h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,338h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,348l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M283,359h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,380h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,391l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,454l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,498v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,469l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,457l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M281,424h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,393l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M284,359l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,345h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,338h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M285,313z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,310h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,307v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,299z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,292v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,288l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,286v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,282v4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,281l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M286,267l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M249,184l37,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M248,114z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,287h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,299l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,306h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,306v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,308h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,310h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M288,311h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M285,313h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M285,320h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,329l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,337l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,379l5,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,396h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,428l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,428l-7,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M283,471l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,458l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M286,396l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,374h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,367l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M284,350h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,327z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M286,320l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,308l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,290l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,303z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,305v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M288,311l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,356h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,367l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,397l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M284,414v4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,498l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M284,418l4,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M286,407l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,396h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,327h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M286,309v1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M289,311v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,305h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,308v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,303l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,303z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,298h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,287l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,279l2,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,278l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,242z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M288,182l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,242l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,250l1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,250v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,251v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,250z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,264l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,268l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,292v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,298l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,303l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,307l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M289,310h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,356l-4,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,396l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,392l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M288,423h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,496h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,460l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,423z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,348l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,345h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M287,337l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,335h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M288,319l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,306l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,302l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,294v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,293l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,290l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,281v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,278z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,264h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,219l12,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M293,177l-5,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M247,113l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,203h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,214h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M293,214h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M292,264v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,282z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,297z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,297z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,301v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,301z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M293,303z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,304l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M291,309l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,335h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,335h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,345h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M285,379l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,390l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,392v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M286,474l6,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,496l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M290,423l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M289,408l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,392z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,366h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M293,335l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M293,317l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M291,309l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,304v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,301z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M293,303l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,297l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,297v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,282l1,5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,261l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M297,70l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,64l9,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,201l-9,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,281v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,278v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,292z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,296l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,301l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,302v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,308v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,326l8,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M293,356l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,374l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,386l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,392z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M291,495h6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M292,479l4,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,461l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M293,426l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,406l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,384l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,384l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,373h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,366h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M295,354l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,336h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M288,327z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M295,316l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,307z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,307l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,299l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,292v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,289l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,281v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,282z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,279l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,268l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M292,263z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,261l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,214l10,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M296,178l-3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M283,66l-12,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M279,31l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M280,21l9,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M281,10l15,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M283,33l8,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,25l13,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,17l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,241l10,-12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,236l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,256l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,265v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,265v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M295,270l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,277v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,282l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,282z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,288v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,289v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,298l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M296,305l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M295,316h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M294,345l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,366h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,366h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,383z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M296,402v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,480z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,480l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,464z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M296,401l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,373h5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M297,353h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M297,353l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,334v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M289,326l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M298,309v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M297,306l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M297,297z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M297,297l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,286z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,285v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,282z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,282v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,276l4,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M294,251l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,250v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M291,44l6,23" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,200l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,263l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,263v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,281z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,280l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,287v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,294l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,295z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M299,299l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M299,300v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M298,307z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M299,312l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M297,324h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,344h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M298,352h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,362h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M297,495h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,495l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M298,400h8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M296,383l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,365l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,344l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,335l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,334l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,324h2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M299,312l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M299,300h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M300,298v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,294v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,286l-2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M296,69l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,64l1,-10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M297,70l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,64z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,292v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M300,297l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M300,297z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M300,300h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,305z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,300h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,305z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,307h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,321v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,332h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M299,352l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,366v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,373h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,386l8,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M291,424l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,475z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,372l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M301,353z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M300,297z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,294v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,294v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,287l-1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,280l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M303,282l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,256v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,262v-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M291,37v7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,31z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,19l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,2l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M328,2l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,6l-4,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,2l5,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,31l8,14" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,18l4,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,241z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M295,245l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,249l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,271l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,273l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,277v-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M303,283v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,292l1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,293v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,345h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M301,353l6,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,462l-9,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,478l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,499z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,499h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,475l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,475z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,381l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,361l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,345l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M301,332l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,321l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,320l1,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,307v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,305l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,305z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M303,300l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,292z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,292z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M303,286v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M303,285v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M303,282v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,277z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M298,265l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,265l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,248l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M290,241z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,236l-3,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M300,229l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M304,234z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,200l10,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,48v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,220h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,228h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M304,234h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M308,236v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,247l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,273z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,278z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,281h-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,297l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,305l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M304,299h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,311l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,316l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,326v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,331l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,340v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M307,403l4,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,439z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,439z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,462l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,475h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,475l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M306,463l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,442v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,427h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M307,403v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,400z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,372l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M310,352z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,339v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,326l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,313v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M305,299l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M303,277l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,277v4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M302,267l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,271l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M299,263h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,263l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M296,178l10,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M308,236l3,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M306,257l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M306,267l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,314v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,327l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,340l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,400l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,427l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,433l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,461l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,445l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,442l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,439l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,371h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M304,361l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,338h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M308,292l1,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,266l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,250l-2,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,234l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,50l-6,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,228h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M306,257l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,265h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,265z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,277l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,303l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M305,299z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,313v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,325l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,338l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,371z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,435l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,448l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,458l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,465l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,459z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,469z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,473z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,473v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,469v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,458z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,454v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,433l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,380h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,360l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M310,352l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M310,352l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,337z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,326l2,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,320l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,313l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,311l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,302l3,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M309,282v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,260h-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M308,252l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M307,250l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,228h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M306,173h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M321,66l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,62l2,-10" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M308,173l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,218l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M311,243l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M312,245h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,254l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M316,260l2,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,265l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M308,293v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,309v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,314v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,331l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,337z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,336l-3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M311,351h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,371z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,380h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,432l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,467l-2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,499l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,502l5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,465v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,464z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,458v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,429l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,380h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,360l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M312,351h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,315h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,298l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M308,292v1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M309,285v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M309,281v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M316,260h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,265h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M305,220l9,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M302,74l13,10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M310,48v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,228l15,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,284v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,294l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,297l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M311,308l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,331l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M316,345v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M314,349v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,373l-4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,380l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,427l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,462l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,462z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M311,402h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,373h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,360l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M316,345l-2,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,307l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,284z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M312,172l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,64z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M321,58v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,51v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,269z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,267v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,288v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,294v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,301l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,333l-1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M314,350l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,373h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,458z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,458z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,462l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,458v2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,426l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M313,402l4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,381l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,369z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,303l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,269z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,269l2,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,253h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M315,245l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M315,84l3,19" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M309,201l12,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M319,245l-2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,253l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M320,256l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,257l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,269l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,279h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M319,341l-3,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M319,341z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,371v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,385h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,460v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M316,501l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,502h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,467v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,458h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M317,399z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,385z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,369l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,358l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M320,339l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,326v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,323l2,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,315l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,303l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,288l-1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,283l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,265l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M313,266v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,202l7,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M327,19l1,-17" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,44l3,-38" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M306,25l1,-15" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M318,103l16,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,257z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,269z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,300l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M316,305v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,317l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M320,339l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M320,368l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,385l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,425h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,460l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,467l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M320,468l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M320,503l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M320,503z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,469l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,462v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,425h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M317,399l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,386l4,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,368h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M319,341z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M321,336v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M330,311z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,311l1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M320,298l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M316,279v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,257l4,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M319,254v1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M321,66v8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M312,62v10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M326,239h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,275v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,279l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M330,281v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,279v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,297l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M323,329l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,358l6,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,368l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M325,382l1,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M321,401l8,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,424l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,458z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M318,458z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M323,364l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M323,356h1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M323,329l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M331,306z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M326,302l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M323,295l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,72l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M321,74l-1,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,72l55,31" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M320,79l17,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M325,286l-3,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,297z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M326,320v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M321,316v-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,356v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,356z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,363h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,424v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M325,363h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,356z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,356z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M324,328l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M335,300z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,295l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,288v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,65l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M322,62l-1,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M314,52v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,239l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M319,245l7,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,269v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,292z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M326,320l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,353l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,350l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M326,363l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,422h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M326,468h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M326,468h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,422h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M335,320z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M327,322v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,295l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M327,270l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,240z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M326,249z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,71v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,65z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,31l-26,33" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M334,39l-13,18" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M316,47l-2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M317,220l15,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M325,263l2,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M324,287v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M330,307l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M323,305l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M334,339z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M331,344l3,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,422h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,422z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,468z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,468h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,422h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M326,378z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M326,378l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,365l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M330,311l-4,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,311l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,294l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M325,286l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M334,269l-1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M326,249l4,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M317,173l16,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M330,254l3,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M330,281l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M322,280z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M331,283l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,348l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M330,366z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M330,366l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M332,376l-2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M332,376l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M330,419v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M333,467l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M332,418l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M331,398l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M331,398h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M335,320v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M327,324l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M330,307v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M323,305v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M333,287l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M332,223l5,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,31l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M327,19l7,20" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M315,44l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,276l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M335,300l-4,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,298l-2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,349v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M336,358l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M332,398l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M335,402v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M335,402h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,425l-1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M331,468l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M335,401l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M333,364l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M330,292l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,228l9,14" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M347,55l-19,10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M329,274v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M333,334l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M336,362l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M335,363h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M334,466h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M332,418l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,355v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M334,330l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M335,322l-1,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M336,318l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M336,318v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M335,300l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M332,286l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M333,178l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M334,269l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M337,274v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M337,275v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M349,287v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M337,280l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M340,288l-2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M336,298l5,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M339,308l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M338,309l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,316l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,352l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,352v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M334,399h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,425h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,455l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M335,466l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,456v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M334,419l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M338,402h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,377l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M336,358v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M338,351v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M341,289l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M336,177l10,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M340,168v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,242l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,240l10,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M339,308l3,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M338,350l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M338,378h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M345,394z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M341,460l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M338,465l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M341,460v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,448h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M339,378h2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M346,164l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,167z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M341,170l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,203l17,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M341,349l3,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M341,378l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M345,395v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M341,448l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,456v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M341,461l-2,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,458v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,457v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,448l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M345,395l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M337,315v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,244l1,8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M338,245l4,19" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,301l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,327l2,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,340v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M344,377l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,447l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M344,451l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M344,451v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,428l-7,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M344,397l-5,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,326v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,301l-4,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,252l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,264v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M346,164l-6,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M341,289v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M344,377l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M345,394z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M344,453l6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,435l-2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M349,373l-4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M347,336l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M347,325l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,311v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M349,296z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M341,170l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M352,169z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M349,287l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M338,282v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,318v-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,340v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,361v-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M345,394l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,428h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M347,440l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M347,428z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M348,395l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M345,394z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,361v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,341l-2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,310l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M349,296l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M342,171l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M352,169l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M347,55l10,-23" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M328,70l21,-12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M351,161l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,292l-1,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M348,335l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,357l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,363l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,435l-4,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,443h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,452l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M352,443l-1,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,371l-4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,311v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,289v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M345,209l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M350,320l-3,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M347,428l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M352,443h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,453h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M352,453l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M351,392l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M352,253l3,13" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M342,265l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,167l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M352,29h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M351,161l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,167l2,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M361,305v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,357l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M363,416l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M354,455l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M355,457h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,318l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M361,305l-8,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M361,205l8,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M344,173l2,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M354,171l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,29v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M355,164l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M357,163l9,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M356,170v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M355,172l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M355,266l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M343,268l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M358,298l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,435z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M362,417l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M353,390l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,353l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M364,335l-1,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M357,270l-1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,272v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,30v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M359,23l1,-12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,16v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M353,31l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M359,23l13,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,16l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M361,205l1,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,215v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M360,349l4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M357,457l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M362,466l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M358,458l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M357,391h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M358,351l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M368,313l6,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M358,278l-1,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,272l3,13" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M362,187v-5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M362,215l6,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M346,218l14,20" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M358,278l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M363,327l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M360,391h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M360,459v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M363,465l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M363,466h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M364,415z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M363,156l8,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M366,164l8,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M361,391l4,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M351,435l13,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M363,466h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M360,460l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,429l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M362,417l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M364,335v4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M358,298l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M359,284l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M371,187l1,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M362,187v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M360,10v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,10v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M362,179v3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M362,188l4,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M361,286l-1,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,295l-2,-12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M364,415z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M367,465l4,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M378,407l-14,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M370,386z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M352,159l11,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M360,10v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,10v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M356,170l18,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M369,453l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M369,453v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M369,454v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M364,418l1,9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M370,386z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M371,300l3,9" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M368,223v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M360,238l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M363,178l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M349,58l33,32" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M380,139z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M376,153l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M364,339v7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M371,364v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M370,386l-5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,466l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M369,455l2,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M370,386z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M372,183l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M379,11l1,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M369,7l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M382,103l-3,10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M337,88l-3,12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M377,221l-9,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M384,233l-22,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,210l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M383,222l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M372,367l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M370,386l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M371,385l4,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M375,374h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M374,494z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M374,494v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,427v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M375,371l-3,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M380,211h2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M389,223h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M371,187l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M363,178l10,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M374,168v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M376,204l-4,-10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M366,193l3,8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,206v4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M369,202v5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M375,374v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M370,452l6,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M374,496l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M372,501l1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M372,183l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M382,173l-9,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,167h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M379,144v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,167l5,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M378,182l-2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,494h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,494l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,494z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M376,450l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M368,313l-3,9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M373,156l-2,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M378,160l-4,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M371,0l-11,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M365,9l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M376,204l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M369,201v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M371,364l4,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M377,451l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M377,495z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M387,456l-7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M376,181h-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M379,11v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M368,10l1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M376,153l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M379,159l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M379,159l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M380,455z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M379,494h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M378,495h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M390,457l-3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M375,363l6,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M384,187l9,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M378,182l10,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M379,12l-7,17" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M369,13l-2,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M384,104h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M392,324v-7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M382,360h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M391,399l-13,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M379,494l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M391,399h3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M376,374l-1,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M379,144l-2,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,12l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M389,7l16,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M382,90l7,-22" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M384,193l1,9" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M382,360l6,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M383,494h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M385,493l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M386,494l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M382,173l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,167z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M380,139l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M383,104l-4,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M387,493l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M399,377h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M388,357l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M385,170l4,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M380,139l9,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M389,133z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M388,343l4,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M391,490l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M390,491l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M399,377l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M375,295l-4,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,179l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M394,173l5,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M390,167z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M391,165v-15" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M389,133l2,5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M386,0l3,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M391,146l3,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M377,221l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M384,233l10,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M392,495l-5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M392,350v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M385,202h9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M386,208l14,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M402,216h3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M390,132l2,-23" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M391,146v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M394,235h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,235v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M401,290l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M386,285l12,-13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M370,280l24,-25" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M405,245l-3,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,241l1,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M391,490l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M393,488l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M390,457l4,17" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M392,351v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M391,165l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M391,138l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M384,104l9,-7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M394,141v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,238v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,378l-4,15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M394,474l2,-13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M394,491v5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M394,393v6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,240v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M384,187v6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M394,141h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M386,208l-4,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M402,216l-12,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M401,290h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M386,285l9,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M370,280l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M394,496h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M402,495l-5,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M392,324l-4,19" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,179l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M394,173l-5,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M390,167l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M390,132l9,-7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M392,108v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,111v2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M393,97l5,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M392,108l6,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,111z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,91z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M398,101l9,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,111h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M398,113l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M395,141l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M396,181l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M389,177l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M397,199l8,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,200l3,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M400,377v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M392,353l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M393,316l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M393,316l7,-11" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M405,245v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M396,244l-1,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,12l-10,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M397,22l6,33" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M411,192l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M402,290v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M395,295l5,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M402,291z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M400,300l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M400,305l3,9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M403,314l6,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M402,495z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M433,337l-3,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M399,125l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M404,118l-5,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M427,167v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M416,166l1,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M405,165l2,-18" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,419l17,-33" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M402,495l4,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M405,247v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,251z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M401,126l6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M404,118h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M406,499v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M396,461l16,22" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M401,301l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M404,278l-2,11" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M399,266l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,254l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M412,229l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M401,237l7,-18" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,183l14,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M401,177l11,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M399,169l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M399,111l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M402,239v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M402,291l5,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M410,289v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,295l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M410,289h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M408,296l7,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M406,500h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M406,303l7,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M424,267l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,254l9,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M413,247l9,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M397,199l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,200l-7,9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M405,216l4,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M405,114l6,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M413,15l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M408,11h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M408,1l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M409,1h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M409,1l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M409,11l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M403,55l-14,13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M402,92l-4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M407,105l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,218l1,-10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M409,212l-1,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M424,267v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,254l-1,9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M405,247v11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,251v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,500l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M407,127h3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M405,118l7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M412,229l2,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M401,237l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M414,491l3,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M414,490v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M414,234l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M433,109v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M411,192l-6,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,198h-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M413,305l-4,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M411,501h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M414,490l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M421,0l-10,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M430,341l-2,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,489h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M424,317l6,13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M417,233l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M414,245l8,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,198l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M411,106l6,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M411,112l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M417,105l16,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M414,111l14,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,218l-1,6" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M408,218v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M424,268l-7,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M414,263l-10,15" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M405,258l-6,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M395,253v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M427,301z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M420,302v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M412,483l-12,-28" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M417,500l-5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M417,279l-7,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M407,183l16,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M412,191l7,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M401,91l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M422,206v-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M416,199v4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M422,214v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M416,206v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M410,127l11,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M412,117l6,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M401,91l22,-20" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M423,182v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M419,190l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M414,245l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M433,312l-6,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M422,229l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M422,217h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M424,67z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M428,74l1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M427,167l-6,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M416,166l-4,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M405,165l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M422,206v8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M416,203v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M423,217l5,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M420,231l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M422,239l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M411,289l14,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,297l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M425,268h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M424,261l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M422,254l8,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M426,63l-13,-48" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M425,238h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M427,310l-5,-6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M427,238l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,148l13,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M421,133l7,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M424,67l-1,4" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M428,74l-3,18" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M425,92l8,16" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M441,149l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M429,148l7,-7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M428,137l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M427,166h1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M417,156l12,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M415,148l-8,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M423,183l6,15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M422,195v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M428,218l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M425,224l6,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M424,317l11,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M427,301l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M420,302l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M425,297l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M420,300v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M442,255l-1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M431,251v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M425,224v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M429,198v9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M422,197v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M429,166h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M437,156l-8,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M416,14l10,-14" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M428,115l-10,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M429,166l14,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M429,207l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M434,245l-6,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M432,293l3,-14" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M436,299l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M430,304l4,-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M431,248v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M432,206h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M441,150v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M428,149l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M427,63l-3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M434,206v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M432,215l5,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M439,214l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M426,268l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M435,263l-7,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M430,253z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M428,351l-28,25" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M432,218l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M436,222l-5,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M429,72l9,-15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M433,312h2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M436,337h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M440,329l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M436,337h-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M436,330h-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M435,312l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M434,301l2,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M434,245l-3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M436,203l4,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M435,279l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M430,269l9,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M435,322l9,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M436,337z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M440,329l-4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M432,293l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M432,215v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M439,214l-3,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M441,254l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M438,298l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M439,311l3,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M437,291l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M442,255l-7,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M431,252l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M472,85l-12,-22" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M438,57l14,25" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M436,203l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M443,277l-3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M439,271v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M439,297h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M442,297l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M445,300l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M444,316v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M452,237h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M445,241l2,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M441,150l-4,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M426,63h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M446,28l-4,-28" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M450,11l-1,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M441,290l6,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M443,277l2,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M440,268l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M440,268l5,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,231l2,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M435,205h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M437,209l11,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M440,213l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M435,133l13,-10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M481,0l-35,28" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M465,0l-15,11" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M447,146l-4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,136l-17,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M435,133l-5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M440,196l5,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M445,192l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M448,198l10,23" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M442,211l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M452,248l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M445,245l-2,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M457,276l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M445,271l3,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M439,311h-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M450,321l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M472,85l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M452,82l3,25" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M447,146l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,136l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M447,301l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M442,306l6,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M437,337l10,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M449,345l-2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M449,345h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M450,321l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M444,318l-3,10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M449,303l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M448,309l7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M447,288l3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M448,294l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M452,237v11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M445,241v4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M449,190v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M457,173v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M449,191h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M451,253l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M448,294h5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M455,308z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M448,326l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M441,328l2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M448,148l10,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M454,338v-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M451,331l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M452,299l1,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,256l-8,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M443,168l14,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M478,69h-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M457,276h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,321v-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M455,308l-2,10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M454,338l-1,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,499l-3,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M435,503l-19,-14" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,321l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,318l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M452,286l-2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M454,292h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M458,221l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M443,215l9,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,237l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,231l-6,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M452,299l-2,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M478,323l5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M458,304l3,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M457,292h-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M469,241h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M455,236l8,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M454,191h3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M473,91l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M455,107v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M457,173h4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M458,276h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,285l8,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,288l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M453,285l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,288v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M457,292l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M462,294h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M457,323l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M469,241l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M454,236h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M459,222l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M452,222l3,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M457,191l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M472,95l-16,36" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M455,108l-7,15" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M459,193h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M464,228l-4,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,229l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M459,275l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M448,268l15,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M462,500l-2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M478,323l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,325l6,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M458,304l-2,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,289l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,294l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M462,171l3,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,154l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M460,274l14,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,258l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M462,294l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,318l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M456,307l7,6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M405,451l48,-32" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,501l-1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,501l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M469,302l-1,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M456,307z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M460,276z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M461,281l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M462,287l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M467,218l-5,-18" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M462,171l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M470,241v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,229v6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M464,293l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M469,302v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M466,294h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M472,480l-15,18" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M465,294h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,288l3,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M468,243l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M460,276h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M464,283l7,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M469,289h-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M480,492l-15,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M480,492v-10" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M473,313l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M468,306l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M476,261l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M465,257l2,-9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M467,218l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M479,224l-2,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M470,221l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M474,281l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M471,288l-2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M473,313l-11,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M467,311l-4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M486,320h-3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M481,311h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M470,294l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M456,131l34,-34" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M501,121l6,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M479,311v-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M476,303v-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M474,281h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M471,288l5,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M471,281l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M476,211l8,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M476,209v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M462,198v2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M461,276l15,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M476,303l-2,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M472,480l3,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M475,472v6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M486,320z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M481,311l2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M478,267l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M479,224v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M471,224l-1,13" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M476,209l1,-16" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M463,193l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M479,194l-2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M476,261l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M465,257z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M475,281z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M478,287l-2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M477,294l2,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M476,301l1,-7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M405,451l-5,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M478,267l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M479,194v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M454,137l14,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,63l20,21" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M485,77l-7,-8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M465,166l15,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M460,154l31,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M468,142l34,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M479,227l3,13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M482,328l-1,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M468,338l-2,-9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M479,306l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M475,281l13,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M478,287l3,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M482,241l-5,16" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M477,209l6,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M489,201l1,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M484,218h-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M488,285l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M481,288l-2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M501,295v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M486,290v6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M481,308h2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M505,345l2,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M475,478l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M506,350l-1,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M482,328l7,21" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M468,338l4,10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M489,258l3,-14" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M480,84l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M504,76l3,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M480,266l10,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M470,386h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M487,503l4,-12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M501,295z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M486,296l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M482,240v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M479,193l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M480,84z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M485,77v1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M487,55l-10,14" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M490,220z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M496,214l6,10" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M491,222l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M484,197l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M490,197l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M482,85l12,5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M490,240v-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M494,460v-3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M501,295z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M488,300l5,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M483,308l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M517,25l-3,-16" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M489,69l-2,-14" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M477,209l13,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M489,201l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M495,275l7,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M494,457h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M495,455l1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M490,219v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M491,202l5,12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M483,199z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M490,197v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M504,76v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M488,75l-3,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M490,271l5,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M494,460l8,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M501,295l2,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M493,302l2,15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M484,309v1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M491,445l5,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M495,455l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M496,452v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M498,445h-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M480,167l13,12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M491,156l8,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M502,144l4,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M505,437v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M498,445l4,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M495,317l-9,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M484,310h-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M509,422v-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M502,468l-5,10" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M492,227l-2,11" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M490,240l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M504,259l4,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M521,265v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M502,450l1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M503,456v2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M506,350v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M489,349l-1,20" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M472,348l-2,38" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M489,258l15,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M493,179h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M499,163l3,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M506,147l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M490,220l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M502,224l4,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M503,303l6,17" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M506,352l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M488,369l15,21" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M470,386h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M492,490l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M508,354l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M503,390l36,-19" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M502,286l-1,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M494,179l-3,17" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M502,162l-2,13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M510,145l-1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M505,437l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M508,442l2,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M509,320l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M516,251l5,-4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M506,232h3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M500,175l8,21" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M509,150l18,45" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M516,211l-9,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M517,212v13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M538,223v-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M509,335l-2,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M497,478l-3,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M503,458l7,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M509,422l-4,14" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M512,281l-4,-15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M521,265z" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M501,121l10,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M494,90l-4,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M507,115l4,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M508,76v-1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M521,78l-2,-8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M511,112v-5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M529,98v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M521,107l-3,-12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M512,116l-1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M512,352l5,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M539,371h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M494,486l-1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M510,460l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M510,447l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M519,415l-10,3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M509,335l4,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M512,124l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M508,321l6,-3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M514,318l12,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M532,282l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M522,449l-9,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M513,463l7,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M493,487l-1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M507,210l10,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M517,25l-13,50" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M489,69l-1,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M517,225l3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M538,223l6,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M510,73l16,-49" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M529,98l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M521,107l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M512,116z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M512,281l7,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M521,265z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M522,286l-3,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M531,282l-10,-17" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M508,76l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M516,89l5,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M520,260l1,4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M526,326l-13,17" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M520,88l-4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M531,100l-1,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M522,108l-1,15" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M512,116v8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M526,463l-6,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M526,463v5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M536,467v-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M557,118l-1,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M530,102l11,23" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M521,123l4,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M508,75l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M519,70l13,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M516,251l4,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M526,468l5,8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M536,467l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M531,503v-5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M517,349l19,-10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M543,371l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M529,97l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M518,95l12,-5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M520,88l10,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M517,0l-3,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M530,96z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M530,90h1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M530,84l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M519,415l13,-7" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M522,286l6,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M534,284l-3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M508,196l8,15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M527,195l4,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M530,96l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M531,90l1,1" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M531,83l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M533,60z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M533,60l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M556,25h4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M509,232l11,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M520,229l14,7" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M528,292l-5,18" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M532,59l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M526,24l12,16" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M522,449l16,-13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M531,476l10,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M538,469l6,4" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M538,436l-1,16" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M538,40l8,-11" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M531,498l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M545,490l-4,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M536,425l3,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M539,434l2,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M523,310l13,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M532,282l8,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M553,55l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M537,19l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M534,11l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,21l6,-6" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M520,238l1,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M534,236v15" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M541,253l1,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M547,238l3,18" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,270l9,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M551,260l11,14" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M536,316v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M536,454v6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,470l3,-2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M536,318l10,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M534,251l7,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M531,202l7,18" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M541,21l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M547,27l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M546,296l4,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M559,291l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M537,452l-1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M555,479z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M548,467l1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,412l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M531,417l5,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M546,232l4,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M534,11l10,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,230l2,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,270l-2,-12" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M551,260l-1,-4" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M574,418l-5,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M545,415l11,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M574,418l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M556,423l9,9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M541,432l12,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,412l3,-16" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M532,408l-1,9" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M532,98l4,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M532,91l28,8" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M532,84l19,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M548,229l-2,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M548,229l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M517,349z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M543,371h-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M545,490l1,13" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M555,480v-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M547,396l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M545,299z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M558,292l9,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M551,216l-5,7" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M550,344l-14,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M549,370l-2,-1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,470v3" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M553,342h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M556,365h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M551,214v2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M553,342l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M556,365l-7,5" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M540,278l10,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M553,281l7,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M557,118l13,33" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M541,125l8,20" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M525,131l3,8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M551,214z" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M545,299l1,-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M558,292l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M555,479z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M548,467l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M555,480z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M571,219l3,2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M565,225l10,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M570,151l3,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M549,145l17,18" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M528,139l30,32" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M569,414l6,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M551,395l11,-13" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M575,427l-1,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M565,432l-10,47" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M553,443l-4,20" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M551,214l9,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M544,21h-3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M547,27l9,-2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M553,55l10,-7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M547,238h12" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M546,313l6,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M545,299l17,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M567,299l5,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M554,56l3,3" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M534,63l7,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M550,15h11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M557,59h9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M541,73l32,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M555,480z" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M552,317l6,3" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M562,309l4,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M572,302l1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M571,218l1,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M560,216l7,-4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M563,206l-3,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M556,117l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M536,99l27,11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M560,99l8,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,0l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M561,15l9,6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M558,118z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M563,110l12,9" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M568,102l7,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,160z" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M566,166l1,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M558,173l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M558,320l4,3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M566,311l9,7" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,303l2,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M571,219v-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M565,225l-5,-9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M562,325l-7,17" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M575,323l-18,42" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M562,274l13,-8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M565,200l-2,-18" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M575,440l-1,-6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M575,243l-16,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M567,33l3,5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,205l2,-11" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M565,200l-1,5" />
<path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M551,89l22,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,160l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M567,169l6,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M561,178l2,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M574,162h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,179l2,1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,154v6" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M566,163v3" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M558,171v2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M558,118l17,29" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M573,94l2,2" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M573,93v1" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M575,26l-5,-5" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M567,33l-7,-8" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M570,38l-7,10" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M574,221h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M564,374l11,-16" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M562,323v2" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M575,213l-3,4" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M573,205l-6,7" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M564,205l-1,1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M566,59h9" /><path style="clip-path:url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M573,72h2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M564,374l-2,8" />
<path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M575,498l-20,-18" /></g>
<g id="L4" >
<defs><clipPath id ="cp2" >
<path d="M0,0v503h575v-503z " />
</clipPath></defs>
<path style="fill:rgb(0,85,170);" d="M108,140l-11,1v-1l1,-3h4h2l1,1l2,2h1z"><title>Description: Marsh, wetland, swamp, bog</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M108,140l-11,1v-1l1,-3h4h2l1,1l2,2h1z"><title>Description: Marsh, wetland, swamp, bog</title></path><path style="fill:rgb(0,85,170);" d="M307,0v1l1,1l1,2l2,-1h1l1,-1l4,-2h-10z"><title>Description: Lake or pond</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M317,0l-4,2l-1,1h-1l-2,1l-1,-2l-1,-1v-1"><title>Description: Lake or pond</title></path><path style="fill:rgb(0,85,170);" d="M350,41h2l1,1l2,1l1,2l1,1l1,2l-1,3v2
v3l1,5v4v3v2l3,5v-1l2,-2h1l2,1l2,2h1l1,-1l2,-2l5,-10l2,-2l4,-6l2,-5l3,-3l1,-1l4,-1h2l2,-1l1,-1l1,-2v-2l-2,-5v-1l-1,-2v-1l1,-2l2,-2l2,-1h2l2,1h2h1h3h1l2,-1v-1v-2l1,-1h1h1l1,-1v-2l1,-2l2,-3h1h2h1l-1,3l1,1h1h2v1l-1,1l-1,4l-1,1l-2,6l-1,7v4v1v4v1l2,1v1l-1,1v4l-2,8v5l-1,1l-1,1h-2l-2,1v1l-2,3l-2,2l-1,2l-1,1l-5,4l-1,1l-1,4l-3,3l-2,3l-2,1l-1,1l-3,5h-1l-3,-2h-1v-1v-2l-1,-1h-1l-2,-1l-2,-2l-1,-1h-3l-3,-1l-1,-1l-2,-1v-2h-5l-4,-1l-4,1l-5,1h-6l-3,1l-4,1l-1,1l-1,-1l-2,-9v-8l1,-5v-3l1,-3v-2l4,-9l7,-7l1,-1h1z"><title>Description: Lake or pond</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M350,41h2l1,1l2,1l1,2l1,1l1,2l-1,3v2v3l1,5v4v3v2l3,5v-1l2,-2h1l2,1l2,2h1l1,-1l2,-2l5,-10l2,-2l4,-6l2,-5l3,-3l1,-1l4,-1h2l2,-1l1,-1l1,-2v-2l-2,-5v-1l-1,-2v-1l1,-2l2,-2l2,-1h2l2,1h2h1h3h1l2,-1v-1v-2l1,-1h1h1l1,-1v-2l1,-2l2,-3h1h2h1l-1,3l1,1h1h2v1l-1,1l-1,4l-1,1l-2,6l-1,7v4v1v4v1l2,1v1l-1,1v4l-2,8v5l-1,1l-1,1h-2l-2,1v1l-2,3l-2,2l-1,2l-1,1l-5,4l-1,1l-1,4l-3,3l-2,3l-2,1l-1,1l-3,5h-1l-3,-2h-1v-1v-2l-1,-1h-1l-2,-1l-2,-2l-1,-1h-3l-3,-1l-1,-1l-2,-1v-2h-5l-4,-1l-4,1l-5,1h-6l-3,1l-4,1l-1,1l-1,-1l-2,-9v-8l1,-5v-3l1,-3v-2l4,-9l7,-7l1,-1h1z"><title>Description: Lake or pond</title></path><path style="fill:rgb(0,85,170);" d="M108,141l4,3l1,2l4,5v1
l1,1v1l1,5v2l-1,1l-1,2v1h-2l-3,-1l-2,-1l-3,-1l-3,-4l-1,-3h-1v-2l-2,-1l-1,-3v-2l-1,-3l-1,-3h11z"><title>Description: Marsh, wetland, swamp, bog</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M108,141l4,3l1,2l4,5v1l1,1v1l1,5v2l-1,1l-1,2v1h-2l-3,-1l-2,-1l-3,-1l-3,-4l-1,-3h-1v-2l-2,-1l-1,-3v-2l-1,-3l-1,-3h11z"><title>Description: Marsh, wetland, swamp, bog</title></path><path style="fill:rgb(0,85,170);" d="M78,407l2,2v2l1,1v1l-1,1h-1l-1,1l-1,1l-1,-1v-1l-1,-1v-2l1,-3l2,-1z"><title>Description: Lake or pond</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M78,407l2,2v2l1,1v1l-1,1h-1l-1,1l-1,1l-1,-1v-1l-1,-1v-2l1,-3l2,-1z"><title>Description: Lake or pond</title></path><path style="fill:rgb(0,85,170);" d="M136,473h-1
v-1v-1l3,-3h1h1l2,1l1,2v1l-2,1h-3h-2z"><title>Description: Lake or pond</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M136,473h-1v-1v-1l3,-3h1h1l2,1l1,2v1l-2,1h-3h-2z"><title>Description: Lake or pond</title></path><path style="fill:rgb(0,85,170);" d="M371,503v-1l1,-1v-2v-2l1,-1l1,-1l2,-2l5,-1l3,-3l3,-3h1v-1v-2v-2v-1l-1,-1l-1,-1h-2l-2,1l-2,1l-3,2l-4,3l-5,1l-5,1l-3,1l-4,1l-2,-1l-1,1l-3,1l-2,1v1l-1,2l1,1v1l3,4l1,1v2h19z"><title>Description: Marsh, wetland, swamp, bog</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M352,503v-2l-1,-1l-3,-4v-1l-1,-1l1,-2v-1l2,-1l3,-1l1,-1l2,1l4,-1l3,-1l5,-1l5,-1l4,-3l3,-2l2,-1l2,-1h2l1,1l1,1v1v2v2v1h-1l-3,3l-3,3l-5,1l-2,2l-1,1l-1,1v2v2l-1,1v1"><title>Description: Marsh, wetland, swamp, bog</title></path><path style="fill:rgb(0,85,170);" d="M528,313v-1
l2,-1l1,-1l1,1l3,2l2,1l1,2h-1l-2,-1l-2,-1l-2,-1h-2h-1z"><title>Description: Lake or pond</title></path><path style="clip-path:url(#cp2);stroke-width:0.125000;stroke-linecap:round;stroke:rgb(255,170,0);" fill="none" d="M528,313v-1l2,-1l1,-1l1,1l3,2l2,1l1,2h-1l-2,-1l-2,-1l-2,-1h-2h-1z"><title>Description: Lake or pond</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M120,23v-1l1,-1l4,-1l1,-1v-1l-1,-2v-1l1,-1l4,-2l3,-1h1v-1v-1l1,-1l2,-1h4h1v-1l1,-2v-1l2,-1l4,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M0,34l3,-1l1,-1l3,-2l1,-1h2h8l2,-1l2,-1l1,-2v-1v-2l-2,-4l-1,-4l-3,-3v-2v-2l-1,-1l-3,-6"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M149,38l-2,1l-15,4l-4,-1l-1,-1l-1,-2l-1,-1l-1,-1v-1v-1l1,-1l-1,-4l-2,-2l-1,-4l-1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M45,40v-2v-1l2,-1l2,-1l1,-3h2l2,-1h1l2,-3l2,-1l2,-1h2l5,-1l1,-1h2h2l1,-2l4,-1l2,-2l2,-1l2,-2l1,-2l1,-4l1,-3v-1v-2l-1,-3l-1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M97,40l-1,-1l-3,-2l-3,-2l-1,-1l-2,-2l-1,-1h-1l-1,1h-1h-2l-2,-2h-1l-7,1h-2l-1,1h-1l-3,1h-2l-3,3l-4,2l-1,1l-1,1l-3,-1l-2,-1l-2,1l-1,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M97,40h2h3h3h1l1,-1l2,-5l1,-2h1l2,-1h2l1,-1v-1v-1l2,-2v-2l1,-1h1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M42,41h1l2,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M0,44l1,-1l1,-1h1l3,-1l3,-1l1,-1h3h2l5,-1h2l3,1h2l2,-2h2l2,1l6,3h3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M150,95l-2,1h-2l-1,-1l-2,-1l-1,-1l-3,-2l-1,-1v-1l-1,-2l-1,-1l-1,-2l-1,-2l-1,-3l-2,-2v-2l-2,-1v-1l-1,-2h-1l-2,-1l-2,-2v-1l-1,-1v-2l-3,-4l-5,-3l-4,-3l-5,-4l-4,-3l-3,-2l-1,-3v-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M94,104v-2v-1v-2v-2h-1v-2l-1,-1l-2,-3l-1,-2v-1l-1,-2v-3l-5,-6l-1,-2l-2,-2l-1,-2v-1l-2,-2v-1l-4,-4l-1,-2l-3,-4l-1,-2v-1v-1v-2l-3,-5h-1l-1,-1l-5,2h-5l-6,-1l-2,-1l-2,-1l-1,-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M98,137v-1l-2,-2l-2,-1l-1,-3l-2,-2l-1,-1l-1,-4v-2v-4v-5v-1l1,-1l2,-1l1,-1v-2v-1v-1h1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M29,140l2,-1h1l1,-4v-1l-3,-5v-3v-1l1,-2l-1,-2v-1h-1l-1,-8l-1,-1l-1,-2l-2,-2l-3,-4l-5,-5l-6,-5l-5,-3l-2,-1l-3,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M142,140l-5,-5l-2,-2l-6,-3l-6,-3l-4,-3l-1,-1l-7,-7h-1h-1l-2,1h-2l-1,-1l-2,-1l-1,-2l-2,-3l-1,-1l-1,-2l-3,-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M97,141l11,-1" />
<path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M108,140h-1l-2,-2l-1,-1h-2h-4"><title>Description: Apparent limit</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M97,141v-1l1,-3"><title>Description: Apparent limit</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M344,6l-1,-1l-6,-4l-2,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M344,6h1h1l2,-6"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M218,23l1,-2l2,-3l1,-2l9,-6l3,-2l1,-1l2,-2h2l4,-1l3,-1h2h2l2,1l4,2l2,3l2,1h2l8,-3l3,-1l3,-1l2,-2l1,-1l5,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M407,25v-1l-4,-7l-3,-3l-2,-2h-3l-1,-1v-1l-2,-2l-2,-3v-1v-4"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M149,38l1,-1h3l5,-1l5,-3l5,-2l6,-1h3l5,-2l6,-3l13,-2h11l3,-1h1l2,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M350,41l-1,-2v-1l-2,-3l-1,-2l-2,-3l-1,-2l-1,-3v-1v-2l1,-3v-2v-1l1,-2l2,-1v-2l-2,-3v-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M297,48l-7,-1l-4,-1h-2h-4h-5l-3,-2h-2l-6,-2l-3,1h-2h-2l-3,-1l-7,-3l-2,-3h-1l-3,-3l-6,-4l-4,-2l-3,-2l-10,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M233,99h-1h-1l-4,-2l-3,-1l-1,-1l-3,-1h-3l-4,-2h-5h-7h-1l-2,1l-4,1l-1,1h-1l-2,-1l-1,-1h-5l-1,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M281,108l2,-1l1,-1v-1l1,-3v-1l5,-2l3,-1h3l1,1l3,4h1h4l5,2h2l1,-1v-2v-1l1,-1h1h1l2,1l3,2l2,1h2h3l1,-1l1,-1l1,-1v-1l1,-2l1,-2l1,-1l3,-5l1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M281,108l-3,-1l-2,-3l-6,-2h-2l-2,-1l-2,-2h-2l-7,-1l-8,1l-7,1l-7,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M384,135l-1,1h-2l-4,-1l-2,-1h-4l-1,-1l-2,-1v-1v-4l1,-6v-2l1,-4l1,-1l2,-3l2,-3l2,-3l2,-1l2,-1l1,-1v-3l2,-3v-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M303,139l-2,-5l-3,-4l-5,-6v-1l-2,-1l-1,-1l-2,-2l-4,-3l-3,-3l-1,-2l1,-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M240,139v-2v-3v-4l-1,-3l-1,-4l-1,-2v-4l1,-4v-2l-1,-2l-4,-3l-1,-1v-2v-2l1,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M182,140l1,-2h1l3,-1l2,-1l4,-3v-2v-6l1,-2l2,-2v-3l-1,-2v-1v-4v-1l-4,-6l-2,-2v-1l-2,-3l-4,-4"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M307,0v1l1,1l1,2l2,-1h1l1,-1l4,-2"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M350,41h2l1,1l2,1l1,2l1,1l1,2l-1,3v2v3l1,5v4v3v2l3,5v-1l2,-2h1l2,1l2,2h1l1,-1l2,-2l5,-10l2,-2l4,-6l2,-5l3,-3l1,-1l4,-1h2l2,-1l1,-1l1,-2v-2l-2,-5v-1l-1,-2v-1l1,-2l2,-2l2,-1h2l2,1h2"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M338,89l-1,-1l-2,-9v-8l1,-5v-3l1,-3v-2l4,-9l7,-7l1,-1h1"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M384,94l-2,-1l-2,-2l-1,-1h-3l-3,-1l-1,-1l-2,-1v-2h-5l-4,-1l-4,1l-5,1h-6l-3,1l-4,1l-1,1"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M562,9l-1,-1l-5,-2l-4,-2l-1,-2l-2,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M425,12l4,-1v-1l1,-2l2,-1l1,-1l1,-1v-4v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M545,17h-2l-3,3h-2l-5,-2l-2,-2h-2h-1l-1,2h-2l-5,-1l-1,-1l-2,-5l-3,-5v-2v-2l-1,-1v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M545,17v-1l6,-5h3v-1l1,-1h6h1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M575,14l-2,-1l-6,-2l-5,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M457,5l2,3l1,2l1,4v2l1,3v2l2,2v1v1l-1,1l-1,2l-1,5h-1l-3,4l-2,2v1v3l-2,2v1l-1,1h-2h-8l-2,-3v-1l-3,-2h-3h-2l-1,1l-4,1l-2,1l-3,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M529,61l-1,-1l-2,-3v-1v-3v-2l2,-1l3,-3l1,-1h3l1,-1l2,-1l2,-2l1,-2l4,-8v-1v-3v-3h-1v-3l1,-4v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M544,61l8,-2l5,-1l2,-1h7l6,-2h3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M566,136l-3,-4l-1,-1v-2v-2l-1,-1l-6,-7l-7,-7l-2,-1l-3,1l-1,-1l-1,-2l-2,-2l-1,-2l-1,-1l-1,-2l-7,-4h-2l-2,-1l-3,-3l-6,-3l-3,-4l-1,-1l-1,-1v-2l-1,-1l-1,-4l-1,-2l-1,-2v-2l-4,-3l-1,-1v-1l-1,-2l-2,-2v-2h-1l-2,-2l-3,-2l-3,-4l-1,-2l-1,-2l-2,-5v-1v-1v-1l-1,-2l-1,-3l1,-2l-1,-3v-2l1,-1v-1l-2,-2l-1,-2l-2,-1l-1,-2l-2,-7v-1v-1l-1,-3v-1l-2,-2l-1,-2v-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M574,135l1,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M575,125l-1,-2l-2,-3l-2,-4l-1,-2v-1v-3l-2,-4l-1,-5l1,-8v-4v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M481,137v-2l2,-6l1,-1v-1l2,-5v-2l2,-4v-4l2,-4v-3v-5l-1,-1v-1l-1,-2l-2,-2l-3,-2l-2,-4l-2,-1l-2,-1h-1h-5h-2l-7,4h-3h-2l-1,3l-1,1l-4,1l-2,2l-2,3l-3,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M446,137l-2,-2l-4,-4l-1,-3v-1h-1v-1v-2l-1,-2l-2,-2l-3,-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M407,25h1h3h1l2,-1v-1v-2l1,-1h1h1l1,-1v-2l1,-2l2,-3h1h2h1"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M422,45v-4v-1v-4l1,-7l2,-6l1,-1l1,-4l1,-1v-1h-2h-1l-1,-1l1,-3"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M384,94h1l1,1v2v1h1l3,2h1l3,-5l1,-1l2,-1l2,-3l3,-3l1,-4l1,-1l5,-4l1,-1l1,-2l2,-2l2,-3v-1l2,-1h2l1,-1l1,-1v-5l2,-8v-4l1,-1v-1l-2,-1v-1"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M115,165v-2h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M125,209v-2l-1,-6l-1,-1v-2v-1l-3,-6l-1,-1v-2l2,-5v-3l-1,-1l-3,-2l-1,-2v-3v-2l-1,-2v-1v-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M0,211l2,-3l1,-4l6,-7l1,-2h2l6,-1l2,-1l5,-2l4,-1l1,-1l2,-2l3,-1l4,-2h1l2,1h2l3,-3l2,-1h2l1,1l3,2h2h4"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M1,265h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M20,265l-4,-1h-4h-2l-2,1l-2,-1l-3,1h-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M20,265l2,-3l2,-3l2,-3l1,-2l2,-2l3,-4l1,-2l4,-4l2,-3l2,-4l4,-3l2,-1h4l2,-1l2,-2l1,-3l1,-1l4,-4l3,-3h1l1,1l1,-1l2,-1l1,-1h1h3l2,2l2,1h2l1,1l6,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M109,266h1l3,-1h7l1,-1h2l1,-1h8h6l6,-2l4,-2h3v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M7,269l-2,-1l-2,-1l-2,-1v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M52,274h-1h-4h-4h-3h-1l-4,-3l-3,-1l-9,-2l-2,-1l-1,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M52,274v-1h1l4,-2l5,-1h3l3,-1l2,-1l4,-3l2,-1l3,-1l2,-1l2,-1l6,-1l8,-3h2l5,1l12,-1h6l1,-1l1,-1v-2l1,-1l8,-7l3,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M52,274l2,1l8,2h3l4,1l3,-1l5,-1h3l6,-3l20,-6l3,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M45,287h-1l-1,-1l-2,-2l-7,-2h-2l-1,-1l-3,-3l-3,-1l-4,-1l-2,-1l-5,-4l-3,-1l-1,-1h-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M11,311l-1,-2v-1l-2,-4v-2v-5l-1,-5v-1l-1,-6l1,-3l1,-3l1,-2v-5l-2,-2v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M104,317v-1l-4,-4h-4l-3,-2l-3,-1l-3,-2h-1l-2,1l-1,1h-1h-1l-3,-2l-2,-2l-4,1l-1,-1l-1,-1l-1,-3l-3,-2v-2l-1,-2v-1l-2,-2v-1l-2,-2l-3,-1h-2l-3,1l-4,-2l-2,1l-2,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M78,407l-1,-2l-1,-3v-2l1,-4l2,-5v-3l1,-1l-1,-3l-2,-4v-2l-1,-5v-1l-3,-4l-1,-3l-2,-3l-1,-1l-5,-1h-1l-3,1l-1,1l-2,1h-1l-3,-2l-2,-1h-1l-1,-3v-4v-1v-4v-1v-2l1,-2l1,-2l1,-3v-5l1,-4l2,-7v-3v-5v-5l1,-5v-2l-2,-3l-1,-3l-1,-2l-4,-2l-2,-2l-1,-2v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M0,408h2h2h2l1,-1v-3l1,-1l2,-2l3,-2l2,-2h1l4,-1l2,-2l2,-1l3,-3v-2l1,-2v-2l-1,-1l-3,-3l-1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M80,409l5,-2l4,-1l3,-1l4,-2l4,-2l2,-2l7,-2l4,-2l2,-1l3,-3l4,-2l7,-3l2,-2l2,-1v-1l-1,-6v-1l-2,-3l-1,-2v-3l2,-6l1,-3v-3v-3l-1,-2l3,-10l3,-7v-2l1,-2l2,-2v-2l2,-3h2l2,-1l4,-1h2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M1,467l10,-3l4,-2l4,-3l4,-2h7h2h2l14,1h5h3h2h1l5,3l8,1l4,1l4,1l5,1h3h3l1,1v2l1,3v1l1,1l1,1h2h3l3,-1h2l6,1l2,1h2h5l3,2h2h2l1,-1l2,-3l2,-3l2,-3l2,-4l1,-1l3,-2h1l1,-2l2,-1l2,-1l7,-5"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M1,467v-1l1,-1l3,-3l5,-4l4,-2l4,-2l3,-2l3,-4l2,-1l3,-1h2l2,1l1,1l2,1l3,1h4l2,1h3l3,-2h2l9,2l7,4h3l4,1h3l8,-1l9,-2l2,-2l4,-1l2,-2l4,-3l3,-6l7,-7l2,-4l4,-5l3,-6l2,-4l3,-4l1,-1l2,-1l3,-3l3,-2l4,-2l4,-2l3,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M97,141h11" />
<path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M115,165l-3,-1l-2,-1l-3,-1l-3,-4l-1,-3h-1v-2l-2,-1l-1,-3v-2l-1,-3l-1,-3"><title>Description: Apparent limit</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M115,165h2v-1l1,-2l1,-1v-2l-1,-5v-1l-1,-1v-1l-4,-5l-1,-2l-4,-3"><title>Description: Apparent limit</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M80,409l-2,-2"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M78,407l-2,1l-1,3v2l1,1v1l1,1l1,-1l1,-1h1l1,-1v-1l-1,-1v-2"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M136,473h-1v-1v-1l3,-3h1h1l2,1l1,2v1l-2,1h-3h-2z"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M1,467v1l-1,1v4v3v1v1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M144,503v-2v-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M154,179v-1l-1,-2v-3v-7v-1l-1,-1v-3l-1,-4v-1v-1l-1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M241,210v-3v-7l1,-1v-4v-2l1,-2v-3v-6v-3l-3,-5v-3v-2v-1v-3l2,-4l1,-1v-1l-1,-2l-1,-2v-2l1,-4v-2l-2,-2v-2v-4"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M187,229l-1,-2v-1l-3,-3l-1,-3l-1,-2l-2,-1h-3h-1l-2,-2l-2,-5l-3,-6v-1l-2,-4l-2,-5l-4,-5l-1,-2l-1,-2l-1,-2l-2,-4h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M302,232l1,-3l2,-2l2,-3l1,-1l1,-3v-2l1,-5l1,-3l2,-2l2,-3l1,-3v-1l1,-1v-2v-1v-3l1,-3v-3l-1,-4v-4v-4l-2,-3l-1,-7l-4,-7l-2,-5v-1l-1,-3v-4l-1,-2l-2,-5h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M223,235l-4,-5l-3,-3l-5,-4l-4,-2l-2,-2l-1,-2l-2,-1h-1l-1,-3l-4,-5l-4,-7l-1,-4v-5v-1v-6v-1l-1,-3v-4l-1,-2v-2l1,-1v-2l-1,-3l-1,-3l-1,-8h-1l-1,-3l-2,-3l-1,-2v-1v-2l-1,-1l1,-2v-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M175,240l-2,-1v-1l-1,-1l-1,-1h-2l-1,-1l-2,-2l-3,-3l-6,-12l-3,-4l-1,-1v-1l1,-2v-3l-1,-3l-1,-2l-1,-3v-3l1,-2v-2l1,-5v-7l1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M220,261l-1,-1l-10,-4l-2,-1h-3l-7,-1l-5,-1l-7,-2h-3h-3l-4,1l-1,1l-4,2l-4,1l-7,2h-4h-4"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M152,304h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M152,396l2,-1l6,-5l4,-3l2,-3l3,-3l4,-5l2,-4l1,-3l1,-2l4,-5l2,-1l4,-3l2,-2h2l6,-3v-1l1,-2l1,-1l2,-1l2,-1l1,-1v-1l1,-3l1,-1l4,-3l1,-1l4,-1l3,-2l3,-4v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M347,480v-2v-13l-1,-4v-1l-1,-2v-1v-1l-1,-3l-1,-2l-1,-2v-6l1,-2v-1l1,-3l3,-7l2,-3l3,-3l1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M370,480l1,-2l4,-6l2,-3l4,-5l2,-2l3,-3l3,-5v-2v-2h-1l-1,-6l-1,-3l-1,-5v-2l-2,-3l-2,-1l-4,-3l-1,-1l-2,-2l-6,-7l-1,-1l-1,-2l-1,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M352,503v-2l-1,-1l-3,-4v-1l-1,-1l1,-2v-1l2,-1l3,-1l1,-1l2,1l4,-1l3,-1l5,-1l5,-1l4,-3l3,-2l2,-1l2,-1h2l1,1l1,1v1v2v2v1h-1l-3,3l-3,3l-5,1l-2,2l-1,1l-1,1v2v2l-1,1v1"><title>Description: Apparent limit</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M151,304l-7,-1l-5,-1l-1,-2l-1,-1l-3,-6v-2l-2,-1l-1,-2l-1,-5l-1,-1l-1,-2v-1l-1,-1l-2,-1l-5,-2h-1l-1,-1l-2,-2l-2,-1v-1l-1,-2l-1,-1l-3,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M150,154l-1,-2l-1,-2l-2,-5l-1,-2l-3,-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M150,95h2l3,1l4,-1l6,-1h2l2,1l2,1h2l3,-1l5,-1h2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M152,0l1,1l2,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M569,142l-1,-1l-2,-5"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M569,142l1,-2l4,-4v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M393,140l7,-1h1l3,2h3l3,2h2l4,3l3,3l1,1v1l2,4v2v2v1l1,1v1l6,6v1l2,2l1,1v2l1,1h2l10,2l1,1l1,1l3,3v1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M453,183v-2v-3l2,-5v-3l-1,-2l-1,-3l-4,-1l-3,-3v-2v-1l1,-1l2,-2l1,-3v-5v-2v-1l-1,-1l-3,-5v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M453,183h-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M454,184l-1,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M340,274l8,-6l2,-2l1,-1l2,-2h3l3,-1l2,-2l3,-3l5,-6l5,-6l3,-2l2,-2l1,-3l1,-1l1,-1l2,-3l1,-3v-6l1,-1v-1l-1,-2v-3l1,-4l2,-2v-3v-2l2,-2l4,-3l1,-2l2,-2l1,-2l6,-5l5,-4l1,-1l2,-1l13,-2l4,-1h7l12,2h2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M478,191l-5,-1l-3,-1l-1,-1l-1,1l-3,-2l-3,-1l-2,-1h-2l-3,-1h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M478,191l-1,-2l-1,-1l-1,-1l-1,-3l1,-3v-3l2,-4l2,-6l1,-4v-3l2,-5l1,-5v-2l-1,-1v-4l-1,-2v-1v-3v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M481,201l1,-1l4,-2l4,-1l2,-1h3h2l5,-5l3,-2l4,-4v-2v-1h2v-1v-1l3,-2l3,-2l5,-1l2,-1h2l5,-4l7,-7"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M481,201l-1,-1v-2l-1,-4l-1,-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M575,152l-2,-3v-2l-2,-2l-1,-1l-1,-1v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M397,249l3,-1l7,-1h4l2,1h3l1,-1h2l1,-2v-1l1,-2v-2l2,-2l1,-2v-2l-1,-2l-2,-3v-2l2,-2l3,-2l2,-2l2,-1l1,-3v-2v-2l2,-4l2,-2v-1l1,-3l1,-3l4,-6l2,-2l1,-1l3,-3l4,-3l3,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M563,255l2,-4l7,-11l3,-3"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M497,258l-3,-4l-1,-2v-1v-6v-3l-3,-5l-1,-3v-1l-1,-3h1v-3h-1v-1v-2l-1,-6l-3,-7v-2l-1,-2l-1,-3l-1,-2v-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M497,258l1,-2l1,-2l4,-5l3,-2l2,-2l2,-1l6,-4l4,-1l4,-2l1,-1l2,-1h4l8,-2l3,-1l3,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M498,263v-2l-1,-1v-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M485,264l-3,-1l-2,-3v-1v-1l-2,-2l-2,-1h-2l-2,-1h-2l-2,1h-1h-3l-5,-2h-2l-11,2h-2l-2,-1l-1,-1h-3l-3,-1l-6,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M485,264l4,-1l2,-1h3l4,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M351,284l1,-1l6,-2l1,1l2,1l4,2l5,3l6,3l4,2l1,1l3,3l2,1l2,1h3h3l2,1l2,1l3,-3l5,-1h2l3,-3l4,-2l3,-1h8l12,-1l4,-2l10,-5l5,-2l5,-1l9,-5l4,-2l5,-5l5,-4"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M542,316v-1l-1,-1l-6,-5l-6,-4l-1,-3l-1,-2l-3,-1l-2,-2l-3,-3v-2l-4,-4l-2,-2v-2l-1,-1l-1,-2l-3,-3l-8,-7l-1,-1l-1,-1v-2v-4"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M542,316l-2,-1l-2,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M440,325l2,1l8,1h3l2,1h3l2,-1l5,-1l5,2h3l2,-1h2l2,-2h2h1h2l4,3h1h5l3,-1h2l6,-3h2l2,1h1l3,-2l3,-3l3,-1l8,-6h1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M562,336l-1,-1v-1l-1,-3v-1h-1l-4,-1h-1v-2l1,-2v-1l-1,-2l-2,-2l-2,-1l-4,-1l-1,-1l-3,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M562,336h-2l-7,1l-6,2l-3,1l-2,-1l-3,1h-6l-1,1h-1l-3,4l-2,1l-3,1l-2,1l-5,2l-2,1l-3,3l-1,3l-1,2v2l-3,2l-1,3v6l-1,2l-1,2l-1,2v3l-2,3l-4,5l-5,6h-1h-2h-2l-2,-2l-4,-2l-5,-1l-3,-1l-3,-2h-2l-1,-2l-1,-1v-2l1,-2l2,-2v-2v-2v-1v-4l-2,-3l-1,-1l-5,-5l-3,-1l-1,-2l-1,-1l-2,-2l-3,-2l-2,-1l-3,-2l-1,-1l-5,-2l-3,-1l-7,-2h-1h-2l-1,-3l-2,-3l-1,-1l-2,-3l-3,-2l-2,-1l-2,-2h-1l-1,-1l-1,-1l-2,-3l-2,-3l-1,-1l-1,-1h-4h-4l-4,1l-3,1l-7,2h-3l-7,-3l-3,-1h-4h-2l-4,-2h-2h-2l-5,2h-1h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M569,350v-1l-1,-1l-1,-1l-1,-1v-1l-1,-4h-1v-2l-1,-3h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M575,352h-2l-3,-2h-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M503,414h1l1,-2l1,-1l3,-2l2,-2l1,-3v-4l1,-2v-1l1,-1l4,-1l2,-1l2,-2l1,-2l1,-2l1,-2l1,-4l2,-5l2,-3l2,-4l2,-2l4,-2l1,-2l1,-1l2,-4l7,-4l3,-1l2,-1h3l3,-1l6,-1l3,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M531,426h1l2,-1l3,-1l2,-2l2,-2l2,-2l2,-2h1h4l3,-2l1,-1l1,-4l2,-1l2,-2l3,-2h2l3,-1l1,-1l1,-3l2,-2l1,-1h2h1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M548,442l1,-4v-1l1,-1l1,-2h1l2,-1l5,-2l3,-1l2,-1l1,-3l2,-3l1,-1v-1l2,-2l4,-2h1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M555,457v-1l3,-1l2,-1h3l2,-1l3,-2l7,-2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M575,479h-3h-2l-1,-1l-3,-2l-3,-1h-5l-4,-1l-2,-2l-2,-1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M350,368l3,2h3l1,2l2,1h1l7,-3h3l5,1l3,2l2,2l4,3l2,1l3,2l3,2l2,2l4,1l8,3l3,3l3,4l1,1l4,4l5,2l2,3l4,5l8,6l4,5l2,5l4,5l2,3l2,5v1v1l1,2v2v1l1,5v1l-3,6l-2,3v2l1,3v1v2l-2,4l-1,2v3v2h1l3,10v1l1,3l2,1v1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M407,490l2,-2l2,-2l2,-1h5h1l1,-1l1,-2l-2,-2v-1l-1,-2v-2v-1l3,-1l3,-1l1,-1h5l5,1l3,1l1,1l1,1l1,4l1,2v1l-2,2v1l2,3l2,2l1,2l1,1l2,4h2h2"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M486,503v-2l-1,-1l-2,-8l-1,-2v-1l-2,-4v-1l-1,-5v-1v-9v-4l-3,-5v-1l-2,-5l-1,-5l-1,-2l-2,-2l-1,-4l-2,-4l-2,-1l-1,-1l-2,-2l-3,-4l-1,-1l-1,-3l-5,-4l-4,-2l-1,-1l-1,-2l-1,-1l-4,-2l-1,-1l-4,-2l-3,-3l-3,-6l-4,-4l-2,-2l-4,-5l-1,-2l-3,-5l-1,-2l-2,-7v-6l-1,-6l-1,-1l-1,-2l-4,-2l-4,-3l-5,-4v-1h-5l-9,-4h-1l-5,-3l-3,-2h-3l-2,-1l-3,-3h-2l-6,-1l-3,-1h-3l-1,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M528,313v-1l2,-1l1,-1l1,1l3,2l2,1l1,2"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M538,316h-1l-2,-1l-2,-1l-2,-1h-2h-1"><title>Description: Shoreline</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M334,502h-1l-1,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M282,403v1l2,5l3,4l3,3l3,2l1,2l1,1l2,2l3,1l2,2l9,4l3,1l1,2l1,1l1,1l-1,1l-1,3l-1,1v3v3l2,6l1,2l2,5l-1,3v4l-2,5l-2,7v2l-1,7l-2,4l-2,3l-1,2l-6,7"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M452,497l4,1h2l5,3l1,1l2,1"><title>Description: Stream</title></path><path style="clip-path:url(#cp2);stroke-width:0.646555;stroke:rgb(0,170,170);" fill="none" d="M474,420l3,3l1,3l4,7l3,4v1l1,2l3,6l1,1l2,1l5,-1h1l1,2l1,1l1,4v2l1,2l1,5l1,2l2,2l2,1v1l3,2l1,1v1v1l1,1l2,1l1,1h1l2,-1h2h1l1,2v1l-1,3v3l2,1l2,1l1,1v1v2v2v2l1,1l-2,3v1v1l2,1l1,1"><title>Description: Stream</title></path></g>
<g id="L5" >
<defs><clipPath id ="cp3" >
<path d="M0,0v503h575v-503z " />
</clipPath></defs>
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M521,130h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M520,130h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M149,207" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M149,207h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M146,207l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M144,208h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M143,208l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M141,207l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,205l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,202l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,198l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,197l-3,-7" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,190l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,186v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,185v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,183v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,180l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,179l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,177l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,175v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,174l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,170l2,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,162v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,159l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,158l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,154l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,153v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,150v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,147l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,145l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,142l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M125,140l-4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M121,137v-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M151,207h-2h-3l-2,1h-1l-2,-1l-2,-2l-2,-3l-1,-4l-1,-1l-3,-7l-1,-4v-1v-2v-3l1,-1l2,-2l1,-2v-1l1,-4l2,-8v-3l-1,-1l-4,-4l-1,-1v-3v-3l-1,-2l-2,-3l-4,-2l-4,-3l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,136l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M6,138l4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,140l2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,143l3,4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M15,147l4,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M19,151l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M21,152h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M24,152h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M25,152l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M27,151l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M29,149l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M30,148h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M32,148h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M33,148l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M35,149h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M36,149l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M38,148l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,145v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,144l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,143l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,142l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M46,141l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,140v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,139v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,137" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,137" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M2,136l4,2l4,2l2,3l3,4l4,4l2,1h3h1l2,-1l2,-2l1,-1h2h1l2,1h1l2,-1l2,-3v-1l3,-1l2,-1l1,-1l1,-1v-1v-2v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,483v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,484v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,482v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,130h-2" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M521,130h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,488v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,489v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,488v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,489v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,484v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,483v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,393l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M151,392h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M150,392v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M150,391" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M150,391v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M150,390l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M146,386l-6,-7" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M140,379h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,379l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,376h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M152,394l-1,-2h-1v-1v-1l-4,-4l-6,-7h-1l-2,-3l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M150,20l5,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,17l10,-6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M165,11l5,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,8l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,7l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,6l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M178,5l5,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M183,2l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M184,1l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M186,0l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M188,-2l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M189,-3l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,-4l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M194,-5l7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M201,-6l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M206,-7l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M208,-8l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M213,-10l5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M218,-15v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M218,-16l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,-17h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M222,-17l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M227,-16h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M229,-16l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,-17l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M235,-18l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M236,-20h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M237,-20l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M238,-21l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M241,-20l8,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M249,-21h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M253,-21h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M258,-21l8,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M266,-20h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M270,-20l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M272,-21h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M274,-21h3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M277,-21l5,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M282,-18l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M284,-17l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M287,-16l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M288,-14l4,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M292,-10l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M293,-9l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M295,-10h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M296,-10l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M297,-11l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M299,-12l3,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M302,-18l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M304,-21l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M305,-23v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M305,-24l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M306,-25l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M308,-26h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M311,-26l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,-27l4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M318,-25l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M319,-24l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M320,-23l1,2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M149,20l6,-3l10,-6l5,-3l3,-1l2,-1l3,-1l5,-3l1,-1l2,-1l2,-2l1,-1l1,-1l4,-1l7,-1l5,-1l2,-1l5,-2l5,-5v-1l1,-1h3l5,1h2l5,-1l1,-1l1,-2h1l1,-1l3,1l8,-1h4h5l8,1h4l2,-1h2h3l5,3l2,1l3,1l1,2l4,4l1,1l2,-1h1l1,-1l2,-1l3,-6l2,-3l1,-2v-1l1,-1l2,-1h3l3,-1l4,2l1,1l1,1l2,3v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,493v-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,495v-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M102,13" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M102,13l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M101,10l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M100,7v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M100,5l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M101,4l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M102,3l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,4v3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,7v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,8h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,8h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,8h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M108,8h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M109,8l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M110,6l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M111,4l1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,-1l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M113,-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M113,-3l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M116,-4l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M117,-6l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,-8v-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,-12l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,-15v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,-16l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M120,-19" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M120,-19l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M121,-20v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M103,14l-1,-1l-1,-3l-1,-3v-2l1,-1l1,-1l1,1v3v1h1h1h3h1l1,-2l1,-2l1,-5l1,-1v-1l3,-1l1,-2l1,-2v-4l1,-3v-1l1,-3l1,-1v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M101,14l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M99,13v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M99,12l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M98,10v-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M98,3l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M97,2v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M97,0l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M96,-3v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M103,14l-4,-1v-1l-1,-2v-7l-1,-1v-2l-1,-3l-1,-2h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M120,22h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M121,22l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M123,23l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M124,22h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M125,22" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M125,22l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M126,24v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M126,25l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M127,26v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M127,30l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,31l1,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,33h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,33l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,32h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,32v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,30l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,28l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,27l9,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M144,23l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M146,21h2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M118,22h3l2,1l1,-1h1l1,2v1l1,1v4l1,1l1,2h1l1,-1h1v-2l2,-2l1,-1l9,-4l2,-2l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,21v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,20v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,18l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,16" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,16v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,14l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,13l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M122,10l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M123,9v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M123,8" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M123,8h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M121,8l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,10l-4,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M115,13l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,15l-2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M110,18l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M107,20h-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,20l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,19v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,18l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,17v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,16" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,16" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M118,22l1,-2v-2l-1,-2v-2l1,-1l3,-3l1,-1v-1h-2l-2,2l-4,3l-3,2l-2,3l-3,2h-2l-1,-1v-1l-1,-1v-1v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M84,21l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,19l5,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,11l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M92,8l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,6l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M94,2v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M94,0v-4" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M84,22l1,-3l5,-8l2,-3l1,-2l1,-4v-2v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M99,36l-7,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M101,36l-11,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M100,35l-7,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,29l-4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M89,26l-4,-3" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M101,36l-8,-7l-4,-3l-5,-3v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M102,36h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,36l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M106,35l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M107,34l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M109,32l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M110,31l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,28l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M114,27l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M116,26l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,23" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M101,36h4l1,-1l1,-1l2,-2l1,-1l2,-3l2,-1l2,-1l2,-3v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,36l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M46,35h7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M53,35l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M56,34h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M58,34l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M61,32l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M64,31l5,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M69,30h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M72,30h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,30l10,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M87,34h2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M40,36l6,-1h7l3,-1h2l3,-2l3,-1l5,-1h3h5l10,4l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-39,43l10,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-29,41l14,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,38l15,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,34l7,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M7,31h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,31l20,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M30,29l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M33,30l4,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M37,31h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,31l11,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,29l8,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M59,26l7,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M66,22l7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M73,21h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,21l6,1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-40,44l11,-3l14,-3l15,-4l7,-3h3l20,-2l3,1l4,1h3l11,-2l8,-3l7,-4l7,-1h4l7,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-29,57l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-27,56l7,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-20,53l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,51l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,50l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-12,48" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-12,48l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,47l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,46l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-6,45l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-3,44l4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,41l4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M5,40h23" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,40l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M32,39l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M37,37l2,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-31,58l1,-1l3,-1l7,-3l5,-2l2,-1l1,-2l1,-1l1,-1l4,-1l3,-1l4,-3l4,-1h23l4,-1l5,-2l2,-1h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M148,76l-9,-8" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,68l-14,-12" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M125,56l-9,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M116,48l-8,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M108,42l-6,-5" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M149,77l-10,-9l-14,-12l-9,-8l-8,-6l-7,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M39,79v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M39,78l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M38,77l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M35,76l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M32,73l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M31,72l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M29,71h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,71h-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M25,71l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,72l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M22,73l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M20,75v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M20,77v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M20,79l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M21,81l2,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,84l3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M26,87l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M27,88l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,90v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,92v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,96" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,96v7" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,103l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M27,105" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M27,105h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M26,105l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M25,104l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,103l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M21,100l-4,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M17,96l-5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,91l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M9,89l-7,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,85l-7,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-5,82l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,80l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,79h-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,79l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-14,78v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-14,76l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,73v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,70l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-14,67l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-16,65l-6,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,61l-4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-26,60l-4,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M40,80l-1,-2l-1,-1l-3,-1l-3,-3l-1,-1l-2,-1h-1h-3l-2,1l-1,1l-2,2v2v2l1,2l2,3l3,3l1,1l1,2v2v4v7l-1,2h-1l-1,-1l-2,-1l-2,-3l-4,-4l-5,-5l-3,-2l-7,-4l-7,-3l-4,-2l-2,-1h-2l-1,-1v-2l1,-3v-3l-1,-3l-2,-2l-6,-4l-4,-1l-4,-2h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,81l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,83l2,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,85l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M50,86l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,87l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,88v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,89l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M53,92v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M53,93l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M54,94l5,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M59,96l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M62,97l5,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M67,99l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M69,100h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M71,100v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M71,99v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M71,98l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M70,97" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M70,97l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M66,95v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M66,94l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M65,92v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M65,91l-2,-7" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M63,84v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M63,83l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M64,82l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M65,81l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M70,82l6,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M76,86l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M78,87h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M80,87h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M81,87h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M82,87l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M83,85l1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M84,79l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M83,78l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M80,74l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M79,71l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,68l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M75,64l-5,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M70,57l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M68,55l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M67,52l-3,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M64,45l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M63,44l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M62,43h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M60,43h-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M56,43h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M54,43h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,43l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M50,42l-4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M46,41l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,40l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,38" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M40,80v1l3,2l2,2l5,1l1,1l1,1v1l1,3v1l1,1l5,2l3,1l5,2l2,1h2v-1v-1l-1,-1l-4,-2v-1l-1,-2v-1l-2,-7v-1l1,-1l1,-1l5,1l6,4l2,1h2h1h1l1,-2l1,-6l-1,-1l-3,-4l-1,-3l-2,-3l-2,-4l-5,-7l-2,-2l-1,-3l-3,-7l-1,-1l-1,-1h-2h-4h-2h-2l-2,-1l-4,-1l-2,-1l-3,-2l-1,-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,108v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,106v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,104l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,100v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,99v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,95l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,94l-7,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M126,87l-8,-10" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,77l-12,-11" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M106,66l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,64l-5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M99,59l-8,-9" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M91,50l-6,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,42l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M84,40l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,39l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M87,38l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,36" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M131,110v-4v-2l3,-4v-1v-4l-1,-1l-7,-7l-8,-10l-12,-11l-2,-2l-5,-5l-8,-9l-6,-8l-1,-2l1,-1l2,-1l3,-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M148,133l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M147,130v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M147,127l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M146,125l-4,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M142,120l-4,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,115l-6,-5" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M149,134l-2,-4v-3l-1,-2l-4,-5l-4,-5l-6,-5h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M119,134l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,132l-5,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M113,129l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,128v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,127l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M111,126l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,124l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M113,123h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M115,123l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M117,124l4,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M121,128l8,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,132h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,132h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,132l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,131l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,130l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,129l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,128l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,127v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,125v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,124l-2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,122l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,121l-6,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,119h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,119v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,117l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,116l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,114v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,113v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M120,135v-1l-2,-2l-5,-3l-1,-1v-1l-1,-1l1,-2l1,-1h2l2,1l4,4l8,4h1h2l1,-1l1,-1l2,-1l2,-1l1,-1v-2v-1l-2,-2l-2,-1l-6,-2h-1v-2l1,-1l2,-2v-1v-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M668,113l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M667,111l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M664,110l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M663,109l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M660,107l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M659,106l-4,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M655,100" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M655,100l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M654,99v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M654,98l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M653,96v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M653,95l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M651,92l-2,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M649,85l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M650,82l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M651,78v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M651,76l-1,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M650,71l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M649,70l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M648,69l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M647,67l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M646,64l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M644,62l-6,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M638,57l-5,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M633,56l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M632,55l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M631,54l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M630,53l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M629,51" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M629,51l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M628,49l-6,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M622,45l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M620,43l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M618,40l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M617,38l-8,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M609,33l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M606,29l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M605,27l-2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M603,25l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M600,23l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M597,20l-3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M594,21l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M592,20l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M591,18l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M590,17l-4,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M586,14h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M585,14h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M584,14h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,14l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M580,13l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M579,12l-13,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M566,8l-3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M563,7l-6,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,5l-4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,6h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M552,6l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M551,8h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M548,8l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M546,9l-2,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,11l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,14v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,16l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,17h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,17h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,17l-5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,16l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M534,15l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M533,14l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M530,12" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M530,12h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M529,12l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,10l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,9v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,7h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,7l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M522,5h-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M518,5l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M515,4l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M513,3l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M512,0v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M512,-2l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M511,-5l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,-7h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M669,114l-2,-3l-3,-1l-1,-1l-3,-2l-1,-1l-4,-6l-1,-1v-1l-1,-2v-1l-2,-3l-2,-7l1,-3l1,-4v-2l-1,-5l-1,-1l-1,-1l-1,-2l-1,-3l-2,-2l-6,-5l-5,-1l-1,-1l-1,-1l-1,-1l-1,-2l-1,-2l-6,-4l-2,-2l-2,-3l-1,-2l-8,-5l-3,-4l-1,-2l-2,-2l-3,-2l-3,-3l-3,1l-2,-1l-1,-2l-1,-1l-4,-3h-1h-1h-2l-2,-1l-1,-1l-13,-4l-3,-1l-6,-2l-4,1h-1l-1,2h-3l-2,1l-2,2l-1,3v2l-1,1h-1h-1l-5,-1l-1,-1l-1,-1l-3,-2h-1l-4,-2l-1,-1v-2h-1l-1,-2h-4l-3,-1l-2,-1l-1,-3v-2l-1,-3l-1,-2h-1l-2,-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,484v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,134" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,134l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M48,133l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,131l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,128v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,127v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,125v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,124l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,122" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,122v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,118l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M50,116h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M49,116h-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,116l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,115l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,114l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,113v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,111l2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,105l2,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,97v-9" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,88l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,87" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,87l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,86l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,84" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,84v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,83" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,83" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,83l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M39,82v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M47,135v-1l1,-1l3,-2l1,-3v-1v-2v-1l-1,-2v-4l-1,-2h-1h-5l-1,-1l-1,-1l-1,-1v-2l2,-6l2,-8v-9l-1,-1l-2,-1l-2,-2v-1l-1,-1v-2h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-5,136h5" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-6,136h8" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M353,84l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,83h7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M361,83l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,84h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M366,84h2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M352,85v-1l2,-1h7l3,1h2h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,87l-7,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M165,86l-6,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M159,85l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M157,83l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M154,81l-4,-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M173,87l-8,-1l-6,-1l-2,-2l-3,-2l-5,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,86l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M347,86h1l3,-1h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,86" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M352,87v-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,87l-1,1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M351,88l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,88h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M349,88l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M351,88h-2l-2,-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M247,90l-11,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M236,91h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,91h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,91l-6,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M226,88l-7,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,86l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M217,85l-12,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M205,83h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M202,83l-8,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M194,86h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M192,86h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,86l-5,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M185,85h-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M181,85l-4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M177,87h-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M248,90l-12,1h-2h-2l-6,-3l-7,-2l-2,-1l-12,-2h-3l-8,3h-2h-2l-5,-1h-4l-4,2h-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M249,89" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M249,89l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M251,88h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M253,88l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M255,87l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M254,86h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M253,86" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M253,86l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M252,85v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M252,84" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M252,84v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M252,83l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M251,81v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M251,80l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M250,78v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M250,77v-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M250,73l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M251,70v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M251,68l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M252,66l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M254,65h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M256,65l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M259,66l4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M263,65l6,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M269,62h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M273,62h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M275,62l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M278,64h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M279,64l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M281,62l2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M283,60l7,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M290,54h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M291,54l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M294,52l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M297,51h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M298,51h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M299,51l2,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M301,54l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M302,56l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,57h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M305,57l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M307,56l6,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M313,51l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,49v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,48v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,44v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,42l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M313,40v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M313,39v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M313,38" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M313,38v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M313,37l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M312,35l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M310,32l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M309,31" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M309,31l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M308,30" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M308,30l-4,-6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M304,24v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M304,23h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,23v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,20v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,18" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,18v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,15v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,14v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,11v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,10h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M304,10l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M308,9l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M309,7l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M310,6l4,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,2l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M315,1l1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M248,90v-1h1l2,-1h2l2,-1l-1,-1h-1l-1,-1v-1v-1l-1,-2v-1l-1,-2v-1v-4l1,-3v-2l1,-2l2,-1h2l3,1l4,-1l6,-3h4h2l3,2h1l2,-2l2,-2l7,-6h1l3,-2l3,-1h1h1l2,3l1,2l1,1h2l2,-1l6,-5l1,-2v-1v-4v-2l-1,-2v-1v-1v-1l-1,-2l-2,-3l-1,-1l-1,-1l-4,-6v-1h-1v-3v-2v-3v-1v-3v-1h1l4,-1l1,-2l1,-1l4,-4l1,-1l2,-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M368,89h-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M366,89h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M363,89h-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M358,89h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M357,89h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M355,89l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M369,90l-1,-1h-2h-3h-5h-1h-2l-3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,89l1,-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M369,90l1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,96h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,96h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M324,96h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M323,96l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M320,94l-4,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M316,92l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M315,91l-3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M312,92l-5,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M307,94h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M304,94h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,94h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M301,94l-7,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M294,91h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M292,91h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M289,91l-4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M285,92l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M283,93l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M282,95v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M282,98h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M281,98h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M280,98h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M278,98l-8,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M270,93l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M268,92l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M265,91l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M262,90h-6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M256,90h-6" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M328,95l-1,1h-3h-1l-3,-2l-4,-2l-1,-1l-3,1l-5,2h-3h-1h-2l-7,-3h-2h-3l-4,1l-2,1l-1,2v3h-1h-1h-2l-8,-5l-2,-1l-3,-1l-3,-1h-6h-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M329,93l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,91l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,88l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,86" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,86l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,83v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,82l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,81v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,80l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M329,77l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,76v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,74l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,73v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,71v-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,63l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M326,62v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M326,58l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,54l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,53v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,48l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M329,45v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M329,42l-1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,37l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M325,34l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M322,32v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M322,31v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M322,28h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M321,28l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M319,26l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M318,25" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M318,25l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M317,24v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M317,22v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M317,21l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M320,18v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M320,17l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M319,14l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M318,13v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M318,10l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M319,9l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M320,8l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M321,7l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M320,6l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M319,4l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M318,1v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M328,95l1,-1l1,-3l1,-3l1,-2l-1,-3v-1l-1,-1v-1l-1,-3l-1,-1v-2l-1,-1v-2v-8l-1,-1v-4l1,-4l1,-1v-5l1,-3v-3l-1,-5l-3,-3l-3,-2v-1v-3h-1l-2,-2l-1,-1l-1,-1v-2v-1l3,-3v-1l-1,-3l-1,-1v-3l1,-1l1,-1l1,-1l-1,-1l-1,-2l-1,-3v-1l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,94" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,94l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M333,92l4,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,87l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M339,86h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M340,86h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M345,86h1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M328,95l2,-1l3,-2l4,-5l2,-1h1h5h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M386,96h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,96h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M382,96l-4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M378,93l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M375,92l-4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M371,91l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M387,95l-1,1h-2h-2l-4,-3l-3,-1l-4,-1l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M387,94l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,92l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,91l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M379,88l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M378,87h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M375,87l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M373,85l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M387,95v-1l-3,-2l-3,-1l-2,-3l-1,-1h-3l-2,-2l-2,-1h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M342,131l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,128v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,127v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,125l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M345,124v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M345,120v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M345,118l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,115l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,112l6,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M356,107l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M358,105l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M361,103l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M362,101l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M363,98l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,97l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M366,96l2,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M368,93l1,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M342,132l2,-4v-1v-2l1,-1v-4v-2l2,-3l3,-3l6,-5l2,-2l3,-2l1,-2l1,-3l1,-1l2,-1l2,-3l1,-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,133v-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,125v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,120v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,119v-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,114l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,110v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,105v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,104l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,102v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,101l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,99v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,98l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,94v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,93l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,91h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,91l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,90v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,89l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,88" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,88" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M171,134v-9v-5v-1v-5l1,-4v-5v-1l3,-2v-1l-1,-2v-1l-3,-4v-1l1,-2h2l1,-1v-1l-1,-1l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,4v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,3l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,1v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,-1v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,-3l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,-6h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M507,6l1,-1v-1v-1l1,-2v-2v-2l-1,-3l-1,-1v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M433,7h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M434,7l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M435,6v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M435,3l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,1l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,0" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,0h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,0v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,-2v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,-6l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,-9l1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,-14v-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,-22l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,-24l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,-25v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,-27v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,-28" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,-28h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,-28v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,-29v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,-31l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M440,-33v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M440,-34l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M441,-36l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M442,-38l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,-39l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,-40v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,-42l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,-43" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,-43l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M443,-45l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,-46h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,-46" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,-46l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M446,-45l1,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M447,-43l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,-42h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,-42v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,-43l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,-46v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M431,8h1l2,-1l1,-1v-3l1,-2l1,-1h-1v-2v-4l1,-3l1,-5v-8l1,-2l-1,-1v-2v-1h1v-1v-2l1,-2v-1l1,-2l1,-2l2,-1l1,-1v-2l-1,-1l-1,-2l1,-1h1l1,1l1,2l1,1h1v-1l-1,-3v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,35l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M393,31l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,29v-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,23v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,22l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M395,19l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M396,18l2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M398,16l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M403,15h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M404,15l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,13h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M406,13l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M407,14l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M408,15h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M409,15h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,15l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,13l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M415,10l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,8v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,6l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M417,5l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M419,4l4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,1l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M424,0h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,0h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M430,0h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M431,0v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M431,1v5" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M391,36l2,-5l1,-2v-6v-1l1,-3l1,-1l2,-2l5,-1h1l1,-2h1l1,1l1,1h1h1l2,-2l3,-3l1,-2v-2l1,-1l2,-1l4,-3l1,-1h1h5h1v1v7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,33l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,32l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,30l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,26" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,26l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,25l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,24v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,20l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,16v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,15l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,14l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,13h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,13l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,11v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,9l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,8l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,7l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,5h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,5l3,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,6h1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M501,34l-2,-2l-1,-2l-4,-4l-1,-1l-1,-1v-4l1,-4v-1l-1,-1l-2,-1h-1l1,-2v-2l2,-1l4,-1l3,-2h3l3,1h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,33v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,30" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,30v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,29h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,29l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,26v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,25v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,23v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,22l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,21v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,20l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,19" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,19v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,17v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,14l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,12v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,8l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,7h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,7l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M504,9h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,9v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,8l1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M501,34v-1v-3v-1h-1l-1,-3v-1v-2v-1l-1,-1v-1l-1,-1v-2v-3l3,-2v-4l1,-1h1l2,2h2v-1l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,35h-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,35h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,35l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,33l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,30v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,29l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,27v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,24v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,22v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,17l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,16l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,15l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,14l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M483,15" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M483,15l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M481,14h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,14h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,14v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,15" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,15v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,17l1,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,19" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,19v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,20l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,21l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,23l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,24l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,25h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,25v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,28l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,30l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M469,33" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M501,34l-1,1h-6h-1l-2,-2l-2,-3v-1l-1,-2v-3v-2v-5l-1,-1l-1,-1l-1,-1l-2,1l-2,-1h-3h-1v1v2l1,2v1l-1,1l-2,2l-2,1l-1,1h-1v3l-1,2l-1,3l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M518,51v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M518,49l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M517,48l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M513,44l-6,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,40l-5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,35h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M519,52l-1,-3l-1,-1l-4,-4l-6,-4l-5,-5l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,65v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,64l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,63l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,62l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,60l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,58l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,56v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,54v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,53l2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,48v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,47v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,46l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,44l-4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,41l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,40v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,39v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,38h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,38l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,39h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,39l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,38h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,38h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,38l4,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,41l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,42l3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,45l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,46l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M513,48l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M514,49" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M514,49l1,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M515,53v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M515,54l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M516,55h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M517,55" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M517,55l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M501,66l1,-1v-1l-2,-1l-1,-1l-1,-2l1,-2l-3,-2v-2v-1l2,-5v-1v-1l-3,-2l-4,-3l-1,-1v-1v-1h1l3,1h1l1,-1h1h2l4,3l2,1l3,3l2,1l3,2l1,1l1,4v1l1,1h1l1,-2l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,65l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,64l-5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,63l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,62l-3,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,59l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,58l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,57l-6,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,55l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M481,54l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,53l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,52v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,51l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,49l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,48v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,47" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,47v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,45l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,44v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,43" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,43l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,41l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,38v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,35l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M501,66l-2,-2l-5,-1l-1,-1l-3,-3l-1,-1l-1,-1l-6,-2l-1,-1l-3,-1l-1,-1v-1l-2,-2l-1,-1v-1v-2l-1,-1v-1l-1,-2l-2,-3v-3l-1,-1h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M413,67" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M413,67l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M415,64l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,63h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M418,63h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,63h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M421,63l2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,61v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,60v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,59v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,58l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M422,56l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,54l2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,49v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,48v-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,40" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,40l-1,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M424,33v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M424,30v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M424,25l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,21l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,19l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M427,17l2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M429,11l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M431,9" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M413,68v-1l2,-3l1,-1h2h2h1l2,-2v-1v-1v-1l-1,-2l1,-2l2,-5v-1v-8l-1,-7v-3v-5l1,-4l1,-2l1,-2l2,-6l2,-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M415,67l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,66l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M419,65h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M422,65l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M424,64l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,63h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M428,63v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M428,62v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M428,61l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,59l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,56v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,55l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,53" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,53l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M427,52l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M428,50v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M428,48l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M429,46l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M430,44h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M431,44h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M434,44l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,45h6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,45l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M447,46h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,46h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,46h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M452,46l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,44v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,43v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,42l5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M459,37l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M460,36h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M462,36h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,36l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,35h2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M413,68h1l2,-2l3,-1h3l2,-1l2,-1h2v-1v-1l-2,-2l-1,-3v-1l1,-2l1,-1l1,-2v-2l1,-2l1,-2h1h3l5,1h6l2,1h2h2h1l2,-2v-1v-1l5,-5l1,-1h2h1l2,-1l3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,69" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,69v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,67l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,66h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,66h2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M497,70v-1h-1v-2l1,-1h1h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M388,96h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M390,96h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,96v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,95l3,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M395,89l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M397,87l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M399,86l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,84l2,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,80l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M404,78l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M407,77h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M409,77h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M411,77l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,76v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,75v-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,70l1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M387,95l3,1h2v-1l3,-6l2,-2l2,-1l1,-2l2,-4l2,-2l3,-1h2h2l1,-1v-1v-5l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M389,131l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M388,130v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M388,129l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M390,127l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,126l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,123l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M396,120l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M397,118l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M398,117l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M399,116h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M401,116l2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M403,117h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M404,117h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,117h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M406,117h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M408,117l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M409,119h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,119h3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M413,119l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M418,117h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,117l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M422,118l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,119l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,118v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,117v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,114v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,111l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,109l3,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M429,101l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M431,98l4,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M435,93l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,92v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,90v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,88v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,87v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,84l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,82l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,78v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,76h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M440,76l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M441,72v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M441,68l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M442,64l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,60l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M446,58h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M447,58l4,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,56l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M452,57l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,58h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M456,58l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M459,59l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M464,60h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M466,60h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M468,60h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,60h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,60l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,59v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,58l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,55l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,51v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,49h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,49l-2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M468,44" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M468,44v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M468,42l-1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,37l1,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M389,132l-1,-2v-1l2,-2l2,-1l2,-3l2,-3l1,-2l1,-1l1,-1h2l2,1h1h1h1h2l1,2h1h3l5,-2h2l2,1l1,1l2,-1v-1v-3v-3l1,-2l3,-8l2,-3l4,-5l1,-1v-2v-2v-1v-3l1,-2l2,-4v-2h1l1,-4v-4l1,-4l2,-4l2,-2h1l4,-2l1,1l3,1h1l3,1l5,1h2h2h4h3l1,-1v-1l-2,-3l-3,-4v-2h-1l-2,-5v-2l-1,-5l1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M611,128l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M608,125l-4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M604,122l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M602,120l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M600,118l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M599,116l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M598,113v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M598,111l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M597,107l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M596,106l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M593,104l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M589,100l-3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M586,99l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M585,97" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M585,97l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,93" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,93l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M581,92v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M581,91l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M580,89l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M579,87l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M578,83l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M577,81l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,80" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,80l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M574,78l-2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,77l-5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M567,76h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M564,76l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M562,75l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M559,74l-4,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M555,69l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,67l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M552,66l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M550,65l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M547,64h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,64l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,63l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,62l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,63l-3,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,64h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M532,64l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M529,63l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,61l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,60v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,59v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,58l-3,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M520,54v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M611,129l-3,-4l-4,-3l-2,-2l-2,-2l-1,-2l-1,-3v-2l-1,-4l-1,-1l-3,-2l-4,-4l-3,-1l-1,-2l-3,-4l-1,-1v-1l-1,-2l-1,-2l-1,-4l-1,-2l-1,-1l-2,-2l-2,-1l-5,-1h-3l-2,-1l-3,-1l-4,-5l-2,-2l-1,-1l-2,-1l-3,-1h-3l-3,-1l-1,-1l-2,1l-3,1h-3l-3,-1l-4,-2l-2,-1v-1v-1l-3,-4l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M521,130" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M523,130h-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M521,130" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M521,130" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M523,130h-2h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,129l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,128v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,126v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,124v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,122l-2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,120l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,118l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,116v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,115v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,113v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,112l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,108l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,106l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,104v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,102" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,102v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,100l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,99v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,96v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,94l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,92v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,90v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,86l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,82l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,81l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,79l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,78l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,77l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,74l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,72l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,71l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M506,130h1l2,-2v-2v-2v-2l-2,-2l-2,-2l-2,-2v-1v-2v-1l3,-4l1,-2l1,-2v-2v-2l-1,-1v-3v-2l3,-2v-2v-4l-1,-4l-1,-1l-2,-2l-1,-1l-2,-1l-1,-3l-2,-2l-1,-1l-2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,130v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,129l5,-9" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,120l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,116l3,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,111l1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M483,105v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M483,102l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,101v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,100" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,100l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,98l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,97v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,96v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,95l1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,92l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,89v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,88l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M481,86l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,85l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,83l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,82l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M481,81h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,81h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M484,81h6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,81h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,81l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,80l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,79l1,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,75v-4" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M470,131l1,-2l5,-9l3,-4l3,-5l1,-6v-3l-1,-1v-1l-2,-2l-1,-1v-1v-1l1,-3l2,-3v-1l-1,-2l-1,-1l-1,-2l1,-1l1,-1h1h2h6h2l2,-1l2,-1l1,-4v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M521,130h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M520,130h1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,484v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,483v1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,484v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,483" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,485v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,486v2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,485v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,131" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,131l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,128v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,126v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,125l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,124l4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,122l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M338,119l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M339,118l13,-25" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,93v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,91l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M332,132v-1l-1,-3v-2v-1l1,-1l4,-2l2,-3l1,-1l13,-25v-2l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,497" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,497l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M151,495v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M151,493v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M151,491l2,-5" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,498l-1,-1l-1,-2v-2v-2l2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M16,278" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M16,278l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M18,279l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M19,280l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M20,283v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M20,285v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M20,287l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M21,288h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M22,288h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M25,288l4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M29,287l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M32,288l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M33,289l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M34,290l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M35,292l3,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M38,296v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M38,297l3,5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,302l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,303" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,303l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,306v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,307" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,307v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,309l1,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,311" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,311l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,312l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M46,311l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,310v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,308v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,306l-2,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,303v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,300l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M46,299l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M48,296l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M49,295l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M48,294h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,294h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M46,294l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M45,293l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,292l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,289v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,285l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,282l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,281l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,279l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M38,278l-7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M31,277l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M30,276l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,275l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M26,273h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M25,273l-8,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M17,270l-16,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,263l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-2,262l-9,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,256l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-12,255l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,254v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,253l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-12,251l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,248v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M15,279l1,-1l2,1l1,1l1,3v2v2l1,1h1h3l4,-1l3,1l1,1l1,1l1,2l3,4v1l3,5l1,1l1,3v1v2l1,2l1,1l1,-1l1,-1v-2v-2l-2,-3v-3l1,-1l2,-3l1,-1l-1,-1h-1h-1l-1,-1l-1,-1l-1,-3v-4l-1,-3l-1,-1l-1,-2l-2,-1l-7,-1l-1,-1l-2,-1l-2,-2h-1l-8,-3l-16,-7l-3,-1l-9,-6l-1,-1l-1,-1v-1l1,-2l1,-3v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,353v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,351l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M89,349l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M87,348h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,348l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M84,349l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M81,351l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M79,352h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M78,352l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,351v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,350l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M78,348v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M78,347v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M78,346h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M76,346l-3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M73,349h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M72,349h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M69,349l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M65,347l-6,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M59,346h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M57,346l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M55,347l-4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,349h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M50,349" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M50,349l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M49,348l1,-4" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M91,354h-1v-3l-1,-2l-2,-1h-2l-1,1l-3,2l-2,1h-1l-1,-1v-1l1,-2v-1v-1h-2l-3,3h-1h-3l-4,-2l-6,-1h-2l-2,1l-4,2h-1l-1,-1l1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M92,353l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,349v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,347v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,346v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,344l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M91,343l-7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M84,342l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M83,341v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M83,340l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M82,339h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M79,339h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M78,339l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,338v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,337l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M78,336l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M82,335l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M83,334l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,332v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,330l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M86,329l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M87,328h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M89,328l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,327l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M91,326l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M92,324v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M92,321l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,318l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M89,315l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,314v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,313" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,313h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M91,313h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,313l9,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M102,317h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,317h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,317l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,316v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,314l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,313v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,309l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,307l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M101,303l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M100,302v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M100,301l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M99,300" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M99,300l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M98,298l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M96,295l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M95,292l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,290l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M91,289l-6,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,286l-5,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M80,283l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M77,282h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M75,282l-5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M70,283h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M68,283h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M66,283l-2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M64,281l-5,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M59,277l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M58,276h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M57,276l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M54,278l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M52,279h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M50,279l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M49,278l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,277l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M46,273l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M43,270l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,268v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,264v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M42,263l-2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,261l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M39,260l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M36,259l-7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M29,258l-12,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M17,255l-5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,254h-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M5,254l-4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,253l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-2,251l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-6,249l-4,-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M91,354l2,-5v-2v-1v-2l-2,-1l-7,-1l-1,-1v-1l-1,-1h-3h-1l-1,-1v-1l1,-1l4,-1l1,-1l2,-2v-2l1,-1l1,-1h2l1,-1l1,-1l1,-2v-3l-2,-3l-1,-3l1,-1v-1h1h2l9,4h1h1l1,-1v-2l-1,-1v-4l-1,-2l-2,-4l-1,-1v-1l-1,-1l-1,-2l-2,-3l-1,-3l-2,-2l-2,-1l-6,-3l-5,-3l-3,-1h-2l-5,1h-2h-2l-2,-2l-5,-4l-1,-1h-1l-3,2l-2,1h-2l-1,-1l-2,-1l-1,-4l-3,-3l-1,-2v-4v-1l-2,-2l-1,-1l-3,-1l-7,-1l-12,-3l-5,-1h-7l-4,-1l-3,-2l-4,-2l-4,-3h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,374l-4,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,369l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M127,366l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M125,362v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M125,359l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M124,357" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M124,357v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M124,354" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M124,354l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M125,353l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,352h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,352v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,350v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,346l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,344l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,341v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,339l1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,334l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,330l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,326l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,323v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,321l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,319v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,316l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,314l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,311l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,309l1,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,304l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,301v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,298v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,297v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,296v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,293v-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,286" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,286l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,285l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,284l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,281v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,280l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,279l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,278" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,278l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,277h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,277l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,274v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,273v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,272v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,271l-3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,270h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,270l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,268h-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M126,268l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M123,267l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M120,265h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,265v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,264l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M117,262l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M116,261l-1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M115,255v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M115,253l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,249l4,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M122,246l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M123,245l4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M127,242l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,241l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,240l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,238l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,237h3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,237l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,238v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,239l-3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,242v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,243h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,243h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,243l3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M138,241l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M141,240h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M142,240h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M143,240l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M145,242l5,1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M135,375l-5,-6l-3,-3l-2,-4v-3l-1,-2v-3l1,-1l3,-1h1v-2v-4l1,-2l-1,-3v-2l1,-5l1,-4l3,-4l2,-3v-2l-2,-2v-3l-1,-2l-1,-3l-1,-2l1,-5l1,-3v-3v-1v-1v-3v-7l2,-1l-1,-1l1,-3v-1l1,-1l2,-1l1,-1h-1l1,-3v-1v-1v-1l-3,-1h-1l-4,-2h-5l-3,-1l-3,-2h-2v-1l-1,-2l-1,-1l-1,-6v-2l3,-4l4,-3l1,-1l4,-3l1,-1l2,-1l1,-2l1,-1h3l1,1v1l-3,3v1h1h1l3,-2l3,-1h1h1l2,2l6,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,385v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,383v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,382l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M24,380l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M27,377v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M27,374l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,372" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,372l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M27,371l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M26,370" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M26,370h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M24,370v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M24,371l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,372v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,373l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M22,374l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M21,376l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M19,377h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M17,377l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M14,376l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,374l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M11,372l-2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M9,367l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M8,366l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M7,365l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M4,364l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,362v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,361v-8" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,353v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,352l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,351l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-1,350l-4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-5,349h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-7,349l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,347l-1,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,343l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,340v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,338h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-12,338l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,337l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,338l-3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-18,339l-1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-19,340h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-21,340l-6,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-27,339h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-28,339l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-29,340l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-30,343v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-30,346v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-30,347l1,1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M23,386v-3v-1l1,-2l3,-3v-3l1,-2l-1,-1l-1,-1h-2v1l-1,1v1l-1,1l-1,2l-2,1h-2l-3,-1l-2,-2l-1,-2l-2,-5l-1,-1l-1,-1l-3,-1l-2,-2v-1v-8v-1l-2,-1l-1,-1l-4,-1h-2l-2,-2l-1,-4l-1,-3v-2h-1l-1,-1l-2,1l-3,1l-1,1h-2l-6,-1h-1l-1,1l-1,3v3v1l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,388" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,388l3,-10" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,378l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,375v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,373l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,371l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M126,369l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M123,368l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M121,367h-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M117,367h-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,367l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M110,366l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M109,364v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M109,363l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M108,360l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M107,358l-2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,357l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,356l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M102,355h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M101,355l-3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M98,356h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M97,356l-4,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M93,360h-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M91,360l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,359v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,357v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M128,390v-2l3,-10l-1,-3v-2l-2,-2l-2,-2l-3,-1l-2,-1h-4h-5l-2,-1l-1,-2v-1l-1,-3l-1,-2l-2,-1l-1,-1l-2,-1h-1l-3,1h-1l-4,4h-2l-1,-1v-2l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M129,389l3,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,382l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,381l1,-4" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M128,390l1,-1l3,-7l1,-1l2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,439l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,438l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M107,435l4,-9" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M111,426l11,-19" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M122,407l4,-11" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M126,396l1,-5" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M102,440l3,-2l2,-3l4,-9l11,-19l4,-11l2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M109,447l-5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,442h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,442v-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M110,448l-6,-6h-1l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,458l-11,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M120,455l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M117,454l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M114,452l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M132,458l-12,-3l-3,-1l-3,-2l-4,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M131,457l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M130,455l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M128,454l-4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M124,453l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M122,452l-10,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M112,449l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M132,458l-2,-3l-2,-1l-4,-1l-2,-1l-10,-3l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,493v-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,495v-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,458" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,458v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,457v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,456v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,455v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,453v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,451v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,448l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-21,445v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-21,442l-1,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,437l1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-21,432v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-21,430l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,429v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,428" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,428l-1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-23,423v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-23,420v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-23,417v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-23,415v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-23,414h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-24,414" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-24,414l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-26,415h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-27,415v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-27,413l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-26,410l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-25,408l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-24,406v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-24,405v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-24,403l-2,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-26,400" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-26,400h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-25,400h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-23,400l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-21,402v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-21,404l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-19,405h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-18,405l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-16,404l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,403v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,401v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,399l-2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-17,393v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-17,392l-2,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-19,389l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-23,385l-4,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-27,380l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-28,378v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-28,377" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-28,377l6,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-22,374h3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-19,374h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-17,374h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-16,374v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-16,375l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,377l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-14,378l1,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,382l2,4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,386l1,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,390l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,393l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-8,395" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-8,395h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-6,395l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-4,393" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-4,393h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,393l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,392l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,390l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M5,389l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M6,387h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M8,387l2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,388h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,388l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M13,387h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M15,387l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M18,388l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M19,387l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M21,386h1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-20,459l-2,-1v-1v-1v-1v-2v-2v-3l1,-3v-3l-1,-5l1,-5v-2l-1,-1v-1l-1,-5v-3v-3v-2v-1h-1l-2,1h-1v-2l1,-3l1,-2l1,-2v-1v-2l-2,-3h1h2l2,2v2l2,1h1l2,-1l1,-1v-2v-2l-2,-6v-1l-2,-3l-4,-4l-4,-5l-1,-2v-1l6,-3h3h2h1v1l1,2l1,1l1,4l2,4l1,4l1,3l1,2h2l2,-2h4l1,-1l2,-2l2,-1l1,-2h2l2,1h2l1,-1h2l3,1l1,-1l2,-1h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-20,458l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-18,456v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-18,454v-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-18,450v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-18,448l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-16,445l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-14,441l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-12,439l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,438l4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-6,436l3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-3,434l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-2,432" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-2,432" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-2,432h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-4,432l-4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-8,433h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,433l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,432h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,432v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,430l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,428v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,426v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,425l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,423v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,422l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,421l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-8,420l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-7,418v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-7,415h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-6,415h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-5,415h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-3,415h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-1,415h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,415l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,414l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,411l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M4,410l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M6,409h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M7,409h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M9,409h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,409l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,408v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,407l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M13,406l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M16,405h3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M19,405l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M21,404l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M22,403l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,401v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M23,396l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M24,394v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M24,390l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-20,459l2,-3v-2v-4v-2l2,-3l2,-4l2,-2l2,-1l4,-2l3,-2l1,-2h-2l-4,1h-1l-1,-1h-1v-2l2,-2v-2v-1l-2,-2v-1l1,-1l2,-1l1,-2v-3h1h1h2h2h1l1,-1l2,-3l1,-1l2,-1h1h2h1l2,-1v-1l1,-1l3,-1h3l2,-1l1,-1l1,-2v-5l1,-2v-4l-1,-3v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M133,458l4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,459h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M140,459l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M141,458l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M143,457" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M143,457l9,1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M132,458l5,1h3l1,-1l2,-1l10,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,445l7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M97,444l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M99,445l10,3" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M88,445l9,-1l2,1l10,3h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,459v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,458l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,457l4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-5,455l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-4,454l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-3,452l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-2,451l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,450l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,449h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M7,449l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,448l9,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M19,443l3,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M22,439l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M25,437l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M28,435l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M31,433l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M35,432h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M38,432l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M40,433l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M41,434l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,436l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M47,438l4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M51,440h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M53,440l4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M57,441l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M59,440h3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M62,440l6,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M68,441l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M73,442h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M76,442l5,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M81,444l9,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M90,443l7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M97,442l3,-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-10,460v-1v-1l1,-1l4,-2l1,-1l1,-2l1,-1l2,-1l3,-1h4l3,-1l9,-5l3,-4l3,-2l3,-2l3,-2l4,-1h3l2,1l1,1l3,2l3,2l4,2h2l4,1l2,-1h3l6,1l5,1h3l5,2l9,-1l7,-1l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,461l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M135,460h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,460l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M137,461l-2,-1h-1l-1,-1l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M154,458l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M157,457h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M158,457l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M161,455l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M163,454h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M165,454l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,455h3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,455l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M176,453l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M178,451h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M180,451h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M182,451l8,1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,458l4,-1h1l3,-2l2,-1h2l5,1h3l3,-2l2,-2h2h2l9,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,485l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,484l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,481l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,480v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,479h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M4,479v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M4,476l1,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M5,471l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M6,467l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M7,465l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M8,462l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M9,461l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M11,459l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,458l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M11,457h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,457v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,456v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M10,455l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M12,453l6,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M18,450l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M19,449l3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M22,448l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M26,447h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M30,447h7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M37,447l7,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,448" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M44,448l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M49,449h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M50,449h7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M57,449h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M58,449l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M62,448l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M66,447l6,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M72,446h7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M79,446h4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M83,446l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M85,445h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M87,445" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-1,486l1,-1l1,-1l1,-3l1,-1v-1h1v-3l1,-5l1,-4l1,-2l1,-3l1,-1l2,-2l1,-1l-1,-1h-1v-1v-1l2,-2l6,-3l1,-1l3,-1l4,-1h4h7l7,1l5,1h1h7h1l4,-1l4,-1l6,-1h7h4l2,-1h2h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-1,485" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-1,485l1,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,481l1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,476v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,471v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,469l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,468l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-2,466l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-4,464l-5,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-9,462l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-1,486v-1l1,-4l1,-5v-5v-2l-1,-1l-2,-2l-2,-2l-5,-2l-1,-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M104,487l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,488" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,488v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,489v2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,491v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M103,495l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M105,497l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M107,498v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M107,499v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M107,501h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M108,501v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M108,502l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M109,503" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M109,503h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M111,503l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M116,502l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M117,501l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,499v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M118,498l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M120,497l6,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M126,496l6,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M132,495l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M134,494l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,493l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,492v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,490v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,488l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M136,484l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M137,483l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M139,481l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M140,480l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M142,479h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M143,479l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M145,480l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M147,481h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M148,481h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,481" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M105,487l-2,1v1v2v4l2,2l2,1v1v2h1v1l1,1h2l5,-1l1,-1l1,-2v-1l2,-1l6,-1l6,-1l2,-1l2,-1l1,-1v-2v-2l-1,-4l1,-1l2,-2l1,-1l2,-1h1l2,1l2,1h1h4h1v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,497v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,498v-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,482v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,483" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,485v-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-1,488v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-1,489l1,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,492v5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,497l-1,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-1,501l-3,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-4,506l-3,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-7,510l-3,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-10,514l-5,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-15,519l-2,4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-17,523v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-17,524v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-17,526l3,7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-14,533l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-13,535l2,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,539" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,539" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,539v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,540" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,540v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-11,541l5,9" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M-6,550l6,8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M0,558l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,560v3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M1,563l1,6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,569v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,572" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M2,572l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,574l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M4,575v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M4,576l4,8" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M8,584l1,6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M9,590l2,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M11,594l3,3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M-1,486v3l1,3v5l-1,4l-3,5l-3,4l-3,4l-5,5l-2,4v1v2l3,7l1,2l2,4v1v1l5,9l6,8l1,2v3l1,6v3l1,2l1,1v1l4,8l1,6l2,4l4,3v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,132v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,133l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,134l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,135l6,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M516,132l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M518,131" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M506,130l1,3l1,1l2,1l6,-3l2,-1l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,499" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,499h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,499l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M157,500l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M158,501v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M158,502l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M159,505v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M159,507l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M160,508l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M162,509l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M163,510h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M164,510l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M165,512l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M166,513h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M168,513l2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,514h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,514l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,513l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,511l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,510h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M176,510" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M176,510l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M177,511v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M177,515l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M178,517l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M179,518l2,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M181,522" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M181,522l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M182,523h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M183,523l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M188,521h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M189,521h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,521v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,522v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,524l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M189,527v3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M189,530l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,531l3,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,535" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,535l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M195,536v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M195,537l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M197,538v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M197,539l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M199,541l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,542v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,545v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,546l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M201,547h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M204,547h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M205,547l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M207,548l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M209,550l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M212,551h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M213,551l4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M217,548l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M221,547l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M222,548" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M222,548v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M222,549v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M222,550l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M220,551l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M217,553l-3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M214,556l-1,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M213,558l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M212,561v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M212,563l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M213,565h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M214,565l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M215,564l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M216,562l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M217,560l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,558h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M220,558l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M222,559l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M224,558h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M227,558h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M228,558v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M228,557v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M228,556v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M228,555h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M229,555l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,554l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M233,553v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M233,552l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,551l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M231,549l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M230,548v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M230,546" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M230,546l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M231,545l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,546h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M233,546l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,548" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,548" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,548l1,6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M235,554l1,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M236,558l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M235,559v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M235,560l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,561" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,561l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,563l-4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M228,565l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M227,567v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M227,569l1,6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M228,575l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M229,577l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M230,580l3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M233,583h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M234,583l7,2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,498l1,1h1h1l1,1l1,1v1l1,3v2l1,1l2,1l1,1h1l1,2l1,1h2l2,1h1l1,-1l1,-2l2,-1h1l1,1v4l1,2l1,1l2,4l1,1h1l5,-2h1h1v1v2l-1,3v3l1,1l3,4l2,1v1l2,1v1l2,2l1,1v3v1l1,1h3h1l2,1l2,2l3,1h1l4,-3l4,-1l1,1v1v1l-2,1l-3,2l-3,3l-1,2l-1,3v2l1,2h1l1,-1l1,-2l1,-2l2,-2h1l2,1l2,-1h3h1v-1v-1v-1h1l3,-1l1,-1v-1l-1,-1l-1,-2l-1,-1v-2l1,-1l1,1h1l1,2l1,6l1,4l-1,1v1l-1,1l-2,2l-4,2l-1,2v2l1,6l1,2l1,3l3,3h1l8,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,153l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M334,152l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,151l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,149l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,145l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,143v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,141v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M327,139l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,138l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,135v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M338,154l-1,-1l-3,-1l-2,-1l-2,-2l-2,-4l-1,-2v-2v-2l1,-1l3,-3l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M338,152v-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M338,147l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M339,145l1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M340,139v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M340,137l1,-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M338,154v-7l1,-2l1,-6v-2l2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,161l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,159v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,156l-1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,151l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,150v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,147v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,144l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,141v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,138v-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M171,162l1,-3v-3l-1,-5l-1,-1v-3v-3l1,-3v-3v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M363,187v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M363,186l-2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M361,181l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,179v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,178v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,175l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,172v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,171l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M361,170l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M363,169h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M365,169h4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,169l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M370,168l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M372,165l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M373,164h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M374,164h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M375,164h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M378,164l3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,163l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,162l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,160l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,159v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,158v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,154l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M386,153l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M387,151l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M388,149v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M388,148l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M387,145v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M387,142l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M388,140l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M389,139l3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,137" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,137v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,136v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,135l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M363,188v-1v-1l-2,-5l-2,-2v-1v-3l1,-3v-1l1,-1l2,-1h2h4l1,-1l2,-3l1,-1h1h1h3l3,-1l2,-1l1,-2l1,-1v-1v-4l1,-1l1,-2l1,-2v-1l-1,-3v-3l1,-2l1,-1l3,-2v-1v-1l-3,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,188v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,187l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M358,185v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M358,184l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M357,182l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M356,180l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,178l-3,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,174l-5,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,170l-5,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M341,166v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M341,164l-1,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M340,156l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M339,155" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M359,189v-2l-1,-2v-1l-1,-2l-1,-2l-2,-2l-3,-4l-5,-4l-5,-4v-2l-1,-8l-1,-1l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,189h1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M359,189l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,201h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M349,201h-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,201l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M343,200l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M342,199v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M342,198l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M343,197l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,194" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,194v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,190l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,189l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,187l3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,186h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,186h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M353,186l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,187v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,190l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M355,192h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M356,192h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M358,192h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,192v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,191" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M351,202l-1,-1h-1h-5l-1,-1l-1,-1v-1l1,-1l3,-3v-4l1,-1l1,-2l3,-1h1h1l1,1v3l1,2h1h2h1v-1v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,203l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M349,204l-1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,205" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,205l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M349,206h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,206h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,206l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,205v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,204v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,202" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M351,202l-2,2l-1,1l1,1h1h1l1,-1v-1v-2h-1z" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,207l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M154,208l4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M158,210l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M160,211l3,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M163,213h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M165,213h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M167,213l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M169,212l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,210" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,210v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,207l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M169,205l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M168,204l-4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M164,203h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M161,203l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M159,202l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M157,200l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,198v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,193v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,189l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,185l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,181l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,180v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,176l1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,173l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,170l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,166v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,162l-1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,157l-2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,151l-1,-8" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,143l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M151,141v-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M151,207l3,1l4,2l2,1l3,2h2h2l2,-1l1,-2v-3l-1,-2l-1,-1l-4,-1h-3l-2,-1l-2,-2l-1,-2v-5v-4l-1,-4l-2,-4l-1,-1v-4l1,-3l2,-3l1,-4v-4l-1,-5l-2,-6l-1,-8l-1,-2v-3l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M367,235h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M365,235l-4,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M361,236h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,236l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M358,235l-4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,233h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M353,233l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,230v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,229l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,228l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,226l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M349,225l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,223l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,222" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,222v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,220l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,219v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,217h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,217v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,216v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,215" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,215v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M347,214l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,213" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,213v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,209v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,208l-5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M341,203l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M340,202h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M339,202v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M339,201l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M338,200" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M338,200v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M338,198l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,197" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,197v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,196l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,194v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,192v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,189v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,187v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,184l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,182v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,179h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,179v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,177" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,177v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M336,176l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M335,174l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M334,171v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M334,170l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M333,168l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,165v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,164v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,163h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M334,163l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M335,162l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,160v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,159l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M338,157v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M369,235h-2h-2l-4,1h-2l-1,-1l-4,-2h-1l-1,-3v-1l-1,-1l-1,-2l-1,-1l-1,-2l-1,-1v-2l1,-1v-2h-1v-1v-1v-1l-1,-1v-4v-1l-5,-5l-1,-1h-1v-1l-1,-1v-2l-1,-1v-1l-1,-2v-2v-3v-2v-3l1,-2v-3h-1v-2v-1l-1,-2l-1,-3v-1l-1,-2l-1,-3v-1v-1h2l1,-1l2,-2v-1l1,-2v-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,234v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,233l2,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M371,230v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M371,229v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M371,228l-3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M368,229l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M367,230h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,230l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M362,229l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M361,228l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,227l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,226v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M359,223l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,220l3,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M363,215l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,211l2,-6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M366,205l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M367,201l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,198v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,197l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M367,196l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,194v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,192v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,191l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M363,190v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M369,235v-2l2,-3v-1v-1l-3,1l-1,1h-3l-2,-1l-1,-1l-1,-1l-1,-1v-3l1,-3l3,-5l1,-4l2,-6l1,-4l2,-3v-1l-2,-1l-3,-2v-2v-1l-1,-1v-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,243" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M152,243l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,244l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,243" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,243l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,242v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,241v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M155,240l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M158,239l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M159,238l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M160,237l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M163,236h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M167,236h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M169,236l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,235l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,234v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,235l5,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M178,234h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M179,234l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M180,232l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M181,230v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M181,229v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M181,226l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M180,224l-3,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M177,221l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,218l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,217v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,216v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,214l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,213l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,212" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,212v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M175,211h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,211l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,209v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,206l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,203l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,202v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M172,199l-1,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,192v-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,184v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,179l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,177" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,177v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M170,172l1,-3" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M151,243h1l3,1l1,-1l-1,-1v-1v-1l3,-1l1,-1l1,-1l3,-1h4h2l3,-1l1,-1v1l5,-1h1l1,-2l1,-2v-1v-3l-1,-2l-3,-3l-3,-3l-1,-1v-1v-2l1,-1l1,-1v-1h-2l-1,-2v-3l1,-3l-1,-1v-3l-1,-7v-8v-5l-1,-2v-5l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M382,260l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,257" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,257l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M380,255" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M380,255l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M379,253l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M377,251l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M376,250l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M375,248" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M375,248l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M374,246" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M374,246l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M372,244v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M372,242l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M371,240l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,237v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M383,261l-2,-4l-1,-2l-1,-2l-2,-2l-1,-1l-1,-2l-1,-2l-2,-2v-2l-1,-2l-2,-3v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M181,434l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M183,433l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M184,431l4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M188,428l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M189,426l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,424v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,423v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,421v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,419v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,417l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M191,416l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M192,414v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M192,411v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M192,410l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,409v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,408v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,406" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,406v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,404v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,403v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,399l1,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M194,395v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M194,393l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M195,390l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M198,386l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M199,384l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,383" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,383v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,382v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,381v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,380l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M201,379h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M203,379l6,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M209,381h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M211,381h1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M180,435l3,-2l1,-2l4,-3l1,-2l1,-2v-1v-2v-2v-2l1,-1l1,-2v-3v-1l1,-1v-1v-2v-2v-1v-4l1,-4v-2l1,-3l3,-4l1,-2l1,-1v-1v-1v-1l1,-1h2l6,2h2l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M179,434l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M177,432l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M174,428l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M173,427l-7,-7" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M166,420l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M165,418l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M164,416v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M164,415l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M162,412v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M162,411v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M162,410l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M161,409l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M160,408v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M160,407l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M158,404l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M157,403v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M157,401h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,401v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M156,399l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M154,397" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M154,397l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M180,435v-1l-3,-2l-3,-4l-1,-1l-7,-7l-1,-2l-1,-2v-1l-2,-3v-1v-1l-1,-1l-1,-1v-1l-2,-3l-1,-1v-2h-1v-2l-2,-2l-1,-2l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M191,451l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,450v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,447v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M190,446l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M189,445l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M187,444v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M187,443l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M186,440l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M185,438l-2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M183,437l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M182,436h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M191,452l-1,-2v-3v-1l-1,-1l-2,-1v-1l-1,-3l-1,-2l-2,-1l-1,-1l-1,-1h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M216,465l-8,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M208,457l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M206,455l-3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M203,453l-7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M196,452h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,452h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M217,466l-9,-9l-2,-2l-3,-2l-7,-1h-3h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M218,465l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,464v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,463l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M218,460v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M218,459l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,456l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M222,454l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M224,453l8,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,446l3,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M235,441l3,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M238,435l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M240,433l4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M244,431l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M247,427l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M249,426h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M250,426h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M251,426h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M255,426l4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M259,427" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M259,427l4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M263,428l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M266,429h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M268,429" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M268,429h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M269,429l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M270,430v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M270,431h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M271,431h6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M277,431h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M280,431l2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M282,432l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M285,434l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M288,435l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M290,434h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M293,434l6,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M299,435h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M302,435h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M303,435l5,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M308,437h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M309,437l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M312,438l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,439h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M315,439l2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M317,442h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M318,442l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M319,441h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M324,441h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M328,441l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,440l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M331,439h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M333,439h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M335,439l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,438" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,438l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M340,440h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M342,440l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M343,439v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M343,436l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,435l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M345,433l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,431l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,430l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M349,429l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,428l4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M358,426h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,426h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M364,426l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M365,427l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M366,428l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M367,429l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M368,430l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,431v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M369,432l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M370,433h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M375,433h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M376,433l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M377,435h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M378,435h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M379,435l3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M382,434h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M387,434l4,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M391,436l6,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M397,441l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,442l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,444" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,444" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M217,466l2,-2v-1l-1,-3v-1l1,-3l3,-2l2,-1l8,-7l3,-5l3,-6l2,-2l4,-2l3,-4l2,-1h1h1h4l4,1l4,1l3,1h2h1l1,1v1h1h6h3l2,1l3,2l3,1l2,-1h3l6,1h3h1l5,2h1l3,1l2,1h1l2,3h1l1,-1h5h4l2,-1l1,-1h2h2l2,-1l3,2h2l1,-1v-3l1,-1l1,-2l1,-2l2,-1l1,-1l5,-1l4,-2h2h4l1,1l1,1l1,1l1,1l1,1v1l1,1h5h1l1,2h1h1l3,-1h5l4,2l6,5l3,1l2,2l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M372,467" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M372,467l4,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M376,459l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M377,457l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M379,454l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M380,452l6,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M386,450l10,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M396,448l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M398,447l4,-2" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M372,469v-1v-1l4,-8l1,-2l2,-3l1,-2l6,-2l10,-2l2,-1l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M206,473l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M204,469l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M202,467" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M202,467l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M200,465l-4,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M196,463l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M194,462l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M193,461l-2,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M191,454" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M206,474l-2,-5l-2,-2l-2,-2l-4,-2l-2,-1l-1,-1l-2,-7v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M207,473v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M207,472l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M208,471l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M211,470h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M213,470l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M214,469l2,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M206,474h1v-2l1,-1l3,-1h2l1,-1l3,-3" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,485v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M320,493l5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M325,488l5,-9" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M330,479l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M332,477l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M333,473l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M334,472l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M335,471h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M337,471l6,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M343,473l5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,474l7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M355,473h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M360,473l10,-4" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M319,495l1,-1l5,-6l5,-9l2,-2l1,-4l1,-1l1,-1h2l6,2l5,1l7,-1h5l10,-4h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,497v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,498v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M288,504l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M290,502l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M292,498l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M293,495v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M293,494l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M295,493l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M299,492l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M302,491l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M304,489h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M305,489h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M306,489h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M307,489v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M307,490v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M307,493l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M308,494h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M311,494l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M312,496h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M314,496h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M317,496l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M287,505l3,-3l2,-4l1,-3v-1l2,-1l4,-1l3,-1l2,-2h1h1h1v1v3l1,1h3l1,2h2h3l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M212,507v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M212,506v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M212,504l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M213,501l4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M217,497l2,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,493v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M219,491l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M217,488l-6,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M211,484l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M210,483l-1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M209,478l-2,-3" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M213,508l-1,-1v-1v-2l1,-3l4,-4l2,-4v-2l-2,-3l-6,-4l-1,-1l-1,-5l-2,-3l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M171,166v-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M171,168v-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M149,136v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M150,137l-1,-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,490v7" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,489v9" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,184" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,184v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,183l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,181l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,180l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M468,179h-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M466,179h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M464,179h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,179l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M461,177l-5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M456,175l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,173v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,172l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,171v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,170l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M456,169h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M458,169h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M462,169h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M464,169l6,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,166l2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,164l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,161l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,159l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,156v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,154l-3,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,149v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,147" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,147l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,146l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,145" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,145l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,142v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,139l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,138h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,138" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,138v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,140l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,141" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,141h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,141l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,140v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,139l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,138l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,136l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,135v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,134l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M476,185l-1,-1v-1l-1,-2l-3,-1l-3,-1h-2h-2h-1l-2,-2l-5,-2l-2,-2v-1l1,-1v-1l1,-1h2h4h2l6,-3l2,-2l1,-3l1,-2l1,-3v-2l-3,-5v-2l1,-1l4,-1l2,-3v-3l-1,-1h-1v2l-1,1h-1l-1,-1v-1l-1,-1l-1,-2l-1,-1v-1l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,196v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,194l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,193v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,191l-2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,186" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M480,197l-1,-3l-1,-1v-2l-2,-5v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M481,200l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,199v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M481,201v-1l-1,-1v-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M551,230v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M551,229v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M551,228l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M550,225v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M550,224l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M549,222l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M548,219l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M545,215l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,212l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,211l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,210l-1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,205l-2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,200l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,197l1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,192l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,190v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,189l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,188l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,185v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,184l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,182v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,180v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,177" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,177v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,176l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,175l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,174l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,172l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,171v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,169h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,169l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,166l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,165v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,164l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,161v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,159l1,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,154v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,150v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,148l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,146l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,145h-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,145h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M534,145v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M534,144v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M534,142h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M533,142l-5,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M528,139l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M527,138l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M526,136v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M526,134l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,133v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,132l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M552,231l-1,-2v-1l-1,-3v-1l-1,-2l-1,-3l-3,-4l-1,-3l-1,-1l-1,-1l-1,-5l-2,-5l-1,-3l1,-5l1,-2v-1l1,-1l2,-3v-1l1,-2v-2v-3v-1l-1,-1l-1,-1l-3,-2l-1,-1v-2h1l2,-3l1,-1v-1l-1,-3v-2l1,-5v-4v-2l-2,-2l-1,-1h-4h-1v-1v-2h-1l-5,-3l-1,-1l-1,-2v-2l-1,-1v-1l-2,-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M573,240l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,238v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,237l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M578,236l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M581,234l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M584,233l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M586,232l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M587,231l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M588,230l1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M589,228h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M590,228l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M592,224l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M593,223h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M595,223h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M599,223l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M601,222l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M602,221v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M602,219v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M602,216l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M603,215h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M604,215h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M605,215l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M607,216h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M608,216l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M609,215l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M610,214h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M611,214l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M614,211l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M619,209l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M620,207l3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M623,205l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M626,204h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M627,204l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M630,201v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M630,199l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M631,197l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M630,194v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M630,191l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M632,188l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M633,187l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M634,186l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M635,182v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M635,179v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M635,178l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M634,175h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M633,175" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M633,175v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M633,173l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M634,172v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M634,168l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M633,167v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M633,166h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M631,166v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M631,167l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M630,168v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M630,170h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M629,170h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M628,170v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M628,169h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M627,169h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M626,169h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M625,169v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M625,171" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M625,171h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M623,171l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M622,170" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M622,170h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M621,170h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M620,170l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M618,171" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M618,171l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M617,170l-1,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M616,165l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M615,163l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M614,161v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M614,160l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,159" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,159l-1,-10" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M612,149l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M611,147l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M610,146l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M609,143l1,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M610,136v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M610,135l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M612,133v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M612,132v-2" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M572,241l4,-3v-1l2,-1l3,-2l3,-1l2,-1l1,-1l1,-1l1,-2h1l2,-4l1,-1h2h4l2,-1l1,-1v-2v-3l1,-1h1h1l2,1h1l1,-1l1,-1h1l3,-3l5,-2l1,-2l3,-2l3,-1h1l3,-3v-2l1,-2l-1,-3v-3l2,-3l1,-1l1,-1l1,-4v-3v-1l-1,-3h-1v-2l1,-1v-4l-1,-1v-1h-2v1l-1,1v2h-1h-1v-1h-1h-1h-1v2h-2l-1,-1h-1h-1l-2,1l-1,-1l-1,-5l-1,-2l-1,-2v-1l-1,-1l-1,-10l-1,-2l-1,-1l-1,-3l1,-7v-1l2,-2v-1v-2l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M568,242h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M566,242l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M564,240l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M563,237l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M560,234h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M559,234l-4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M555,233l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M569,243l-3,-1l-2,-2l-1,-3l-3,-3h-1l-4,-1l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M570,243h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M571,243v-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M569,243h2l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,261l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M386,260l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M389,259l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M391,258l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M393,257l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M396,253h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M397,253v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M397,252l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M399,253l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,254h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M401,254l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,253l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,252l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M407,251h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M408,251h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M411,251h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M414,251l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M418,250l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,249l4,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M424,247l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,245l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M428,242l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M429,241l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M432,239l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M435,237v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M435,236l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,232l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,231l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,229h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M440,229l4,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,223l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,222l3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,220" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,220l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,218l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M450,217v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M450,214l1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,208l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,206l4,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,204l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M459,202l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M462,200l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,199l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M468,198h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,198v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,199h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,199v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,198v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,197l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,196h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,196l2,1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M383,261l3,-1l3,-1l2,-1l2,-1l3,-4h1v-1l2,1l1,1h1l1,-1l3,-1l2,-1h1h3h3l4,-1l2,-1l4,-2l2,-2l2,-3l1,-1l3,-2l3,-2v-1l1,-4l1,-1l2,-2h1l4,-6l1,-1l3,-2l1,-2l1,-1v-3l1,-6l2,-2l4,-2l2,-2l3,-2l3,-1l3,-1h2v1h2v-1v-1l1,-1h3l3,1h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M559,253" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M559,253l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M558,252l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M556,249v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M556,248v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M556,246v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M556,245v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M556,243l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M555,242l-2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,237" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,237l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M552,234v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M552,233" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M552,233v-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M561,254l-2,-1l-1,-1l-2,-3v-1v-2v-1v-2l-1,-1l-2,-5l-1,-3v-1v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M560,252" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M560,252v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M560,251l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M562,249h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M563,249l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M564,248l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M565,247v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M565,246l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M566,245l2,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M561,254l-1,-2v-1l2,-2h1l1,-1l1,-1v-1l1,-1l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,278" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,278l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,274l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M568,270" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M568,270v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M568,269v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M568,268v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M568,266l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M569,265l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M570,264l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M571,263l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,262v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,259l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M573,258v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M573,257v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M573,256l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,255l-4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M568,254h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M566,254h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M564,254h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M562,254" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M577,279h-1v-1l-4,-4l-4,-4v-1v-1v-2l1,-1l1,-1l1,-1l1,-1v-3l1,-1v-1v-1l-1,-1l-4,-1h-2h-2h-2h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M578,278v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M578,277v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M578,276l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M577,273" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M577,273l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,272l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M575,270v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M575,268v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M575,267v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M575,266l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,265l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M579,264l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,262l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M585,261l7,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M592,260h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M594,260l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M595,258l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M596,257" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M596,257l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M597,254l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M596,250l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M595,247v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M595,245l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M593,241v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M593,240l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M592,239l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M590,240l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M588,241h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M587,241l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M584,240h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M583,240l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M580,242h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M579,242l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M577,241h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M574,241" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M577,279l1,-2v-1l-1,-3l-1,-1l-1,-2v-2v-1v-1l1,-1l3,-1l3,-2l3,-1l7,-1h2l1,-2l1,-1l1,-3l-1,-4l-1,-3v-2l-2,-4v-1l-1,-1l-2,1l-2,1h-1l-3,-1h-1l-3,2h-1l-2,-1h-3h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,286h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M575,286l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M573,284l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,285l-1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M571,286" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M571,286v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M571,287" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M571,287l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M570,288h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M567,288l-5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M562,287l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M561,286l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M559,284v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M559,281l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M558,280l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M556,278l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M555,277" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M555,277l2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,275v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,274v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,272v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,271v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,270v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,268v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,267l-1,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M556,264l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M555,263h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,263l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M551,264l-3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M548,267l-4,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,270l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,269v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,268" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,268l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,266v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M543,265l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,264l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,263l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,262v-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,258v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,256l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,255l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M537,254h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M536,254h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,254l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M534,255l-1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M533,256v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M533,257l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M532,260l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M531,261l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M529,262h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M528,262h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M526,262l-2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,261v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,259v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,257l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,253v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,252v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,251v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,250l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,248v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,245l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,243l-3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M520,242l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M519,241l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M518,242l-1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M517,243h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M516,243h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M515,243h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M514,243l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M513,242l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M512,239l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M513,238v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M513,237h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M514,237l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M516,236l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M519,235l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M520,234v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M520,232v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M520,231" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M520,231l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M519,230l-5,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M514,231l-4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,232l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,234l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,235h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M504,235l-2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,236h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,236l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M499,235l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,233v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,231v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M498,229l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,225l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,224l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,221v-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,216l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,214l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,213l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,212l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,211l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,210l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,208" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,208v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,205l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,204" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,204l-2,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,202l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M484,201h-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M578,286h-1h-2l-2,-2l-1,1l-1,1v1l-1,1h-3l-5,-1l-1,-1l-2,-2v-3l-1,-1l-2,-2l-1,-1l2,-2v-1v-2v-1v-1v-2v-1l-1,-3l-1,-1h-2l-2,1l-3,3l-4,3l-2,-1v-1l1,-2v-1l-1,-1l-2,-1l-1,-1v-4v-2l-1,-1l-1,-1h-1h-1l-1,1l-1,1v1l-1,3l-1,1l-2,1h-1h-2l-2,-1v-2v-2l1,-4v-1v-1v-1l-1,-2v-3l-1,-2l-3,-1l-1,-1l-1,1l-1,1h-1h-1h-1l-1,-1l-1,-3l1,-1v-1h1l2,-1l3,-1l1,-1v-2v-1l-1,-1l-5,1l-4,1l-3,2l-1,1h-2l-2,1h-1l-2,-1l-1,-2v-2v-2l-2,-4l-1,-1l-1,-3v-5l-1,-2l-1,-1l-1,-1l-1,-1l-1,-1l-1,-2v-3l-1,-1l-2,-2l-1,-1h-2h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M547,319" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M547,319l-5,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M542,314l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,311l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,309l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M536,306l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,305l-3,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M532,303l-9,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,295l-4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M519,291l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M517,287" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M517,287l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M514,283l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M512,280v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M512,279l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M511,278l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,276" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M510,276l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,275l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,272h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,272l-6,-6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,266l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,263l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,262v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,261v-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M496,255l-3,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,249l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,247l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,246v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,243v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,241v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,240v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,237l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,234l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,232v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,231l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,227l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,223l-1,-10" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,213l-2,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M483,208v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M483,207l-1,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,203l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M548,320v-1h-1l-5,-5l-2,-3l-2,-2l-2,-3l-1,-1l-3,-2l-9,-8l-4,-4l-2,-4l-3,-4l-2,-3v-1l-1,-1l-1,-2l-1,-1l-2,-3h-1l-6,-6l-3,-3l-1,-1v-1v-6l-3,-6l-1,-2l-1,-1v-3v-2v-1v-3l-1,-3l-1,-2v-1l-2,-4l-1,-4l-1,-10l-2,-5v-1l-1,-4l-1,-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M504,336l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,335l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,334l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,333v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,332l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,331" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,331l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M504,333h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,333h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,333l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,332v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,331v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,329v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,328l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,327l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,326l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,325l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M509,324l9,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M518,320l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M520,318l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,316l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M526,315l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M528,314h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M529,314l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M530,315l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M531,316l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M532,317h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M533,317l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M534,318h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M537,318l4,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,319l5,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M546,321l1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M503,337l1,-1l1,-1l2,-1l1,-1v-1l-1,-1l-3,2h-2h-1l-1,-1v-1v-2v-1l1,-1l5,-1l1,-1l2,-1l9,-4l2,-2l3,-2l3,-1l2,-1h1l1,1l1,1l1,1h1l1,1h3l4,1l5,2l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,262v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,263v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,264v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,265" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,265v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,266h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,266v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,268v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,269h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,269v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,271" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,271l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M386,274l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,276l-2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M382,279l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,280v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,281v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,282v2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M381,284h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M382,284v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M382,285l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,286v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,287l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,288h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,288l1,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M386,290l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M388,292l5,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M393,294l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M395,296h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M398,296l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,298l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,300l2,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M404,302l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,304" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,304v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,305l-3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,308v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,309v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,310l-2,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,312v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,314" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,314l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M401,316l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M403,318l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,320l5,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,324v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,325" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,325v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,326l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,328l5,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M417,331l8,6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,337l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,338" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,338l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M427,339l5,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M432,344l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M434,346l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,348l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M440,349l2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M442,352v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M442,353l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M443,356v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M443,357l3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M446,360l1,3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M383,261v2v1v1v1h1v2v1h1v2l1,3l-2,2l-2,3l-1,1v1v1v2h1v1l1,1v1l1,1h1l1,2l2,2l5,2l2,2h3l2,2l2,2l2,2l1,2v1l-3,3v1v1l-2,2v2l1,2l2,2l2,2l5,4v1v1l2,2l5,3l8,6l1,1l1,1l5,5l2,2l3,2l3,1l2,3v1l1,3v1l3,3l1,4h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,363h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,363h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,363l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,361l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,359l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M458,358l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M459,356l1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M460,355l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,354l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M464,352l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M466,348v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M466,347h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M468,347h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,347h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,347h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,347" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,347h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,347l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,349" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,349l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M481,346l4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,345h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,345l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,343l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,342l6,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,338h1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M448,364l1,-1h2h2l1,-2l3,-2l1,-1l1,-2l1,-1l3,-1l1,-2l2,-4v-1h2h3h2h1h2l3,2l2,-3l4,-1h4l3,-2l3,-1l6,-4l1,-1h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M603,367l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M602,366l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M600,363l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M597,359l-6,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M591,354l-5,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M586,351l-8,-6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M578,345l-9,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M569,338l-3,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M566,333l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M564,330l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M561,326l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M559,325l-6,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,324l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M551,323l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M604,368h-1l-1,-2l-2,-3l-3,-4l-6,-5l-5,-3l-8,-6l-9,-7l-3,-5l-2,-3l-3,-4l-2,-1l-6,-1l-2,-1l-2,-2l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,401v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,400l2,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,394v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,392l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,389l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,386l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,382v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,378h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,378v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,377v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,376v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,375l-1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M452,371l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,368" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,368l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M450,402l1,-2l2,-6v-2l1,-3l-1,-3l1,-4v-4h-1v-1v-1v-1l-1,-4l-1,-3l-3,-3v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,401v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,398l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,394l4,-8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M484,386l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,384l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,381v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,379l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,377v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,375v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,373v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,371v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,368v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,365h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,365v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,364v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,362l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,360v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,357l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,355l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,353l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,352v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,351v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,349l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,347l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M497,346l4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M501,342l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,341v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,340v-2" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M478,403v-5l2,-4l4,-8l2,-2l1,-3v-2l-1,-2v-2v-2v-2v-3v-3h-1v-1v-2l2,-2v-3l1,-2l2,-2l4,-1v-1v-2l1,-2l2,-1l4,-4l2,-1v-1v-2v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M479,408v-4" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M479,409l-1,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M459,416l-3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M456,412l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,411" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,411v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,410l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,408v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,407l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M452,405v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M452,404l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M460,417l-4,-5l-1,-1v-1l-2,-2v-1l-1,-2v-1l-1,-2h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M460,416l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M461,415l1,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M462,410l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,408l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,407l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M466,406l7,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,404l4,-1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M460,417v-1l1,-1l1,-5l1,-2l2,-1l1,-1l7,-2l5,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,420l1,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,416v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M471,414l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,413l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M474,410h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M475,410l3,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M470,421v-1l1,-4v-2l1,-1l2,-3h1l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M469,421h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,421l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M466,422l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,421v-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,419" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,419h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M464,419h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,419h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M462,419h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M461,419l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M470,421h-3l-1,1l-1,-1v-2h-1h-1h-1h-1l-1,-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M427,450l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M429,447v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M429,445l1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M430,442l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M431,440l2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M433,436l3,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,431l2,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,430l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M440,427l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M441,426l3,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,422l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,421l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M447,418" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M447,418l3,-4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M450,414l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,413v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,411l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M450,409l-2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,406v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,404l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,403" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M427,452v-2l2,-3v-2l1,-3l1,-2l2,-4l3,-5l2,-1l2,-3l1,-1l3,-4l1,-1l2,-3l3,-4l1,-1v-2l-1,-2l-2,-3v-2l1,-1l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M428,451l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M431,449l6,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,443l2,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,440l5,-6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,434l5,-5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,429l4,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M453,426l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,424v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M455,421l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M456,419h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,419l1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M427,452l1,-1l3,-2l6,-6l2,-3l5,-6l5,-5l4,-3l2,-2v-3l1,-2h1l2,-2h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M404,445h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M405,445l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M406,446v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M406,447v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M406,449l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M407,450l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M408,451l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M409,452h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,452h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M411,452h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M413,452h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M414,452h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M415,452l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,453v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,454v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,455l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M418,456l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,457h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M422,457l2,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M403,445h1h1l1,1v1v2l1,1l1,1l1,1h1h1h2h1h1l1,1v1v1l2,1l2,1h2l3,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M404,444h5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M409,444h4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M413,444h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M414,444l4,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M418,447l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,448v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,449v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,450l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M421,451l3,4" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M403,445l1,-1h5h4h1l4,3l2,1v1v1l1,1l4,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,454" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,454l1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M425,456l1,-2l1,-1v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M373,468l10,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,467l6,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M389,468l9,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M398,467h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M401,467l5,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M406,465l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M409,464h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,464v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,463h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M411,463l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,462v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,460h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M413,460h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M415,460h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M417,460h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,460l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M421,459l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,458l1,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M372,469l11,-2l6,1l9,-1h3l5,-2l3,-1h1v-1h1l1,-1v-2h1h2h2h3l1,-1l2,-1l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,483" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M448,483l3,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M451,482l3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,479l3,-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,472l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M458,471v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M458,469l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,466v-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,463v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,461l3,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M460,456l4,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M464,452l3,-5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,447v-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,445v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,442v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,441v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,438v-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,435l-2,-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,431l-3,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M462,428l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,427" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,427h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,427l2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,425l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M469,424l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,423" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M446,483h2l3,-1l3,-3l3,-7l1,-1v-2l-1,-3v-3v-2l3,-5l4,-4l3,-5v-2v-3v-1v-3v-3l-2,-4l-3,-3l1,-1h2l2,-2l2,-1l1,-1v-1v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M446,482" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M446,482l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,481l-1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M444,479h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M443,479v-7" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M443,472l-1,-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M442,469v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M442,468l-1,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M441,467l-2,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,465l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M437,464h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M436,464l-10,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,463l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,462v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,461l1,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M426,459l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M427,458v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M427,457h-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M446,483v-1l-1,-1l-1,-2h-1v-7l-1,-3v-1l-1,-1l-2,-2l-2,-1h-1l-10,-1l-1,-1v-1l1,-2l1,-1v-1l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M218,467v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M218,468l5,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M223,472l2,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M225,476l3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M228,479l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M230,481l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,483l3,6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M235,489l1,4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M236,493l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M237,495l-4,10" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M233,505l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M232,508l-2,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M230,513v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M230,517v2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M217,466l1,2l5,4l2,4l3,3l2,2l2,2l3,6l1,4l1,2l-4,10l-1,3l-2,5v4l1,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M321,495l12,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M333,493l7,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M340,492h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M343,492l6,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M349,493l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,494l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,496v3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,499v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M352,500l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,502l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M355,503v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M355,506" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M355,506l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M354,508l-3,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,511v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,513v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,516v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,517v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M351,520l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M350,521l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M348,523l-2,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M346,525l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,527" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M344,527l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M342,529v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M342,530v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M342,531" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M319,495h1l13,-2l7,-1h3l6,1l2,1l1,2v3v1l2,2l1,1v3l-1,2l-3,3v2v3v1v3l-1,1l-2,2l-2,2l-2,2l-2,2v1v1l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M445,483l-2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M443,482l-3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M440,480l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M439,479l-1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,478v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M438,477h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M435,477l-2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M433,478l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M430,480l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M427,482l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,484v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M425,486l-2,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M423,490l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M422,492l-2,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M420,495l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M419,496l-3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M416,497l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M414,498h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M412,498l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M410,499h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M408,499h-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M407,499h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M406,499h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M404,499l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M402,501l-2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M400,504h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M399,504v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M399,505h-2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M397,505h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M396,505h-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,505" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,505l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M393,506l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,508v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,509" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,509v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M394,513l-2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M392,516l-2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M390,518l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M387,520v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M387,521l-2,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M385,526l-1,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,529v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,533v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,536" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,536v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,538v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M384,539l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M383,540l-4,3" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M446,483l-3,-1l-3,-2l-1,-1l-1,-1v-1h-3l-2,1l-3,2l-3,2l-2,2v2l-2,4l-1,2l-2,3l-1,1l-3,1l-2,1h-2l-2,1h-2h-1h-1h-2l-2,2l-2,3h-1v1h-2h-1h-2l-1,1l1,2v1v4l-2,3l-2,2l-3,2v1l-2,5l-1,3v4v3v2v1l-1,1l-5,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,488v-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,489v-4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,130h-2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M521,130h2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M446,485" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M446,485l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M447,487l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M449,488l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M450,489l4,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M454,488l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M457,489l5,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M462,491l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M463,492l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M465,494l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M467,495l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M470,496l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M472,498l1,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,503v1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M473,504l3,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M476,505l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M477,506l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M478,507l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,508l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,510h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M483,510l1,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M484,512v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M484,513l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M485,515l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,516h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,516l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,518l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,520l1,4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,524v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,527l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,530l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,532l-3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,534v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M486,536h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M487,536l2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,537l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,538l2,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M492,542l3,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,545" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,545v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M495,547l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M494,548l-1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M493,549h-3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M490,549h-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,549l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,550v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,551v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M488,552h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M489,552v1" />
<path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M446,483v2l1,2l2,1l1,1l4,-1l3,1l5,2l1,1l2,2l2,1l3,1l2,2l1,5v1l3,1l1,1l1,1l2,1l2,2h1l1,2v1l1,2l1,1h1l1,2l2,2l1,4v3l-1,3l-1,2l-3,2v2h1l2,1l1,1l2,4l3,3v2l-1,1l-1,1h-3h-1l-1,1v1v1h1l1,1v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M480,409h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M481,409l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M482,410l9,8" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M491,418l9,6" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M500,424l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M502,425l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,426v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M503,427l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,429v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,431v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,432" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,432v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M505,434h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M506,434l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,435l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,436" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M508,436l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,438" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M507,438l4,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M511,443v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M511,444l1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M512,447l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M513,448l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M514,447h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M515,447l7,-3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M522,444h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,444v-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M523,443l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M524,442l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M525,441l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M526,440l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M527,439h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M528,439h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M529,439v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M529,440l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M528,441v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M528,442l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M529,443h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M530,443h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M531,443h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M532,443h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M533,443v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M533,445l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,447l1,6" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M536,453l-1,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,458v2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,460v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M535,463l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M536,464" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M536,464l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,466v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M538,467l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M537,468v2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M537,470l2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,473v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M539,474l1,5" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,479v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M540,480h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M541,480h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M544,480l2,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M546,481l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M547,482l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M549,483v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M549,484l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M550,483l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M551,482h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M552,482h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,482v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,483v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,485v4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M553,489l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M554,490h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M555,490l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M557,491l4,-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M561,490l6,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M567,492h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M569,492l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,490h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M573,490h3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,490l3,-2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M579,488h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M580,488h2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,488v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,489v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,491v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,492l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M583,493v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M583,495l-1,4" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,499l-2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M580,502" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M580,502v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M580,503l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M578,504l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,505v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M576,507l-1,3" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M575,510l-3,4" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,514v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M572,515l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M574,517v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M574,519v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M574,520h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M575,520l4,2" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M579,522" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M579,522l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M581,521l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M582,520l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M584,521l2,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M586,523v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M586,524v5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M586,529l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M587,530l3,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M590,532h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M591,532v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M591,534l-1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M590,535l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M589,537l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M590,538l2,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M592,541l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M593,542l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M594,544v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M594,546v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M594,549v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M594,551v5" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M594,556l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M595,557l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M596,558v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M596,559h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M597,559l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M598,558l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M599,557v-1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M599,556h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M600,556l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M601,555l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M603,556l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M605,557l2,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M607,556l1,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M608,555l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M609,556l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M610,557l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M611,559l2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,560l1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M614,562h1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M615,562v1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M615,563l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M616,564v2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M616,566l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M615,568l-1,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M614,571l-2,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M612,572v3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M612,575l-1,2" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M611,577l1,1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M612,578l1,1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M613,579l5,3" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M618,582h2" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M479,409h2l1,1l9,8l9,6l2,1l1,1v1l2,2v2v1v2h1l1,1l1,1l-1,2l4,5v1l1,3l1,1l1,-1h1l7,-3h1v-1l1,-1l1,-1l1,-1l1,-1h1h1v1l-1,1v1l1,1h1h1h1h1v2l2,2l1,6l-1,5v2v3l1,1l2,2v1l-1,1v2l2,3v1l1,5v1h1h3l2,1l1,1l2,1v1l1,-1l1,-1h1h1v1v2v4l1,1h1l2,1l4,-1l6,2h2l3,-2h1h3l3,-2h1h2v1v2v1l1,1v2l-1,4l-2,3v1l-2,1l-2,1v2l-1,3l-3,4v1l2,2v2v1h1l4,2l2,-1l1,-1l2,1l2,2v1v5l1,1l3,2h1v2l-1,1l-1,2l1,1l2,3l1,1l1,2v2v3v2v5l1,1l1,1v1h1l1,-1l1,-1v-1h1l1,-1l2,1l2,1l2,-1l1,-1l1,1l1,1l1,2l2,1l1,2h1v1l1,1v2l-1,2l-1,3l-2,1v3l-1,2l1,1l1,1l5,3l2,1h1" />
<path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M3,136l16,-1" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M2,136l19,-1" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M153,497v-7" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M153,498v-9" /><path style="clip-path:url(#cp3);stroke-width:2.693980;stroke-linecap:round;stroke:rgb(0,0,0);" fill="none" d="M521,130" /><path style="clip-path:url(#cp3);stroke-width:1.616388;stroke-linecap:round;stroke:rgb(255,0,0);" fill="none" d="M523,130h-4" /></g>
</g>
<g id="L6" >
<text transform="translate(269.789597,270.759486)"><tspan style="font-family:ArialMT;font-size:32.255196;font-weight:800;stroke:rgb(255,255,255);stroke-width:0.806380;">Mt. Saint Helens</tspan>
</text>
</g>
<g id="L7" >
<text transform="translate(-212.261670,230.605621)"><tspan style="font-family:ArialMT;font-size:23.039427;font-weight:800;stroke:rgb(255,255,255);stroke-width:1.151971;">South Fork Toutle River</tspan>
</text>
</g>
<g id="L8" >
<text transform="translate(402.460777,52.193626)"><tspan style="font-family:ArialMT;font-size:23.039427;font-weight:800;stroke:rgb(255,255,255);stroke-width:1.151971;">Spirit Lake</tspan>
</text>
</g>
<g id="L9" >
<text transform="translate(130.236720,148.442064)"><tspan style="font-family:ArialMT;font-size:23.039427;font-weight:800;stroke:rgb(255,255,255);stroke-width:1.151971;">Castle Lake</tspan>
</text>
</g>
</g>
<g id="Coords" transform="translate(0 0)" >
<script type="text/ecmascript">
var isLatLon=false;
var LtoG = new Array(); LtoG = [[6157.575758,0.000000,532627.032392],[0.000000,6157.575758,5085128.455647]];
var DtoL = new Array(); DtoL = [[0.006028,0.000000,3.186566],[0.000000,0.006028,6.777752]];
;
</script>
<defs><filter id="fc" filterUnits="objectBoundingBox" height="142%" width="142%" x="-22%" y="-22%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/><feOffset in="blur" dx="3.200000" dy="3.200000" result="offsetBlur" /><feFlood style="flood-color:rgb(0,0,0);flood-opacity:.5;" result="flooded" /><feComposite in="flooded" in2="offsetBlur" operator="in" result="coloredShadow" /><feComposite in2="coloredShadow" in="SourceGraphic" operator="over" /></filter></defs><rect x="1.600000" y="1.600000" width="80.000000" height="19.200000" style="fill:white; filter:url('#fc')" />
<rect x="84.800000" y="1.600000" width="80.000000" height="19.200000" style="fill:white; filter:url('#fc')" />
<text x="171.200000" y="19.200000" style="font-size:16.000000;">Universal Transverse Mercator</text>
<g id="coords" style="font-size:16.000000;">
<text x="3.200000" y="17.600000">
<tspan id="coordx" > </tspan>
</text>
<text x="86.400000" y="17.600000">
<tspan id="coordy" > </tspan>
</text>
</g>
</g>
<script>hcolor = 'rgb(0,255,255)';</script><rect id='DatatipRect' visibility='hidden' x='0' y='0' width='100' stroke-width='1' height='16' rx='3' ry='3' style='fill:rgb(225,225,200);stroke:rgb(0,0,0);opacity:0.8;pointer-events:none'></rect>
<text id ='Datatip' visibility='hidden' style='fill:rgb(0,0,0);font-weight:normal; font-family:"Arial";font-size:12;text-anchor:middle;pointer-events:none' x='0' y='0'>M</text>
</svg>