Location: Wolf, Heinrich, 2000 @ c2a8e06d7c39 / wolf_heinrich_2000.xul

Author:
Catherine Lloyd <c.lloyd@auckland.ac.nz>
Date:
2010-06-04 01:55:35+12:00
Desc:
Removed xml:base="" from the model and also replaced wolf_2001 with wolf_2000 in both the model file and the session file.
Permanent Source URI:
https://models.physiomeproject.org/workspace/wolf_heinrich_2000/rawfile/c2a8e06d7c39dd24a502019fff1e95e744492cfc/wolf_heinrich_2000.xul

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="layout-diagram" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" style="overflow: auto" onload="setupDocument()">
<hbox>
	<scale id="zoom_scale" value="10" min="7" max="14" flex="4"/>
	<label value="Zoom" control="zoom_scale" flex="1"/>
	<button id="reset_button" label="Reset View" flex="1"/>
	<spacer flex="34"/>
</hbox>
<script>
<![CDATA[
window.model_entities =
  {

			
	S1: {
		id: "S1",
		y: "S1/S1",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#ff9900",
		linestyle: "none"
	},

	S2: {
		id: "S2",
		y: "S2/S2",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#ff00cc",
		linestyle: "none"
	},

	S3: {
		id: "S3",
		y: "S3/S3",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#cc00ff",
		linestyle: "none"
	},


	S4: {
		id: "S4",
		y: "S4/S4",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#3300ff",
		linestyle: "none"
	},


	S4_ex: {
		id: "S4_ex",
		y: "S4_ex/S4_ex",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#66ff66",
		linestyle: "none"
	},


	A3: {
		id: "A3",
		y: "A3/A3",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#66ff66",
		linestyle: "none"
	}
,


	A2: {
		id: "A2",
		y: "A2/A2",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#ccff33",
		linestyle: "none"
	}
,


	N2: {
		id: "N2",
		y: "N2/N2",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#ffff00",
		linestyle: "none"
	}
,


	N1: {
		id: "N1",
		y: "N1/N1",
		x: "environment/time",
		graph: "Clickable elements against time (minutes)",
		colour: "#ffcc00",
		linestyle: "none"
	}


	
			
 // Repeat the above section for each controllable graph trace.
 // Remember to add a comma to each repeat after the final },
 // except for the final one!
 
};

function flushVisibilityInformation(entity_id, entity_colour)
{
	var message = "";
	var entity;

	if (typeof pcenv != "undefined")
	{
		for (var i in window.model_entities)
		{
			entity = window.model_entities[i];
			if (typeof entity_id == "undefined" || entity_id == window.model_entities[i].id)
			{
				pcenv.selectTrace
				(
					entity.graph,
					entity.x,
					entity.y,
					typeof entity_colour == "undefined" ? "" : entity_colour,
					entity.linestyle
				);
			}
			if (entity.linestyle != "none")
				message += i + ", ";
		}
		pcenv.status(message == "" ? "No fluxes displayed" : "Displaying flux of " + message.slice(0, -2));
	}
}

function processSelectEntity(event)
{
	if (typeof pcenv != "undefined")
		pcenv.status("In processSelectEntity");

	var entity = window.model_entities[window.svgIdToName[event.currentTarget.id]];

	switch(entity.linestyle)
	{
	case "none":
		entity.linestyle = "lines";
		highlightEntity(event.currentTarget.id);
		break;
	case "lines":
		entity.linestyle = "none";
		unlightEntity(event.currentTarget.id);
		break;
	}

	flushVisibilityInformation(entity.id);
}

function processContext(event)
{
	// if (event.button != 2)
	//   return true;

	var entity = window.model_entities[window.svgIdToName[event.currentTarget.id]];

	if (entity.context == null)
		return true;

	var menu = document.getElementById("entityContextMenu");

	for (var c = menu.firstChild, x = null; c != null; c = x)
	{
		x = c.nextSibling;
		menu.removeChild(c);
	}

	for (var i in entity.context)
	{
		var item = entity.context[i];

		var mitem = document.createElementNS
		(
			"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
			"menuitem"
		);

		mitem.setAttribute("label", item.label);
		mitem.setAttribute("url", item.url);
		mitem.addEventListener("command", processShowEntityURL, false);
		menu.appendChild(mitem);
	}

	menu.showPopup(window.diagram, event.screenX, event.screenY, "context");

	event.stopPropagation;
	return false;
}

function processShowEntityURL(event)
{
	url = event.target.getAttribute("url");

	window.open(url);

	var hl = document.getElementById("hidden-link");
	hl.href = url;

	// This is ugly, but it is one way to force everything through the proper
	// external handler...
	var evt = document.createEvent("HTMLEvents");
	evt.initEvent("click", true, true);
	hl.dispatchEvent(evt);
}

function highlightEntity(id)
{
	for (var path = document.getElementById(id + "_path1"), i = 1; path != null; path = document.getElementById(id + "_path" + ++i))
	{
		if (!(i in window.model_entities[window.svgIdToName[id]].path_colours))
			window.model_entities[window.svgIdToName[id]].path_colours[i] = path.attributes.getNamedItem("stroke").value;
		path.attributes.getNamedItem("stroke").value = "#ff0000";
	}
}

function highlightEntityOnRollover(event) {
	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].colour)
		flushVisibilityInformation(event.currentTarget.id, "#ffffff");

	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].linestyle == "none")
		highlightEntity(event.currentTarget.id);
}

function unlightEntity(id)
{
	for (var path = document.getElementById(id + "_path1"), i = 1; path != null; path = document.getElementById(id + "_path" + ++i))
		path.attributes.getNamedItem("stroke").value = window.model_entities[window.svgIdToName[id]].path_colours[i];
}

function unlightEntityOnRollover(event) {
	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].colour)
		flushVisibilityInformation(event.currentTarget.id, window.model_entities[window.svgIdToName[event.currentTarget.id]].colour);

	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].linestyle == "none")
		unlightEntity(event.currentTarget.id);
}

var mouseDown = false;
var initial_x;
var initial_y;
var viewBox;

function startDrag(event)
{
	if (event.button)
		return true;

	mouseDown = true;

	initial_x = parseInt(currentZoom * event.pageX + parseInt(viewBox.value.match(/^-?\d+/)[0]));
	initial_y = parseInt(currentZoom * event.pageY + parseInt(viewBox.value.match(/^-?\d+\s+(-?(\d+))/)[1]));
}

function stopDrag(event)
{
	if (!event.button)
		mouseDown = false;
}

function moveDrag(event)
{
	if (mouseDown == true)
		viewBox.value = viewBox.value.replace(/^-?\d+\s+-?\d+/, parseInt(initial_x - currentZoom * event.pageX) + " " + parseInt(initial_y - currentZoom * event.pageY));
}

function reset()
{
	var zoom_scale = document.getElementById("zoom_scale")
	zoom_scale.value = zoom_scale.originalValue;
	viewBox.value = viewBox.originalValue;
}

var initialZoom;
var currentZoom = 1;
var initialHeight;
var initialWidth;

function zoomDiagram(event)
{
	currentZoom = initialZoom / event.currentTarget.value;
	viewBox.value = viewBox.value.replace(/\d+\s+\d+$/, parseInt(initialHeight * currentZoom) + " " + parseInt(initialWidth * currentZoom));
}

function setupDocument()
{
	flushVisibilityInformation();

	window.diagram = document.getElementById("sachse");

	window.svgIdToName = {};

	for (var name in window.model_entities)
	{
		var id = window.model_entities[name].id;
		window.model_entities[name].path_colours = [];

		var svg = document.getElementById(id);
		window.svgIdToName[id] = name;

		svg.addEventListener("click", processSelectEntity, false);
		svg.addEventListener("contextmenu", processContext, false);
		svg.addEventListener("mouseover", highlightEntityOnRollover ,false);
		svg.addEventListener("mouseout", unlightEntityOnRollover, false);
	}

	document.getElementsByTagName("svg")[0].addEventListener("mousedown", startDrag, false);
	document.addEventListener("mouseup", stopDrag, false);
	document.addEventListener("mousemove", moveDrag, false);
	document.getElementById("reset_button").addEventListener("click", reset, false);

	document.getElementById("zoom_scale").addEventListener("change", zoomDiagram, false);
	document.getElementById("zoom_scale").originalValue = document.getElementById("zoom_scale").value;

	viewBox = document.getElementsByTagName("svg")[0].attributes.getNamedItem("viewBox");
	viewBox.originalValue = viewBox.value;

	initialZoom = document.getElementById("zoom_scale").value;
	initialHeight = parseInt(viewBox.value.match(/(\d+)\s+\d+$/)[1]);
	initialWidth = parseInt(viewBox.value.match(/\d+$/)[0]);
}

]]>
</script>

<popupset>
  <menupopup id="entityContextMenu" />
</popupset>

<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="423px" height="486px" viewBox="0 0 423 486" enable-background="new 0 0 423 486" xml:space="preserve">
<g>
	<g id="g59398" transform="translate(21.16987,-31.23187)">
		<g id="g7045">
			<g id="g7047">
				<path id="path7049" fill="#C1DAF2" stroke="#288ECD" d="M357.672,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C356.627,112.707,357.672,111.663,357.672,110.373z"/>
				<path id="path7051" fill="none" stroke="#288ECD" d="M355.34,108.041V91.707"/>
			</g>
			<g id="g7053">
				<path id="path7055" fill="#C1DAF2" stroke="#288ECD" d="M352.322,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C351.277,112.707,352.322,111.663,352.322,110.373z"/>
				<path id="path7057" fill="none" stroke="#288ECD" d="M349.99,108.041V91.707"/>
			</g>
			<g id="g7059">
				<path id="path7061" fill="#C1DAF2" stroke="#288ECD" d="M346.973,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C345.928,112.707,346.973,111.663,346.973,110.373z"/>
				<path id="path7063" fill="none" stroke="#288ECD" d="M344.639,108.041V91.707"/>
			</g>
			<g id="g7065">
				<path id="path7067" fill="#C1DAF2" stroke="#288ECD" d="M373.725,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C372.68,112.707,373.725,111.663,373.725,110.373z"/>
				<path id="path7069" fill="none" stroke="#288ECD" d="M371.391,108.041V91.707"/>
			</g>
			<g id="g7071">
				<path id="path7073" fill="#C1DAF2" stroke="#288ECD" d="M368.373,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C367.328,112.707,368.373,111.663,368.373,110.373z"/>
				<path id="path7075" fill="none" stroke="#288ECD" d="M366.041,108.041V91.707"/>
			</g>
			<g id="g7077">
				<path id="path7079" fill="#C1DAF2" stroke="#288ECD" d="M363.023,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C361.979,112.707,363.023,111.663,363.023,110.373z"/>
				<path id="path7081" fill="none" stroke="#288ECD" d="M360.69,108.041V91.707"/>
			</g>
			<g id="g7083">
				<path id="path7085" fill="#C1DAF2" stroke="#288ECD" d="M360.348,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C359.303,85.14,360.348,86.186,360.348,87.473z"/>
				<path id="path7087" fill="none" stroke="#288ECD" d="M358.016,89.806v16.334"/>
			</g>
			<g id="g7089">
				<path id="path7091" fill="#C1DAF2" stroke="#288ECD" d="M354.998,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C353.953,85.14,354.998,86.186,354.998,87.473z"/>
				<path id="path7093" fill="none" stroke="#288ECD" d="M352.664,89.806v16.334"/>
			</g>
			<g id="g7095">
				<path id="path7097" fill="#C1DAF2" stroke="#288ECD" d="M349.647,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C348.602,85.14,349.647,86.186,349.647,87.473z"/>
				<path id="path7099" fill="none" stroke="#288ECD" d="M347.315,89.806v16.334"/>
			</g>
			<g id="g7101">
				<path id="path7103" fill="#C1DAF2" stroke="#288ECD" d="M376.398,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C375.354,85.14,376.398,86.186,376.398,87.473z"/>
				<path id="path7105" fill="none" stroke="#288ECD" d="M374.066,89.806v16.334"/>
			</g>
			<g id="g7107">
				<path id="path7109" fill="#C1DAF2" stroke="#288ECD" d="M371.049,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C370.004,85.14,371.049,86.186,371.049,87.473z"/>
				<path id="path7111" fill="none" stroke="#288ECD" d="M368.717,89.806v16.334"/>
			</g>
			<g id="g7113">
				<path id="path7115" fill="#C1DAF2" stroke="#288ECD" d="M365.699,87.473c0,1.288-1.047,2.333-2.334,2.333
					s-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333S365.699,86.186,365.699,87.473z"/>
				<path id="path7117" fill="none" stroke="#288ECD" d="M363.365,89.806v16.334"/>
			</g>
		</g>
		<g id="g7119">
			<g id="g7121">
				<path id="path7123" fill="#C1DAF2" stroke="#288ECD" d="M325.676,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C324.631,112.707,325.676,111.663,325.676,110.373z"/>
				<path id="path7125" fill="none" stroke="#288ECD" d="M323.344,108.041V91.707"/>
			</g>
			<g id="g7127">
				<path id="path7129" fill="#C1DAF2" stroke="#288ECD" d="M320.326,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C319.281,112.707,320.326,111.663,320.326,110.373z"/>
				<path id="path7131" fill="none" stroke="#288ECD" d="M317.994,108.041V91.707"/>
			</g>
			<g id="g7133">
				<path id="path7135" fill="#C1DAF2" stroke="#288ECD" d="M314.975,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C313.93,112.707,314.975,111.663,314.975,110.373z"/>
				<path id="path7137" fill="none" stroke="#288ECD" d="M312.643,108.041V91.707"/>
			</g>
			<g id="g7139">
				<path id="path7141" fill="#C1DAF2" stroke="#288ECD" d="M341.727,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C340.682,112.707,341.727,111.663,341.727,110.373z"/>
				<path id="path7143" fill="none" stroke="#288ECD" d="M339.395,108.041V91.707"/>
			</g>
			<g id="g7145">
				<path id="path7147" fill="#C1DAF2" stroke="#288ECD" d="M336.377,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C335.332,112.707,336.377,111.663,336.377,110.373z"/>
				<path id="path7149" fill="none" stroke="#288ECD" d="M334.045,108.041V91.707"/>
			</g>
			<g id="g7151">
				<path id="path7153" fill="#C1DAF2" stroke="#288ECD" d="M331.025,110.373c0-1.287-1.045-2.332-2.332-2.332
					s-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334S331.025,111.663,331.025,110.373z"/>
				<path id="path7155" fill="none" stroke="#288ECD" d="M328.693,108.041V91.707"/>
			</g>
			<g id="g7157">
				<path id="path7159" fill="#C1DAF2" stroke="#288ECD" d="M328.352,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C327.307,85.14,328.352,86.186,328.352,87.473z"/>
				<path id="path7161" fill="none" stroke="#288ECD" d="M326.018,89.806v16.334"/>
			</g>
			<g id="g7163">
				<path id="path7165" fill="#C1DAF2" stroke="#288ECD" d="M323,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C321.955,85.14,323,86.186,323,87.473z"/>
				<path id="path7167" fill="none" stroke="#288ECD" d="M320.668,89.806v16.334"/>
			</g>
			<g id="g7169">
				<path id="path7171" fill="#C1DAF2" stroke="#288ECD" d="M317.65,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C316.606,85.14,317.65,86.186,317.65,87.473z"/>
				<path id="path7173" fill="none" stroke="#288ECD" d="M315.316,89.806v16.334"/>
			</g>
			<g id="g7175">
				<path id="path7177" fill="#C1DAF2" stroke="#288ECD" d="M344.402,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C343.357,85.14,344.402,86.186,344.402,87.473z"/>
				<path id="path7179" fill="none" stroke="#288ECD" d="M342.07,89.806v16.334"/>
			</g>
			<g id="g7181">
				<path id="path7183" fill="#C1DAF2" stroke="#288ECD" d="M339.053,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C338.008,85.14,339.053,86.186,339.053,87.473z"/>
				<path id="path7185" fill="none" stroke="#288ECD" d="M336.719,89.806v16.334"/>
			</g>
			<g id="g7187">
				<path id="path7189" fill="#C1DAF2" stroke="#288ECD" d="M333.703,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C332.658,85.14,333.703,86.186,333.703,87.473z"/>
				<path id="path7191" fill="none" stroke="#288ECD" d="M331.369,89.806v16.334"/>
			</g>
		</g>
		<g id="g7193">
			<g id="g7195">
				<path id="path7197" fill="#C1DAF2" stroke="#288ECD" d="M293.68,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C292.635,112.707,293.68,111.663,293.68,110.373z"/>
				<path id="path7199" fill="none" stroke="#288ECD" d="M291.346,108.041V91.707"/>
			</g>
			<g id="g7201">
				<path id="path7203" fill="#C1DAF2" stroke="#288ECD" d="M288.33,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C287.285,112.707,288.33,111.663,288.33,110.373z"/>
				<path id="path7205" fill="none" stroke="#288ECD" d="M285.996,108.041V91.707"/>
			</g>
			<g id="g7207">
				<path id="path7209" fill="#C1DAF2" stroke="#288ECD" d="M282.979,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C281.934,112.707,282.979,111.663,282.979,110.373z"/>
				<path id="path7211" fill="none" stroke="#288ECD" d="M280.647,108.041V91.707"/>
			</g>
			<g id="g7213">
				<path id="path7215" fill="#C1DAF2" stroke="#288ECD" d="M309.731,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C308.686,112.707,309.731,111.663,309.731,110.373z"/>
				<path id="path7217" fill="none" stroke="#288ECD" d="M307.398,108.041V91.707"/>
			</g>
			<g id="g7219">
				<path id="path7221" fill="#C1DAF2" stroke="#288ECD" d="M304.381,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C303.336,112.707,304.381,111.663,304.381,110.373z"/>
				<path id="path7223" fill="none" stroke="#288ECD" d="M302.047,108.041V91.707"/>
			</g>
			<g id="g7225">
				<path id="path7227" fill="#C1DAF2" stroke="#288ECD" d="M299.031,110.373c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S299.031,111.663,299.031,110.373z"/>
				<path id="path7229" fill="none" stroke="#288ECD" d="M296.697,108.041V91.707"/>
			</g>
			<g id="g7231">
				<path id="path7233" fill="#C1DAF2" stroke="#288ECD" d="M296.354,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C295.309,85.14,296.354,86.186,296.354,87.473z"/>
				<path id="path7235" fill="none" stroke="#288ECD" d="M294.022,89.806v16.334"/>
			</g>
			<g id="g7237">
				<path id="path7239" fill="#C1DAF2" stroke="#288ECD" d="M291.004,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C289.959,85.14,291.004,86.186,291.004,87.473z"/>
				<path id="path7241" fill="none" stroke="#288ECD" d="M288.672,89.806v16.334"/>
			</g>
			<g id="g7243">
				<path id="path7245" fill="#C1DAF2" stroke="#288ECD" d="M285.654,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C284.609,85.14,285.654,86.186,285.654,87.473z"/>
				<path id="path7247" fill="none" stroke="#288ECD" d="M283.322,89.806v16.334"/>
			</g>
			<g id="g7249">
				<path id="path7251" fill="#C1DAF2" stroke="#288ECD" d="M312.406,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C311.361,85.14,312.406,86.186,312.406,87.473z"/>
				<path id="path7253" fill="none" stroke="#288ECD" d="M310.074,89.806v16.334"/>
			</g>
			<g id="g7255">
				<path id="path7257" fill="#C1DAF2" stroke="#288ECD" d="M307.057,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C306.012,85.14,307.057,86.186,307.057,87.473z"/>
				<path id="path7259" fill="none" stroke="#288ECD" d="M304.723,89.806v16.334"/>
			</g>
			<g id="g7261">
				<path id="path7263" fill="#C1DAF2" stroke="#288ECD" d="M301.705,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C300.66,85.14,301.705,86.186,301.705,87.473z"/>
				<path id="path7265" fill="none" stroke="#288ECD" d="M299.373,89.806v16.334"/>
			</g>
		</g>
		<g id="g7267">
			<g id="g7269">
				<path id="path7271" fill="#C1DAF2" stroke="#288ECD" d="M261.684,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C260.639,112.707,261.684,111.663,261.684,110.373z"/>
				<path id="path7273" fill="none" stroke="#288ECD" d="M259.352,108.041V91.707"/>
			</g>
			<g id="g7275">
				<path id="path7277" fill="#C1DAF2" stroke="#288ECD" d="M256.332,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C255.287,112.707,256.332,111.663,256.332,110.373z"/>
				<path id="path7279" fill="none" stroke="#288ECD" d="M254,108.041V91.707"/>
			</g>
			<g id="g7281">
				<path id="path7283" fill="#C1DAF2" stroke="#288ECD" d="M250.982,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C249.938,112.707,250.982,111.663,250.982,110.373z"/>
				<path id="path7285" fill="none" stroke="#288ECD" d="M248.65,108.041V91.707"/>
			</g>
			<g id="g7287">
				<path id="path7289" fill="#C1DAF2" stroke="#288ECD" d="M277.734,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C276.69,112.707,277.734,111.663,277.734,110.373z"/>
				<path id="path7291" fill="none" stroke="#288ECD" d="M275.402,108.041V91.707"/>
			</g>
			<g id="g7293">
				<path id="path7295" fill="#C1DAF2" stroke="#288ECD" d="M272.385,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C271.34,112.707,272.385,111.663,272.385,110.373z"/>
				<path id="path7297" fill="none" stroke="#288ECD" d="M270.051,108.041V91.707"/>
			</g>
			<g id="g7299">
				<path id="path7301" fill="#C1DAF2" stroke="#288ECD" d="M267.033,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C265.988,112.707,267.033,111.663,267.033,110.373z"/>
				<path id="path7303" fill="none" stroke="#288ECD" d="M264.701,108.041V91.707"/>
			</g>
			<g id="g7305">
				<path id="path7307" fill="#C1DAF2" stroke="#288ECD" d="M264.359,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C263.315,85.14,264.359,86.186,264.359,87.473z"/>
				<path id="path7309" fill="none" stroke="#288ECD" d="M262.025,89.806v16.334"/>
			</g>
			<g id="g7311">
				<path id="path7313" fill="#C1DAF2" stroke="#288ECD" d="M259.008,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C257.963,85.14,259.008,86.186,259.008,87.473z"/>
				<path id="path7315" fill="none" stroke="#288ECD" d="M256.674,89.806v16.334"/>
			</g>
			<g id="g7317">
				<path id="path7319" fill="#C1DAF2" stroke="#288ECD" d="M253.658,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C252.613,85.14,253.658,86.186,253.658,87.473z"/>
				<path id="path7321" fill="none" stroke="#288ECD" d="M251.324,89.806v16.334"/>
			</g>
			<g id="g7323">
				<path id="path7325" fill="#C1DAF2" stroke="#288ECD" d="M280.41,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C279.365,85.14,280.41,86.186,280.41,87.473z"/>
				<path id="path7327" fill="none" stroke="#288ECD" d="M278.078,89.806v16.334"/>
			</g>
			<g id="g7329">
				<path id="path7331" fill="#C1DAF2" stroke="#288ECD" d="M275.061,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C274.016,85.14,275.061,86.186,275.061,87.473z"/>
				<path id="path7333" fill="none" stroke="#288ECD" d="M272.727,89.806v16.334"/>
			</g>
			<g id="g7335">
				<path id="path7337" fill="#C1DAF2" stroke="#288ECD" d="M269.709,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C268.664,85.14,269.709,86.186,269.709,87.473z"/>
				<path id="path7339" fill="none" stroke="#288ECD" d="M267.375,89.806v16.334"/>
			</g>
		</g>
		<g id="g7341">
			<g id="g7343">
				<path id="path7345" fill="#C1DAF2" stroke="#288ECD" d="M229.688,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C228.643,112.707,229.688,111.663,229.688,110.373z"/>
				<path id="path7347" fill="none" stroke="#288ECD" d="M227.354,108.041V91.707"/>
			</g>
			<g id="g7349">
				<path id="path7351" fill="#C1DAF2" stroke="#288ECD" d="M224.336,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C223.291,112.707,224.336,111.663,224.336,110.373z"/>
				<path id="path7353" fill="none" stroke="#288ECD" d="M222.004,108.041V91.707"/>
			</g>
			<g id="g7355">
				<path id="path7357" fill="#C1DAF2" stroke="#288ECD" d="M218.986,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C217.941,112.707,218.986,111.663,218.986,110.373z"/>
				<path id="path7359" fill="none" stroke="#288ECD" d="M216.652,108.041V91.707"/>
			</g>
			<g id="g7361">
				<path id="path7363" fill="#C1DAF2" stroke="#288ECD" d="M245.738,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C244.693,112.707,245.738,111.663,245.738,110.373z"/>
				<path id="path7365" fill="none" stroke="#288ECD" d="M243.406,108.041V91.707"/>
			</g>
			<g id="g7367">
				<path id="path7369" fill="#C1DAF2" stroke="#288ECD" d="M240.389,110.373c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S240.389,111.663,240.389,110.373z"/>
				<path id="path7371" fill="none" stroke="#288ECD" d="M238.055,108.041V91.707"/>
			</g>
			<g id="g7373">
				<path id="path7375" fill="#C1DAF2" stroke="#288ECD" d="M235.037,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C233.992,112.707,235.037,111.663,235.037,110.373z"/>
				<path id="path7377" fill="none" stroke="#288ECD" d="M232.705,108.041V91.707"/>
			</g>
			<g id="g7379">
				<path id="path7381" fill="#C1DAF2" stroke="#288ECD" d="M232.361,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C231.316,85.14,232.361,86.186,232.361,87.473z"/>
				<path id="path7383" fill="none" stroke="#288ECD" d="M230.029,89.806v16.334"/>
			</g>
			<g id="g7385">
				<path id="path7387" fill="#C1DAF2" stroke="#288ECD" d="M227.012,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C225.967,85.14,227.012,86.186,227.012,87.473z"/>
				<path id="path7389" fill="none" stroke="#288ECD" d="M224.68,89.806v16.334"/>
			</g>
			<g id="g7391">
				<path id="path7393" fill="#C1DAF2" stroke="#288ECD" d="M221.662,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C220.617,85.14,221.662,86.186,221.662,87.473z"/>
				<path id="path7395" fill="none" stroke="#288ECD" d="M219.328,89.806v16.334"/>
			</g>
			<g id="g7397">
				<path id="path7399" fill="#C1DAF2" stroke="#288ECD" d="M248.414,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C247.369,85.14,248.414,86.186,248.414,87.473z"/>
				<path id="path7401" fill="none" stroke="#288ECD" d="M246.08,89.806v16.334"/>
			</g>
			<g id="g7403">
				<path id="path7405" fill="#C1DAF2" stroke="#288ECD" d="M243.063,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C242.018,85.14,243.063,86.186,243.063,87.473z"/>
				<path id="path7407" fill="none" stroke="#288ECD" d="M240.731,89.806v16.334"/>
			</g>
			<g id="g7409">
				<path id="path7411" fill="#C1DAF2" stroke="#288ECD" d="M237.713,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C236.668,85.14,237.713,86.186,237.713,87.473z"/>
				<path id="path7413" fill="none" stroke="#288ECD" d="M235.379,89.806v16.334"/>
			</g>
		</g>
		<g id="g7415">
			<g id="g7417">
				<path id="path7419" fill="#C1DAF2" stroke="#288ECD" d="M197.689,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C196.645,112.707,197.689,111.663,197.689,110.373z"/>
				<path id="path7421" fill="none" stroke="#288ECD" d="M195.357,108.041V91.707"/>
			</g>
			<g id="g7423">
				<path id="path7425" fill="#C1DAF2" stroke="#288ECD" d="M192.34,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C191.295,112.707,192.34,111.663,192.34,110.373z"/>
				<path id="path7427" fill="none" stroke="#288ECD" d="M190.006,108.041V91.707"/>
			</g>
			<g id="g7429">
				<path id="path7431" fill="#C1DAF2" stroke="#288ECD" d="M186.99,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C185.945,112.707,186.99,111.663,186.99,110.373z"/>
				<path id="path7433" fill="none" stroke="#288ECD" d="M184.656,108.041V91.707"/>
			</g>
			<g id="g7435">
				<path id="path7437" fill="#C1DAF2" stroke="#288ECD" d="M213.742,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C212.697,112.707,213.742,111.663,213.742,110.373z"/>
				<path id="path7439" fill="none" stroke="#288ECD" d="M211.408,108.041V91.707"/>
			</g>
			<g id="g7441">
				<path id="path7443" fill="#C1DAF2" stroke="#288ECD" d="M208.393,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C207.348,112.707,208.393,111.663,208.393,110.373z"/>
				<path id="path7445" fill="none" stroke="#288ECD" d="M206.059,108.041V91.707"/>
			</g>
			<g id="g7447">
				<path id="path7449" fill="#C1DAF2" stroke="#288ECD" d="M203.041,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C201.996,112.707,203.041,111.663,203.041,110.373z"/>
				<path id="path7451" fill="none" stroke="#288ECD" d="M200.707,108.041V91.707"/>
			</g>
			<g id="g7453">
				<path id="path7455" fill="#C1DAF2" stroke="#288ECD" d="M200.365,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C199.32,85.14,200.365,86.186,200.365,87.473z"/>
				<path id="path7457" fill="none" stroke="#288ECD" d="M198.033,89.806v16.334"/>
			</g>
			<g id="g7459">
				<path id="path7461" fill="#C1DAF2" stroke="#288ECD" d="M195.016,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C193.971,85.14,195.016,86.186,195.016,87.473z"/>
				<path id="path7463" fill="none" stroke="#288ECD" d="M192.682,89.806v16.334"/>
			</g>
			<g id="g7465">
				<path id="path7467" fill="#C1DAF2" stroke="#288ECD" d="M189.664,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C188.619,85.14,189.664,86.186,189.664,87.473z"/>
				<path id="path7469" fill="none" stroke="#288ECD" d="M187.332,89.806v16.334"/>
			</g>
			<g id="g7471">
				<path id="path7473" fill="#C1DAF2" stroke="#288ECD" d="M216.416,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C215.371,85.14,216.416,86.186,216.416,87.473z"/>
				<path id="path7475" fill="none" stroke="#288ECD" d="M214.084,89.806v16.334"/>
			</g>
			<g id="g7477">
				<path id="path7479" fill="#C1DAF2" stroke="#288ECD" d="M211.066,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C210.022,85.14,211.066,86.186,211.066,87.473z"/>
				<path id="path7481" fill="none" stroke="#288ECD" d="M208.734,89.806v16.334"/>
			</g>
			<g id="g7483">
				<path id="path7485" fill="#C1DAF2" stroke="#288ECD" d="M205.715,87.473c0,1.288-1.045,2.333-2.332,2.333
					s-2.334-1.045-2.334-2.333c0-1.288,1.047-2.333,2.334-2.333S205.715,86.186,205.715,87.473z"/>
				<path id="path7487" fill="none" stroke="#288ECD" d="M203.383,89.806v16.334"/>
			</g>
		</g>
	</g>
	<g id="g59398_1_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_1_">
			<g id="g7047_1_">
				<path id="path7049_1_" fill="#C1DAF2" stroke="#288ECD" d="M165.65,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C164.606,112.707,165.65,111.663,165.65,110.373z"/>
				<path id="path7051_1_" fill="none" stroke="#288ECD" d="M163.318,108.041V91.707"/>
			</g>
			<g id="g7053_1_">
				<path id="path7055_1_" fill="#C1DAF2" stroke="#288ECD" d="M160.301,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C159.256,112.707,160.301,111.663,160.301,110.373z"/>
				<path id="path7057_1_" fill="none" stroke="#288ECD" d="M157.969,108.041V91.707"/>
			</g>
			<g id="g7059_1_">
				<path id="path7061_1_" fill="#C1DAF2" stroke="#288ECD" d="M154.951,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C153.906,112.707,154.951,111.663,154.951,110.373z"/>
				<path id="path7063_1_" fill="none" stroke="#288ECD" d="M152.617,108.041V91.707"/>
			</g>
			<g id="g7065_1_">
				<path id="path7067_1_" fill="#C1DAF2" stroke="#288ECD" d="M181.703,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C180.658,112.707,181.703,111.663,181.703,110.373z"/>
				<path id="path7069_1_" fill="none" stroke="#288ECD" d="M179.369,108.041V91.707"/>
			</g>
			<g id="g7071_1_">
				<path id="path7073_1_" fill="#C1DAF2" stroke="#288ECD" d="M176.352,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C175.307,112.707,176.352,111.663,176.352,110.373z"/>
				<path id="path7075_1_" fill="none" stroke="#288ECD" d="M174.02,108.041V91.707"/>
			</g>
			<g id="g7077_1_">
				<path id="path7079_1_" fill="#C1DAF2" stroke="#288ECD" d="M171.002,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C169.957,112.707,171.002,111.663,171.002,110.373z"/>
				<path id="path7081_1_" fill="none" stroke="#288ECD" d="M168.668,108.041V91.707"/>
			</g>
			<g id="g7083_1_">
				<path id="path7085_1_" fill="#C1DAF2" stroke="#288ECD" d="M168.326,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C167.281,85.14,168.326,86.186,168.326,87.473z"/>
				<path id="path7087_1_" fill="none" stroke="#288ECD" d="M165.994,89.806v16.334"/>
			</g>
			<g id="g7089_1_">
				<path id="path7091_1_" fill="#C1DAF2" stroke="#288ECD" d="M162.977,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C161.932,85.14,162.977,86.186,162.977,87.473z"/>
				<path id="path7093_1_" fill="none" stroke="#288ECD" d="M160.643,89.806v16.334"/>
			</g>
			<g id="g7095_1_">
				<path id="path7097_1_" fill="#C1DAF2" stroke="#288ECD" d="M157.625,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C156.58,85.14,157.625,86.186,157.625,87.473z"/>
				<path id="path7099_1_" fill="none" stroke="#288ECD" d="M155.293,89.806v16.334"/>
			</g>
			<g id="g7101_1_">
				<path id="path7103_1_" fill="#C1DAF2" stroke="#288ECD" d="M184.377,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C183.332,85.14,184.377,86.186,184.377,87.473z"/>
				<path id="path7105_1_" fill="none" stroke="#288ECD" d="M182.045,89.806v16.334"/>
			</g>
			<g id="g7107_1_">
				<path id="path7109_1_" fill="#C1DAF2" stroke="#288ECD" d="M179.027,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C177.982,85.14,179.027,86.186,179.027,87.473z"/>
				<path id="path7111_1_" fill="none" stroke="#288ECD" d="M176.695,89.806v16.334"/>
			</g>
			<g id="g7113_1_">
				<path id="path7115_1_" fill="#C1DAF2" stroke="#288ECD" d="M173.678,87.473c0,1.288-1.047,2.333-2.334,2.333
					s-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333S173.678,86.186,173.678,87.473z"/>
				<path id="path7117_1_" fill="none" stroke="#288ECD" d="M171.344,89.806v16.334"/>
			</g>
		</g>
		<g id="g7119_1_">
			<g id="g7121_1_">
				<path id="path7123_1_" fill="#C1DAF2" stroke="#288ECD" d="M133.654,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C132.609,112.707,133.654,111.663,133.654,110.373z"/>
				<path id="path7125_1_" fill="none" stroke="#288ECD" d="M131.322,108.041V91.707"/>
			</g>
			<g id="g7127_1_">
				<path id="path7129_1_" fill="#C1DAF2" stroke="#288ECD" d="M128.305,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C127.26,112.707,128.305,111.663,128.305,110.373z"/>
				<path id="path7131_1_" fill="none" stroke="#288ECD" d="M125.973,108.041V91.707"/>
			</g>
			<g id="g7133_1_">
				<path id="path7135_1_" fill="#C1DAF2" stroke="#288ECD" d="M122.953,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C121.908,112.707,122.953,111.663,122.953,110.373z"/>
				<path id="path7137_1_" fill="none" stroke="#288ECD" d="M120.622,108.041V91.707"/>
			</g>
			<g id="g7139_1_">
				<path id="path7141_1_" fill="#C1DAF2" stroke="#288ECD" d="M149.705,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C148.66,112.707,149.705,111.663,149.705,110.373z"/>
				<path id="path7143_1_" fill="none" stroke="#288ECD" d="M147.373,108.041V91.707"/>
			</g>
			<g id="g7145_1_">
				<path id="path7147_1_" fill="#C1DAF2" stroke="#288ECD" d="M144.356,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C143.311,112.707,144.356,111.663,144.356,110.373z"/>
				<path id="path7149_1_" fill="none" stroke="#288ECD" d="M142.023,108.041V91.707"/>
			</g>
			<g id="g7151_1_">
				<path id="path7153_1_" fill="#C1DAF2" stroke="#288ECD" d="M139.004,110.373c0-1.287-1.045-2.332-2.332-2.332
					s-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334S139.004,111.663,139.004,110.373z"/>
				<path id="path7155_1_" fill="none" stroke="#288ECD" d="M136.672,108.041V91.707"/>
			</g>
			<g id="g7157_1_">
				<path id="path7159_1_" fill="#C1DAF2" stroke="#288ECD" d="M136.33,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C135.285,85.14,136.33,86.186,136.33,87.473z"/>
				<path id="path7161_1_" fill="none" stroke="#288ECD" d="M133.996,89.806v16.334"/>
			</g>
			<g id="g7163_1_">
				<path id="path7165_1_" fill="#C1DAF2" stroke="#288ECD" d="M130.979,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C129.934,85.14,130.979,86.186,130.979,87.473z"/>
				<path id="path7167_1_" fill="none" stroke="#288ECD" d="M128.647,89.806v16.334"/>
			</g>
			<g id="g7169_1_">
				<path id="path7171_1_" fill="#C1DAF2" stroke="#288ECD" d="M125.629,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.044-2.333,2.332-2.333C124.584,85.14,125.629,86.186,125.629,87.473z"/>
				<path id="path7173_1_" fill="none" stroke="#288ECD" d="M123.295,89.806v16.334"/>
			</g>
			<g id="g7175_1_">
				<path id="path7177_1_" fill="#C1DAF2" stroke="#288ECD" d="M152.381,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C151.336,85.14,152.381,86.186,152.381,87.473z"/>
				<path id="path7179_1_" fill="none" stroke="#288ECD" d="M150.049,89.806v16.334"/>
			</g>
			<g id="g7181_1_">
				<path id="path7183_1_" fill="#C1DAF2" stroke="#288ECD" d="M147.031,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C145.986,85.14,147.031,86.186,147.031,87.473z"/>
				<path id="path7185_1_" fill="none" stroke="#288ECD" d="M144.697,89.806v16.334"/>
			</g>
			<g id="g7187_1_">
				<path id="path7189_1_" fill="#C1DAF2" stroke="#288ECD" d="M141.682,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C140.637,85.14,141.682,86.186,141.682,87.473z"/>
				<path id="path7191_1_" fill="none" stroke="#288ECD" d="M139.348,89.806v16.334"/>
			</g>
		</g>
		<g id="g7193_1_">
			<g id="g7195_1_">
				<path id="path7197_1_" fill="#C1DAF2" stroke="#288ECD" d="M101.659,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C100.614,112.707,101.659,111.663,101.659,110.373z"/>
				<path id="path7199_1_" fill="none" stroke="#288ECD" d="M99.325,108.041V91.707"/>
			</g>
			<g id="g7201_1_">
				<path id="path7203_1_" fill="#C1DAF2" stroke="#288ECD" d="M96.309,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C95.264,112.707,96.309,111.663,96.309,110.373z"/>
				<path id="path7205_1_" fill="none" stroke="#288ECD" d="M93.975,108.041V91.707"/>
			</g>
			<g id="g7207_1_">
				<path id="path7209_1_" fill="#C1DAF2" stroke="#288ECD" d="M90.958,110.373c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S90.958,111.663,90.958,110.373z"/>
				<path id="path7211_1_" fill="none" stroke="#288ECD" d="M88.625,108.041V91.707"/>
			</g>
			<g id="g7213_1_">
				<path id="path7215_1_" fill="#C1DAF2" stroke="#288ECD" d="M117.71,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C116.665,112.707,117.71,111.663,117.71,110.373z"/>
				<path id="path7217_1_" fill="none" stroke="#288ECD" d="M115.377,108.041V91.707"/>
			</g>
			<g id="g7219_1_">
				<path id="path7221_1_" fill="#C1DAF2" stroke="#288ECD" d="M112.36,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C111.315,112.707,112.36,111.663,112.36,110.373z"/>
				<path id="path7223_1_" fill="none" stroke="#288ECD" d="M110.026,108.041V91.707"/>
			</g>
			<g id="g7225_1_">
				<path id="path7227_1_" fill="#C1DAF2" stroke="#288ECD" d="M107.01,110.373c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S107.01,111.663,107.01,110.373z"/>
				<path id="path7229_1_" fill="none" stroke="#288ECD" d="M104.676,108.041V91.707"/>
			</g>
			<g id="g7231_1_">
				<path id="path7233_1_" fill="#C1DAF2" stroke="#288ECD" d="M104.333,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C103.288,85.14,104.333,86.186,104.333,87.473z"/>
				<path id="path7235_1_" fill="none" stroke="#288ECD" d="M102.001,89.806v16.334"/>
			</g>
			<g id="g7237_1_">
				<path id="path7239_1_" fill="#C1DAF2" stroke="#288ECD" d="M98.983,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C97.938,85.14,98.983,86.186,98.983,87.473z"/>
				<path id="path7241_1_" fill="none" stroke="#288ECD" d="M96.651,89.806v16.334"/>
			</g>
			<g id="g7243_1_">
				<path id="path7245_1_" fill="#C1DAF2" stroke="#288ECD" d="M93.633,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S93.633,86.186,93.633,87.473z"/>
				<path id="path7247_1_" fill="none" stroke="#288ECD" d="M91.3,89.806v16.334"/>
			</g>
			<g id="g7249_1_">
				<path id="path7251_1_" fill="#C1DAF2" stroke="#288ECD" d="M120.385,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C119.34,85.14,120.385,86.186,120.385,87.473z"/>
				<path id="path7253_1_" fill="none" stroke="#288ECD" d="M118.053,89.806v16.334"/>
			</g>
			<g id="g7255_1_">
				<path id="path7257_1_" fill="#C1DAF2" stroke="#288ECD" d="M115.036,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C113.991,85.14,115.036,86.186,115.036,87.473z"/>
				<path id="path7259_1_" fill="none" stroke="#288ECD" d="M112.702,89.806v16.334"/>
			</g>
			<g id="g7261_1_">
				<path id="path7263_1_" fill="#C1DAF2" stroke="#288ECD" d="M109.684,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C108.639,85.14,109.684,86.186,109.684,87.473z"/>
				<path id="path7265_1_" fill="none" stroke="#288ECD" d="M107.352,89.806v16.334"/>
			</g>
		</g>
		<g id="g7267_1_">
			<g id="g7269_1_">
				<path id="path7271_1_" fill="#C1DAF2" stroke="#288ECD" d="M69.663,110.373c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S69.663,111.663,69.663,110.373z"/>
				<path id="path7273_1_" fill="none" stroke="#288ECD" d="M67.33,108.041V91.707"/>
			</g>
			<g id="g7275_1_">
				<path id="path7277_1_" fill="#C1DAF2" stroke="#288ECD" d="M64.311,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C63.266,112.707,64.311,111.663,64.311,110.373z"/>
				<path id="path7279_1_" fill="none" stroke="#288ECD" d="M61.979,108.041V91.707"/>
			</g>
			<g id="g7281_1_">
				<path id="path7283_1_" fill="#C1DAF2" stroke="#288ECD" d="M58.961,110.373c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S58.961,111.663,58.961,110.373z"/>
				<path id="path7285_1_" fill="none" stroke="#288ECD" d="M56.628,108.041V91.707"/>
			</g>
			<g id="g7287_1_">
				<path id="path7289_1_" fill="#C1DAF2" stroke="#288ECD" d="M85.713,110.373c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S85.713,111.663,85.713,110.373z"/>
				<path id="path7291_1_" fill="none" stroke="#288ECD" d="M83.38,108.041V91.707"/>
			</g>
			<g id="g7293_1_">
				<path id="path7295_1_" fill="#C1DAF2" stroke="#288ECD" d="M80.364,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C79.319,112.707,80.364,111.663,80.364,110.373z"/>
				<path id="path7297_1_" fill="none" stroke="#288ECD" d="M78.03,108.041V91.707"/>
			</g>
			<g id="g7299_1_">
				<path id="path7301_1_" fill="#C1DAF2" stroke="#288ECD" d="M75.012,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C73.967,112.707,75.012,111.663,75.012,110.373z"/>
				<path id="path7303_1_" fill="none" stroke="#288ECD" d="M72.68,108.041V91.707"/>
			</g>
			<g id="g7305_1_">
				<path id="path7307_1_" fill="#C1DAF2" stroke="#288ECD" d="M72.337,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S72.337,86.186,72.337,87.473z"/>
				<path id="path7309_1_" fill="none" stroke="#288ECD" d="M70.004,89.806v16.334"/>
			</g>
			<g id="g7311_1_">
				<path id="path7313_1_" fill="#C1DAF2" stroke="#288ECD" d="M66.987,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C65.942,85.14,66.987,86.186,66.987,87.473z"/>
				<path id="path7315_1_" fill="none" stroke="#288ECD" d="M64.653,89.806v16.334"/>
			</g>
			<g id="g7317_1_">
				<path id="path7319_1_" fill="#C1DAF2" stroke="#288ECD" d="M61.637,87.473c0,1.288-1.046,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C60.591,85.14,61.637,86.186,61.637,87.473z"/>
				<path id="path7321_1_" fill="none" stroke="#288ECD" d="M59.303,89.806v16.334"/>
			</g>
			<g id="g7323_1_">
				<path id="path7325_1_" fill="#C1DAF2" stroke="#288ECD" d="M88.389,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C87.344,85.14,88.389,86.186,88.389,87.473z"/>
				<path id="path7327_1_" fill="none" stroke="#288ECD" d="M86.057,89.806v16.334"/>
			</g>
			<g id="g7329_1_">
				<path id="path7331_1_" fill="#C1DAF2" stroke="#288ECD" d="M83.039,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S83.039,86.186,83.039,87.473z"/>
				<path id="path7333_1_" fill="none" stroke="#288ECD" d="M80.706,89.806v16.334"/>
			</g>
			<g id="g7335_1_">
				<path id="path7337_1_" fill="#C1DAF2" stroke="#288ECD" d="M77.688,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C76.643,85.14,77.688,86.186,77.688,87.473z"/>
				<path id="path7339_1_" fill="none" stroke="#288ECD" d="M75.354,89.806v16.334"/>
			</g>
		</g>
		<g id="g7341_1_">
			<g id="g7343_1_">
				<path id="path7345_1_" fill="#C1DAF2" stroke="#288ECD" d="M37.666,110.373c0-1.287-1.045-2.332-2.333-2.332
					S33,109.086,33,110.373c0,1.289,1.045,2.334,2.333,2.334S37.666,111.663,37.666,110.373z"/>
				<path id="path7347_1_" fill="none" stroke="#288ECD" d="M35.333,108.041V91.707"/>
			</g>
			<g id="g7349_1_">
				<path id="path7351_1_" fill="#C1DAF2" stroke="#288ECD" d="M32.315,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C31.27,112.707,32.315,111.663,32.315,110.373z"/>
				<path id="path7353_1_" fill="none" stroke="#288ECD" d="M29.983,108.041V91.707"/>
			</g>
			<g id="g7355_1_">
				<path id="path7357_1_" fill="#C1DAF2" stroke="#288ECD" d="M26.964,110.373c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C25.919,112.707,26.964,111.663,26.964,110.373z"/>
				<path id="path7359_1_" fill="none" stroke="#288ECD" d="M24.631,108.041V91.707"/>
			</g>
			<g id="g7361_1_">
				<path id="path7363_1_" fill="#C1DAF2" stroke="#288ECD" d="M53.717,110.373c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S53.717,111.663,53.717,110.373z"/>
				<path id="path7365_1_" fill="none" stroke="#288ECD" d="M51.384,108.041V91.707"/>
			</g>
			<g id="g7367_1_">
				<path id="path7369_1_" fill="#C1DAF2" stroke="#288ECD" d="M48.367,110.373c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C47.321,112.707,48.367,111.663,48.367,110.373z"/>
				<path id="path7371_1_" fill="none" stroke="#288ECD" d="M46.034,108.041V91.707"/>
			</g>
			<g id="g7373_1_">
				<path id="path7375_1_" fill="#C1DAF2" stroke="#288ECD" d="M43.016,110.373c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C41.971,112.707,43.016,111.663,43.016,110.373z"/>
				<path id="path7377_1_" fill="none" stroke="#288ECD" d="M40.684,108.041V91.707"/>
			</g>
			<g id="g7379_1_">
				<path id="path7381_1_" fill="#C1DAF2" stroke="#288ECD" d="M40.34,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S40.34,86.186,40.34,87.473z"/>
				<path id="path7383_1_" fill="none" stroke="#288ECD" d="M38.007,89.806v16.334"/>
			</g>
			<g id="g7385_1_">
				<path id="path7387_1_" fill="#C1DAF2" stroke="#288ECD" d="M34.991,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S34.991,86.186,34.991,87.473z"/>
				<path id="path7389_1_" fill="none" stroke="#288ECD" d="M32.658,89.806v16.334"/>
			</g>
			<g id="g7391_1_">
				<path id="path7393_1_" fill="#C1DAF2" stroke="#288ECD" d="M29.641,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C28.596,85.14,29.641,86.186,29.641,87.473z"/>
				<path id="path7395_1_" fill="none" stroke="#288ECD" d="M27.307,89.806v16.334"/>
			</g>
			<g id="g7397_1_">
				<path id="path7399_1_" fill="#C1DAF2" stroke="#288ECD" d="M56.393,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C55.348,85.14,56.393,86.186,56.393,87.473z"/>
				<path id="path7401_1_" fill="none" stroke="#288ECD" d="M54.059,89.806v16.334"/>
			</g>
			<g id="g7403_1_">
				<path id="path7405_1_" fill="#C1DAF2" stroke="#288ECD" d="M51.042,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S51.042,86.186,51.042,87.473z"/>
				<path id="path7407_1_" fill="none" stroke="#288ECD" d="M48.709,89.806v16.334"/>
			</g>
			<g id="g7409_1_">
				<path id="path7411_1_" fill="#C1DAF2" stroke="#288ECD" d="M45.692,87.473c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333c0-1.288,1.045-2.333,2.332-2.333C44.647,85.14,45.692,86.186,45.692,87.473z"/>
				<path id="path7413_1_" fill="none" stroke="#288ECD" d="M43.358,89.806v16.334"/>
			</g>
		</g>
		<g id="g7415_1_">
			<g id="g7417_1_">
				<path id="path7419_1_" fill="#C1DAF2" stroke="#288ECD" d="M5.669,110.373c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S5.669,111.663,5.669,110.373z"/>
				<path id="path7421_1_" fill="none" stroke="#288ECD" d="M3.335,108.041V91.707"/>
			</g>
			<g id="g7423_1_">
				<path id="path7425_1_" fill="#C1DAF2" stroke="#288ECD" d="M0.319,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C-0.726,112.707,0.319,111.663,0.319,110.373z"/>
				<path id="path7427_1_" fill="none" stroke="#288ECD" d="M-2.015,108.041V91.707"/>
			</g>
			<g id="g7429_1_">
				<path id="path7431_1_" fill="#C1DAF2" stroke="#288ECD" d="M-5.031,110.373c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C-6.077,112.707-5.031,111.663-5.031,110.373z"/>
				<path id="path7433_1_" fill="none" stroke="#288ECD" d="M-7.365,108.041V91.707"/>
			</g>
			<g id="g7435_1_">
				<path id="path7437_1_" fill="#C1DAF2" stroke="#288ECD" d="M21.721,110.373c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C20.675,112.707,21.721,111.663,21.721,110.373z"/>
				<path id="path7439_1_" fill="none" stroke="#288ECD" d="M19.387,108.041V91.707"/>
			</g>
			<g id="g7441_1_">
				<path id="path7443_1_" fill="#C1DAF2" stroke="#288ECD" d="M16.371,110.373c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S16.371,111.663,16.371,110.373z"/>
				<path id="path7445_1_" fill="none" stroke="#288ECD" d="M14.038,108.041V91.707"/>
			</g>
			<g id="g7447_1_">
				<path id="path7449_1_" fill="#C1DAF2" stroke="#288ECD" d="M11.02,110.373c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C9.975,112.707,11.02,111.663,11.02,110.373z"/>
				<path id="path7451_1_" fill="none" stroke="#288ECD" d="M8.686,108.041V91.707"/>
			</g>
			<g id="g7453_1_">
				<path id="path7455_1_" fill="#C1DAF2" stroke="#288ECD" d="M8.344,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C7.299,85.14,8.344,86.186,8.344,87.473z"/>
				<path id="path7457_1_" fill="none" stroke="#288ECD" d="M6.012,89.806v16.334"/>
			</g>
			<g id="g7459_1_">
				<path id="path7461_1_" fill="#C1DAF2" stroke="#288ECD" d="M2.994,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S2.994,86.186,2.994,87.473z"/>
				<path id="path7463_1_" fill="none" stroke="#288ECD" d="M0.661,89.806v16.334"/>
			</g>
			<g id="g7465_1_">
				<path id="path7467_1_" fill="#C1DAF2" stroke="#288ECD" d="M-2.357,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C-3.402,85.14-2.357,86.186-2.357,87.473z"/>
				<path id="path7469_1_" fill="none" stroke="#288ECD" d="M-4.689,89.806v16.334"/>
			</g>
			<g id="g7471_1_">
				<path id="path7473_1_" fill="#C1DAF2" stroke="#288ECD" d="M24.395,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333c0-1.288,1.045-2.333,2.334-2.333C23.35,85.14,24.395,86.186,24.395,87.473z"/>
				<path id="path7475_1_" fill="none" stroke="#288ECD" d="M22.063,89.806v16.334"/>
			</g>
			<g id="g7477_1_">
				<path id="path7479_1_" fill="#C1DAF2" stroke="#288ECD" d="M19.045,87.473c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333c0-1.288,1.045-2.333,2.333-2.333S19.045,86.186,19.045,87.473z"/>
				<path id="path7481_1_" fill="none" stroke="#288ECD" d="M16.712,89.806v16.334"/>
			</g>
			<g id="g7483_1_">
				<path id="path7485_1_" fill="#C1DAF2" stroke="#288ECD" d="M13.694,87.473c0,1.288-1.045,2.333-2.332,2.333
					c-1.288,0-2.334-1.045-2.334-2.333c0-1.288,1.046-2.333,2.334-2.333C12.649,85.14,13.694,86.186,13.694,87.473z"/>
				<path id="path7487_1_" fill="none" stroke="#288ECD" d="M11.362,89.806v16.334"/>
			</g>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="77.941" y1="116" x2="77.941" y2="32.242"/>
		<polygon points="74.238,113.192 77.941,114.765 81.645,113.192 77.941,121.97 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M125.234,189.746c-102.47-19.272-3.564-30.324,9.286-36.97"/>
		<polygon points="121.789,192.866 124.02,189.518 123.158,185.587 131.1,190.85 		"/>
	</g>
</g>
<g>
	<g id="g59398_3_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_3_">
			<g id="g7047_3_">
				<path id="path7049_3_" fill="#C1DAF2" stroke="#288ECD" d="M357.672,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C356.627,526.232,357.672,525.187,357.672,523.898z"/>
				<path id="path7051_3_" fill="none" stroke="#288ECD" d="M355.34,521.566v-16.334"/>
			</g>
			<g id="g7053_3_">
				<path id="path7055_3_" fill="#C1DAF2" stroke="#288ECD" d="M352.322,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C351.277,526.232,352.322,525.187,352.322,523.898z"/>
				<path id="path7057_3_" fill="none" stroke="#288ECD" d="M349.99,521.566v-16.334"/>
			</g>
			<g id="g7059_3_">
				<path id="path7061_3_" fill="#C1DAF2" stroke="#288ECD" d="M346.973,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C345.928,526.232,346.973,525.187,346.973,523.898z"/>
				<path id="path7063_3_" fill="none" stroke="#288ECD" d="M344.639,521.566v-16.334"/>
			</g>
			<g id="g7065_3_">
				<path id="path7067_3_" fill="#C1DAF2" stroke="#288ECD" d="M373.725,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C372.68,526.232,373.725,525.187,373.725,523.898z"/>
				<path id="path7069_3_" fill="none" stroke="#288ECD" d="M371.391,521.566v-16.334"/>
			</g>
			<g id="g7071_3_">
				<path id="path7073_3_" fill="#C1DAF2" stroke="#288ECD" d="M368.373,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C367.328,526.232,368.373,525.187,368.373,523.898z"/>
				<path id="path7075_3_" fill="none" stroke="#288ECD" d="M366.041,521.566v-16.334"/>
			</g>
			<g id="g7077_3_">
				<path id="path7079_3_" fill="#C1DAF2" stroke="#288ECD" d="M363.023,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C361.979,526.232,363.023,525.187,363.023,523.898z"/>
				<path id="path7081_3_" fill="none" stroke="#288ECD" d="M360.69,521.566v-16.334"/>
			</g>
			<g id="g7083_3_">
				<path id="path7085_3_" fill="#C1DAF2" stroke="#288ECD" d="M360.348,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C359.303,498.665,360.348,499.71,360.348,500.997z"/>
				<path id="path7087_3_" fill="none" stroke="#288ECD" d="M358.016,503.331v16.334"/>
			</g>
			<g id="g7089_3_">
				<path id="path7091_3_" fill="#C1DAF2" stroke="#288ECD" d="M354.998,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C353.953,498.665,354.998,499.71,354.998,500.997z"/>
				<path id="path7093_3_" fill="none" stroke="#288ECD" d="M352.664,503.331v16.334"/>
			</g>
			<g id="g7095_3_">
				<path id="path7097_3_" fill="#C1DAF2" stroke="#288ECD" d="M349.647,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C348.602,498.665,349.647,499.71,349.647,500.997z"/>
				<path id="path7099_3_" fill="none" stroke="#288ECD" d="M347.315,503.331v16.334"/>
			</g>
			<g id="g7101_3_">
				<path id="path7103_3_" fill="#C1DAF2" stroke="#288ECD" d="M376.398,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C375.354,498.665,376.398,499.71,376.398,500.997z"/>
				<path id="path7105_3_" fill="none" stroke="#288ECD" d="M374.066,503.331v16.334"/>
			</g>
			<g id="g7107_3_">
				<path id="path7109_3_" fill="#C1DAF2" stroke="#288ECD" d="M371.049,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C370.004,498.665,371.049,499.71,371.049,500.997z"/>
				<path id="path7111_3_" fill="none" stroke="#288ECD" d="M368.717,503.331v16.334"/>
			</g>
			<g id="g7113_3_">
				<path id="path7115_3_" fill="#C1DAF2" stroke="#288ECD" d="M365.699,500.997c0,1.288-1.047,2.334-2.334,2.334
					s-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332S365.699,499.71,365.699,500.997z"/>
				<path id="path7117_3_" fill="none" stroke="#288ECD" d="M363.365,503.331v16.334"/>
			</g>
		</g>
		<g id="g7119_3_">
			<g id="g7121_3_">
				<path id="path7123_3_" fill="#C1DAF2" stroke="#288ECD" d="M325.676,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C324.631,526.232,325.676,525.187,325.676,523.898z"/>
				<path id="path7125_3_" fill="none" stroke="#288ECD" d="M323.344,521.566v-16.334"/>
			</g>
			<g id="g7127_3_">
				<path id="path7129_3_" fill="#C1DAF2" stroke="#288ECD" d="M320.326,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C319.281,526.232,320.326,525.187,320.326,523.898z"/>
				<path id="path7131_3_" fill="none" stroke="#288ECD" d="M317.994,521.566v-16.334"/>
			</g>
			<g id="g7133_3_">
				<path id="path7135_3_" fill="#C1DAF2" stroke="#288ECD" d="M314.975,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C313.93,526.232,314.975,525.187,314.975,523.898z"/>
				<path id="path7137_3_" fill="none" stroke="#288ECD" d="M312.643,521.566v-16.334"/>
			</g>
			<g id="g7139_3_">
				<path id="path7141_3_" fill="#C1DAF2" stroke="#288ECD" d="M341.727,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C340.682,526.232,341.727,525.187,341.727,523.898z"/>
				<path id="path7143_3_" fill="none" stroke="#288ECD" d="M339.395,521.566v-16.334"/>
			</g>
			<g id="g7145_3_">
				<path id="path7147_3_" fill="#C1DAF2" stroke="#288ECD" d="M336.377,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C335.332,526.232,336.377,525.187,336.377,523.898z"/>
				<path id="path7149_3_" fill="none" stroke="#288ECD" d="M334.045,521.566v-16.334"/>
			</g>
			<g id="g7151_3_">
				<path id="path7153_3_" fill="#C1DAF2" stroke="#288ECD" d="M331.025,523.898c0-1.287-1.045-2.332-2.332-2.332
					s-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334S331.025,525.187,331.025,523.898z"/>
				<path id="path7155_3_" fill="none" stroke="#288ECD" d="M328.693,521.566v-16.334"/>
			</g>
			<g id="g7157_3_">
				<path id="path7159_3_" fill="#C1DAF2" stroke="#288ECD" d="M328.352,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C327.307,498.665,328.352,499.71,328.352,500.997z"/>
				<path id="path7161_3_" fill="none" stroke="#288ECD" d="M326.018,503.331v16.334"/>
			</g>
			<g id="g7163_3_">
				<path id="path7165_3_" fill="#C1DAF2" stroke="#288ECD" d="M323,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C321.955,498.665,323,499.71,323,500.997z"/>
				<path id="path7167_3_" fill="none" stroke="#288ECD" d="M320.668,503.331v16.334"/>
			</g>
			<g id="g7169_3_">
				<path id="path7171_3_" fill="#C1DAF2" stroke="#288ECD" d="M317.65,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C316.606,498.665,317.65,499.71,317.65,500.997z"/>
				<path id="path7173_3_" fill="none" stroke="#288ECD" d="M315.316,503.331v16.334"/>
			</g>
			<g id="g7175_3_">
				<path id="path7177_3_" fill="#C1DAF2" stroke="#288ECD" d="M344.402,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C343.357,498.665,344.402,499.71,344.402,500.997z"/>
				<path id="path7179_3_" fill="none" stroke="#288ECD" d="M342.07,503.331v16.334"/>
			</g>
			<g id="g7181_3_">
				<path id="path7183_3_" fill="#C1DAF2" stroke="#288ECD" d="M339.053,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C338.008,498.665,339.053,499.71,339.053,500.997z"/>
				<path id="path7185_3_" fill="none" stroke="#288ECD" d="M336.719,503.331v16.334"/>
			</g>
			<g id="g7187_3_">
				<path id="path7189_3_" fill="#C1DAF2" stroke="#288ECD" d="M333.703,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C332.658,498.665,333.703,499.71,333.703,500.997z"/>
				<path id="path7191_3_" fill="none" stroke="#288ECD" d="M331.369,503.331v16.334"/>
			</g>
		</g>
		<g id="g7193_3_">
			<g id="g7195_3_">
				<path id="path7197_3_" fill="#C1DAF2" stroke="#288ECD" d="M293.68,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C292.635,526.232,293.68,525.187,293.68,523.898z"/>
				<path id="path7199_3_" fill="none" stroke="#288ECD" d="M291.346,521.566v-16.334"/>
			</g>
			<g id="g7201_3_">
				<path id="path7203_3_" fill="#C1DAF2" stroke="#288ECD" d="M288.33,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C287.285,526.232,288.33,525.187,288.33,523.898z"/>
				<path id="path7205_3_" fill="none" stroke="#288ECD" d="M285.996,521.566v-16.334"/>
			</g>
			<g id="g7207_3_">
				<path id="path7209_3_" fill="#C1DAF2" stroke="#288ECD" d="M282.979,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C281.934,526.232,282.979,525.187,282.979,523.898z"/>
				<path id="path7211_3_" fill="none" stroke="#288ECD" d="M280.647,521.566v-16.334"/>
			</g>
			<g id="g7213_3_">
				<path id="path7215_3_" fill="#C1DAF2" stroke="#288ECD" d="M309.731,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C308.686,526.232,309.731,525.187,309.731,523.898z"/>
				<path id="path7217_3_" fill="none" stroke="#288ECD" d="M307.398,521.566v-16.334"/>
			</g>
			<g id="g7219_3_">
				<path id="path7221_3_" fill="#C1DAF2" stroke="#288ECD" d="M304.381,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C303.336,526.232,304.381,525.187,304.381,523.898z"/>
				<path id="path7223_3_" fill="none" stroke="#288ECD" d="M302.047,521.566v-16.334"/>
			</g>
			<g id="g7225_3_">
				<path id="path7227_3_" fill="#C1DAF2" stroke="#288ECD" d="M299.031,523.898c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S299.031,525.187,299.031,523.898z"/>
				<path id="path7229_3_" fill="none" stroke="#288ECD" d="M296.697,521.566v-16.334"/>
			</g>
			<g id="g7231_3_">
				<path id="path7233_3_" fill="#C1DAF2" stroke="#288ECD" d="M296.354,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C295.309,498.665,296.354,499.71,296.354,500.997z"/>
				<path id="path7235_3_" fill="none" stroke="#288ECD" d="M294.022,503.331v16.334"/>
			</g>
			<g id="g7237_3_">
				<path id="path7239_3_" fill="#C1DAF2" stroke="#288ECD" d="M291.004,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C289.959,498.665,291.004,499.71,291.004,500.997z"/>
				<path id="path7241_3_" fill="none" stroke="#288ECD" d="M288.672,503.331v16.334"/>
			</g>
			<g id="g7243_3_">
				<path id="path7245_3_" fill="#C1DAF2" stroke="#288ECD" d="M285.654,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C284.609,498.665,285.654,499.71,285.654,500.997z"/>
				<path id="path7247_3_" fill="none" stroke="#288ECD" d="M283.322,503.331v16.334"/>
			</g>
			<g id="g7249_3_">
				<path id="path7251_3_" fill="#C1DAF2" stroke="#288ECD" d="M312.406,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C311.361,498.665,312.406,499.71,312.406,500.997z"/>
				<path id="path7253_3_" fill="none" stroke="#288ECD" d="M310.074,503.331v16.334"/>
			</g>
			<g id="g7255_3_">
				<path id="path7257_3_" fill="#C1DAF2" stroke="#288ECD" d="M307.057,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C306.012,498.665,307.057,499.71,307.057,500.997z"/>
				<path id="path7259_3_" fill="none" stroke="#288ECD" d="M304.723,503.331v16.334"/>
			</g>
			<g id="g7261_3_">
				<path id="path7263_3_" fill="#C1DAF2" stroke="#288ECD" d="M301.705,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C300.66,498.665,301.705,499.71,301.705,500.997z"/>
				<path id="path7265_3_" fill="none" stroke="#288ECD" d="M299.373,503.331v16.334"/>
			</g>
		</g>
		<g id="g7267_3_">
			<g id="g7269_3_">
				<path id="path7271_3_" fill="#C1DAF2" stroke="#288ECD" d="M261.684,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C260.639,526.232,261.684,525.187,261.684,523.898z"/>
				<path id="path7273_3_" fill="none" stroke="#288ECD" d="M259.352,521.566v-16.334"/>
			</g>
			<g id="g7275_3_">
				<path id="path7277_3_" fill="#C1DAF2" stroke="#288ECD" d="M256.332,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C255.287,526.232,256.332,525.187,256.332,523.898z"/>
				<path id="path7279_3_" fill="none" stroke="#288ECD" d="M254,521.566v-16.334"/>
			</g>
			<g id="g7281_3_">
				<path id="path7283_3_" fill="#C1DAF2" stroke="#288ECD" d="M250.982,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C249.938,526.232,250.982,525.187,250.982,523.898z"/>
				<path id="path7285_3_" fill="none" stroke="#288ECD" d="M248.65,521.566v-16.334"/>
			</g>
			<g id="g7287_3_">
				<path id="path7289_3_" fill="#C1DAF2" stroke="#288ECD" d="M277.734,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C276.69,526.232,277.734,525.187,277.734,523.898z"/>
				<path id="path7291_3_" fill="none" stroke="#288ECD" d="M275.402,521.566v-16.334"/>
			</g>
			<g id="g7293_3_">
				<path id="path7295_3_" fill="#C1DAF2" stroke="#288ECD" d="M272.385,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C271.34,526.232,272.385,525.187,272.385,523.898z"/>
				<path id="path7297_3_" fill="none" stroke="#288ECD" d="M270.051,521.566v-16.334"/>
			</g>
			<g id="g7299_3_">
				<path id="path7301_3_" fill="#C1DAF2" stroke="#288ECD" d="M267.033,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C265.988,526.232,267.033,525.187,267.033,523.898z"/>
				<path id="path7303_3_" fill="none" stroke="#288ECD" d="M264.701,521.566v-16.334"/>
			</g>
			<g id="g7305_3_">
				<path id="path7307_3_" fill="#C1DAF2" stroke="#288ECD" d="M264.359,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C263.315,498.665,264.359,499.71,264.359,500.997z"/>
				<path id="path7309_3_" fill="none" stroke="#288ECD" d="M262.025,503.331v16.334"/>
			</g>
			<g id="g7311_3_">
				<path id="path7313_3_" fill="#C1DAF2" stroke="#288ECD" d="M259.008,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C257.963,498.665,259.008,499.71,259.008,500.997z"/>
				<path id="path7315_3_" fill="none" stroke="#288ECD" d="M256.674,503.331v16.334"/>
			</g>
			<g id="g7317_3_">
				<path id="path7319_3_" fill="#C1DAF2" stroke="#288ECD" d="M253.658,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C252.613,498.665,253.658,499.71,253.658,500.997z"/>
				<path id="path7321_3_" fill="none" stroke="#288ECD" d="M251.324,503.331v16.334"/>
			</g>
			<g id="g7323_3_">
				<path id="path7325_3_" fill="#C1DAF2" stroke="#288ECD" d="M280.41,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C279.365,498.665,280.41,499.71,280.41,500.997z"/>
				<path id="path7327_3_" fill="none" stroke="#288ECD" d="M278.078,503.331v16.334"/>
			</g>
			<g id="g7329_3_">
				<path id="path7331_3_" fill="#C1DAF2" stroke="#288ECD" d="M275.061,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C274.016,498.665,275.061,499.71,275.061,500.997z"/>
				<path id="path7333_3_" fill="none" stroke="#288ECD" d="M272.727,503.331v16.334"/>
			</g>
			<g id="g7335_3_">
				<path id="path7337_3_" fill="#C1DAF2" stroke="#288ECD" d="M269.709,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C268.664,498.665,269.709,499.71,269.709,500.997z"/>
				<path id="path7339_3_" fill="none" stroke="#288ECD" d="M267.375,503.331v16.334"/>
			</g>
		</g>
		<g id="g7341_3_">
			<g id="g7343_3_">
				<path id="path7345_3_" fill="#C1DAF2" stroke="#288ECD" d="M229.688,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C228.643,526.232,229.688,525.187,229.688,523.898z"/>
				<path id="path7347_3_" fill="none" stroke="#288ECD" d="M227.354,521.566v-16.334"/>
			</g>
			<g id="g7349_3_">
				<path id="path7351_3_" fill="#C1DAF2" stroke="#288ECD" d="M224.336,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C223.291,526.232,224.336,525.187,224.336,523.898z"/>
				<path id="path7353_3_" fill="none" stroke="#288ECD" d="M222.004,521.566v-16.334"/>
			</g>
			<g id="g7355_3_">
				<path id="path7357_3_" fill="#C1DAF2" stroke="#288ECD" d="M218.986,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C217.941,526.232,218.986,525.187,218.986,523.898z"/>
				<path id="path7359_3_" fill="none" stroke="#288ECD" d="M216.652,521.566v-16.334"/>
			</g>
			<g id="g7361_3_">
				<path id="path7363_3_" fill="#C1DAF2" stroke="#288ECD" d="M245.738,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C244.693,526.232,245.738,525.187,245.738,523.898z"/>
				<path id="path7365_3_" fill="none" stroke="#288ECD" d="M243.406,521.566v-16.334"/>
			</g>
			<g id="g7367_3_">
				<path id="path7369_3_" fill="#C1DAF2" stroke="#288ECD" d="M240.389,523.898c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S240.389,525.187,240.389,523.898z"/>
				<path id="path7371_3_" fill="none" stroke="#288ECD" d="M238.055,521.566v-16.334"/>
			</g>
			<g id="g7373_3_">
				<path id="path7375_3_" fill="#C1DAF2" stroke="#288ECD" d="M235.037,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C233.992,526.232,235.037,525.187,235.037,523.898z"/>
				<path id="path7377_3_" fill="none" stroke="#288ECD" d="M232.705,521.566v-16.334"/>
			</g>
			<g id="g7379_3_">
				<path id="path7381_3_" fill="#C1DAF2" stroke="#288ECD" d="M232.361,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C231.316,498.665,232.361,499.71,232.361,500.997z"/>
				<path id="path7383_3_" fill="none" stroke="#288ECD" d="M230.029,503.331v16.334"/>
			</g>
			<g id="g7385_3_">
				<path id="path7387_3_" fill="#C1DAF2" stroke="#288ECD" d="M227.012,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C225.967,498.665,227.012,499.71,227.012,500.997z"/>
				<path id="path7389_3_" fill="none" stroke="#288ECD" d="M224.68,503.331v16.334"/>
			</g>
			<g id="g7391_3_">
				<path id="path7393_3_" fill="#C1DAF2" stroke="#288ECD" d="M221.662,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C220.617,498.665,221.662,499.71,221.662,500.997z"/>
				<path id="path7395_3_" fill="none" stroke="#288ECD" d="M219.328,503.331v16.334"/>
			</g>
			<g id="g7397_3_">
				<path id="path7399_3_" fill="#C1DAF2" stroke="#288ECD" d="M248.414,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C247.369,498.665,248.414,499.71,248.414,500.997z"/>
				<path id="path7401_3_" fill="none" stroke="#288ECD" d="M246.08,503.331v16.334"/>
			</g>
			<g id="g7403_3_">
				<path id="path7405_3_" fill="#C1DAF2" stroke="#288ECD" d="M243.063,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C242.018,498.665,243.063,499.71,243.063,500.997z"/>
				<path id="path7407_3_" fill="none" stroke="#288ECD" d="M240.731,503.331v16.334"/>
			</g>
			<g id="g7409_3_">
				<path id="path7411_3_" fill="#C1DAF2" stroke="#288ECD" d="M237.713,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C236.668,498.665,237.713,499.71,237.713,500.997z"/>
				<path id="path7413_3_" fill="none" stroke="#288ECD" d="M235.379,503.331v16.334"/>
			</g>
		</g>
		<g id="g7415_3_">
			<g id="g7417_3_">
				<path id="path7419_3_" fill="#C1DAF2" stroke="#288ECD" d="M197.689,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C196.645,526.232,197.689,525.187,197.689,523.898z"/>
				<path id="path7421_3_" fill="none" stroke="#288ECD" d="M195.357,521.566v-16.334"/>
			</g>
			<g id="g7423_3_">
				<path id="path7425_3_" fill="#C1DAF2" stroke="#288ECD" d="M192.34,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C191.295,526.232,192.34,525.187,192.34,523.898z"/>
				<path id="path7427_3_" fill="none" stroke="#288ECD" d="M190.006,521.566v-16.334"/>
			</g>
			<g id="g7429_3_">
				<path id="path7431_3_" fill="#C1DAF2" stroke="#288ECD" d="M186.99,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C185.945,526.232,186.99,525.187,186.99,523.898z"/>
				<path id="path7433_3_" fill="none" stroke="#288ECD" d="M184.656,521.566v-16.334"/>
			</g>
			<g id="g7435_3_">
				<path id="path7437_3_" fill="#C1DAF2" stroke="#288ECD" d="M213.742,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C212.697,526.232,213.742,525.187,213.742,523.898z"/>
				<path id="path7439_3_" fill="none" stroke="#288ECD" d="M211.408,521.566v-16.334"/>
			</g>
			<g id="g7441_3_">
				<path id="path7443_3_" fill="#C1DAF2" stroke="#288ECD" d="M208.393,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C207.348,526.232,208.393,525.187,208.393,523.898z"/>
				<path id="path7445_3_" fill="none" stroke="#288ECD" d="M206.059,521.566v-16.334"/>
			</g>
			<g id="g7447_3_">
				<path id="path7449_3_" fill="#C1DAF2" stroke="#288ECD" d="M203.041,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C201.996,526.232,203.041,525.187,203.041,523.898z"/>
				<path id="path7451_3_" fill="none" stroke="#288ECD" d="M200.707,521.566v-16.334"/>
			</g>
			<g id="g7453_3_">
				<path id="path7455_3_" fill="#C1DAF2" stroke="#288ECD" d="M200.365,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C199.32,498.665,200.365,499.71,200.365,500.997z"/>
				<path id="path7457_3_" fill="none" stroke="#288ECD" d="M198.033,503.331v16.334"/>
			</g>
			<g id="g7459_3_">
				<path id="path7461_3_" fill="#C1DAF2" stroke="#288ECD" d="M195.016,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C193.971,498.665,195.016,499.71,195.016,500.997z"/>
				<path id="path7463_3_" fill="none" stroke="#288ECD" d="M192.682,503.331v16.334"/>
			</g>
			<g id="g7465_3_">
				<path id="path7467_3_" fill="#C1DAF2" stroke="#288ECD" d="M189.664,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C188.619,498.665,189.664,499.71,189.664,500.997z"/>
				<path id="path7469_3_" fill="none" stroke="#288ECD" d="M187.332,503.331v16.334"/>
			</g>
			<g id="g7471_3_">
				<path id="path7473_3_" fill="#C1DAF2" stroke="#288ECD" d="M216.416,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C215.371,498.665,216.416,499.71,216.416,500.997z"/>
				<path id="path7475_3_" fill="none" stroke="#288ECD" d="M214.084,503.331v16.334"/>
			</g>
			<g id="g7477_3_">
				<path id="path7479_3_" fill="#C1DAF2" stroke="#288ECD" d="M211.066,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C210.022,498.665,211.066,499.71,211.066,500.997z"/>
				<path id="path7481_3_" fill="none" stroke="#288ECD" d="M208.734,503.331v16.334"/>
			</g>
			<g id="g7483_3_">
				<path id="path7485_3_" fill="#C1DAF2" stroke="#288ECD" d="M205.715,500.997c0,1.288-1.045,2.334-2.332,2.334
					s-2.334-1.046-2.334-2.334c0-1.287,1.047-2.332,2.334-2.332S205.715,499.71,205.715,500.997z"/>
				<path id="path7487_3_" fill="none" stroke="#288ECD" d="M203.383,503.331v16.334"/>
			</g>
		</g>
	</g>
	<g id="g59398_2_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_2_">
			<g id="g7047_2_">
				<path id="path7049_2_" fill="#C1DAF2" stroke="#288ECD" d="M165.65,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C164.606,526.232,165.65,525.187,165.65,523.898z"/>
				<path id="path7051_2_" fill="none" stroke="#288ECD" d="M163.318,521.566v-16.334"/>
			</g>
			<g id="g7053_2_">
				<path id="path7055_2_" fill="#C1DAF2" stroke="#288ECD" d="M160.301,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C159.256,526.232,160.301,525.187,160.301,523.898z"/>
				<path id="path7057_2_" fill="none" stroke="#288ECD" d="M157.969,521.566v-16.334"/>
			</g>
			<g id="g7059_2_">
				<path id="path7061_2_" fill="#C1DAF2" stroke="#288ECD" d="M154.951,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C153.906,526.232,154.951,525.187,154.951,523.898z"/>
				<path id="path7063_2_" fill="none" stroke="#288ECD" d="M152.617,521.566v-16.334"/>
			</g>
			<g id="g7065_2_">
				<path id="path7067_2_" fill="#C1DAF2" stroke="#288ECD" d="M181.703,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C180.658,526.232,181.703,525.187,181.703,523.898z"/>
				<path id="path7069_2_" fill="none" stroke="#288ECD" d="M179.369,521.566v-16.334"/>
			</g>
			<g id="g7071_2_">
				<path id="path7073_2_" fill="#C1DAF2" stroke="#288ECD" d="M176.352,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C175.307,526.232,176.352,525.187,176.352,523.898z"/>
				<path id="path7075_2_" fill="none" stroke="#288ECD" d="M174.02,521.566v-16.334"/>
			</g>
			<g id="g7077_2_">
				<path id="path7079_2_" fill="#C1DAF2" stroke="#288ECD" d="M171.002,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C169.957,526.232,171.002,525.187,171.002,523.898z"/>
				<path id="path7081_2_" fill="none" stroke="#288ECD" d="M168.668,521.566v-16.334"/>
			</g>
			<g id="g7083_2_">
				<path id="path7085_2_" fill="#C1DAF2" stroke="#288ECD" d="M168.326,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C167.281,498.665,168.326,499.71,168.326,500.997z"/>
				<path id="path7087_2_" fill="none" stroke="#288ECD" d="M165.994,503.331v16.334"/>
			</g>
			<g id="g7089_2_">
				<path id="path7091_2_" fill="#C1DAF2" stroke="#288ECD" d="M162.977,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C161.932,498.665,162.977,499.71,162.977,500.997z"/>
				<path id="path7093_2_" fill="none" stroke="#288ECD" d="M160.643,503.331v16.334"/>
			</g>
			<g id="g7095_2_">
				<path id="path7097_2_" fill="#C1DAF2" stroke="#288ECD" d="M157.625,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C156.58,498.665,157.625,499.71,157.625,500.997z"/>
				<path id="path7099_2_" fill="none" stroke="#288ECD" d="M155.293,503.331v16.334"/>
			</g>
			<g id="g7101_2_">
				<path id="path7103_2_" fill="#C1DAF2" stroke="#288ECD" d="M184.377,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C183.332,498.665,184.377,499.71,184.377,500.997z"/>
				<path id="path7105_2_" fill="none" stroke="#288ECD" d="M182.045,503.331v16.334"/>
			</g>
			<g id="g7107_2_">
				<path id="path7109_2_" fill="#C1DAF2" stroke="#288ECD" d="M179.027,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C177.982,498.665,179.027,499.71,179.027,500.997z"/>
				<path id="path7111_2_" fill="none" stroke="#288ECD" d="M176.695,503.331v16.334"/>
			</g>
			<g id="g7113_2_">
				<path id="path7115_2_" fill="#C1DAF2" stroke="#288ECD" d="M173.678,500.997c0,1.288-1.047,2.334-2.334,2.334
					s-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332S173.678,499.71,173.678,500.997z"/>
				<path id="path7117_2_" fill="none" stroke="#288ECD" d="M171.344,503.331v16.334"/>
			</g>
		</g>
		<g id="g7119_2_">
			<g id="g7121_2_">
				<path id="path7123_2_" fill="#C1DAF2" stroke="#288ECD" d="M133.654,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C132.609,526.232,133.654,525.187,133.654,523.898z"/>
				<path id="path7125_2_" fill="none" stroke="#288ECD" d="M131.322,521.566v-16.334"/>
			</g>
			<g id="g7127_2_">
				<path id="path7129_2_" fill="#C1DAF2" stroke="#288ECD" d="M128.305,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C127.26,526.232,128.305,525.187,128.305,523.898z"/>
				<path id="path7131_2_" fill="none" stroke="#288ECD" d="M125.973,521.566v-16.334"/>
			</g>
			<g id="g7133_2_">
				<path id="path7135_2_" fill="#C1DAF2" stroke="#288ECD" d="M122.953,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C121.908,526.232,122.953,525.187,122.953,523.898z"/>
				<path id="path7137_2_" fill="none" stroke="#288ECD" d="M120.622,521.566v-16.334"/>
			</g>
			<g id="g7139_2_">
				<path id="path7141_2_" fill="#C1DAF2" stroke="#288ECD" d="M149.705,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C148.66,526.232,149.705,525.187,149.705,523.898z"/>
				<path id="path7143_2_" fill="none" stroke="#288ECD" d="M147.373,521.566v-16.334"/>
			</g>
			<g id="g7145_2_">
				<path id="path7147_2_" fill="#C1DAF2" stroke="#288ECD" d="M144.356,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C143.311,526.232,144.356,525.187,144.356,523.898z"/>
				<path id="path7149_2_" fill="none" stroke="#288ECD" d="M142.023,521.566v-16.334"/>
			</g>
			<g id="g7151_2_">
				<path id="path7153_2_" fill="#C1DAF2" stroke="#288ECD" d="M139.004,523.898c0-1.287-1.045-2.332-2.332-2.332
					s-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334S139.004,525.187,139.004,523.898z"/>
				<path id="path7155_2_" fill="none" stroke="#288ECD" d="M136.672,521.566v-16.334"/>
			</g>
			<g id="g7157_2_">
				<path id="path7159_2_" fill="#C1DAF2" stroke="#288ECD" d="M136.33,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C135.285,498.665,136.33,499.71,136.33,500.997z"/>
				<path id="path7161_2_" fill="none" stroke="#288ECD" d="M133.996,503.331v16.334"/>
			</g>
			<g id="g7163_2_">
				<path id="path7165_2_" fill="#C1DAF2" stroke="#288ECD" d="M130.979,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C129.934,498.665,130.979,499.71,130.979,500.997z"/>
				<path id="path7167_2_" fill="none" stroke="#288ECD" d="M128.647,503.331v16.334"/>
			</g>
			<g id="g7169_2_">
				<path id="path7171_2_" fill="#C1DAF2" stroke="#288ECD" d="M125.629,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.044-2.332,2.332-2.332C124.584,498.665,125.629,499.71,125.629,500.997z"/>
				<path id="path7173_2_" fill="none" stroke="#288ECD" d="M123.295,503.331v16.334"/>
			</g>
			<g id="g7175_2_">
				<path id="path7177_2_" fill="#C1DAF2" stroke="#288ECD" d="M152.381,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C151.336,498.665,152.381,499.71,152.381,500.997z"/>
				<path id="path7179_2_" fill="none" stroke="#288ECD" d="M150.049,503.331v16.334"/>
			</g>
			<g id="g7181_2_">
				<path id="path7183_2_" fill="#C1DAF2" stroke="#288ECD" d="M147.031,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C145.986,498.665,147.031,499.71,147.031,500.997z"/>
				<path id="path7185_2_" fill="none" stroke="#288ECD" d="M144.697,503.331v16.334"/>
			</g>
			<g id="g7187_2_">
				<path id="path7189_2_" fill="#C1DAF2" stroke="#288ECD" d="M141.682,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C140.637,498.665,141.682,499.71,141.682,500.997z"/>
				<path id="path7191_2_" fill="none" stroke="#288ECD" d="M139.348,503.331v16.334"/>
			</g>
		</g>
		<g id="g7193_2_">
			<g id="g7195_2_">
				<path id="path7197_2_" fill="#C1DAF2" stroke="#288ECD" d="M101.659,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C100.614,526.232,101.659,525.187,101.659,523.898z"/>
				<path id="path7199_2_" fill="none" stroke="#288ECD" d="M99.325,521.566v-16.334"/>
			</g>
			<g id="g7201_2_">
				<path id="path7203_2_" fill="#C1DAF2" stroke="#288ECD" d="M96.309,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C95.264,526.232,96.309,525.187,96.309,523.898z"/>
				<path id="path7205_2_" fill="none" stroke="#288ECD" d="M93.975,521.566v-16.334"/>
			</g>
			<g id="g7207_2_">
				<path id="path7209_2_" fill="#C1DAF2" stroke="#288ECD" d="M90.958,523.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S90.958,525.187,90.958,523.898z"/>
				<path id="path7211_2_" fill="none" stroke="#288ECD" d="M88.625,521.566v-16.334"/>
			</g>
			<g id="g7213_2_">
				<path id="path7215_2_" fill="#C1DAF2" stroke="#288ECD" d="M117.71,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C116.665,526.232,117.71,525.187,117.71,523.898z"/>
				<path id="path7217_2_" fill="none" stroke="#288ECD" d="M115.377,521.566v-16.334"/>
			</g>
			<g id="g7219_2_">
				<path id="path7221_2_" fill="#C1DAF2" stroke="#288ECD" d="M112.36,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C111.315,526.232,112.36,525.187,112.36,523.898z"/>
				<path id="path7223_2_" fill="none" stroke="#288ECD" d="M110.026,521.566v-16.334"/>
			</g>
			<g id="g7225_2_">
				<path id="path7227_2_" fill="#C1DAF2" stroke="#288ECD" d="M107.01,523.898c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S107.01,525.187,107.01,523.898z"/>
				<path id="path7229_2_" fill="none" stroke="#288ECD" d="M104.676,521.566v-16.334"/>
			</g>
			<g id="g7231_2_">
				<path id="path7233_2_" fill="#C1DAF2" stroke="#288ECD" d="M104.333,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C103.288,498.665,104.333,499.71,104.333,500.997z"/>
				<path id="path7235_2_" fill="none" stroke="#288ECD" d="M102.001,503.331v16.334"/>
			</g>
			<g id="g7237_2_">
				<path id="path7239_2_" fill="#C1DAF2" stroke="#288ECD" d="M98.983,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C97.938,498.665,98.983,499.71,98.983,500.997z"/>
				<path id="path7241_2_" fill="none" stroke="#288ECD" d="M96.651,503.331v16.334"/>
			</g>
			<g id="g7243_2_">
				<path id="path7245_2_" fill="#C1DAF2" stroke="#288ECD" d="M93.633,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S93.633,499.71,93.633,500.997z"/>
				<path id="path7247_2_" fill="none" stroke="#288ECD" d="M91.3,503.331v16.334"/>
			</g>
			<g id="g7249_2_">
				<path id="path7251_2_" fill="#C1DAF2" stroke="#288ECD" d="M120.385,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C119.34,498.665,120.385,499.71,120.385,500.997z"/>
				<path id="path7253_2_" fill="none" stroke="#288ECD" d="M118.053,503.331v16.334"/>
			</g>
			<g id="g7255_2_">
				<path id="path7257_2_" fill="#C1DAF2" stroke="#288ECD" d="M115.036,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C113.991,498.665,115.036,499.71,115.036,500.997z"/>
				<path id="path7259_2_" fill="none" stroke="#288ECD" d="M112.702,503.331v16.334"/>
			</g>
			<g id="g7261_2_">
				<path id="path7263_2_" fill="#C1DAF2" stroke="#288ECD" d="M109.684,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C108.639,498.665,109.684,499.71,109.684,500.997z"/>
				<path id="path7265_2_" fill="none" stroke="#288ECD" d="M107.352,503.331v16.334"/>
			</g>
		</g>
		<g id="g7267_2_">
			<g id="g7269_2_">
				<path id="path7271_2_" fill="#C1DAF2" stroke="#288ECD" d="M69.663,523.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S69.663,525.187,69.663,523.898z"/>
				<path id="path7273_2_" fill="none" stroke="#288ECD" d="M67.33,521.566v-16.334"/>
			</g>
			<g id="g7275_2_">
				<path id="path7277_2_" fill="#C1DAF2" stroke="#288ECD" d="M64.311,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C63.266,526.232,64.311,525.187,64.311,523.898z"/>
				<path id="path7279_2_" fill="none" stroke="#288ECD" d="M61.979,521.566v-16.334"/>
			</g>
			<g id="g7281_2_">
				<path id="path7283_2_" fill="#C1DAF2" stroke="#288ECD" d="M58.961,523.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S58.961,525.187,58.961,523.898z"/>
				<path id="path7285_2_" fill="none" stroke="#288ECD" d="M56.628,521.566v-16.334"/>
			</g>
			<g id="g7287_2_">
				<path id="path7289_2_" fill="#C1DAF2" stroke="#288ECD" d="M85.713,523.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S85.713,525.187,85.713,523.898z"/>
				<path id="path7291_2_" fill="none" stroke="#288ECD" d="M83.38,521.566v-16.334"/>
			</g>
			<g id="g7293_2_">
				<path id="path7295_2_" fill="#C1DAF2" stroke="#288ECD" d="M80.364,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C79.319,526.232,80.364,525.187,80.364,523.898z"/>
				<path id="path7297_2_" fill="none" stroke="#288ECD" d="M78.03,521.566v-16.334"/>
			</g>
			<g id="g7299_2_">
				<path id="path7301_2_" fill="#C1DAF2" stroke="#288ECD" d="M75.012,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C73.967,526.232,75.012,525.187,75.012,523.898z"/>
				<path id="path7303_2_" fill="none" stroke="#288ECD" d="M72.68,521.566v-16.334"/>
			</g>
			<g id="g7305_2_">
				<path id="path7307_2_" fill="#C1DAF2" stroke="#288ECD" d="M72.337,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S72.337,499.71,72.337,500.997z"/>
				<path id="path7309_2_" fill="none" stroke="#288ECD" d="M70.004,503.331v16.334"/>
			</g>
			<g id="g7311_2_">
				<path id="path7313_2_" fill="#C1DAF2" stroke="#288ECD" d="M66.987,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C65.942,498.665,66.987,499.71,66.987,500.997z"/>
				<path id="path7315_2_" fill="none" stroke="#288ECD" d="M64.653,503.331v16.334"/>
			</g>
			<g id="g7317_2_">
				<path id="path7319_2_" fill="#C1DAF2" stroke="#288ECD" d="M61.637,500.997c0,1.288-1.046,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C60.591,498.665,61.637,499.71,61.637,500.997z"/>
				<path id="path7321_2_" fill="none" stroke="#288ECD" d="M59.303,503.331v16.334"/>
			</g>
			<g id="g7323_2_">
				<path id="path7325_2_" fill="#C1DAF2" stroke="#288ECD" d="M88.389,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C87.344,498.665,88.389,499.71,88.389,500.997z"/>
				<path id="path7327_2_" fill="none" stroke="#288ECD" d="M86.057,503.331v16.334"/>
			</g>
			<g id="g7329_2_">
				<path id="path7331_2_" fill="#C1DAF2" stroke="#288ECD" d="M83.039,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S83.039,499.71,83.039,500.997z"/>
				<path id="path7333_2_" fill="none" stroke="#288ECD" d="M80.706,503.331v16.334"/>
			</g>
			<g id="g7335_2_">
				<path id="path7337_2_" fill="#C1DAF2" stroke="#288ECD" d="M77.688,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C76.643,498.665,77.688,499.71,77.688,500.997z"/>
				<path id="path7339_2_" fill="none" stroke="#288ECD" d="M75.354,503.331v16.334"/>
			</g>
		</g>
		<g id="g7341_2_">
			<g id="g7343_2_">
				<path id="path7345_2_" fill="#C1DAF2" stroke="#288ECD" d="M37.666,523.898c0-1.287-1.045-2.332-2.333-2.332
					S33,522.611,33,523.898c0,1.289,1.045,2.334,2.333,2.334S37.666,525.187,37.666,523.898z"/>
				<path id="path7347_2_" fill="none" stroke="#288ECD" d="M35.333,521.566v-16.334"/>
			</g>
			<g id="g7349_2_">
				<path id="path7351_2_" fill="#C1DAF2" stroke="#288ECD" d="M32.315,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C31.27,526.232,32.315,525.187,32.315,523.898z"/>
				<path id="path7353_2_" fill="none" stroke="#288ECD" d="M29.983,521.566v-16.334"/>
			</g>
			<g id="g7355_2_">
				<path id="path7357_2_" fill="#C1DAF2" stroke="#288ECD" d="M26.964,523.898c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C25.919,526.232,26.964,525.187,26.964,523.898z"/>
				<path id="path7359_2_" fill="none" stroke="#288ECD" d="M24.631,521.566v-16.334"/>
			</g>
			<g id="g7361_2_">
				<path id="path7363_2_" fill="#C1DAF2" stroke="#288ECD" d="M53.717,523.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S53.717,525.187,53.717,523.898z"/>
				<path id="path7365_2_" fill="none" stroke="#288ECD" d="M51.384,521.566v-16.334"/>
			</g>
			<g id="g7367_2_">
				<path id="path7369_2_" fill="#C1DAF2" stroke="#288ECD" d="M48.367,523.898c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C47.321,526.232,48.367,525.187,48.367,523.898z"/>
				<path id="path7371_2_" fill="none" stroke="#288ECD" d="M46.034,521.566v-16.334"/>
			</g>
			<g id="g7373_2_">
				<path id="path7375_2_" fill="#C1DAF2" stroke="#288ECD" d="M43.016,523.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C41.971,526.232,43.016,525.187,43.016,523.898z"/>
				<path id="path7377_2_" fill="none" stroke="#288ECD" d="M40.684,521.566v-16.334"/>
			</g>
			<g id="g7379_2_">
				<path id="path7381_2_" fill="#C1DAF2" stroke="#288ECD" d="M40.34,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S40.34,499.71,40.34,500.997z"/>
				<path id="path7383_2_" fill="none" stroke="#288ECD" d="M38.007,503.331v16.334"/>
			</g>
			<g id="g7385_2_">
				<path id="path7387_2_" fill="#C1DAF2" stroke="#288ECD" d="M34.991,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S34.991,499.71,34.991,500.997z"/>
				<path id="path7389_2_" fill="none" stroke="#288ECD" d="M32.658,503.331v16.334"/>
			</g>
			<g id="g7391_2_">
				<path id="path7393_2_" fill="#C1DAF2" stroke="#288ECD" d="M29.641,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C28.596,498.665,29.641,499.71,29.641,500.997z"/>
				<path id="path7395_2_" fill="none" stroke="#288ECD" d="M27.307,503.331v16.334"/>
			</g>
			<g id="g7397_2_">
				<path id="path7399_2_" fill="#C1DAF2" stroke="#288ECD" d="M56.393,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C55.348,498.665,56.393,499.71,56.393,500.997z"/>
				<path id="path7401_2_" fill="none" stroke="#288ECD" d="M54.059,503.331v16.334"/>
			</g>
			<g id="g7403_2_">
				<path id="path7405_2_" fill="#C1DAF2" stroke="#288ECD" d="M51.042,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S51.042,499.71,51.042,500.997z"/>
				<path id="path7407_2_" fill="none" stroke="#288ECD" d="M48.709,503.331v16.334"/>
			</g>
			<g id="g7409_2_">
				<path id="path7411_2_" fill="#C1DAF2" stroke="#288ECD" d="M45.692,500.997c0,1.288-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.046-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C44.647,498.665,45.692,499.71,45.692,500.997z"/>
				<path id="path7413_2_" fill="none" stroke="#288ECD" d="M43.358,503.331v16.334"/>
			</g>
		</g>
		<g id="g7415_2_">
			<g id="g7417_2_">
				<path id="path7419_2_" fill="#C1DAF2" stroke="#288ECD" d="M5.669,523.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S5.669,525.187,5.669,523.898z"/>
				<path id="path7421_2_" fill="none" stroke="#288ECD" d="M3.335,521.566v-16.334"/>
			</g>
			<g id="g7423_2_">
				<path id="path7425_2_" fill="#C1DAF2" stroke="#288ECD" d="M0.319,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C-0.726,526.232,0.319,525.187,0.319,523.898z"/>
				<path id="path7427_2_" fill="none" stroke="#288ECD" d="M-2.015,521.566v-16.334"/>
			</g>
			<g id="g7429_2_">
				<path id="path7431_2_" fill="#C1DAF2" stroke="#288ECD" d="M-5.031,523.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C-6.077,526.232-5.031,525.187-5.031,523.898z"/>
				<path id="path7433_2_" fill="none" stroke="#288ECD" d="M-7.365,521.566v-16.334"/>
			</g>
			<g id="g7435_2_">
				<path id="path7437_2_" fill="#C1DAF2" stroke="#288ECD" d="M21.721,523.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C20.675,526.232,21.721,525.187,21.721,523.898z"/>
				<path id="path7439_2_" fill="none" stroke="#288ECD" d="M19.387,521.566v-16.334"/>
			</g>
			<g id="g7441_2_">
				<path id="path7443_2_" fill="#C1DAF2" stroke="#288ECD" d="M16.371,523.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S16.371,525.187,16.371,523.898z"/>
				<path id="path7445_2_" fill="none" stroke="#288ECD" d="M14.038,521.566v-16.334"/>
			</g>
			<g id="g7447_2_">
				<path id="path7449_2_" fill="#C1DAF2" stroke="#288ECD" d="M11.02,523.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C9.975,526.232,11.02,525.187,11.02,523.898z"/>
				<path id="path7451_2_" fill="none" stroke="#288ECD" d="M8.686,521.566v-16.334"/>
			</g>
			<g id="g7453_2_">
				<path id="path7455_2_" fill="#C1DAF2" stroke="#288ECD" d="M8.344,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C7.299,498.665,8.344,499.71,8.344,500.997z"/>
				<path id="path7457_2_" fill="none" stroke="#288ECD" d="M6.012,503.331v16.334"/>
			</g>
			<g id="g7459_2_">
				<path id="path7461_2_" fill="#C1DAF2" stroke="#288ECD" d="M2.994,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S2.994,499.71,2.994,500.997z"/>
				<path id="path7463_2_" fill="none" stroke="#288ECD" d="M0.661,503.331v16.334"/>
			</g>
			<g id="g7465_2_">
				<path id="path7467_2_" fill="#C1DAF2" stroke="#288ECD" d="M-2.357,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C-3.402,498.665-2.357,499.71-2.357,500.997z"/>
				<path id="path7469_2_" fill="none" stroke="#288ECD" d="M-4.689,503.331v16.334"/>
			</g>
			<g id="g7471_2_">
				<path id="path7473_2_" fill="#C1DAF2" stroke="#288ECD" d="M24.395,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.046-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C23.35,498.665,24.395,499.71,24.395,500.997z"/>
				<path id="path7475_2_" fill="none" stroke="#288ECD" d="M22.063,503.331v16.334"/>
			</g>
			<g id="g7477_2_">
				<path id="path7479_2_" fill="#C1DAF2" stroke="#288ECD" d="M19.045,500.997c0,1.288-1.045,2.334-2.333,2.334
					s-2.333-1.046-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S19.045,499.71,19.045,500.997z"/>
				<path id="path7481_2_" fill="none" stroke="#288ECD" d="M16.712,503.331v16.334"/>
			</g>
			<g id="g7483_2_">
				<path id="path7485_2_" fill="#C1DAF2" stroke="#288ECD" d="M13.694,500.997c0,1.288-1.045,2.334-2.332,2.334
					c-1.288,0-2.334-1.046-2.334-2.334c0-1.287,1.046-2.332,2.334-2.332C12.649,498.665,13.694,499.71,13.694,500.997z"/>
				<path id="path7487_2_" fill="none" stroke="#288ECD" d="M11.362,503.331v16.334"/>
			</g>
		</g>
	</g>
</g>
<g id="S1">
	
		<radialGradient id="S1_path1_1_" cx="53.8486" cy="-682.8223" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="S1_path1" fill="url(#S1_path1_1_)" stroke="#000000" d="M103.256,21.599c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478S63.959,11.123,77.94,11.123C91.918,11.124,103.256,15.812,103.256,21.599z"/>
	<g>
		<path d="M72.685,23.85c0.467,0.3,1.139,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.432-1.187-1.523-1.595
			c-1.319-0.48-2.135-1.176-2.135-2.303c0-1.259,1.043-2.195,2.614-2.195c0.815,0,1.427,0.192,1.775,0.396l-0.288,0.852
			c-0.252-0.156-0.792-0.384-1.523-0.384c-1.103,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
			c1.367,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.779,0-1.631-0.24-2.062-0.528L72.685,23.85z"/>
		<path d="M80.652,18.309h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V18.309z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="77.941" y1="294.46" x2="77.941" y2="225.894"/>
		<polygon points="74.238,291.652 77.941,293.225 81.645,291.652 77.941,300.43 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="77.941" y1="393.764" x2="77.941" y2="325.197"/>
		<polygon points="74.238,390.955 77.941,392.527 81.645,390.955 77.941,399.732 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="77.941" y1="520.766" x2="77.941" y2="423.199"/>
		<polygon points="74.238,517.957 77.941,519.529 81.645,517.957 77.941,526.735 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="78.141" y1="599.812" x2="78.141" y2="531.246"/>
		<polygon points="74.438,597.004 78.141,598.577 81.845,597.004 78.141,605.782 		"/>
	</g>
</g>
<g id="S4_ex">
	
		<radialGradient id="S4_ex_path1_1_" cx="53.8486" cy="135.2388" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="S4_ex_path1" fill="url(#S4_ex_path1_1_)" stroke="#000000" d="M103.256,541.722c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C91.918,531.247,103.256,535.935,103.256,541.722z"/>
	<g>
		<path d="M64.405,543.973c0.467,0.3,1.139,0.527,1.859,0.527c1.067,0,1.691-0.562,1.691-1.379c0-0.743-0.432-1.188-1.523-1.595
			c-1.319-0.479-2.135-1.176-2.135-2.303c0-1.259,1.043-2.194,2.614-2.194c0.815,0,1.427,0.191,1.775,0.395l-0.288,0.852
			c-0.252-0.155-0.792-0.383-1.523-0.383c-1.103,0-1.523,0.659-1.523,1.211c0,0.756,0.492,1.127,1.607,1.559
			c1.367,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.779,0-1.631-0.239-2.062-0.528L64.405,543.973z"/>
		<path d="M73.343,545.244v-2.135h-3.622v-0.684l3.479-4.978h1.139v4.846h1.091v0.815h-1.091v2.135H73.343z M73.343,542.294v-2.603
			c0-0.408,0.012-0.816,0.036-1.224h-0.036c-0.24,0.456-0.432,0.792-0.647,1.151l-1.907,2.65v0.024H73.343z"/>
		<path d="M75.889,546.731c0.264-0.72,0.588-2.003,0.72-2.878l1.175-0.121c-0.288,1.02-0.815,2.352-1.151,2.915L75.889,546.731z"/>
		<path d="M82.188,542.533c0.024,1.428,0.923,2.016,1.991,2.016c0.755,0,1.223-0.133,1.607-0.301l0.192,0.756
			c-0.372,0.168-1.019,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.118,2.723-3.118
			c1.907,0,2.399,1.655,2.399,2.723c0,0.216-0.012,0.372-0.036,0.491H82.188z M85.282,541.777c0.012-0.659-0.276-1.702-1.463-1.702
			c-1.08,0-1.535,0.972-1.619,1.702H85.282z"/>
		<path d="M88.068,539.439l0.828,1.247c0.228,0.323,0.408,0.612,0.6,0.936h0.024c0.192-0.336,0.384-0.636,0.588-0.947l0.803-1.235
			h1.151l-1.979,2.807l2.027,2.998h-1.188l-0.864-1.307c-0.228-0.336-0.419-0.66-0.624-1.008h-0.024
			c-0.192,0.348-0.384,0.659-0.612,1.008l-0.839,1.307h-1.163l2.062-2.963l-1.967-2.842H88.068z"/>
	</g>
</g>
<g id="S4">
	
		<radialGradient id="S4_path1_1_" cx="53.8486" cy="-61.6772" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="S4_path1" fill="url(#S4_path1_1_)" stroke="#000000" d="M103.256,416.522c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C91.918,406.048,103.256,410.735,103.256,416.522z"/>
	<g>
		<path d="M72.685,418.773c0.467,0.3,1.139,0.527,1.859,0.527c1.067,0,1.691-0.562,1.691-1.379c0-0.743-0.432-1.188-1.523-1.595
			c-1.319-0.479-2.135-1.176-2.135-2.303c0-1.259,1.043-2.194,2.614-2.194c0.815,0,1.427,0.191,1.775,0.395l-0.288,0.852
			c-0.252-0.155-0.792-0.383-1.523-0.383c-1.103,0-1.523,0.659-1.523,1.211c0,0.756,0.492,1.127,1.607,1.559
			c1.367,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.779,0-1.631-0.239-2.062-0.528L72.685,418.773z"/>
		<path d="M81.623,420.045v-2.135h-3.622v-0.684l3.479-4.978h1.139v4.846h1.091v0.815h-1.091v2.135H81.623z M81.623,417.095v-2.603
			c0-0.408,0.012-0.816,0.036-1.224h-0.036c-0.24,0.456-0.432,0.792-0.647,1.151l-1.907,2.65v0.024H81.623z"/>
	</g>
</g>
<g id="S3">
	
		<radialGradient id="S3_path1_1_" cx="53.8486" cy="-220.293" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="S3_path1" fill="url(#S3_path1_1_)" stroke="#000000" d="M103.256,315.675c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C91.918,305.2,103.256,309.888,103.256,315.675z"/>
	<g>
		<path d="M72.685,317.926c0.467,0.3,1.139,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.432-1.187-1.523-1.595
			c-1.319-0.48-2.135-1.176-2.135-2.303c0-1.259,1.043-2.195,2.614-2.195c0.815,0,1.427,0.192,1.775,0.396l-0.288,0.852
			c-0.252-0.156-0.792-0.384-1.523-0.384c-1.103,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
			c1.367,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.779,0-1.631-0.24-2.062-0.528L72.685,317.926z"/>
		<path d="M78.613,317.998c0.3,0.18,0.983,0.479,1.727,0.479c1.343,0,1.775-0.852,1.763-1.511c-0.012-1.091-0.996-1.559-2.015-1.559
			H79.5v-0.792h0.587c0.768,0,1.739-0.396,1.739-1.319c0-0.624-0.396-1.175-1.367-1.175c-0.624,0-1.224,0.276-1.559,0.516
			l-0.288-0.768c0.42-0.3,1.211-0.6,2.051-0.6c1.535,0,2.231,0.912,2.231,1.859c0,0.816-0.492,1.5-1.439,1.847V315
			c0.959,0.18,1.727,0.899,1.739,1.991c0,1.248-0.983,2.339-2.842,2.339c-0.875,0-1.643-0.276-2.027-0.528L78.613,317.998z"/>
	</g>
</g>
<g id="S2">
	
		<radialGradient id="S2_path1_1_" cx="53.8486" cy="-372.8091" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="S2_path1" fill="url(#S2_path1_1_)" stroke="#000000" d="M103.256,218.705c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C91.918,208.23,103.256,212.918,103.256,218.705z"/>
	<g>
		<path d="M72.685,220.956c0.467,0.3,1.139,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.432-1.187-1.523-1.595
			c-1.319-0.48-2.135-1.176-2.135-2.303c0-1.259,1.043-2.195,2.614-2.195c0.815,0,1.427,0.192,1.775,0.396l-0.288,0.852
			c-0.252-0.156-0.792-0.384-1.523-0.384c-1.103,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
			c1.367,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.779,0-1.631-0.24-2.062-0.528L72.685,220.956z"/>
		<path d="M78.361,222.228v-0.647l0.828-0.804c1.991-1.895,2.902-2.902,2.902-4.078c0-0.792-0.372-1.523-1.535-1.523
			c-0.708,0-1.295,0.36-1.655,0.66l-0.336-0.744c0.528-0.444,1.307-0.792,2.195-0.792c1.679,0,2.387,1.151,2.387,2.267
			c0,1.439-1.043,2.603-2.687,4.186l-0.612,0.576v0.024h3.49v0.875H78.361z"/>
	</g>
</g>
<g>
	
		<radialGradient id="S1_path2_1_" cx="53.8486" cy="-499.8145" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="S1_path2" fill="url(#S1_path2_1_)" stroke="#000000" d="M103.256,137.955c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C91.918,127.48,103.256,132.168,103.256,137.955z"/>
	<g>
		<path d="M72.685,140.206c0.467,0.3,1.139,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.432-1.187-1.523-1.595
			c-1.319-0.48-2.135-1.176-2.135-2.303c0-1.259,1.043-2.195,2.614-2.195c0.815,0,1.427,0.192,1.775,0.396l-0.288,0.852
			c-0.252-0.156-0.792-0.384-1.523-0.384c-1.103,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
			c1.367,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.779,0-1.631-0.24-2.062-0.528L72.685,140.206z"/>
		<path d="M80.652,134.665h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V134.665z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_2_" cx="235.1807" cy="-372.8105" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_8_" fill="url(#path16609_2_)" stroke="#000000" d="M392.173,218.704c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C380.835,208.229,392.173,212.917,392.173,218.704z"/>
	<g>
		<path d="M352.893,221.375c0,1.343-0.277,2.147-0.828,2.663c-0.576,0.516-1.391,0.696-2.123,0.696c-0.695,0-1.463-0.168-1.932-0.48
			l0.266-0.815c0.383,0.252,0.982,0.468,1.703,0.468c1.078,0,1.869-0.564,1.869-2.039v-0.636h-0.023
			c-0.311,0.54-0.947,0.972-1.846,0.972c-1.439,0-2.471-1.223-2.471-2.831c0-1.967,1.283-3.07,2.625-3.07
			c1.008,0,1.549,0.516,1.812,0.996h0.023l0.035-0.875h0.936c-0.035,0.408-0.047,0.887-0.047,1.583V221.375z M351.836,218.713
			c0-0.18-0.012-0.336-0.059-0.468c-0.193-0.624-0.697-1.127-1.477-1.127c-1.006,0-1.727,0.852-1.727,2.195
			c0,1.14,0.588,2.087,1.715,2.087c0.66,0,1.248-0.408,1.463-1.079c0.061-0.18,0.084-0.384,0.084-0.564V218.713z"/>
		<path d="M354.635,213.712h1.055v8.515h-1.055V213.712z"/>
		<path d="M357.852,216.422l1.258,3.43c0.145,0.384,0.289,0.839,0.385,1.187h0.023c0.107-0.348,0.229-0.792,0.371-1.211l1.152-3.406
			h1.115l-1.584,4.138c-0.754,1.991-1.27,2.998-1.99,3.634c-0.527,0.444-1.031,0.624-1.295,0.672l-0.264-0.875
			c0.264-0.084,0.611-0.252,0.924-0.516c0.287-0.228,0.635-0.635,0.887-1.175c0.049-0.108,0.084-0.192,0.084-0.251
			c0-0.06-0.023-0.144-0.084-0.276l-2.135-5.349H357.852z"/>
		<path d="M367.137,222.023c-0.275,0.132-0.887,0.336-1.668,0.336c-1.75,0-2.889-1.188-2.889-2.962c0-1.787,1.223-3.094,3.117-3.094
			c0.623,0,1.176,0.156,1.463,0.312l-0.24,0.803c-0.25-0.132-0.646-0.275-1.223-0.275c-1.33,0-2.051,0.995-2.051,2.194
			c0,1.343,0.863,2.171,2.016,2.171c0.6,0,0.994-0.144,1.295-0.276L367.137,222.023z"/>
		<path d="M368.891,219.517c0.023,1.427,0.924,2.015,1.99,2.015c0.756,0,1.225-0.132,1.607-0.3l0.191,0.756
			c-0.371,0.168-1.02,0.372-1.941,0.372c-1.787,0-2.855-1.188-2.855-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
			c0,0.216-0.012,0.372-0.035,0.492H368.891z M371.984,218.761c0.012-0.66-0.275-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
			H371.984z"/>
		<path d="M374.314,218.233c0-0.684-0.012-1.271-0.049-1.811h0.924l0.049,1.151h0.035c0.264-0.78,0.912-1.271,1.619-1.271
			c0.109,0,0.191,0.012,0.289,0.024v0.996c-0.109-0.024-0.217-0.024-0.361-0.024c-0.742,0-1.271,0.552-1.414,1.343
			c-0.023,0.144-0.037,0.324-0.037,0.492v3.094h-1.055V218.233z"/>
		<path d="M383.371,219.277c0,2.146-1.498,3.082-2.891,3.082c-1.559,0-2.781-1.151-2.781-2.986c0-1.931,1.283-3.07,2.877-3.07
			C382.244,216.302,383.371,217.514,383.371,219.277z M378.777,219.336c0,1.271,0.721,2.231,1.752,2.231
			c1.008,0,1.762-0.947,1.762-2.255c0-0.983-0.49-2.219-1.738-2.219C379.318,217.094,378.777,218.245,378.777,219.336z"/>
		<path d="M384.707,213.712h1.055v8.515h-1.055V213.712z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_3_" cx="235.1807" cy="-61.6772" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -7.8557 455.7381)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_1_" fill="url(#path16609_3_)" stroke="#000000" d="M392.173,416.521c0,5.787-11.338,10.479-25.316,10.479
		c-13.98,0-25.314-4.689-25.314-10.479c0-5.787,11.334-10.475,25.314-10.475C380.835,406.047,392.173,410.734,392.173,416.521z"/>
	<g>
		<path d="M349.066,417.334c0.025,1.428,0.924,2.016,1.992,2.016c0.756,0,1.223-0.132,1.607-0.3l0.191,0.755
			c-0.373,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
			c0,0.216-0.014,0.372-0.037,0.491H349.066z M352.162,416.579c0.012-0.66-0.277-1.703-1.463-1.703c-1.08,0-1.535,0.972-1.619,1.703
			H352.162z"/>
		<path d="M355.762,412.849v1.392h1.512v0.803h-1.512v3.131c0,0.72,0.205,1.128,0.793,1.128c0.287,0,0.455-0.024,0.611-0.072
			l0.047,0.804c-0.203,0.071-0.527,0.144-0.936,0.144c-0.49,0-0.887-0.168-1.139-0.443c-0.287-0.324-0.408-0.84-0.408-1.523v-3.167
			h-0.898v-0.803h0.898v-1.08L355.762,412.849z"/>
		<path d="M358.463,411.529h1.055v3.635h0.025c0.168-0.301,0.432-0.576,0.756-0.756c0.311-0.18,0.684-0.288,1.078-0.288
			c0.779,0,2.027,0.479,2.027,2.471v3.454h-1.055v-3.334c0-0.936-0.35-1.715-1.344-1.715c-0.684,0-1.211,0.479-1.416,1.043
			c-0.059,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V411.529z"/>
		<path d="M369.201,418.653c0,0.504,0.023,0.996,0.084,1.392h-0.947l-0.084-0.731h-0.037c-0.324,0.456-0.947,0.863-1.775,0.863
			c-1.174,0-1.773-0.827-1.773-1.667c0-1.403,1.246-2.171,3.49-2.159v-0.119c0-0.468-0.133-1.344-1.32-1.331
			c-0.551,0-1.115,0.155-1.523,0.431l-0.24-0.707c0.48-0.3,1.188-0.504,1.92-0.504c1.775,0,2.207,1.211,2.207,2.362V418.653z
			 M368.182,417.083c-1.152-0.024-2.459,0.18-2.459,1.307c0,0.696,0.455,1.008,0.984,1.008c0.768,0,1.258-0.479,1.426-0.972
			c0.037-0.12,0.049-0.24,0.049-0.336V417.083z"/>
		<path d="M370.908,415.812c0-0.612-0.014-1.092-0.049-1.571h0.936l0.061,0.959h0.023c0.287-0.539,0.959-1.079,1.918-1.079
			c0.805,0,2.051,0.479,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.223,0.491-1.414,1.079
			c-0.049,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V415.812z"/>
		<path d="M382.82,417.095c0,2.146-1.498,3.082-2.891,3.082c-1.559,0-2.781-1.151-2.781-2.986c0-1.931,1.283-3.07,2.877-3.07
			C381.693,414.12,382.82,415.331,382.82,417.095z M378.227,417.154c0,1.271,0.721,2.231,1.752,2.231
			c1.008,0,1.762-0.948,1.762-2.255c0-0.983-0.49-2.219-1.738-2.219C378.768,414.912,378.227,416.063,378.227,417.154z"/>
		<path d="M384.156,411.529h1.055v8.516h-1.055V411.529z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="326.234" y1="218.705" x2="102.921" y2="218.706"/>
		<polygon points="323.426,222.408 324.998,218.705 323.426,215.001 332.203,218.705 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="326.234" y1="416.523" x2="102.921" y2="416.523"/>
		<polygon points="323.426,420.227 324.998,416.523 323.426,412.819 332.203,416.523 		"/>
	</g>
</g>
<g id="A3">
	
		<radialGradient id="A3_path1_1_" cx="96.0664" cy="-516.5049" r="16.186" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="A3_path1" fill="url(#A3_path1_1_)" stroke="#000000" d="M169.365,152.776c0,4.584-7.803,8.301-17.422,8.301
		c-9.624,0-17.423-3.715-17.423-8.301c0-4.585,7.8-8.299,17.423-8.299C161.562,144.479,169.365,148.192,169.365,152.776z"/>
	<g>
		<path d="M147.411,153.757l-0.84,2.542h-1.079l2.759-8.083h1.247l2.759,8.083h-1.115l-0.864-2.542H147.411z M150.073,152.941
			l-0.803-2.327c-0.181-0.527-0.3-1.007-0.42-1.475h-0.024c-0.12,0.468-0.239,0.972-0.407,1.463l-0.792,2.338H150.073z"/>
		<path d="M153.328,155.101c0.3,0.18,0.983,0.479,1.727,0.479c1.344,0,1.775-0.852,1.763-1.511
			c-0.012-1.091-0.995-1.559-2.015-1.559h-0.588v-0.792h0.588c0.768,0,1.739-0.396,1.739-1.319c0-0.624-0.396-1.175-1.367-1.175
			c-0.624,0-1.224,0.276-1.56,0.516l-0.287-0.768c0.419-0.3,1.211-0.6,2.051-0.6c1.535,0,2.23,0.912,2.23,1.859
			c0,0.816-0.492,1.5-1.439,1.847v0.024c0.96,0.18,1.728,0.899,1.739,1.991c0,1.248-0.983,2.339-2.843,2.339
			c-0.875,0-1.643-0.276-2.026-0.528L153.328,155.101z"/>
	</g>
</g>
<g id="A2">
	
		<radialGradient id="A2_path1_1_" cx="96.0664" cy="-441.2148" r="16.186" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="A2_path1" fill="url(#A2_path1_1_)" stroke="#000000" d="M169.365,190.7c0,4.584-7.803,8.301-17.422,8.301
		c-9.624,0-17.423-3.715-17.423-8.301c0-4.585,7.8-8.299,17.423-8.299C161.562,182.402,169.365,186.116,169.365,190.7z"/>
	<g>
		<path d="M147.412,191.68l-0.84,2.542h-1.08l2.76-8.083h1.246l2.76,8.083h-1.115l-0.865-2.542H147.412z M150.074,190.864
			l-0.803-2.327c-0.182-0.527-0.301-1.007-0.42-1.475h-0.025c-0.119,0.468-0.238,0.972-0.406,1.463l-0.793,2.338H150.074z"/>
		<path d="M153.076,194.223v-0.647l0.828-0.804c1.99-1.895,2.902-2.902,2.902-4.078c0-0.792-0.373-1.523-1.535-1.523
			c-0.707,0-1.295,0.36-1.656,0.66l-0.336-0.744c0.529-0.444,1.309-0.792,2.195-0.792c1.68,0,2.387,1.151,2.387,2.267
			c0,1.439-1.043,2.603-2.686,4.186l-0.611,0.576v0.024h3.488v0.875H153.076z"/>
	</g>
</g>
<g id="N2">
	
		<radialGradient id="N2_path1_1_" cx="149.7734" cy="-441.2148" r="16.1858" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="N2_path1" fill="url(#N2_path1_1_)" stroke="#000000" d="M228.257,190.7c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.585,7.8-8.299,17.423-8.299C220.454,182.402,228.257,186.116,228.257,190.7z"/>
	<g>
		<path d="M204.996,194.223v-8.083h1.15l2.58,4.09c0.588,0.947,1.066,1.799,1.439,2.626l0.035-0.012
			c-0.096-1.079-0.119-2.062-0.119-3.322v-3.382h0.982v8.083h-1.055l-2.566-4.102c-0.564-0.9-1.104-1.823-1.5-2.699l-0.035,0.012
			c0.059,1.019,0.07,1.991,0.07,3.334v3.454H204.996z"/>
		<path d="M212.52,194.223v-0.647l0.828-0.804c1.99-1.895,2.902-2.902,2.902-4.078c0-0.792-0.373-1.523-1.535-1.523
			c-0.707,0-1.295,0.36-1.656,0.66l-0.336-0.744c0.529-0.444,1.309-0.792,2.195-0.792c1.68,0,2.387,1.151,2.387,2.267
			c0,1.439-1.043,2.603-2.686,4.186l-0.611,0.576v0.024h3.488v0.875H212.52z"/>
	</g>
</g>
<g id="N1">
	
		<radialGradient id="N1_path1_1_" cx="220.957" cy="-441.2148" r="16.1858" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="N1_path1" fill="url(#N1_path1_1_)" stroke="#000000" d="M306.312,190.7c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.585,7.8-8.299,17.423-8.299C298.509,182.402,306.312,186.116,306.312,190.7z"/>
	<g>
		<path d="M283.051,194.224v-8.083h1.15l2.58,4.09c0.588,0.947,1.066,1.799,1.439,2.626l0.035-0.012
			c-0.096-1.079-0.119-2.062-0.119-3.322v-3.382h0.982v8.083h-1.055l-2.566-4.102c-0.564-0.9-1.104-1.823-1.5-2.699l-0.035,0.012
			c0.059,1.019,0.07,1.991,0.07,3.334v3.454H283.051z"/>
		<path d="M292.865,187.411h-0.023l-1.355,0.732l-0.205-0.804l1.703-0.912h0.9v7.796h-1.02V187.411z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_4_" cx="96.0669" cy="-251.6963" r="16.1858" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_14_" fill="url(#path16609_4_)" stroke="#000000" d="M169.365,286.16c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.585,7.8-8.299,17.423-8.299C161.562,277.862,169.365,281.576,169.365,286.16z"/>
	<g>
		<path d="M146.104,289.683V281.6h1.151l2.579,4.09c0.588,0.947,1.067,1.799,1.439,2.626l0.035-0.012
			c-0.096-1.079-0.119-2.062-0.119-3.322V281.6h0.983v8.083h-1.056l-2.566-4.102c-0.563-0.9-1.104-1.823-1.499-2.699l-0.036,0.012
			c0.06,1.019,0.071,1.991,0.071,3.334v3.454H146.104z"/>
		<path d="M153.628,289.683v-0.647l0.827-0.804c1.991-1.895,2.902-2.902,2.902-4.078c0-0.792-0.372-1.523-1.535-1.523
			c-0.707,0-1.295,0.36-1.655,0.66l-0.336-0.744c0.528-0.444,1.308-0.792,2.195-0.792c1.679,0,2.387,1.151,2.387,2.267
			c0,1.439-1.044,2.603-2.687,4.186l-0.611,0.576v0.024h3.489v0.875H153.628z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_5_" cx="96.0669" cy="-319.7593" r="16.186" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_13_" fill="url(#path16609_5_)" stroke="#000000" d="M169.365,251.876c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.585,7.8-8.299,17.423-8.299C161.562,243.579,169.365,247.292,169.365,251.876z"/>
	<g>
		<path d="M146.104,255.4v-8.083h1.151l2.579,4.09c0.588,0.947,1.067,1.799,1.439,2.626l0.035-0.012
			c-0.096-1.079-0.119-2.062-0.119-3.322v-3.382h0.983v8.083h-1.056l-2.566-4.102c-0.563-0.9-1.104-1.823-1.499-2.699l-0.036,0.012
			c0.06,1.019,0.071,1.991,0.071,3.334v3.454H146.104z"/>
		<path d="M155.918,248.587h-0.023l-1.355,0.732l-0.204-0.804l1.703-0.912h0.899v7.796h-1.02V248.587z"/>
	</g>
</g>
<g>
	
		<radialGradient id="A3_path2_1_" cx="96.0669" cy="-139.7671" r="16.186" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="A3_path2" fill="url(#A3_path2_1_)" stroke="#000000" d="M169.365,342.538c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.585,7.8-8.299,17.423-8.299C161.562,334.24,169.365,337.954,169.365,342.538z"/>
	<g>
		<path d="M147.41,343.519l-0.84,2.542h-1.078l2.758-8.083h1.248l2.758,8.083h-1.115l-0.863-2.542H147.41z M150.072,342.703
			l-0.803-2.327c-0.18-0.527-0.299-1.007-0.42-1.475h-0.023c-0.121,0.468-0.24,0.972-0.408,1.463l-0.791,2.338H150.072z"/>
		<path d="M153.328,344.862c0.299,0.18,0.982,0.479,1.727,0.479c1.344,0,1.775-0.852,1.762-1.511
			c-0.012-1.091-0.994-1.559-2.014-1.559h-0.588v-0.792h0.588c0.768,0,1.738-0.396,1.738-1.319c0-0.624-0.395-1.175-1.367-1.175
			c-0.623,0-1.223,0.276-1.559,0.516l-0.287-0.768c0.418-0.3,1.211-0.6,2.051-0.6c1.535,0,2.23,0.912,2.23,1.859
			c0,0.816-0.492,1.5-1.439,1.847v0.024c0.959,0.18,1.727,0.899,1.738,1.991c0,1.248-0.982,2.339-2.842,2.339
			c-0.875,0-1.643-0.276-2.027-0.528L153.328,344.862z"/>
	</g>
</g>
<g id="A2_path2">
	
		<radialGradient id="path16609_6_" cx="96.0669" cy="-64.478" r="16.186" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_15_" fill="url(#path16609_6_)" stroke="#000000" d="M169.365,380.461c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.584,7.8-8.299,17.423-8.299C161.562,372.164,169.365,375.877,169.365,380.461z"/>
	<g>
		<path d="M147.412,381.441l-0.84,2.543h-1.08l2.76-8.084h1.246l2.76,8.084h-1.115l-0.865-2.543H147.412z M150.074,380.626
			l-0.803-2.327c-0.182-0.527-0.301-1.007-0.42-1.475h-0.025c-0.119,0.468-0.238,0.972-0.406,1.463l-0.793,2.339H150.074z"/>
		<path d="M153.076,383.984v-0.647l0.828-0.804c1.99-1.895,2.902-2.902,2.902-4.078c0-0.791-0.373-1.523-1.535-1.523
			c-0.707,0-1.295,0.36-1.656,0.66l-0.336-0.744c0.529-0.443,1.309-0.791,2.195-0.791c1.68,0,2.387,1.151,2.387,2.267
			c0,1.439-1.043,2.603-2.686,4.187l-0.611,0.575v0.024h3.488v0.875H153.076z"/>
	</g>
</g>
<g id="N2_path2">
	
		<radialGradient id="path16609_7_" cx="149.7734" cy="65.5137" r="16.1863" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_18_" fill="url(#path16609_7_)" stroke="#000000" d="M228.257,445.938c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.584,7.8-8.299,17.423-8.299C220.454,437.641,228.257,441.354,228.257,445.938z"/>
	<g>
		<path d="M204.996,449.461v-8.083h1.15l2.58,4.09c0.588,0.947,1.066,1.799,1.439,2.626l0.035-0.012
			c-0.096-1.079-0.119-2.062-0.119-3.322v-3.382h0.982v8.083h-1.055l-2.566-4.102c-0.564-0.899-1.104-1.822-1.5-2.698l-0.035,0.013
			c0.059,1.019,0.07,1.99,0.07,3.334v3.453H204.996z"/>
		<path d="M212.52,449.461v-0.646l0.828-0.805c1.99-1.895,2.902-2.902,2.902-4.077c0-0.792-0.373-1.523-1.535-1.523
			c-0.707,0-1.295,0.36-1.656,0.659l-0.336-0.743c0.529-0.444,1.309-0.792,2.195-0.792c1.68,0,2.387,1.152,2.387,2.268
			c0,1.439-1.043,2.603-2.686,4.186l-0.611,0.576v0.023h3.488v0.875H212.52z"/>
	</g>
</g>
<g>
	
		<radialGradient id="N1_path2_1_" cx="220.957" cy="65.5137" r="16.1863" gradientTransform="matrix(1.0965 0 0 0.5037 46.6022 412.9396)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="N1_path2" fill="url(#N1_path2_1_)" stroke="#000000" d="M306.312,445.938c0,4.584-7.803,8.301-17.422,8.301
		c-9.623,0-17.423-3.715-17.423-8.301c0-4.584,7.8-8.299,17.423-8.299C298.509,437.641,306.312,441.354,306.312,445.938z"/>
	<g>
		<path d="M283.051,449.462v-8.083h1.15l2.58,4.09c0.588,0.947,1.066,1.799,1.439,2.626l0.035-0.013
			c-0.096-1.078-0.119-2.062-0.119-3.321v-3.382h0.982v8.083h-1.055l-2.566-4.102c-0.564-0.899-1.104-1.823-1.5-2.698l-0.035,0.012
			c0.059,1.02,0.07,1.99,0.07,3.334v3.454H283.051z"/>
		<path d="M292.865,442.649h-0.023l-1.355,0.731l-0.205-0.803l1.703-0.912h0.9v7.796h-1.02V442.649z"/>
	</g>
</g>
<g>
	<path d="M319.549,114.748c-0.372,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102c0-2.542,1.715-4.246,4.222-4.246
		c0.995,0,1.644,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.947-0.336-1.619-0.336c-1.895,0-3.154,1.211-3.154,3.334
		c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.295-0.132,1.715-0.336L319.549,114.748z"/>
	<path d="M320.979,109.195l1.259,3.43c0.144,0.384,0.288,0.839,0.384,1.187h0.024c0.107-0.348,0.228-0.792,0.371-1.211l1.151-3.406
		h1.116l-1.584,4.138c-0.755,1.991-1.271,2.998-1.99,3.634c-0.528,0.444-1.031,0.624-1.296,0.672l-0.264-0.875
		c0.264-0.084,0.611-0.252,0.924-0.516c0.288-0.228,0.636-0.635,0.888-1.175c0.048-0.108,0.084-0.192,0.084-0.251
		c0-0.06-0.024-0.144-0.084-0.276l-2.135-5.349H320.979z"/>
	<path d="M327.519,107.804v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.803c-0.203,0.072-0.527,0.144-0.936,0.144c-0.491,0-0.887-0.168-1.139-0.444c-0.288-0.324-0.408-0.839-0.408-1.523v-3.167
		h-0.899v-0.803h0.899v-1.08L327.519,107.804z"/>
	<path d="M335.4,112.05c0,2.146-1.499,3.082-2.891,3.082c-1.56,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
		C334.272,109.075,335.4,110.287,335.4,112.05z M330.807,112.109c0,1.271,0.72,2.231,1.751,2.231c1.008,0,1.763-0.947,1.763-2.255
		c0-0.983-0.491-2.219-1.738-2.219C331.347,109.867,330.807,111.018,330.807,112.109z"/>
	<path d="M336.591,113.933c0.324,0.192,0.876,0.408,1.403,0.408c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.3-0.768-1.067-1.056
		c-1.056-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.003-1.703c0.588,0,1.104,0.156,1.415,0.36l-0.252,0.768
		c-0.228-0.144-0.647-0.348-1.188-0.348c-0.623,0-0.959,0.36-0.959,0.792c0,0.479,0.336,0.695,1.091,0.995
		c0.996,0.372,1.523,0.876,1.523,1.739c0,1.031-0.804,1.751-2.158,1.751c-0.636,0-1.224-0.168-1.632-0.408L336.591,113.933z"/>
	<path d="M346.74,112.05c0,2.146-1.499,3.082-2.891,3.082c-1.56,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
		C345.612,109.075,346.74,110.287,346.74,112.05z M342.146,112.109c0,1.271,0.72,2.231,1.751,2.231c1.008,0,1.763-0.947,1.763-2.255
		c0-0.983-0.491-2.219-1.738-2.219C342.687,109.867,342.146,111.018,342.146,112.109z"/>
	<path d="M348.075,106.485h1.055V115h-1.055V106.485z"/>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M124.245,288.326c-102.47-19.272-3.564-30.324,9.286-36.97"/>
		<polygon points="120.8,291.446 123.031,288.097 122.169,284.167 130.111,289.429 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M124.245,379.984c-102.47-19.271-3.564-30.323,9.286-36.969"/>
		<polygon points="120.8,383.104 123.031,379.756 122.169,375.825 130.111,381.088 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M179.545,343.015c102.47,19.272,3.564,30.324-9.286,36.971"/>
		<polygon points="182.989,339.895 180.76,343.243 181.62,347.174 173.679,341.911 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M283.733,204.936C251.541,234,214.578,212.183,210.835,199"/>
		<polygon points="284.13,209.567 282.816,205.764 279.166,204.069 288.164,200.936 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M285.314,431.225c-32.192-29.064-69.155-7.248-72.898,5.936"/>
		<polygon points="280.748,432.091 284.397,430.396 285.712,426.593 289.745,435.225 		"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="71.382" y1="202.04" x2="77.991" y2="187.661"/>
			<polygon points="69.19,197.941 71.898,200.917 75.92,201.035 68.889,207.463 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="87.483" y1="202.089" x2="78.698" y2="188.927"/>
			<polygon points="82.844,201.809 86.797,201.061 89.005,197.696 90.797,207.054 			"/>
		</g>
	</g>
</g>
<line fill="none" stroke="#000000" x1="77.941" y1="148.433" x2="77.941" y2="189.746"/>
</svg>
</window>