Location: Chen, Calzone, Csikasznagy, Cross, Novak, Tyson, 2004 @ 433bd6bdd21f / chen_2004.xul

Author:
Mathieu Deneux <mathieu.deneux@gmail.com>
Date:
2016-07-29 17:19:42+12:00
Desc:
Added a SEDML file
Permanent Source URI:
http://models.cellml.org/workspace/369/rawfile/433bd6bdd21f55d7379c33a17415726d0eca1615/chen_2004.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 =
  {

			
	Esp1: {
		id: "Esp1",
		y: "Esp1/Esp1",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ff9900",
		linestyle: "none"
	},

	Pds1: {
		id: "Pds1",
		y: "Pds1/Pds1",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ff00cc",
		linestyle: "none"
	},

	PPX: {
		id: "PPX",
		y: "PPX/PPX",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#cc00ff",
		linestyle: "none"
	},


	RENT: {
		id: "RENT",
		y: "RENT/RENT",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#3300ff",
		linestyle: "none"
	},


	Cdh1: {
		id: "Cdh1",
		y: "Cdh1/Cdh1",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#66ff66",
		linestyle: "none"
	},


	APC_P: {
		id: "APC_P",
		y: "APC_P/APC_P",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ffcc00",
		linestyle: "none"
	},


	Mcm1: {
		id: "Mcm1",
		y: "Mcm1/Mcm1",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ff66ff",
		linestyle: "none"
	},


	Net1P: {
		id: "Net1P",
		y: "Net1P/Net1P",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#99ffff",
		linestyle: "none"
	},


	Net1: {
		id: "Net1",
		y: "Net1/Net1",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#3300ff",
		linestyle: "none"
	},


	Cdc14: {
		id: "Cdc14",
		y: "Cdc14/Cdc14",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#00ffff",
		linestyle: "none"
	},


	Cdc15: {
		id: "Cdc15",
		y: "Cdc15/Cdc15",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ff6600",
		linestyle: "none"
	},


	Clb5_T: {
		id: "Clb5_T",
		y: "Clb5_T/Clb5_T",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#cc6600",
		linestyle: "none"
	},


	Cln2: {
		id: "Cln2",
		y: "Cln2/Cln2",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ffcccc",
		linestyle: "none"
	},


	Clb2_T: {
		id: "Clb2_T",
		y: "Clb2_T/Clb2_T",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ff3399",
		linestyle: "none"
	},


	CKl_T: {
		id: "CKl_T",
		y: "CKI_T/CKI_T",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ff0033",
		linestyle: "none"
	},


	Cdc20_T: {
		id: "Cdc20_T",
		y: "Cdc20_T/Cdc20_T",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#9966ff",
		linestyle: "none"
	},


	Cdh1_T: {
		id: "Cdh1_T",
		y: "Cdh1_T/Cdh1_T",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#ccff33",
		linestyle: "none"
	},


	Cdc20_A: {
		id: "Cdc20_A",
		y: "Cdc20_A/Cdc20_A",
		x: "environment/time",
		graph: "Traces: clickable Elements Against Time (min)",
		colour: "#99cc00",
		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>
		<line fill="none" stroke="#000000" x1="525.218" y1="132.104" x2="443.444" y2="132.104"/>
		<polygon points="522.409,135.808 523.982,132.104 522.409,128.4 531.188,132.104 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="630.86" y1="21.104" x2="582.86" y2="21.104"/>
		<polygon points="628.052,24.807 629.625,21.104 628.052,17.4 636.83,21.104 		"/>
	</g>
</g>
<g id="PPX">
	<g id="g8433_1_">
		
			<radialGradient id="PPX_path1_1_" cx="116.355" cy="95.5625" r="9.9074" gradientTransform="matrix(-1.8961 0 0 1.5107 778.1093 17.0701)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE6"/>
			<stop  offset="0.3652" style="stop-color:#AEDFE8"/>
			<stop  offset="0.5444" style="stop-color:#ABDEEC"/>
			<stop  offset="0.6833" style="stop-color:#A1DCF0"/>
			<stop  offset="0.8013" style="stop-color:#9AD0F1"/>
			<stop  offset="0.905" style="stop-color:#96B9E2"/>
			<stop  offset="0.9991" style="stop-color:#9C9BCC"/>
			<stop  offset="1" style="stop-color:#8FADDA"/>
		</radialGradient>
		<path id="PPX_path1" fill="url(#PPX_path1_1_)" stroke="#000000" d="M535.661,154.836c4.403-2.978,11.609-5.206,19.889-5.206
			c13.249,0,23.987,5.284,23.987,11.804c0,6.522-10.738,11.806-23.987,11.806c-7.614,0-15.722-2.738-20.115-5.462l7.206-6.521
			L535.661,154.836z"/>
	</g>
	<g>
		<path d="M548.666,156.969c0.503-0.084,1.162-0.156,2.002-0.156c1.031,0,1.787,0.24,2.268,0.672
			c0.432,0.384,0.707,0.971,0.707,1.691c0,0.731-0.216,1.307-0.623,1.727c-0.564,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.84-0.072v3.238h-1.043V156.969z M549.709,160.867c0.228,0.06,0.516,0.084,0.863,0.084
			c1.26,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.456,0-0.804,0.036-0.983,0.084V160.867z"/>
		<path d="M555.049,156.969c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.786,0.24,2.266,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V156.969z M556.093,160.867c0.228,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.906-1.595c-0.456,0-0.804,0.036-0.983,0.084V160.867z"/>
		<path d="M565.703,164.957l-1.043-1.787c-0.42-0.684-0.672-1.127-0.924-1.595h-0.023c-0.229,0.468-0.469,0.9-0.876,1.607
			l-0.972,1.775h-1.199l2.471-4.09l-2.375-3.994h1.211l1.068,1.895c0.3,0.527,0.527,0.936,0.743,1.367h0.036
			c0.229-0.48,0.432-0.852,0.731-1.367l1.092-1.895h1.211l-2.458,3.934l2.518,4.15H565.703z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_1_" cx="159.6045" cy="-635.543" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_2_" fill="url(#path16609_1_)" stroke="#000000" d="M136.484,132.104c0,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.476C125.146,121.629,136.484,126.316,136.484,132.104z"/>
	<g>
		<path d="M99.031,127.663c0.456-0.108,1.187-0.18,1.907-0.18c1.043,0,1.715,0.18,2.207,0.588c0.419,0.312,0.684,0.792,0.684,1.427
			c0,0.792-0.528,1.475-1.367,1.775v0.036c0.768,0.18,1.667,0.815,1.667,2.015c0,0.696-0.276,1.235-0.696,1.619
			c-0.552,0.516-1.463,0.755-2.782,0.755c-0.72,0-1.271-0.048-1.619-0.096V127.663z M100.074,130.973h0.947
			c1.091,0,1.739-0.588,1.739-1.367c0-0.936-0.708-1.319-1.763-1.319c-0.48,0-0.755,0.036-0.923,0.072V130.973z M100.074,134.835
			c0.216,0.036,0.503,0.048,0.875,0.048c1.079,0,2.075-0.396,2.075-1.571c0-1.091-0.947-1.559-2.087-1.559h-0.863V134.835z"/>
		<path d="M110.356,134.031c0,0.612,0.012,1.14,0.048,1.595h-0.936l-0.06-0.947h-0.024c-0.264,0.468-0.887,1.079-1.919,1.079
			c-0.911,0-2.003-0.516-2.003-2.542v-3.394h1.056v3.202c0,1.104,0.348,1.859,1.295,1.859c0.708,0,1.199-0.492,1.391-0.971
			c0.06-0.144,0.096-0.336,0.096-0.54v-3.55h1.056V134.031z"/>
		<path d="M112.11,127.111h1.043v3.646h0.024c0.372-0.648,1.043-1.056,1.979-1.056c1.451,0,2.458,1.199,2.458,2.95
			c0,2.075-1.319,3.106-2.614,3.106c-0.84,0-1.511-0.324-1.955-1.079h-0.024l-0.06,0.947h-0.899
			c0.024-0.396,0.048-0.983,0.048-1.499V127.111z M113.154,133.3c0,0.132,0.012,0.264,0.048,0.384
			c0.192,0.731,0.816,1.235,1.583,1.235c1.115,0,1.763-0.899,1.763-2.231c0-1.163-0.6-2.159-1.739-2.159
			c-0.708,0-1.379,0.504-1.595,1.295c-0.036,0.132-0.06,0.276-0.06,0.443V133.3z"/>
		<path d="M118.603,135.626v-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.875H118.603z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3,3" x1="112.664" y1="114.241" x2="112.664" y2="66.241"/>
		<polygon points="108.961,111.433 112.664,113.005 116.368,111.433 112.664,120.21 		"/>
	</g>
</g>
<g>
	<path d="M76.802,59.002c0.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.528L76.802,59.002z"/>
	<path d="M82.814,56.364c0-0.744-0.024-1.343-0.048-1.895h0.936l0.06,0.995h0.024c0.419-0.708,1.115-1.115,2.062-1.115
		c1.416,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.65,3.118c-0.768,0-1.439-0.336-1.787-0.912h-0.024v3.154h-1.043V56.364z
		 M83.857,57.911c0,0.156,0.012,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235c1.116,0,1.763-0.911,1.763-2.243
		c0-1.151-0.612-2.146-1.727-2.146c-0.72,0-1.403,0.503-1.595,1.295c-0.036,0.132-0.072,0.288-0.072,0.42V57.911z"/>
	<path d="M90.817,52.838c0,0.36-0.252,0.648-0.671,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.264-0.66,0.66-0.66
		C90.553,52.178,90.817,52.466,90.817,52.838z M89.642,60.274v-5.805h1.056v5.805H89.642z"/>
	<path d="M92.45,56.04c0-0.611-0.012-1.091-0.048-1.571h0.936l0.06,0.959h0.024c0.288-0.54,0.959-1.08,1.919-1.08
		c0.803,0,2.051,0.48,2.051,2.471v3.454h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.223,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49H92.45V56.04z"/>
	<path d="M104.111,51.759v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036c-0.312,0.647-1.007,1.139-1.955,1.139
		c-1.403,0-2.495-1.188-2.495-2.95c-0.012-1.931,1.2-3.106,2.603-3.106c0.9,0,1.487,0.42,1.751,0.875h0.024v-3.466H104.111z
		 M103.067,56.832c0-0.132-0.012-0.312-0.048-0.444c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.739,0.959-1.739,2.231
		c0,1.175,0.588,2.146,1.715,2.146c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V56.832z"/>
	<path d="M105.877,51.759h1.056v8.515h-1.056V51.759z"/>
	<path d="M109.297,57.563c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.607-0.3l0.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.118c1.907,0,2.399,1.655,2.399,2.723
		c0,0.216-0.012,0.372-0.036,0.492H109.297z M112.392,56.808c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H112.392z"/>
	<path d="M117.301,52.31c0.636-0.108,1.391-0.18,2.219-0.18c1.499,0,2.566,0.36,3.274,1.007c0.732,0.66,1.151,1.595,1.151,2.902
		c0,1.319-0.419,2.399-1.163,3.143c-0.768,0.755-2.015,1.163-3.586,1.163c-0.756,0-1.367-0.036-1.895-0.096V52.31z M118.345,59.458
		c0.264,0.036,0.647,0.048,1.055,0.048c2.243,0,3.442-1.247,3.442-3.43c0.012-1.907-1.067-3.118-3.274-3.118
		c-0.54,0-0.947,0.048-1.223,0.108V59.458z"/>
	<path d="M125.893,57.563c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.607-0.3l0.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.118c1.907,0,2.399,1.655,2.399,2.723
		c0,0.216-0.012,0.372-0.036,0.492H125.893z M128.987,56.808c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H128.987z"/>
	<path d="M131.425,60.274v-5.001h-0.804v-0.803h0.804v-0.276c0-0.815,0.192-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
		c0.384,0,0.696,0.084,0.899,0.168l-0.144,0.816c-0.156-0.072-0.359-0.132-0.671-0.132c-0.899,0-1.127,0.78-1.127,1.679v0.312h1.403
		v0.803h-1.403v5.001H131.425z"/>
	<path d="M135.253,57.563c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.607-0.3l0.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.118c1.907,0,2.399,1.655,2.399,2.723
		c0,0.216-0.012,0.372-0.036,0.492H135.253z M138.347,56.808c0.012-0.66-0.276-1.703-1.463-1.703c-1.079,0-1.535,0.971-1.619,1.703
		H138.347z"/>
	<path d="M144.814,60.07c-0.276,0.132-0.888,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962c0-1.787,1.224-3.094,3.119-3.094
		c0.624,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.647-0.275-1.223-0.275c-1.332,0-2.051,0.995-2.051,2.194
		c0,1.343,0.864,2.171,2.015,2.171c0.6,0,0.996-0.144,1.295-0.276L144.814,60.07z"/>
	<path d="M147.48,53.078v1.392h1.511v0.803h-1.511v3.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.204,0.072-0.528,0.144-0.936,0.144c-0.492,0-0.888-0.168-1.14-0.444c-0.288-0.324-0.408-0.839-0.408-1.523v-3.167
		h-0.899v-0.803h0.899v-1.08L147.48,53.078z"/>
</g>
<g>
	<g>
		
			<radialGradient id="path16609_6_" cx="223.1846" cy="-674.8862" r="16.186" gradientTransform="matrix(2.1665 0 0 0.6358 -260.5065 536.1827)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C1D965"/>
			<stop  offset="0.4082" style="stop-color:#C1D965"/>
			<stop  offset="0.5552" style="stop-color:#BCD766"/>
			<stop  offset="0.66" style="stop-color:#B8D665"/>
			<stop  offset="0.7448" style="stop-color:#B0D365"/>
			<stop  offset="0.8174" style="stop-color:#A8D065"/>
			<stop  offset="0.8817" style="stop-color:#9CCC66"/>
			<stop  offset="0.9398" style="stop-color:#91C964"/>
			<stop  offset="0.9915" style="stop-color:#88C662"/>
			<stop  offset="1" style="stop-color:#86C563"/>
		</radialGradient>
		<path id="path16609_4_" fill="url(#path16609_6_)" stroke="#000000" d="M257.439,107.089c0,5.786-15.416,10.478-34.424,10.478
			c-19.01,0-34.421-4.689-34.421-10.478s15.411-10.476,34.421-10.476C242.023,96.614,257.439,101.302,257.439,107.089z"/>
		<g>
			<path d="M198.836,103.415h-2.459v-0.887h5.985v0.887h-2.471v7.196h-1.055V103.415z"/>
			<path d="M202.965,107.901c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.607-0.3l0.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.492H202.965z M206.059,107.145
				c0.012-0.66-0.276-1.703-1.463-1.703c-1.079,0-1.535,0.971-1.619,1.703H206.059z"/>
			<path d="M208.389,106.377c0-0.611-0.024-1.091-0.048-1.571h0.923l0.048,0.947h0.036c0.324-0.552,0.864-1.067,1.835-1.067
				c0.78,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.419-0.576,0.66-0.756c0.348-0.264,0.719-0.408,1.271-0.408
				c0.78,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.259-1.787c-0.612,0-1.067,0.443-1.259,0.947
				c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.031v-3.478c0-0.923-0.408-1.583-1.211-1.583c-0.648,0-1.14,0.527-1.308,1.055
				c-0.06,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V106.377z"/>
			<path d="M220.352,103.799h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V103.799z"/>
			<path d="M227,106.989v0.768h-2.962v-0.768H227z"/>
			<path d="M234.605,110.251c-0.468,0.18-1.403,0.444-2.495,0.444c-1.223,0-2.231-0.312-3.022-1.067
				c-0.696-0.672-1.127-1.751-1.127-3.01c0-2.411,1.667-4.174,4.378-4.174c0.935,0,1.679,0.204,2.027,0.372l-0.264,0.852
				c-0.432-0.204-0.971-0.348-1.787-0.348c-1.967,0-3.25,1.223-3.25,3.25c0,2.051,1.223,3.262,3.118,3.262
				c0.684,0,1.151-0.096,1.392-0.216v-2.411h-1.631v-0.839h2.663V110.251z"/>
			<path d="M236.193,102.647c0.636-0.108,1.391-0.18,2.219-0.18c1.499,0,2.566,0.36,3.274,1.007c0.732,0.66,1.151,1.595,1.151,2.902
				c0,1.319-0.419,2.399-1.163,3.143c-0.768,0.755-2.015,1.163-3.586,1.163c-0.756,0-1.367-0.036-1.895-0.096V102.647z
				 M237.236,109.796c0.264,0.036,0.647,0.048,1.055,0.048c2.243,0,3.442-1.247,3.442-3.43c0.012-1.907-1.067-3.118-3.274-3.118
				c-0.54,0-0.947,0.048-1.223,0.108V109.796z"/>
			<path d="M244.185,102.624c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
				c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
				c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.043V102.624z M245.228,106.521c0.228,0.06,0.516,0.084,0.863,0.084
				c1.259,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.456,0-0.804,0.036-0.983,0.084V106.521z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="path16609_7_" cx="223.1846" cy="-579.1533" r="16.1858" gradientTransform="matrix(2.1665 0 0 0.6358 -260.5065 536.1827)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C1D965"/>
			<stop  offset="0.4082" style="stop-color:#C1D965"/>
			<stop  offset="0.5552" style="stop-color:#BCD766"/>
			<stop  offset="0.66" style="stop-color:#B8D665"/>
			<stop  offset="0.7448" style="stop-color:#B0D365"/>
			<stop  offset="0.8174" style="stop-color:#A8D065"/>
			<stop  offset="0.8817" style="stop-color:#9CCC66"/>
			<stop  offset="0.9398" style="stop-color:#91C964"/>
			<stop  offset="0.9915" style="stop-color:#88C662"/>
			<stop  offset="1" style="stop-color:#86C563"/>
		</radialGradient>
		<path id="path16609_3_" fill="url(#path16609_7_)" stroke="#000000" d="M257.439,167.956c0,5.786-15.416,10.478-34.424,10.478
			c-19.01,0-34.421-4.689-34.421-10.478s15.411-10.476,34.421-10.476C242.023,157.481,257.439,162.169,257.439,167.956z"/>
		<g>
			<path d="M199.85,164.282h-2.459v-0.887h5.985v0.887h-2.471v7.196h-1.055V164.282z"/>
			<path d="M203.979,168.768c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.607-0.3l0.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.492H203.979z M207.073,168.012
				c0.012-0.66-0.276-1.703-1.463-1.703c-1.079,0-1.535,0.971-1.619,1.703H207.073z"/>
			<path d="M209.403,167.245c0-0.611-0.024-1.091-0.048-1.571h0.923l0.048,0.947h0.036c0.324-0.552,0.864-1.067,1.835-1.067
				c0.78,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.419-0.576,0.66-0.756c0.348-0.264,0.719-0.408,1.271-0.408
				c0.78,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.259-1.787c-0.612,0-1.067,0.443-1.259,0.947
				c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.031V168c0-0.923-0.408-1.583-1.211-1.583c-0.648,0-1.14,0.527-1.308,1.055
				c-0.06,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V167.245z"/>
			<path d="M221.366,164.666h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V164.666z"/>
			<path d="M228.013,167.856v0.768h-2.962v-0.768H228.013z"/>
			<path d="M235.619,171.119c-0.468,0.18-1.403,0.444-2.495,0.444c-1.223,0-2.231-0.312-3.022-1.067
				c-0.696-0.672-1.127-1.751-1.127-3.01c0-2.411,1.667-4.174,4.378-4.174c0.935,0,1.679,0.204,2.027,0.372l-0.264,0.852
				c-0.432-0.204-0.971-0.348-1.787-0.348c-1.967,0-3.25,1.223-3.25,3.25c0,2.051,1.223,3.262,3.118,3.262
				c0.684,0,1.151-0.096,1.392-0.216v-2.411h-1.631v-0.839h2.663V171.119z"/>
			<path d="M238.742,164.282h-2.459v-0.887h5.985v0.887h-2.471v7.196h-1.055V164.282z"/>
			<path d="M243.17,163.491c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
				c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.564,0.587-1.451,0.888-2.471,0.888
				c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.043V163.491z M244.214,167.389c0.228,0.06,0.516,0.084,0.863,0.084
				c1.259,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.456,0-0.804,0.036-0.983,0.084V167.389z"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M265.855,108.15c28.533-1.759,43.145,59.806-7.595,61.026"/>
			<polygon points="268.431,104.281 267.089,108.074 268.887,111.674 259.897,108.518 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M180.999,169.139c-28.533,1.759-43.144-59.806,7.596-61.025"/>
			<polygon points="178.424,173.008 179.766,169.215 177.968,165.615 186.957,168.772 			"/>
		</g>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_8_" cx="316.2725" cy="-635.543" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_5_" fill="url(#path16609_8_)" stroke="#000000" d="M386.104,132.104c0,5.786-11.338,10.478-25.315,10.478
		c-13.98,0-25.315-4.689-25.315-10.478s11.334-10.476,25.315-10.476C374.766,121.629,386.104,126.316,386.104,132.104z"/>
	<g>
		<path d="M350.846,127.543h1.056v7.208h3.454v0.875h-4.51V127.543z"/>
		<path d="M357.709,128.431v1.392h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.612-0.072
			l0.048,0.803c-0.204,0.072-0.528,0.144-0.936,0.144c-0.492,0-0.888-0.168-1.14-0.444c-0.288-0.324-0.408-0.839-0.408-1.523v-3.167
			h-0.899v-0.803h0.899v-1.08L357.709,128.431z"/>
		<path d="M360.926,132.917c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.607-0.3l0.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.492H360.926z M364.02,132.161c0.012-0.66-0.276-1.703-1.463-1.703
			c-1.08,0-1.535,0.971-1.619,1.703H364.02z"/>
		<path d="M368.305,128.814h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V128.814z"/>
	</g>
</g>
<g id="Cdc15">
	
		<radialGradient id="Cdc15_path1_1_" cx="313.1504" cy="-493.8511" r="16.1858" gradientTransform="matrix(2.3899 0 0 0.8191 -387.6241 629.3701)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdc15_path1" fill="url(#Cdc15_path1_1_)" stroke="#000000" d="M398.761,224.873c0,7.454-17.006,13.498-37.974,13.498
		c-20.971,0-37.972-6.041-37.972-13.498s17.001-13.495,37.972-13.495C381.755,211.379,398.761,217.418,398.761,224.873z"/>
	<g>
		<path d="M337.913,228.144c-0.372,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L337.913,228.144z"/>
		<path d="M344.07,219.881v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036c-0.312,0.647-1.007,1.139-1.955,1.139
			c-1.403,0-2.495-1.188-2.495-2.95c-0.012-1.931,1.2-3.106,2.603-3.106c0.9,0,1.487,0.42,1.751,0.875h0.024v-3.466H344.07z
			 M343.026,224.954c0-0.132-0.012-0.312-0.048-0.444c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.739,0.959-1.739,2.231
			c0,1.175,0.588,2.146,1.715,2.146c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V224.954z"/>
		<path d="M349.974,228.192c-0.276,0.132-0.887,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962
			c0-1.787,1.224-3.094,3.119-3.094c0.624,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.647-0.275-1.223-0.275
			c-1.332,0-2.051,0.995-2.051,2.194c0,1.343,0.864,2.171,2.015,2.171c0.6,0,0.996-0.144,1.295-0.276L349.974,228.192z"/>
		<path d="M353.167,221.583h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V221.583z"/>
		<path d="M361.686,221.488h-2.975l-0.3,2.003c0.18-0.024,0.348-0.036,0.636-0.036c0.611,0,1.199,0.12,1.679,0.42
			c0.611,0.336,1.115,1.02,1.115,1.991c0,1.523-1.211,2.663-2.902,2.663c-0.852,0-1.559-0.24-1.943-0.479l0.264-0.804
			c0.324,0.192,0.959,0.432,1.679,0.432c0.983,0,1.847-0.647,1.835-1.691c0-1.007-0.684-1.715-2.231-1.715
			c-0.456,0-0.804,0.036-1.091,0.072l0.504-3.742h3.73V221.488z"/>
		<path d="M362.636,228.864l3.334-8.695h0.828l-3.358,8.695H362.636z"/>
		<path d="M374.488,224.846c-0.061-1.127-0.133-2.495-0.133-3.49h-0.023c-0.288,0.936-0.611,1.955-1.02,3.07l-1.428,3.922h-0.791
			l-1.319-3.85c-0.384-1.151-0.695-2.183-0.923-3.142h-0.024c-0.024,1.007-0.084,2.351-0.156,3.574l-0.216,3.466h-0.995l0.563-8.083
			h1.332l1.379,3.91c0.336,0.996,0.6,1.883,0.815,2.723h0.025c0.215-0.815,0.503-1.703,0.863-2.723l1.439-3.91h1.33l0.504,8.083
			h-1.031L374.488,224.846z"/>
		<path d="M381.498,224.606h-3.131v2.915h3.502v0.875h-4.558v-8.083h4.378v0.875h-3.322v2.555h3.131V224.606z"/>
		<path d="M383.228,228.396v-8.083h1.151l2.578,4.09c0.588,0.947,1.068,1.799,1.439,2.626l0.036-0.012
			c-0.097-1.079-0.12-2.062-0.12-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.061,1.019,0.072,1.991,0.072,3.334v3.454H383.228z"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3" d="M316.283,226.476c-42.186,0-89.494-25.796-94.393-48.042"/>
		<polygon points="313.474,230.179 315.047,226.476 313.474,222.771 322.252,226.476 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="Pds1_path2_1_" cx="389.9277" cy="-708.1797" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C1D965"/>
			<stop  offset="0.4082" style="stop-color:#C1D965"/>
			<stop  offset="0.5552" style="stop-color:#BCD766"/>
			<stop  offset="0.66" style="stop-color:#B8D665"/>
			<stop  offset="0.7448" style="stop-color:#B0D365"/>
			<stop  offset="0.8174" style="stop-color:#A8D065"/>
			<stop  offset="0.8817" style="stop-color:#9CCC66"/>
			<stop  offset="0.9398" style="stop-color:#91C964"/>
			<stop  offset="0.9915" style="stop-color:#88C662"/>
			<stop  offset="1" style="stop-color:#86C563"/>
		</radialGradient>
		<path id="Pds1_path2" fill="url(#Pds1_path2_1_)" stroke="#000000" d="M503.459,85.921c0,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.476C492.121,75.446,503.459,80.134,503.459,85.921z"/>
		<g>
			<path d="M467.176,81.457c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.786,0.24,2.266,0.672
				c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
				c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V81.457z M468.22,85.354c0.228,0.06,0.516,0.084,0.863,0.084
				c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.906-1.595c-0.456,0-0.804,0.036-0.983,0.084V85.354z"/>
			<path d="M478.226,80.929v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036
				c-0.312,0.647-1.008,1.139-1.955,1.139c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.602-3.106
				c0.9,0,1.488,0.42,1.752,0.875h0.023v-3.466H478.226z M477.182,86.002c0-0.132-0.012-0.312-0.048-0.444
				c-0.155-0.66-0.731-1.211-1.522-1.211c-1.092,0-1.74,0.959-1.74,2.231c0,1.175,0.588,2.146,1.716,2.146
				c0.708,0,1.354-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V86.002z"/>
			<path d="M479.848,88.377c0.324,0.192,0.876,0.408,1.404,0.408c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.301-0.768-1.068-1.056
				c-1.055-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.004-1.703c0.587,0,1.103,0.156,1.414,0.36l-0.252,0.768
				c-0.227-0.144-0.646-0.348-1.187-0.348c-0.624,0-0.96,0.36-0.96,0.792c0,0.479,0.336,0.695,1.092,0.995
				c0.995,0.372,1.523,0.876,1.523,1.739c0,1.031-0.804,1.751-2.159,1.751c-0.636,0-1.224-0.168-1.631-0.408L479.848,88.377z"/>
			<path d="M486.699,82.632h-0.023l-1.355,0.732l-0.204-0.804l1.702-0.912h0.9v7.796h-1.02V82.632z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="Esp1_path2_1_" cx="389.9277" cy="-740.9727" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C1D965"/>
			<stop  offset="0.4082" style="stop-color:#C1D965"/>
			<stop  offset="0.5552" style="stop-color:#BCD766"/>
			<stop  offset="0.66" style="stop-color:#B8D665"/>
			<stop  offset="0.7448" style="stop-color:#B0D365"/>
			<stop  offset="0.8174" style="stop-color:#A8D065"/>
			<stop  offset="0.8817" style="stop-color:#9CCC66"/>
			<stop  offset="0.9398" style="stop-color:#91C964"/>
			<stop  offset="0.9915" style="stop-color:#88C662"/>
			<stop  offset="1" style="stop-color:#86C563"/>
		</radialGradient>
		<path id="Esp1_path2" fill="url(#Esp1_path2_1_)" stroke="#000000" d="M503.459,65.071c0,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.476C492.121,54.597,503.459,59.284,503.459,65.071z"/>
		<g>
			<path d="M471.35,64.805h-3.13v2.915h3.502v0.875h-4.558v-8.083h4.378v0.875h-3.322v2.555h3.13V64.805z"/>
			<path d="M472.9,67.527c0.323,0.192,0.875,0.408,1.402,0.408c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.299-0.768-1.066-1.056
				c-1.056-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.002-1.703c0.588,0,1.104,0.156,1.416,0.36l-0.252,0.768
				c-0.229-0.144-0.648-0.348-1.188-0.348c-0.624,0-0.959,0.36-0.959,0.792c0,0.479,0.335,0.695,1.091,0.995
				c0.995,0.372,1.522,0.876,1.522,1.739c0,1.031-0.803,1.751-2.158,1.751c-0.636,0-1.223-0.168-1.631-0.408L472.9,67.527z"/>
			<path d="M477.796,64.685c0-0.744-0.024-1.343-0.048-1.895h0.936l0.06,0.995h0.024c0.42-0.708,1.115-1.115,2.062-1.115
				c1.416,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.65,3.118c-0.768,0-1.439-0.336-1.787-0.912h-0.023v3.154h-1.044V64.685z
				 M478.84,66.232c0,0.156,0.012,0.3,0.047,0.432c0.192,0.732,0.828,1.235,1.584,1.235c1.115,0,1.763-0.911,1.763-2.243
				c0-1.151-0.611-2.146-1.728-2.146c-0.719,0-1.402,0.503-1.595,1.295c-0.036,0.132-0.071,0.288-0.071,0.42V66.232z"/>
			<path d="M486.578,61.782h-0.023l-1.355,0.732l-0.204-0.804l1.703-0.912h0.899v7.796h-1.02V61.782z"/>
		</g>
	</g>
</g>
<g id="Esp1">
	
		<radialGradient id="Esp1_path1_1_" cx="439.7627" cy="-810.127" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Esp1_path1" fill="url(#Esp1_path1_1_)" stroke="#000000" d="M582.86,21.103c0,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.476C571.522,10.628,582.86,15.316,582.86,21.103z"/>
	<g>
		<path d="M550.75,20.836h-3.129v2.915h3.502v0.875h-4.559v-8.083h4.379v0.875h-3.322v2.555h3.129V20.836z"/>
		<path d="M552.301,23.559c0.324,0.192,0.875,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.055-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.003-1.703c0.587,0,1.103,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.092,0.995
			c0.994,0.372,1.522,0.876,1.522,1.739c0,1.031-0.804,1.751-2.159,1.751c-0.635,0-1.223-0.168-1.631-0.408L552.301,23.559z"/>
		<path d="M557.197,20.717c0-0.744-0.024-1.343-0.049-1.895h0.936l0.061,0.995h0.023c0.42-0.708,1.115-1.115,2.062-1.115
			c1.416,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.65,3.118c-0.768,0-1.439-0.336-1.787-0.912h-0.023v3.154h-1.043V20.717z
			 M558.24,22.264c0,0.156,0.012,0.3,0.048,0.432c0.192,0.732,0.827,1.235,1.583,1.235c1.115,0,1.764-0.911,1.764-2.243
			c0-1.151-0.611-2.146-1.728-2.146c-0.72,0-1.403,0.503-1.595,1.295c-0.036,0.132-0.072,0.288-0.072,0.42V22.264z"/>
		<path d="M565.979,17.814h-0.024l-1.355,0.732l-0.203-0.804l1.703-0.912h0.899v7.796h-1.02V17.814z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M503.4,76.231c54.032,0,54.032,38.647,54.032,38.647"/>
			<polygon points="553.729,112.07 557.433,113.643 561.137,112.07 557.433,120.848 			"/>
			<polygon points="506.209,72.528 504.637,76.231 506.209,79.935 497.432,76.231 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M503.513,77.497c54.032,0,54.032-38.647,54.032-38.647"/>
			<polygon points="561.248,41.659 557.545,40.086 553.841,41.659 557.545,32.881 			"/>
		</g>
	</g>
</g>
<g id="g3355_1_">
	
		<radialGradient id="path32439_1_" cx="147.5249" cy="1113.8149" r="14.7098" gradientTransform="matrix(1 0 0 -1 330.6191 1235.4424)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ABD053"/>
		<stop  offset="0.4082" style="stop-color:#A9D051"/>
		<stop  offset="0.5552" style="stop-color:#A5CE52"/>
		<stop  offset="0.66" style="stop-color:#9ECC53"/>
		<stop  offset="0.7448" style="stop-color:#92C851"/>
		<stop  offset="0.8174" style="stop-color:#83C34E"/>
		<stop  offset="0.8817" style="stop-color:#76C052"/>
		<stop  offset="0.9398" style="stop-color:#64BC54"/>
		<stop  offset="0.9915" style="stop-color:#58B952"/>
		<stop  offset="1" style="stop-color:#58B952"/>
	</radialGradient>
	<path id="path32439_2_" fill="url(#path32439_1_)" stroke="#000000" stroke-miterlimit="3.8637" d="M460.727,121.723
		c0-6.334,7.801-11.471,17.418-11.471c9.619,0,17.518,5.138,17.416,11.471c-0.021,1.307-1.021,2.557-1.898,3.082
		c0,0-12.318-3.891-16.582,0c-2.361,2.154,0,8.197,0,8.197C468.988,132.012,460.727,127.338,460.727,121.723z"/>
	<g enable-background="new    ">
		<path d="M470.811,120.735c0.391,0.25,0.95,0.439,1.55,0.439c0.89,0,1.409-0.459,1.409-1.148c0-0.62-0.359-0.99-1.27-1.33
			c-1.1-0.399-1.779-0.979-1.779-1.919c0-1.049,0.87-1.829,2.18-1.829c0.68,0,1.189,0.16,1.479,0.33l-0.239,0.71
			c-0.21-0.13-0.659-0.32-1.27-0.32c-0.919,0-1.27,0.55-1.27,1.01c0,0.63,0.41,0.939,1.339,1.299c1.141,0.45,1.709,0.99,1.709,1.979
			c0,1.039-0.759,1.949-2.348,1.949c-0.65,0-1.359-0.2-1.719-0.44L470.811,120.735z"/>
		<path d="M475.852,115.158c0.379-0.09,0.989-0.149,1.589-0.149c0.87,0,1.429,0.149,1.839,0.489c0.35,0.26,0.57,0.66,0.57,1.189
			c0,0.66-0.44,1.229-1.14,1.479v0.03c0.64,0.149,1.39,0.68,1.39,1.679c0,0.58-0.23,1.02-0.58,1.35
			c-0.46,0.43-1.22,0.629-2.318,0.629c-0.6,0-1.061-0.04-1.35-0.079V115.158z M476.721,117.917h0.789c0.91,0,1.449-0.489,1.449-1.14
			c0-0.779-0.589-1.099-1.469-1.099c-0.399,0-0.629,0.029-0.77,0.06V117.917z M476.721,121.135c0.18,0.029,0.42,0.039,0.73,0.039
			c0.898,0,1.729-0.329,1.729-1.309c0-0.91-0.789-1.3-1.739-1.3h-0.72V121.135z"/>
		<path d="M481.262,115.058h3.627v0.729h-2.748v2.239h2.539v0.72h-2.539v3.048h-0.879V115.058z"/>
	</g>
</g>
<g id="Mcm1">
	
		<radialGradient id="Mcm1_path1_1_" cx="147.5249" cy="1090.5806" r="14.7098" gradientTransform="matrix(1 0 0 -1 330.6191 1235.4424)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ABD053"/>
		<stop  offset="0.4082" style="stop-color:#A9D051"/>
		<stop  offset="0.5552" style="stop-color:#A5CE52"/>
		<stop  offset="0.66" style="stop-color:#9ECC53"/>
		<stop  offset="0.7448" style="stop-color:#92C851"/>
		<stop  offset="0.8174" style="stop-color:#83C34E"/>
		<stop  offset="0.8817" style="stop-color:#76C052"/>
		<stop  offset="0.9398" style="stop-color:#64BC54"/>
		<stop  offset="0.9915" style="stop-color:#58B952"/>
		<stop  offset="1" style="stop-color:#58B952"/>
	</radialGradient>
	<path id="Mcm1_path1" fill="url(#Mcm1_path1_1_)" stroke="#000000" stroke-miterlimit="3.8637" d="M460.727,144.958
		c0-6.334,7.801-11.471,17.418-11.471c9.619,0,17.518,5.138,17.416,11.471c-0.021,1.307-1.021,2.557-1.898,3.082
		c0,0-12.318-3.891-16.582,0c-2.361,2.154,0,8.197,0,8.197C468.988,155.247,460.727,150.573,460.727,144.958z"/>
	<g enable-background="new    ">
		<path d="M471.184,142.071c-0.049-0.939-0.109-2.079-0.109-2.909h-0.02c-0.24,0.78-0.51,1.63-0.85,2.559l-1.189,3.269h-0.66
			l-1.1-3.208c-0.319-0.96-0.58-1.819-0.77-2.619h-0.02c-0.02,0.84-0.07,1.959-0.13,2.979l-0.181,2.889h-0.829l0.47-6.736h1.109
			l1.149,3.258c0.28,0.83,0.5,1.569,0.68,2.27h0.021c0.18-0.68,0.42-1.42,0.719-2.27l1.199-3.258h1.109l0.42,6.736h-0.859
			L471.184,142.071z"/>
		<path d="M477.023,144.859c-0.229,0.11-0.739,0.28-1.389,0.28c-1.459,0-2.408-0.99-2.408-2.479c0-1.488,1.02-2.578,2.598-2.578
			c0.52,0,0.98,0.13,1.22,0.26l-0.2,0.67c-0.209-0.11-0.539-0.23-1.02-0.23c-1.109,0-1.709,0.83-1.709,1.84
			c0,1.119,0.72,1.809,1.68,1.809c0.5,0,0.829-0.12,1.079-0.229L477.023,144.859z"/>
		<path d="M478.056,141.5c0-0.51-0.021-0.909-0.04-1.309h0.77l0.04,0.779h0.03c0.27-0.46,0.719-0.89,1.529-0.89
			c0.649,0,1.148,0.399,1.359,0.97h0.02c0.15-0.28,0.35-0.48,0.55-0.63c0.29-0.22,0.6-0.34,1.06-0.34c0.649,0,1.6,0.42,1.6,2.099
			v2.849h-0.86v-2.738c0-0.939-0.35-1.489-1.05-1.489c-0.51,0-0.889,0.37-1.049,0.789c-0.04,0.13-0.07,0.29-0.07,0.44v2.998h-0.859
			v-2.898c0-0.779-0.34-1.329-1.01-1.329c-0.539,0-0.949,0.439-1.089,0.879c-0.05,0.131-0.069,0.28-0.069,0.431v2.918h-0.86V141.5z"
			/>
		<path d="M488.025,139.352h-0.021l-1.13,0.609l-0.17-0.67l1.42-0.759h0.749v6.496h-0.849V139.352z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="525.218" y1="161.436" x2="443.444" y2="161.436"/>
		<polygon points="522.409,165.139 523.982,161.436 522.409,157.731 531.188,161.436 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="756" y1="132.104" x2="579.6" y2="132.104"/>
		<polygon points="753.191,135.807 754.764,132.104 753.191,128.4 761.969,132.104 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="756" y1="161.435" x2="579.6" y2="161.435"/>
		<polygon points="753.191,165.138 754.764,161.435 753.191,157.73 761.969,161.435 		"/>
	</g>
</g>
<g id="Pds1">
	
		<radialGradient id="Pds1_path1_1_" cx="439.7627" cy="-635.543" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Pds1_path1" fill="url(#Pds1_path1_1_)" stroke="#000000" d="M582.86,132.104c0,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.476C571.522,121.629,582.86,126.316,582.86,132.104z"/>
	<g>
		<path d="M546.577,127.639c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.217,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V127.639z M547.621,131.537c0.227,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.455,0-0.803,0.036-0.982,0.084V131.537z"/>
		<path d="M557.627,127.112v7.016c0,0.516,0.023,1.103,0.047,1.499h-0.936l-0.047-1.007h-0.037
			c-0.312,0.647-1.007,1.139-1.955,1.139c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.603-3.106
			c0.899,0,1.487,0.42,1.751,0.875h0.024v-3.466H557.627z M556.583,132.185c0-0.132-0.013-0.312-0.048-0.444
			c-0.156-0.66-0.732-1.211-1.523-1.211c-1.092,0-1.739,0.959-1.739,2.231c0,1.175,0.588,2.146,1.716,2.146
			c0.707,0,1.354-0.479,1.547-1.259c0.035-0.144,0.048-0.288,0.048-0.456V132.185z"/>
		<path d="M559.249,134.56c0.323,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.187-0.348c-0.625,0-0.96,0.36-0.96,0.792c0,0.479,0.335,0.695,1.091,0.995
			c0.996,0.372,1.523,0.876,1.523,1.739c0,1.031-0.803,1.751-2.158,1.751c-0.637,0-1.224-0.168-1.631-0.408L559.249,134.56z"/>
		<path d="M566.1,128.814h-0.023l-1.355,0.732l-0.203-0.804l1.702-0.912h0.899v7.796h-1.02V128.814z"/>
	</g>
</g>
<g id="Cdh1">
	
		<radialGradient id="Cdh1_path1_1_" cx="494.7266" cy="-662.6362" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdh1_path1" fill="url(#Cdh1_path1_1_)" stroke="#000000" d="M670.434,114.877c0,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.476C659.096,104.403,670.434,109.09,670.434,114.877z"/>
	<g>
		<path d="M640.824,118.149c-0.371,0.192-1.15,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.542,1.716-4.246,4.222-4.246
			c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336c-1.896,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.336L640.824,118.149z"/>
		<path d="M646.981,109.886v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036
			c-0.312,0.647-1.008,1.139-1.955,1.139c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.602-3.106
			c0.9,0,1.488,0.42,1.752,0.875h0.023v-3.466H646.981z M645.938,114.959c0-0.132-0.012-0.312-0.048-0.444
			c-0.155-0.66-0.731-1.211-1.522-1.211c-1.092,0-1.74,0.959-1.74,2.231c0,1.175,0.588,2.146,1.716,2.146
			c0.708,0,1.354-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V114.959z"/>
		<path d="M648.748,109.886h1.055v3.634h0.024c0.168-0.3,0.432-0.576,0.755-0.755c0.312-0.18,0.684-0.288,1.08-0.288
			c0.779,0,2.027,0.48,2.027,2.471v3.454h-1.057v-3.334c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.211,0.48-1.415,1.043
			c-0.061,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V109.886z"/>
		<path d="M657.363,111.588h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V111.588z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_9_" cx="532.7451" cy="-662.6362" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_12_" fill="url(#path16609_9_)" stroke="#000000" d="M731.01,114.877c0,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.476C719.672,104.403,731.01,109.09,731.01,114.877z"/>
	<g>
		<path d="M697.071,115.858l-0.839,2.542h-1.08l2.758-8.083h1.248l2.758,8.083h-1.115l-0.863-2.542H697.071z M699.734,115.042
			l-0.805-2.327c-0.18-0.527-0.299-1.007-0.419-1.475h-0.024c-0.119,0.468-0.24,0.972-0.408,1.463l-0.791,2.338H699.734z"/>
		<path d="M703.107,110.413c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.786,0.24,2.266,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V110.413z M704.151,114.311c0.228,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.906-1.595c-0.456,0-0.804,0.036-0.983,0.084V114.311z"/>
		<path d="M715.129,118.149c-0.371,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.716-4.246,4.223-4.246c0.995,0,1.643,0.216,1.918,0.36l-0.264,0.852c-0.383-0.192-0.947-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.296-0.132,1.716-0.336L715.129,118.149z"/>
	</g>
</g>
<g>
	<path d="M673.677,118.868l3.334-8.695h0.827l-3.357,8.695H673.677z"/>
</g>
<g id="Cdc20_A">
	
		<radialGradient id="Cdc20_A_path1_1_" cx="493.6406" cy="-611.2832" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdc20_A_path1" fill="url(#Cdc20_A_path1_1_)" stroke="#000000" d="M668.704,147.528c0,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.476C657.366,137.053,668.704,141.741,668.704,147.528z"/>
	<g>
		<path d="M634.295,150.799c-0.371,0.192-1.15,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.542,1.716-4.246,4.222-4.246
			c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336c-1.896,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.336L634.295,150.799z"/>
		<path d="M640.452,142.536v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036
			c-0.312,0.647-1.008,1.139-1.955,1.139c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.602-3.106
			c0.9,0,1.488,0.42,1.752,0.875h0.023v-3.466H640.452z M639.408,147.609c0-0.132-0.012-0.312-0.048-0.444
			c-0.155-0.66-0.731-1.211-1.522-1.211c-1.092,0-1.74,0.959-1.74,2.231c0,1.175,0.588,2.146,1.716,2.146
			c0.708,0,1.354-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V147.609z"/>
		<path d="M646.355,150.847c-0.275,0.132-0.887,0.336-1.666,0.336c-1.752,0-2.891-1.188-2.891-2.962
			c0-1.787,1.223-3.094,3.118-3.094c0.624,0,1.175,0.156,1.463,0.312l-0.239,0.803c-0.252-0.132-0.648-0.275-1.224-0.275
			c-1.331,0-2.052,0.995-2.052,2.194c0,1.343,0.864,2.171,2.016,2.171c0.6,0,0.996-0.144,1.295-0.276L646.355,150.847z"/>
		<path d="M647.258,151.051v-0.647l0.828-0.804c1.991-1.895,2.902-2.902,2.902-4.078c0-0.792-0.371-1.523-1.535-1.523
			c-0.707,0-1.295,0.36-1.654,0.66l-0.336-0.744c0.527-0.444,1.307-0.792,2.194-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.49v0.875H647.258z"/>
		<path d="M658.607,147.069c0,2.651-0.995,4.114-2.71,4.114c-1.523,0-2.567-1.427-2.591-4.006c0-2.626,1.14-4.054,2.723-4.054
			C657.66,143.124,658.607,144.587,658.607,147.069z M654.374,147.189c0,2.027,0.624,3.178,1.583,3.178
			c1.068,0,1.584-1.259,1.584-3.25c0-1.919-0.48-3.179-1.584-3.179C655.046,143.939,654.374,145.066,654.374,147.189z"/>
	</g>
</g>
<g id="APC_P">
	
		<radialGradient id="APC_P_path1_1_" cx="531.6602" cy="-611.2832" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="APC_P_path1" fill="url(#APC_P_path1_1_)" stroke="#000000" d="M729.28,147.528c0,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.476C717.942,137.053,729.28,141.741,729.28,147.528z"/>
	<g>
		<path d="M690.806,148.509l-0.839,2.542h-1.08l2.758-8.083h1.248l2.758,8.083h-1.115l-0.863-2.542H690.806z M693.469,147.693
			l-0.805-2.327c-0.18-0.527-0.299-1.007-0.419-1.475h-0.024c-0.119,0.468-0.24,0.972-0.408,1.463l-0.791,2.338H693.469z"/>
		<path d="M696.842,143.063c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.786,0.24,2.266,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V143.063z M697.886,146.961c0.228,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.906-1.595c-0.456,0-0.804,0.036-0.983,0.084V146.961z"/>
		<path d="M708.863,150.799c-0.371,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.716-4.246,4.223-4.246c0.995,0,1.643,0.216,1.918,0.36l-0.264,0.852c-0.383-0.192-0.947-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.296-0.132,1.716-0.336L708.863,150.799z"/>
		<path d="M712.598,147.429v0.768h-2.963v-0.768H712.598z"/>
		<path d="M713.87,143.063c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.217,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V143.063z M714.914,146.961c0.227,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.455,0-0.803,0.036-0.982,0.084V146.961z"/>
	</g>
</g>
<g>
	<path d="M671.947,151.519l3.334-8.695h0.827l-3.357,8.695H671.947z"/>
</g>
<g>
	<path d="M648.779,23.355c0.468,0.3,1.14,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.433-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.428,0.192,1.775,0.396l-0.288,0.852
		c-0.252-0.156-0.792-0.384-1.523-0.384c-1.104,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.911,2.339-2.818,2.339c-0.779,0-1.631-0.24-2.062-0.528L648.779,23.355z"/>
	<path d="M655.967,17.19c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C655.703,16.531,655.967,16.819,655.967,17.19z M654.792,24.626v-5.805h1.055v5.805H654.792z"/>
	<path d="M657.455,23.559c0.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.159,1.751c-0.635,0-1.223-0.168-1.631-0.408L657.455,23.559z"/>
	<path d="M663.622,17.43v1.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.08L663.622,17.43z"/>
	<path d="M666.839,21.916c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,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.012,0.372-0.036,0.492H666.839z M669.934,21.16c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H669.934z"/>
	<path d="M672.264,20.633c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.191,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V20.633z"/>
	<path d="M684.404,24.375c-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.336L684.404,24.375z"/>
	<path d="M685.691,16.111h1.055v3.634h0.024c0.168-0.3,0.432-0.576,0.756-0.755c0.312-0.18,0.684-0.288,1.079-0.288
		c0.779,0,2.026,0.48,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.211,0.48-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V16.111z"/>
	<path d="M692.352,20.633c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.191,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V20.633z"/>
	<path d="M701.408,21.676c0,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
		C700.28,18.702,701.408,19.913,701.408,21.676z M696.814,21.736c0,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.219C697.354,19.493,696.814,20.645,696.814,21.736z"/>
	<path d="M702.743,20.393c0-0.611-0.024-1.091-0.049-1.571h0.924l0.048,0.947h0.036c0.324-0.552,0.863-1.067,1.835-1.067
		c0.779,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.42-0.576,0.659-0.756c0.348-0.264,0.72-0.408,1.271-0.408
		c0.779,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.26-1.787c-0.611,0-1.067,0.443-1.259,0.947
		c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.031v-3.478c0-0.923-0.408-1.583-1.212-1.583c-0.647,0-1.139,0.527-1.307,1.055
		c-0.061,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V20.393z"/>
	<path d="M716.828,23.235c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V23.235z
		 M715.809,21.664c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V21.664z"/>
	<path d="M719.758,17.43v1.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.08L719.758,17.43z"/>
	<path d="M727.64,21.676c0,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
		C726.512,18.702,727.64,19.913,727.64,21.676z M723.046,21.736c0,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.219C723.586,19.493,723.046,20.645,723.046,21.736z"/>
	<path d="M730.15,17.19c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C729.887,16.531,730.15,16.819,730.15,17.19z M728.976,24.626v-5.805h1.055v5.805H728.976z"/>
	<path d="M736.784,16.111v7.016c0,0.516,0.023,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036c-0.312,0.647-1.008,1.139-1.955,1.139
		c-1.403,0-2.494-1.188-2.494-2.95c-0.013-1.931,1.199-3.106,2.603-3.106c0.899,0,1.487,0.42,1.751,0.875h0.023v-3.466H736.784z
		 M735.74,21.185c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.66-0.731-1.211-1.522-1.211c-1.092,0-1.739,0.959-1.739,2.231
		c0,1.175,0.587,2.146,1.715,2.146c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V21.185z"/>
	<path d="M740.998,23.355c0.468,0.3,1.14,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.433-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.428,0.192,1.775,0.396l-0.288,0.852
		c-0.252-0.156-0.792-0.384-1.523-0.384c-1.104,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.911,2.339-2.818,2.339c-0.779,0-1.631-0.24-2.062-0.528L740.998,23.355z"/>
	<path d="M747.67,21.916c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,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.013,0.372-0.036,0.492H747.67z M750.765,21.16c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H750.765z"/>
	<path d="M753.095,20.717c0-0.744-0.024-1.343-0.049-1.895h0.936l0.061,0.995h0.023c0.42-0.708,1.115-1.115,2.063-1.115
		c1.415,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.786-0.912h-0.024v3.154h-1.043V20.717z
		 M754.138,22.264c0,0.156,0.012,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235c1.115,0,1.764-0.911,1.764-2.243
		c0-1.151-0.612-2.146-1.728-2.146c-0.72,0-1.403,0.503-1.595,1.295c-0.036,0.132-0.072,0.288-0.072,0.42V22.264z"/>
	<path d="M764,23.235c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V23.235z
		 M762.98,21.664c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V21.664z"/>
	<path d="M765.706,20.633c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V20.633z"/>
	<path d="M773.647,23.235c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V23.235z
		 M772.628,21.664c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V21.664z"/>
	<path d="M776.577,17.43v1.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.08L776.577,17.43z"/>
	<path d="M780.453,17.19c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C780.189,16.531,780.453,16.819,780.453,17.19z M779.278,24.626v-5.805h1.055v5.805H779.278z"/>
	<path d="M787.339,21.676c0,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
		C786.211,18.702,787.339,19.913,787.339,21.676z M782.745,21.736c0,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.219C783.285,19.493,782.745,20.645,782.745,21.736z"/>
	<path d="M788.674,20.393c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055V21.28c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V20.393z"/>
</g>
<g>
	<g id="g22085_9_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_1_" cx="-1725.7511" cy="-1167.522" r="11.9629" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_9_" fill="url(#path20137_1_)" stroke="#000000" d="M744.467,225.987c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C748.376,225.868,746.26,226.766,744.467,225.987z"/>
	</g>
	<g id="g22085_8_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_2_" cx="-1244.6564" cy="-1246.2251" r="17.8359" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_8_" fill="url(#path20137_2_)" stroke="#000000" d="M763.637,257.9c-2.914,0-5.275-2.485-5.275-5.549
			c0-3.065,2.361-5.55,5.275-5.55s5.275,2.484,5.275,5.55C768.912,255.415,766.551,257.9,763.637,257.9z"/>
	</g>
	<g id="g22085_7_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_23_" cx="-1332.9386" cy="1296.6108" r="25.5405" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_7_" fill="url(#path20137_23_)" stroke="#000000" d="M774.128,232.832c4.174,0,7.555-3.559,7.555-7.945
			c0-4.39-3.381-7.947-7.555-7.947c-4.173,0-7.554,3.557-7.554,7.947C766.574,229.273,769.958,232.832,774.128,232.832z"/>
	</g>
	<g id="g22085_6_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_45_" cx="-1281.8976" cy="1336.9067" r="20.8193" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_6_" fill="url(#path20137_45_)" stroke="#000000" d="M786.049,247.242c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C779.89,244.341,782.648,247.242,786.049,247.242z"/>
	</g>
	<g id="g22085_5_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_48_" cx="-1304.1476" cy="1254.3804" r="20.8188" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_5_" fill="url(#path20137_48_)" stroke="#000000" d="M761.638,240.32c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C755.478,237.419,758.237,240.32,761.638,240.32z"/>
	</g>
	<g id="g22085_4_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_49_" cx="-1281.6378" cy="-1270.0151" r="30.5518" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_4_" fill="url(#path20137_49_)" stroke="#000000" d="M770.672,250.351c-4.987,0-9.035-4.257-9.035-9.504
			c0-5.25,4.048-9.506,9.035-9.506c4.991,0,9.039,4.255,9.039,9.506C779.711,246.094,775.663,250.351,770.672,250.351z"/>
	</g>
	<g id="g22085_3_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_50_" cx="-1657.6798" cy="-1302.4731" r="11.9624" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_3_" fill="url(#path20137_50_)" stroke="#000000" d="M772.645,261.313c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C776.555,261.194,774.438,262.092,772.645,261.313z"/>
	</g>
</g>
<g>
	<g id="g22085_16_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_57_" cx="-1866.1759" cy="-1090.9185" r="11.9619" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_16_" fill="url(#path20137_57_)" stroke="#000000" d="M741.086,176.891c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C744.995,176.771,742.879,177.669,741.086,176.891z"/>
	</g>
	<g id="g22085_15_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_58_" cx="-1402.4728" cy="-1234.7954" r="17.8359" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_15_" fill="url(#path20137_58_)" stroke="#000000" d="M760.256,208.803c-2.914,0-5.275-2.485-5.275-5.549
			c0-3.065,2.361-5.55,5.275-5.55s5.275,2.484,5.275,5.55C765.531,206.318,763.17,208.803,760.256,208.803z"/>
	</g>
	<g id="g22085_14_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_59_" cx="-1490.755" cy="1285.1812" r="25.5405" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_14_" fill="url(#path20137_59_)" stroke="#000000" d="M770.747,183.735c4.174,0,7.555-3.559,7.555-7.945
			c0-4.39-3.381-7.947-7.555-7.947c-4.173,0-7.554,3.557-7.554,7.947C763.193,180.176,766.577,183.735,770.747,183.735z"/>
	</g>
	<g id="g22085_13_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_60_" cx="-1439.714" cy="1325.4771" r="20.8193" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_13_" fill="url(#path20137_60_)" stroke="#000000" d="M782.668,198.145c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C776.509,195.245,779.268,198.145,782.668,198.145z"/>
	</g>
	<g id="g22085_12_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_61_" cx="-1461.964" cy="1242.9507" r="20.8188" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_12_" fill="url(#path20137_61_)" stroke="#000000" d="M758.257,191.223c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C752.098,188.323,754.856,191.223,758.257,191.223z"/>
	</g>
	<g id="g22085_11_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_62_" cx="-1439.4542" cy="-1258.5854" r="30.5518" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_11_" fill="url(#path20137_62_)" stroke="#000000" d="M767.291,201.254c-4.987,0-9.035-4.257-9.035-9.504
			c0-5.25,4.048-9.506,9.035-9.506c4.991,0,9.039,4.255,9.039,9.506C776.33,196.997,772.282,201.254,767.291,201.254z"/>
	</g>
	<g id="g22085_10_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_63_" cx="-1798.1046" cy="-1225.8696" r="11.9634" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_10_" fill="url(#path20137_63_)" stroke="#000000" d="M769.265,212.217c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C773.174,212.098,771.058,212.996,769.265,212.217z"/>
	</g>
</g>
<g>
	<line fill="none" stroke="#000000" stroke-dasharray="3" x1="579.537" y1="137.052" x2="596" y2="156.056"/>
	<line fill="none" stroke="#000000" x1="588.013" y1="156.48" x2="602" y2="156.48"/>
</g>
<g id="Net1">
	
		<radialGradient id="Net1_path1_1_" cx="389.9277" cy="-425.1465" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Net1_path1" fill="url(#Net1_path1_1_)" stroke="#000000" d="M503.459,265.874c0,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.476C492.121,255.399,503.459,260.086,503.459,265.874z"/>
	<g>
		<path d="M467.176,269.397v-8.083h1.152l2.578,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.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.06,1.019,0.072,1.991,0.072,3.334v3.454H467.176z"/>
		<path d="M475.624,266.687c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.606-0.3l0.192,0.756
			c-0.372,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.118,2.723-3.118c1.907,0,2.399,1.655,2.399,2.723
			c0,0.216-0.013,0.372-0.037,0.492H475.624z M478.719,265.931c0.012-0.66-0.276-1.703-1.464-1.703
			c-1.079,0-1.535,0.971-1.619,1.703H478.719z"/>
		<path d="M482.319,262.201v1.392h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.287,0,0.455-0.024,0.611-0.072
			l0.048,0.803c-0.204,0.072-0.528,0.144-0.936,0.144c-0.491,0-0.888-0.168-1.14-0.444c-0.287-0.324-0.408-0.839-0.408-1.523v-3.167
			h-0.898v-0.803h0.898v-1.08L482.319,262.201z"/>
		<path d="M486.975,262.584h-0.023l-1.355,0.732l-0.204-0.804l1.703-0.912h0.899v7.796h-1.02V262.584z"/>
	</g>
</g>
<g id="Net1P">
	
		<radialGradient id="Net1P_path1_1_" cx="389.9277" cy="-544.0371" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Net1P_path1" fill="url(#Net1P_path1_1_)" stroke="#000000" d="M503.459,190.283c0,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.476C492.121,179.808,503.459,184.496,503.459,190.283z"/>
	<g>
		<path d="M462.004,193.806v-8.083h1.152l2.578,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.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.06,1.019,0.072,1.991,0.072,3.334v3.454H462.004z"/>
		<path d="M470.452,191.096c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.606-0.3l0.192,0.756
			c-0.372,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.118,2.723-3.118c1.907,0,2.399,1.655,2.399,2.723
			c0,0.216-0.013,0.372-0.037,0.492H470.452z M473.547,190.34c0.012-0.66-0.276-1.703-1.464-1.703c-1.079,0-1.535,0.971-1.619,1.703
			H473.547z"/>
		<path d="M477.147,186.61v1.392h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.287,0,0.455-0.024,0.611-0.072
			l0.048,0.803c-0.204,0.072-0.528,0.144-0.936,0.144c-0.491,0-0.888-0.168-1.14-0.444c-0.287-0.324-0.408-0.839-0.408-1.523v-3.167
			h-0.898v-0.803h0.898v-1.08L477.147,186.61z"/>
		<path d="M481.803,186.994h-0.023l-1.355,0.732l-0.204-0.804l1.703-0.912h0.899v7.796h-1.02V186.994z"/>
		<path d="M488.451,190.184v0.768h-2.963v-0.768H488.451z"/>
		<path d="M489.724,185.818c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.217,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V185.818z M490.768,189.716c0.227,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.455,0-0.803,0.036-0.982,0.084V189.716z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="472.96" y1="208.914" x2="472.96" y2="249.631"/>
			<polygon points="476.663,211.723 472.96,210.15 469.256,211.723 472.96,202.945 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="483.327" y1="246.834" x2="483.327" y2="206.117"/>
			<polygon points="479.624,244.025 483.327,245.598 487.031,244.025 483.327,252.803 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="464.748" y1="224.874" x2="398.761" y2="224.874"/>
		<polygon points="461.939,228.577 463.512,224.874 461.939,221.17 470.717,224.874 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3" d="M491.242,224.874c38.003-2.99,58.516-28.809,64.506-51.535"/>
		<polygon points="493.752,220.962 492.475,224.777 494.333,228.346 485.291,225.342 		"/>
	</g>
</g>
<g>
	<g id="g22085_24_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_64_" cx="-414.5821" cy="-1992.4263" r="11.9624" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_24_" fill="url(#path20137_64_)" stroke="#000000" d="M805.786,697.332c-1.793-0.777-2.581-2.938-1.763-4.822
			c0.819-1.887,2.936-2.784,4.728-2.006c1.794,0.779,2.583,2.938,1.764,4.824C809.695,697.212,807.579,698.111,805.786,697.332z"/>
	</g>
	<g id="g22085_22_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_65_" cx="270.4335" cy="-1453.5249" r="17.8354" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_22_" fill="url(#path20137_65_)" stroke="#000000" d="M824.956,729.244c-2.914,0-5.275-2.484-5.275-5.549
			s2.361-5.549,5.275-5.549s5.275,2.484,5.275,5.549S827.87,729.244,824.956,729.244z"/>
	</g>
	<g id="g22085_21_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_66_" cx="182.1523" cy="1503.9106" r="25.5396" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_21_" fill="url(#path20137_66_)" stroke="#000000" d="M835.447,704.176c4.174,0,7.555-3.56,7.555-7.945
			c0-4.39-3.381-7.946-7.555-7.946c-4.173,0-7.554,3.557-7.554,7.946C827.893,700.617,831.277,704.176,835.447,704.176z"/>
	</g>
	<g id="g22085_20_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_67_" cx="233.1913" cy="1544.2065" r="20.8184" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_20_" fill="url(#path20137_67_)" stroke="#000000" d="M847.368,718.585c3.401,0,6.157-2.9,6.157-6.476
			c0-3.577-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C841.209,715.685,843.968,718.585,847.368,718.585z"/>
	</g>
	<g id="g22085_19_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_68_" cx="210.9413" cy="1461.6802" r="20.8188" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_19_" fill="url(#path20137_68_)" stroke="#000000" d="M822.957,711.664c3.401,0,6.157-2.9,6.157-6.476
			c0-3.577-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C816.798,708.763,819.557,711.664,822.957,711.664z"/>
	</g>
	<g id="g22085_18_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_69_" cx="233.4511" cy="-1477.3149" r="30.5518" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_18_" fill="url(#path20137_69_)" stroke="#000000" d="M831.991,721.695c-4.987,0-9.035-4.257-9.035-9.504
			c0-5.25,4.048-9.506,9.035-9.506c4.991,0,9.039,4.256,9.039,9.506C841.03,717.438,836.982,721.695,831.991,721.695z"/>
	</g>
	<g id="g22085_17_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_70_" cx="-346.5108" cy="-2127.3774" r="11.9639" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_17_" fill="url(#path20137_70_)" stroke="#000000" d="M833.965,732.658c-1.793-0.777-2.581-2.938-1.763-4.822
			c0.819-1.887,2.936-2.784,4.728-2.006c1.794,0.779,2.583,2.938,1.764,4.824C837.874,732.539,835.758,733.437,833.965,732.658z"/>
	</g>
</g>
<g>
	
		<radialGradient id="Cdc20_A_path2_1_" cx="317.6387" cy="-355.1499" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdc20_A_path2" fill="url(#Cdc20_A_path2_1_)" stroke="#000000" d="M388.28,310.377c0,5.786-11.338,10.478-25.317,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C376.942,299.903,388.28,304.59,388.28,310.377z"/>
	<g>
		<path d="M353.871,313.648c-0.372,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L353.871,313.648z"/>
		<path d="M360.028,305.385v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036
			c-0.312,0.647-1.007,1.139-1.955,1.139c-1.403,0-2.495-1.188-2.495-2.95c-0.012-1.931,1.2-3.106,2.603-3.106
			c0.9,0,1.487,0.42,1.751,0.875h0.024v-3.466H360.028z M358.984,310.458c0-0.132-0.012-0.312-0.048-0.444
			c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.739,0.959-1.739,2.231c0,1.175,0.588,2.146,1.715,2.146
			c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V310.458z"/>
		<path d="M365.932,313.696c-0.276,0.132-0.887,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962
			c0-1.787,1.224-3.094,3.119-3.094c0.624,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.647-0.275-1.223-0.275
			c-1.332,0-2.051,0.995-2.051,2.194c0,1.343,0.864,2.171,2.015,2.171c0.6,0,0.996-0.144,1.295-0.276L365.932,313.696z"/>
		<path d="M366.834,313.9v-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.386,1.151,2.386,2.267
			c0,1.439-1.043,2.603-2.686,4.186l-0.612,0.576v0.024h3.49v0.875H366.834z"/>
		<path d="M378.184,309.918c0,2.651-0.996,4.114-2.711,4.114c-1.523,0-2.566-1.427-2.59-4.006c0-2.626,1.139-4.054,2.723-4.054
			C377.236,305.973,378.184,307.436,378.184,309.918z M373.949,310.039c0,2.027,0.625,3.178,1.584,3.178
			c1.067,0,1.583-1.259,1.583-3.25c0-1.919-0.479-3.179-1.583-3.179C374.621,306.788,373.949,307.916,373.949,310.039z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="437.183" y1="310.378" x2="389.183" y2="310.378"/>
		<polygon points="434.374,314.082 435.947,310.378 434.374,306.674 443.152,310.378 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="329.767" y1="310.378" x2="221.89" y2="310.378"/>
		<polygon points="326.958,314.082 328.531,310.378 326.958,306.674 335.736,310.378 		"/>
	</g>
</g>
<g id="g3355_4_">
	
		<radialGradient id="Mcm1_path2_1_" cx="-67.9277" cy="936.7788" r="14.7098" gradientTransform="matrix(1 0 0 -1 330.6191 1235.4424)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ABD053"/>
		<stop  offset="0.4082" style="stop-color:#A9D051"/>
		<stop  offset="0.5552" style="stop-color:#A5CE52"/>
		<stop  offset="0.66" style="stop-color:#9ECC53"/>
		<stop  offset="0.7448" style="stop-color:#92C851"/>
		<stop  offset="0.8174" style="stop-color:#83C34E"/>
		<stop  offset="0.8817" style="stop-color:#76C052"/>
		<stop  offset="0.9398" style="stop-color:#64BC54"/>
		<stop  offset="0.9915" style="stop-color:#58B952"/>
		<stop  offset="1" style="stop-color:#58B952"/>
	</radialGradient>
	<path id="Mcm1_path2" fill="url(#Mcm1_path2_1_)" stroke="#000000" stroke-miterlimit="3.8637" d="M245.274,298.759
		c0-6.334,7.801-11.471,17.418-11.471c9.619,0,17.518,5.138,17.416,11.471c-0.021,1.307-1.021,2.557-1.898,3.082
		c0,0-12.318-3.891-16.582,0c-2.361,2.154,0,8.197,0,8.197C253.536,309.048,245.274,304.375,245.274,298.759z"/>
	<g enable-background="new    ">
		<path d="M255.731,295.873c-0.05-0.939-0.11-2.079-0.11-2.909h-0.02c-0.24,0.78-0.51,1.63-0.85,2.559l-1.189,3.269h-0.66
			l-1.099-3.208c-0.32-0.96-0.58-1.819-0.77-2.619h-0.02c-0.02,0.84-0.07,1.959-0.13,2.979l-0.18,2.889h-0.83l0.47-6.736h1.109
			l1.149,3.258c0.28,0.83,0.5,1.569,0.68,2.27h0.02c0.18-0.68,0.42-1.42,0.72-2.27l1.199-3.258h1.109l0.42,6.736h-0.86
			L255.731,295.873z"/>
		<path d="M261.571,298.661c-0.23,0.11-0.74,0.28-1.389,0.28c-1.459,0-2.409-0.99-2.409-2.479c0-1.488,1.02-2.578,2.599-2.578
			c0.52,0,0.979,0.13,1.219,0.26l-0.2,0.67c-0.209-0.11-0.54-0.23-1.019-0.23c-1.109,0-1.709,0.83-1.709,1.84
			c0,1.119,0.719,1.809,1.679,1.809c0.5,0,0.83-0.12,1.08-0.229L261.571,298.661z"/>
		<path d="M262.603,295.302c0-0.51-0.02-0.909-0.04-1.309h0.77l0.04,0.779h0.03c0.27-0.46,0.719-0.89,1.529-0.89
			c0.65,0,1.149,0.399,1.359,0.97h0.02c0.15-0.28,0.35-0.48,0.55-0.63c0.29-0.22,0.6-0.34,1.06-0.34c0.649,0,1.599,0.42,1.599,2.099
			v2.849h-0.86v-2.738c0-0.939-0.35-1.489-1.049-1.489c-0.51,0-0.89,0.37-1.049,0.789c-0.04,0.13-0.07,0.29-0.07,0.44v2.998h-0.86
			v-2.898c0-0.779-0.34-1.329-1.009-1.329c-0.54,0-0.95,0.439-1.089,0.879c-0.05,0.131-0.07,0.28-0.07,0.431v2.918h-0.86V295.302z"
			/>
		<path d="M272.572,293.154h-0.02l-1.129,0.609l-0.17-0.67l1.419-0.759h0.75v6.496h-0.849V293.154z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M591.394,320.102c0-54.033,81.321-54.033,81.321-54.033"/>
			<polygon points="669.906,269.772 671.479,266.069 669.906,262.365 678.684,266.069 			"/>
			<polygon points="587.69,317.293 591.394,318.866 595.098,317.293 591.394,326.071 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M591.059,319.989c0-54.031-81.32-54.031-81.32-54.031"/>
			<polygon points="512.547,262.254 510.975,265.958 512.547,269.662 503.77,265.958 			"/>
		</g>
	</g>
</g>
<g id="RENT">
	
		<radialGradient id="RENt_path1_1_" cx="460.9023" cy="-312.2026" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="RENt_path1" fill="url(#RENt_path1_1_)" stroke="#000000" d="M616.542,337.683c0,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.476C605.204,327.208,616.542,331.896,616.542,337.683z"/>
	<g>
		<path d="M580.259,333.231c0.528-0.096,1.296-0.168,2.003-0.168c1.115,0,1.847,0.216,2.338,0.66
			c0.396,0.36,0.637,0.912,0.637,1.547c0,1.055-0.672,1.763-1.512,2.051v0.036c0.611,0.216,0.983,0.792,1.176,1.631
			c0.264,1.127,0.455,1.907,0.623,2.219h-1.079c-0.132-0.24-0.312-0.923-0.528-1.931c-0.239-1.115-0.684-1.535-1.631-1.571h-0.982
			v3.502h-1.044V333.231z M581.303,336.913h1.066c1.115,0,1.823-0.612,1.823-1.535c0-1.043-0.755-1.5-1.858-1.5
			c-0.504,0-0.852,0.036-1.031,0.084V336.913z"/>
		<path d="M590.889,337.417h-3.131v2.915h3.502v0.875h-4.557v-8.083h4.377v0.875h-3.322v2.555h3.131V337.417z"/>
		<path d="M592.619,341.207v-8.083h1.15l2.579,4.09c0.587,0.947,1.067,1.799,1.438,2.626l0.037-0.012
			c-0.097-1.079-0.121-2.062-0.121-3.322v-3.382h0.984v8.083h-1.056l-2.567-4.102c-0.562-0.9-1.103-1.823-1.498-2.699l-0.037,0.012
			c0.061,1.019,0.072,1.991,0.072,3.334v3.454H592.619z"/>
		<path d="M602.05,334.01h-2.459v-0.887h5.985v0.887h-2.471v7.196h-1.056V334.01z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_10_" cx="386.6748" cy="-251.3052" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_21_" fill="url(#path16609_10_)" stroke="#000000" d="M498.275,376.402c0,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.476C486.938,365.927,498.275,370.615,498.275,376.402z"/>
	<g>
		<path d="M466.471,376.375c-0.061-1.127-0.132-2.495-0.132-3.49h-0.024c-0.287,0.936-0.611,1.955-1.02,3.07l-1.427,3.922h-0.792
			l-1.318-3.85c-0.385-1.151-0.695-2.183-0.924-3.142h-0.023c-0.024,1.007-0.084,2.351-0.156,3.574l-0.217,3.466h-0.994l0.562-8.083
			h1.332l1.379,3.91c0.336,0.996,0.6,1.883,0.815,2.723h0.024c0.216-0.815,0.504-1.703,0.863-2.723l1.439-3.91h1.331l0.504,8.083
			h-1.032L466.471,376.375z"/>
		<path d="M473.42,378.534c0,0.503,0.023,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.774,0.863
			c-1.176,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.133-1.343-1.319-1.331
			c-0.552,0-1.116,0.156-1.523,0.432l-0.239-0.708c0.479-0.3,1.187-0.504,1.918-0.504c1.775,0,2.207,1.211,2.207,2.363V378.534z
			 M472.4,376.963c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.696,0.457,1.008,0.984,1.008c0.768,0,1.259-0.48,1.427-0.972
			c0.036-0.12,0.048-0.24,0.048-0.336V376.963z"/>
		<path d="M480.128,371.41v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036c-0.312,0.647-1.008,1.139-1.955,1.139
			c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.602-3.106c0.9,0,1.488,0.42,1.752,0.875h0.023v-3.466H480.128z
			 M479.084,376.483c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.66-0.731-1.211-1.522-1.211c-1.092,0-1.74,0.959-1.74,2.231
			c0,1.175,0.588,2.146,1.716,2.146c0.708,0,1.354-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V376.483z"/>
		<path d="M481.559,379.925v-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.708,0-1.295,0.36-1.655,0.66l-0.336-0.744c0.528-0.444,1.308-0.792,2.195-0.792c1.68,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.875H481.559z"/>
	</g>
</g>
<g id="Cdc20_T">
	
		<radialGradient id="Cdc20_T_path1_1_" cx="386.6748" cy="-178.9937" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdc20_T_path1" fill="url(#Cdc20_T_path1_1_)" stroke="#000000" d="M498.275,422.377c0,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.476C486.938,411.903,498.275,416.59,498.275,422.377z"/>
	<g>
		<path d="M461.376,425.648c-0.372,0.192-1.151,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102
			c0-2.542,1.715-4.246,4.221-4.246c0.996,0,1.644,0.216,1.92,0.36l-0.264,0.852c-0.385-0.192-0.948-0.336-1.619-0.336
			c-1.896,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L461.376,425.648z"/>
		<path d="M467.533,417.385v7.016c0,0.516,0.023,1.103,0.047,1.499h-0.936l-0.047-1.007h-0.037
			c-0.312,0.647-1.007,1.139-1.955,1.139c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.603-3.106
			c0.899,0,1.487,0.42,1.751,0.875h0.024v-3.466H467.533z M466.489,422.458c0-0.132-0.013-0.312-0.048-0.444
			c-0.156-0.66-0.732-1.211-1.523-1.211c-1.092,0-1.739,0.959-1.739,2.231c0,1.175,0.588,2.146,1.716,2.146
			c0.707,0,1.354-0.479,1.547-1.259c0.035-0.144,0.048-0.288,0.048-0.456V422.458z"/>
		<path d="M473.437,425.696c-0.276,0.132-0.888,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962
			c0-1.787,1.224-3.094,3.119-3.094c0.623,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.647-0.275-1.223-0.275
			c-1.332,0-2.052,0.995-2.052,2.194c0,1.343,0.864,2.171,2.015,2.171c0.6,0,0.996-0.144,1.296-0.276L473.437,425.696z"/>
		<path d="M474.339,425.9v-0.647l0.827-0.804c1.992-1.895,2.902-2.902,2.902-4.078c0-0.792-0.371-1.523-1.535-1.523
			c-0.707,0-1.295,0.36-1.654,0.66l-0.336-0.744c0.527-0.444,1.307-0.792,2.195-0.792c1.679,0,2.387,1.151,2.387,2.267
			c0,1.439-1.044,2.603-2.688,4.186l-0.611,0.576v0.024h3.49v0.875H474.339z"/>
		<path d="M485.688,421.918c0,2.651-0.995,4.114-2.71,4.114c-1.523,0-2.567-1.427-2.592-4.006c0-2.626,1.141-4.054,2.723-4.054
			C484.74,417.973,485.688,419.436,485.688,421.918z M481.455,422.039c0,2.027,0.623,3.178,1.583,3.178
			c1.067,0,1.583-1.259,1.583-3.25c0-1.919-0.48-3.179-1.583-3.179C482.127,418.788,481.455,419.916,481.455,422.039z"/>
		<path d="M490.057,418.093l-1.139,1.499v0.024l1.811-0.24v0.815l-1.811-0.228V420l1.151,1.439l-0.756,0.432l-0.731-1.679h-0.023
			l-0.768,1.691l-0.684-0.432l1.139-1.463v-0.036l-1.775,0.24v-0.815l1.764,0.228v-0.024l-1.127-1.476l0.73-0.419l0.744,1.679h0.023
			l0.732-1.691L490.057,418.093z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="370.702" y1="332.054" x2="439.655" y2="415.292"/>
			<polygon points="375.345,331.854 371.49,333.005 369.641,336.58 366.894,327.457 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="447.071" y1="407.528" x2="378.118" y2="324.29"/>
			<polygon points="442.428,407.728 446.283,406.577 448.132,403.002 450.879,412.125 			"/>
		</g>
	</g>
</g>
<g>
	<path d="M541.726,416.295v4.797c0,1.799,0.804,2.566,1.883,2.566c1.188,0,1.967-0.792,1.967-2.566v-4.797h1.056v4.725
		c0,2.483-1.308,3.49-3.059,3.49c-1.655,0-2.902-0.936-2.902-3.454v-4.761H541.726z"/>
	<path d="M548.41,420.145c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V420.145z"/>
	<path d="M559.147,422.987c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V422.987z
		 M558.128,421.416c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V421.416z"/>
	<path d="M562.077,417.182v1.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.08L562.077,417.182z"/>
	<path d="M566.049,417.182v1.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.08L566.049,417.182z"/>
	<path d="M572.827,422.987c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V422.987z
		 M571.808,421.416c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V421.416z"/>
	<path d="M578.672,424.174c-0.276,0.132-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.188-2.89-2.962c0-1.787,1.223-3.094,3.118-3.094
		c0.623,0,1.175,0.156,1.463,0.312l-0.239,0.803c-0.252-0.132-0.648-0.275-1.224-0.275c-1.331,0-2.051,0.995-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.995-0.144,1.295-0.276L578.672,424.174z"/>
	<path d="M579.91,415.863h1.055v3.634h0.024c0.168-0.3,0.432-0.576,0.756-0.755c0.312-0.18,0.684-0.288,1.079-0.288
		c0.779,0,2.026,0.48,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.211,0.48-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V415.863z"/>
	<path d="M587.157,421.668c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,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.013,0.372-0.036,0.492H587.157z M590.252,420.912c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H590.252z"/>
	<path d="M597.583,415.863v7.016c0,0.516,0.023,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036c-0.312,0.647-1.008,1.139-1.955,1.139
		c-1.403,0-2.494-1.188-2.494-2.95c-0.013-1.931,1.199-3.106,2.603-3.106c0.899,0,1.487,0.42,1.751,0.875h0.023v-3.466H597.583z
		 M596.539,420.937c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.738,0.959-1.738,2.231
		c0,1.175,0.588,2.146,1.715,2.146c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V420.937z"/>
	<path d="M601.929,416.295h1.044v3.898h0.036c0.216-0.312,0.432-0.6,0.636-0.864l2.471-3.034h1.295l-2.927,3.43l3.154,4.653h-1.235
		l-2.65-3.97l-0.779,0.887v3.083h-1.044V416.295z"/>
	<path d="M609.692,416.942c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C609.429,416.283,609.692,416.571,609.692,416.942z M608.518,424.378v-5.805h1.055v5.805H608.518z"/>
	<path d="M611.325,420.145c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V420.145z"/>
	<path d="M618.572,421.668c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,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.012,0.372-0.036,0.492H618.572z M621.667,420.912c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H621.667z"/>
	<path d="M625.268,417.182v1.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.08L625.268,417.182z"/>
	<path d="M633.15,421.428c0,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
		C632.022,418.454,633.15,419.665,633.15,421.428z M628.557,421.488c0,1.271,0.72,2.231,1.751,2.231
		c1.008,0,1.763-0.947,1.763-2.255c0-0.983-0.491-2.219-1.738-2.219C629.097,419.245,628.557,420.396,628.557,421.488z"/>
	<path d="M638.623,424.174c-0.276,0.132-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.188-2.89-2.962c0-1.787,1.223-3.094,3.118-3.094
		c0.623,0,1.175,0.156,1.463,0.312l-0.239,0.803c-0.252-0.132-0.648-0.275-1.224-0.275c-1.331,0-2.051,0.995-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.995-0.144,1.295-0.276L638.623,424.174z"/>
	<path d="M639.861,415.863h1.055v3.634h0.024c0.168-0.3,0.432-0.576,0.756-0.755c0.312-0.18,0.684-0.288,1.079-0.288
		c0.779,0,2.026,0.48,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.211,0.48-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V415.863z"/>
	<path d="M651.774,421.428c0,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
		C650.646,418.454,651.774,419.665,651.774,421.428z M647.181,421.488c0,1.271,0.72,2.231,1.751,2.231
		c1.008,0,1.763-0.947,1.763-2.255c0-0.983-0.491-2.219-1.738-2.219C647.721,419.245,647.181,420.396,647.181,421.488z"/>
	<path d="M653.109,420.385c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V420.385z"/>
	<path d="M657.5,421.668c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,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.012,0.372-0.036,0.492H657.5z M660.595,420.912c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H660.595z"/>
	<path d="M662.78,423.311c0.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.159,1.751c-0.635,0-1.223-0.168-1.631-0.408L662.78,423.311z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="499.79" y1="388.582" x2="536.886" y2="419.043"/>
		<polygon points="504.311,387.502 500.745,389.366 499.61,393.227 495.177,384.793 		"/>
	</g>
</g>
<g id="Cdh1_T">
	
		<radialGradient id="Cdh1_T_path1_1_" cx="534.2686" cy="-178.9937" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdh1_T_path1" fill="url(#Cdh1_T_path1_1_)" stroke="#000000" d="M733.437,422.377c0,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.476C722.099,411.903,733.437,416.59,733.437,422.377z"/>
	<g>
		<path d="M698.974,425.649c-0.372,0.192-1.151,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102
			c0-2.542,1.715-4.246,4.221-4.246c0.996,0,1.644,0.216,1.92,0.36l-0.264,0.852c-0.385-0.192-0.948-0.336-1.619-0.336
			c-1.896,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L698.974,425.649z"/>
		<path d="M705.131,417.386v7.016c0,0.516,0.023,1.103,0.047,1.499h-0.936l-0.047-1.007h-0.037
			c-0.312,0.647-1.007,1.139-1.955,1.139c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.603-3.106
			c0.899,0,1.487,0.42,1.751,0.875h0.024v-3.466H705.131z M704.087,422.459c0-0.132-0.013-0.312-0.048-0.444
			c-0.156-0.66-0.732-1.211-1.523-1.211c-1.092,0-1.739,0.959-1.739,2.231c0,1.175,0.588,2.146,1.716,2.146
			c0.707,0,1.354-0.479,1.547-1.259c0.035-0.144,0.048-0.288,0.048-0.456V422.459z"/>
		<path d="M706.896,417.386h1.056v3.634h0.024c0.168-0.3,0.432-0.576,0.755-0.755c0.312-0.18,0.684-0.288,1.079-0.288
			c0.779,0,2.027,0.48,2.027,2.471v3.454h-1.056v-3.334c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.211,0.48-1.416,1.043
			c-0.06,0.156-0.071,0.312-0.071,0.504v3.502h-1.056V417.386z"/>
		<path d="M715.512,419.088h-0.023l-1.355,0.732l-0.205-0.804l1.703-0.912h0.9v7.796h-1.02V419.088z"/>
		<path d="M722.783,418.093l-1.14,1.499v0.024l1.812-0.24v0.815l-1.812-0.228V420l1.151,1.439l-0.756,0.432l-0.731-1.679h-0.024
			l-0.768,1.691l-0.684-0.432l1.14-1.463v-0.036l-1.774,0.24v-0.815l1.763,0.228v-0.024l-1.128-1.476l0.732-0.419l0.743,1.679h0.024
			l0.73-1.691L722.783,418.093z"/>
	</g>
</g>
<g>
	
		<radialGradient id="Cdh1_path2_1_" cx="599.9355" cy="-355.1499" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdh1_path2" fill="url(#Cdh1_path2_1_)" stroke="#000000" d="M838.063,310.377c0,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.476C826.726,299.903,838.063,304.59,838.063,310.377z"/>
	<g>
		<path d="M808.455,313.648c-0.372,0.192-1.152,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.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.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.296-0.132,1.716-0.336L808.455,313.648z"/>
		<path d="M814.611,305.385v7.016c0,0.516,0.023,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036
			c-0.312,0.647-1.007,1.139-1.955,1.139c-1.403,0-2.495-1.188-2.495-2.95c-0.012-1.931,1.2-3.106,2.604-3.106
			c0.899,0,1.486,0.42,1.751,0.875h0.024v-3.466H814.611z M813.568,310.458c0-0.132-0.013-0.312-0.049-0.444
			c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.738,0.959-1.738,2.231c0,1.175,0.588,2.146,1.715,2.146
			c0.707,0,1.355-0.479,1.547-1.259c0.036-0.144,0.049-0.288,0.049-0.456V310.458z"/>
		<path d="M816.377,305.385h1.057v3.634h0.023c0.168-0.3,0.432-0.576,0.756-0.755c0.312-0.18,0.684-0.288,1.079-0.288
			c0.779,0,2.026,0.48,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.211,0.48-1.415,1.043
			c-0.06,0.156-0.071,0.312-0.071,0.504v3.502h-1.057V305.385z"/>
		<path d="M824.992,307.088h-0.023l-1.355,0.732l-0.204-0.804l1.703-0.912h0.899v7.796h-1.02V307.088z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="786.293" y1="321.355" x2="730.219" y2="413.761"/>
			<polygon points="788.002,325.677 785.652,322.412 781.669,321.834 789.39,316.252 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="739.983" y1="418.227" x2="796.058" y2="325.821"/>
			<polygon points="738.274,413.904 740.625,417.17 744.607,417.747 736.887,423.33 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="750" y1="361.88" x2="702.542" y2="263.9"/>
		<polygon points="745.443,360.967 749.461,360.768 752.109,357.738 752.603,367.252 		"/>
	</g>
</g>
<g id="Cdc14">
	
		<radialGradient id="Cdc14_path1_1_" cx="532.1182" cy="-425.1465" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdc14_path1" fill="url(#Cdc14_path1_1_)" stroke="#000000" d="M730.011,265.874c0,5.786-11.338,10.478-25.317,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C718.673,255.399,730.011,260.086,730.011,265.874z"/>
	<g>
		<path d="M695.602,269.145c-0.371,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.716-4.246,4.223-4.246c0.995,0,1.643,0.216,1.918,0.36l-0.264,0.852c-0.383-0.192-0.947-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.296-0.132,1.716-0.336L695.602,269.145z"/>
		<path d="M701.758,260.881v7.016c0,0.516,0.024,1.103,0.049,1.499h-0.936l-0.049-1.007h-0.035
			c-0.312,0.647-1.008,1.139-1.955,1.139c-1.403,0-2.495-1.188-2.495-2.95c-0.012-1.931,1.2-3.106,2.603-3.106
			c0.9,0,1.487,0.42,1.752,0.875h0.023v-3.466H701.758z M700.715,265.955c0-0.132-0.012-0.312-0.049-0.444
			c-0.155-0.66-0.73-1.211-1.522-1.211c-1.091,0-1.739,0.959-1.739,2.231c0,1.175,0.588,2.146,1.715,2.146
			c0.708,0,1.355-0.479,1.547-1.259c0.037-0.144,0.049-0.288,0.049-0.456V265.955z"/>
		<path d="M707.662,269.192c-0.275,0.132-0.887,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962
			c0-1.787,1.224-3.094,3.118-3.094c0.624,0,1.176,0.156,1.463,0.312l-0.239,0.803c-0.252-0.132-0.647-0.275-1.224-0.275
			c-1.331,0-2.051,0.995-2.051,2.194c0,1.343,0.863,2.171,2.016,2.171c0.6,0,0.995-0.144,1.295-0.276L707.662,269.192z"/>
		<path d="M710.855,262.584h-0.023l-1.355,0.732l-0.205-0.804l1.703-0.912h0.9v7.796h-1.02V262.584z"/>
		<path d="M717.982,269.396v-2.135h-3.621v-0.684l3.479-4.978h1.139v4.846h1.092v0.815h-1.092v2.135H717.982z M717.982,266.446
			v-2.603c0-0.408,0.013-0.816,0.037-1.224h-0.037c-0.239,0.456-0.432,0.792-0.646,1.151l-1.908,2.65v0.024H717.982z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_11_" cx="620.5615" cy="-251.3052" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_25_" fill="url(#path16609_11_)" stroke="#000000" d="M870.928,376.402c0,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.476C859.59,365.927,870.928,370.615,870.928,376.402z"/>
	<g>
		<path d="M839.057,379.673c-0.371,0.192-1.15,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.542,1.716-4.246,4.222-4.246
			c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336c-1.896,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.336L839.057,379.673z"/>
		<path d="M840.381,371.961c0.635-0.108,1.391-0.18,2.219-0.18c1.498,0,2.566,0.36,3.273,1.007c0.732,0.66,1.151,1.595,1.151,2.902
			c0,1.319-0.419,2.399-1.163,3.143c-0.768,0.755-2.016,1.163-3.586,1.163c-0.756,0-1.367-0.036-1.895-0.096V371.961z
			 M841.424,379.109c0.264,0.036,0.647,0.048,1.055,0.048c2.243,0,3.443-1.247,3.443-3.43c0.012-1.907-1.068-3.118-3.275-3.118
			c-0.539,0-0.947,0.048-1.223,0.108V379.109z"/>
		<path d="M848.372,371.841h1.044v3.898h0.035c0.216-0.312,0.432-0.6,0.636-0.864l2.471-3.034h1.296l-2.927,3.43l3.154,4.653h-1.235
			l-2.65-3.97l-0.779,0.887v3.083h-1.044V371.841z"/>
		<path d="M854.695,378.857c0.324,0.192,0.876,0.408,1.404,0.408c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.301-0.768-1.068-1.056
			c-1.055-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.004-1.703c0.587,0,1.103,0.156,1.414,0.36l-0.252,0.768
			c-0.227-0.144-0.646-0.348-1.187-0.348c-0.624,0-0.96,0.36-0.96,0.792c0,0.479,0.336,0.695,1.092,0.995
			c0.995,0.372,1.523,0.876,1.523,1.739c0,1.031-0.804,1.751-2.159,1.751c-0.636,0-1.224-0.168-1.631-0.408L854.695,378.857z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="776.637" y1="376.403" x2="818.89" y2="376.403"/>
		<polygon points="779.445,372.7 777.873,376.403 779.445,380.107 770.668,376.403 		"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_13_" cx="317.6387" cy="-251.3052" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_26_" fill="url(#path16609_13_)" stroke="#000000" d="M388.28,376.402c0,5.786-11.338,10.478-25.317,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C376.942,365.927,388.28,370.615,388.28,376.402z"/>
	<g>
		<path d="M349.805,377.382l-0.839,2.542h-1.08l2.758-8.083h1.248l2.758,8.083h-1.115l-0.864-2.542H349.805z M352.468,376.566
			l-0.804-2.327c-0.18-0.527-0.3-1.007-0.419-1.475h-0.024c-0.12,0.468-0.24,0.972-0.408,1.463l-0.792,2.338H352.468z"/>
		<path d="M355.842,371.937c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.564,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.043V371.937z M356.885,375.835c0.228,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.456,0-0.804,0.036-0.983,0.084V375.835z"/>
		<path d="M367.863,379.673c-0.372,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.647,0,1.295-0.132,1.715-0.336L367.863,379.673z"/>
		<path d="M371.597,376.303v0.768h-2.962v-0.768H371.597z"/>
		<path d="M372.869,371.937c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.787,0.24,2.266,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.562,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V371.937z M373.913,375.835c0.228,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.906-1.595c-0.456,0-0.804,0.036-0.983,0.084V375.835z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="362.965" y1="395.88" x2="362.965" y2="449.378"/>
		<polygon points="366.668,398.689 362.965,397.116 359.261,398.689 362.965,389.911 		"/>
	</g>
</g>
<g>
	<path d="M101.193,370.123c-0.06-1.127-0.132-2.495-0.132-3.49h-0.024c-0.287,0.936-0.611,1.955-1.019,3.07l-1.428,3.922h-0.791
		l-1.319-3.85c-0.384-1.151-0.696-2.183-0.924-3.142h-0.024c-0.023,1.007-0.084,2.351-0.155,3.574l-0.216,3.466h-0.996l0.564-8.083
		h1.331l1.379,3.91c0.336,0.996,0.6,1.883,0.815,2.723h0.024c0.216-0.815,0.504-1.703,0.863-2.723l1.439-3.91h1.331l0.504,8.083
		h-1.031L101.193,370.123z"/>
	<path d="M105.312,366.237c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C105.048,365.577,105.312,365.865,105.312,366.237z M104.137,373.673v-5.805h1.055v5.805H104.137z"/>
	<path d="M108.215,366.477v1.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.08L108.215,366.477z"/>
	<path d="M116.098,370.723c0,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
		C114.97,367.748,116.098,368.959,116.098,370.723z M111.504,370.782c0,1.271,0.72,2.231,1.751,2.231
		c1.008,0,1.763-0.947,1.763-2.255c0-0.983-0.491-2.219-1.738-2.219C112.044,368.54,111.504,369.691,111.504,370.782z"/>
	<path d="M117.289,372.605c0.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.408L117.289,372.605z"/>
	<path d="M123.36,366.237c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C123.096,365.577,123.36,365.865,123.36,366.237z M122.185,373.673v-5.805h1.055v5.805H122.185z"/>
	<path d="M124.848,372.605c0.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.159,1.751c-0.635,0-1.223-0.168-1.631-0.408L124.848,372.605z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="111.169" y1="297.89" x2="111.169" y2="345.89"/>
		<polygon points="114.872,300.699 111.169,299.126 107.465,300.699 111.169,291.921 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="111.169" y1="389.761" x2="111.169" y2="437.761"/>
		<polygon points="114.872,392.57 111.169,390.997 107.465,392.57 111.169,383.792 		"/>
	</g>
</g>
<line fill="none" stroke="#000000" x1="118" y1="309.922" x2="118" y2="322.89"/>
<g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3" d="M118,316.406c38.003,2.99,180.498-15.43,230.536,132.991"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3" d="M118,407.528c130.643-55.648,224.545,22.892,230.536,45.618"/>
		<polygon points="119.133,403.021 119.137,407.044 122.036,409.835 112.508,409.868 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3" d="M171.803,437.761c73.471-46.523,144.479-10.383,176.732,13.047"/>
		<polygon points="172.195,433.13 172.847,437.1 176.158,439.388 166.76,440.955 		"/>
	</g>
</g>
<g id="g3355_5_">
	
		<radialGradient id="Mcm1_path3_1_" cx="-177.9795" cy="786.4136" r="14.7098" gradientTransform="matrix(1 0 0 -1 330.6191 1235.4424)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ABD053"/>
		<stop  offset="0.4082" style="stop-color:#A9D051"/>
		<stop  offset="0.5552" style="stop-color:#A5CE52"/>
		<stop  offset="0.66" style="stop-color:#9ECC53"/>
		<stop  offset="0.7448" style="stop-color:#92C851"/>
		<stop  offset="0.8174" style="stop-color:#83C34E"/>
		<stop  offset="0.8817" style="stop-color:#76C052"/>
		<stop  offset="0.9398" style="stop-color:#64BC54"/>
		<stop  offset="0.9915" style="stop-color:#58B952"/>
		<stop  offset="1" style="stop-color:#58B952"/>
	</radialGradient>
	<path id="Mcm1_path3" fill="url(#Mcm1_path3_1_)" stroke="#000000" stroke-miterlimit="3.8637" d="M135.222,449.124
		c0-6.334,7.801-11.471,17.418-11.471c9.619,0,17.518,5.138,17.416,11.471c-0.021,1.307-1.021,2.557-1.898,3.082
		c0,0-12.318-3.891-16.582,0c-2.361,2.154,0,8.197,0,8.197C143.484,459.413,135.222,454.739,135.222,449.124z"/>
	<g enable-background="new    ">
		<path d="M145.68,446.237c-0.05-0.939-0.11-2.079-0.11-2.909h-0.02c-0.24,0.78-0.51,1.63-0.85,2.559l-1.189,3.269h-0.66
			l-1.099-3.208c-0.32-0.96-0.58-1.819-0.77-2.619h-0.02c-0.02,0.84-0.07,1.959-0.13,2.979l-0.18,2.889h-0.83l0.47-6.736h1.109
			l1.149,3.258c0.28,0.83,0.5,1.569,0.68,2.27h0.02c0.18-0.68,0.42-1.42,0.72-2.27l1.199-3.258h1.109l0.42,6.736h-0.86
			L145.68,446.237z"/>
		<path d="M151.52,449.025c-0.23,0.11-0.74,0.28-1.389,0.28c-1.459,0-2.409-0.99-2.409-2.479c0-1.488,1.02-2.578,2.599-2.578
			c0.52,0,0.979,0.13,1.219,0.26l-0.2,0.67c-0.209-0.11-0.54-0.23-1.019-0.23c-1.109,0-1.709,0.83-1.709,1.84
			c0,1.119,0.719,1.809,1.679,1.809c0.5,0,0.83-0.12,1.08-0.229L151.52,449.025z"/>
		<path d="M152.551,445.667c0-0.51-0.02-0.909-0.04-1.309h0.77l0.04,0.779h0.03c0.27-0.46,0.719-0.89,1.529-0.89
			c0.65,0,1.149,0.399,1.359,0.97h0.02c0.15-0.28,0.35-0.48,0.55-0.63c0.29-0.22,0.6-0.34,1.06-0.34c0.649,0,1.599,0.42,1.599,2.099
			v2.849h-0.86v-2.738c0-0.939-0.35-1.489-1.049-1.489c-0.51,0-0.89,0.37-1.049,0.789c-0.04,0.13-0.07,0.29-0.07,0.44v2.998h-0.86
			v-2.898c0-0.779-0.34-1.329-1.009-1.329c-0.54,0-0.95,0.439-1.089,0.879c-0.05,0.131-0.07,0.28-0.07,0.431v2.918h-0.86V445.667z"
			/>
		<path d="M162.521,443.519h-0.02l-1.129,0.609l-0.17-0.67l1.419-0.759h0.75v6.496h-0.849V443.519z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="329.856" y1="460.403" x2="93.469" y2="460.403"/>
		<polygon points="327.048,464.106 328.621,460.403 327.048,456.699 335.826,460.403 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="818.89" y1="460.403" x2="387.908" y2="460.403"/>
		<polygon points="816.081,464.106 817.654,460.403 816.081,456.699 824.859,460.403 		"/>
	</g>
</g>
<g>
	<g id="g22085_31_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_71_" cx="-950.0157" cy="-1747.8579" r="11.9634" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_31_" fill="url(#path20137_71_)" stroke="#000000" d="M805.786,515.727c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C809.695,515.607,807.579,516.505,805.786,515.727z"/>
	</g>
	<g id="g22085_30_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_72_" cx="-313.3184" cy="-1453.5249" r="17.8364" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_30_" fill="url(#path20137_72_)" stroke="#000000" d="M824.956,547.639c-2.914,0-5.275-2.485-5.275-5.549
			c0-3.065,2.361-5.55,5.275-5.55s5.275,2.484,5.275,5.55C830.231,545.154,827.87,547.639,824.956,547.639z"/>
	</g>
	<g id="g22085_29_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_73_" cx="-401.6006" cy="1503.9106" r="25.54" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_29_" fill="url(#path20137_73_)" stroke="#000000" d="M835.447,522.571c4.174,0,7.555-3.559,7.555-7.945
			c0-4.39-3.381-7.947-7.555-7.947c-4.173,0-7.554,3.557-7.554,7.947C827.893,519.012,831.277,522.571,835.447,522.571z"/>
	</g>
	<g id="g22085_28_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_74_" cx="-350.5596" cy="1544.2065" r="20.8188" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_28_" fill="url(#path20137_74_)" stroke="#000000" d="M847.368,536.981c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C841.209,534.081,843.968,536.981,847.368,536.981z"/>
	</g>
	<g id="g22085_27_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_75_" cx="-372.8096" cy="1461.6802" r="20.8193" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_27_" fill="url(#path20137_75_)" stroke="#000000" d="M822.957,530.059c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C816.798,527.159,819.557,530.059,822.957,530.059z"/>
	</g>
	<g id="g22085_26_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_76_" cx="-350.2989" cy="-1477.3149" r="30.5518" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_26_" fill="url(#path20137_76_)" stroke="#000000" d="M831.991,540.09c-4.987,0-9.035-4.257-9.035-9.504
			c0-5.25,4.048-9.506,9.035-9.506c4.991,0,9.039,4.255,9.039,9.506C841.03,535.833,836.982,540.09,831.991,540.09z"/>
	</g>
	<g id="g22085_25_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_77_" cx="-881.9444" cy="-1882.8071" r="11.9629" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_25_" fill="url(#path20137_77_)" stroke="#000000" d="M833.965,551.053c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C837.874,550.934,835.758,551.832,833.965,551.053z"/>
	</g>
</g>
<g>
	<g id="g22085_38_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_78_" cx="-913.8253" cy="-409.9985" r="11.9634" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_38_" fill="url(#path20137_78_)" stroke="#000000" d="M438.317,368.409c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C442.227,368.29,440.11,369.188,438.317,368.409z"/>
	</g>
	<g id="g22085_37_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_79_" cx="-786.8555" cy="-211.2368" r="17.8359" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_37_" fill="url(#path20137_79_)" stroke="#000000" d="M457.487,400.322c-2.914,0-5.275-2.485-5.275-5.549
			c0-3.065,2.361-5.55,5.275-5.55s5.275,2.484,5.275,5.55C462.763,397.836,460.401,400.322,457.487,400.322z"/>
	</g>
	<g id="g22085_36_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_80_" cx="-875.1378" cy="261.6235" r="25.54" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_36_" fill="url(#path20137_80_)" stroke="#000000" d="M467.978,375.254c4.174,0,7.555-3.559,7.555-7.945
			c0-4.39-3.381-7.947-7.555-7.947c-4.173,0-7.554,3.557-7.554,7.947C460.425,371.695,463.809,375.254,467.978,375.254z"/>
	</g>
	<g id="g22085_35_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_81_" cx="-824.0967" cy="301.9185" r="20.8193" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_35_" fill="url(#path20137_81_)" stroke="#000000" d="M479.899,389.664c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C473.74,386.763,476.499,389.664,479.899,389.664z"/>
	</g>
	<g id="g22085_34_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_82_" cx="-846.3467" cy="219.3931" r="20.8193" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_34_" fill="url(#path20137_82_)" stroke="#000000" d="M455.488,382.742c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C449.329,379.841,452.088,382.742,455.488,382.742z"/>
	</g>
	<g id="g22085_33_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_83_" cx="-823.836" cy="-235.0269" r="30.5522" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_33_" fill="url(#path20137_83_)" stroke="#000000" d="M464.522,392.772c-4.987,0-9.035-4.257-9.035-9.504
			c0-5.25,4.048-9.506,9.035-9.506c4.991,0,9.039,4.255,9.039,9.506C473.561,388.516,469.514,392.772,464.522,392.772z"/>
	</g>
	<g id="g22085_32_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_84_" cx="-845.753" cy="-544.9497" r="11.9624" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_32_" fill="url(#path20137_84_)" stroke="#000000" d="M466.496,403.735c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C470.405,403.616,468.289,404.514,466.496,403.735z"/>
	</g>
</g>
<g>
	<g id="g22085_46_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_85_" cx="-152.3311" cy="-2112.2134" r="11.9629" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_46_" fill="url(#path20137_85_)" stroke="#000000" d="M805.786,786.28c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.783,4.728-2.004c1.794,0.777,2.583,2.938,1.764,4.824C809.695,786.161,807.579,787.058,805.786,786.28z"/>
	</g>
	<g id="g22085_44_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_86_" cx="556.3486" cy="-1453.5249" r="17.8369" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_44_" fill="url(#path20137_86_)" stroke="#000000" d="M824.956,818.193c-2.914,0-5.275-2.486-5.275-5.549
			c0-3.066,2.361-5.551,5.275-5.551s5.275,2.484,5.275,5.551C830.231,815.707,827.87,818.193,824.956,818.193z"/>
	</g>
	<g id="g22085_43_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_87_" cx="468.0654" cy="1503.9106" r="25.54" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_43_" fill="url(#path20137_87_)" stroke="#000000" d="M835.447,793.125c4.174,0,7.555-3.559,7.555-7.945
			c0-4.39-3.381-7.947-7.555-7.947c-4.173,0-7.554,3.558-7.554,7.947C827.893,789.566,831.277,793.125,835.447,793.125z"/>
	</g>
	<g id="g22085_42_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_88_" cx="519.1083" cy="1544.2065" r="20.8188" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_42_" fill="url(#path20137_88_)" stroke="#000000" d="M847.368,807.535c3.401,0,6.157-2.9,6.157-6.477
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.899-6.159,6.478C841.209,804.634,843.968,807.535,847.368,807.535z"/>
	</g>
	<g id="g22085_41_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_89_" cx="496.8583" cy="1461.6802" r="20.8193" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_41_" fill="url(#path20137_89_)" stroke="#000000" d="M822.957,800.613c3.401,0,6.157-2.9,6.157-6.477
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.899-6.159,6.478C816.798,797.712,819.557,800.613,822.957,800.613z"/>
	</g>
	<g id="g22085_40_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_90_" cx="519.3671" cy="-1477.3149" r="30.5518" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_40_" fill="url(#path20137_90_)" stroke="#000000" d="M831.991,810.643c-4.987,0-9.035-4.257-9.035-9.504
			c0-5.251,4.048-9.506,9.035-9.506c4.991,0,9.039,4.255,9.039,9.506C841.03,806.386,836.982,810.643,831.991,810.643z"/>
	</g>
	<g id="g22085_39_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_91_" cx="-84.2589" cy="-2247.1646" r="11.9639" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_39_" fill="url(#path20137_91_)" stroke="#000000" d="M833.965,821.606c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.783,4.728-2.004c1.794,0.777,2.583,2.938,1.764,4.824C837.874,821.487,835.758,822.384,833.965,821.606z"/>
	</g>
</g>
<g>
	<g id="g22085_56_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_92_" cx="-681.1563" cy="-1870.6626" r="11.9634" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_56_" fill="url(#path20137_92_)" stroke="#000000" d="M805.786,606.917c-1.793-0.778-2.581-2.938-1.763-4.823
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C809.695,606.797,807.579,607.695,805.786,606.917z"/>
	</g>
	<g id="g22085_55_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_93_" cx="-20.1973" cy="-1453.5249" r="17.8364" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_55_" fill="url(#path20137_93_)" stroke="#000000" d="M824.956,638.829c-2.914,0-5.275-2.485-5.275-5.549
			c0-3.065,2.361-5.55,5.275-5.55s5.275,2.484,5.275,5.55C830.231,636.344,827.87,638.829,824.956,638.829z"/>
	</g>
	<g id="g22085_54_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_94_" cx="-108.4796" cy="1503.9106" r="25.54" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_54_" fill="url(#path20137_94_)" stroke="#000000" d="M835.447,613.761c4.174,0,7.555-3.559,7.555-7.945
			c0-4.39-3.381-7.947-7.555-7.947c-4.173,0-7.554,3.557-7.554,7.947C827.893,610.202,831.277,613.761,835.447,613.761z"/>
	</g>
	<g id="g22085_53_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_95_" cx="-57.4385" cy="1544.2065" r="20.8188" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_53_" fill="url(#path20137_95_)" stroke="#000000" d="M847.368,628.171c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C841.209,625.271,843.968,628.171,847.368,628.171z"/>
	</g>
	<g id="g22085_52_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_96_" cx="-79.6885" cy="1461.6802" r="20.8193" gradientTransform="matrix(0 0.3111 0.2958 0 390.591 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_52_" fill="url(#path20137_96_)" stroke="#000000" d="M822.957,621.249c3.401,0,6.157-2.9,6.157-6.476
			c0-3.578-2.756-6.478-6.157-6.478c-3.4,0-6.159,2.9-6.159,6.478C816.798,618.349,819.557,621.249,822.957,621.249z"/>
	</g>
	<g id="g22085_51_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_97_" cx="-57.1788" cy="-1477.3149" r="30.5513" gradientTransform="matrix(0 0.3111 -0.2958 0 395.0036 639.5634)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_51_" fill="url(#path20137_97_)" stroke="#000000" d="M831.991,631.28c-4.987,0-9.035-4.257-9.035-9.504
			c0-5.25,4.048-9.506,9.035-9.506c4.991,0,9.039,4.255,9.039,9.506C841.03,627.023,836.982,631.28,831.991,631.28z"/>
	</g>
	<g id="g22085_47_" transform="translate(17.00007,-71.31057)">
		
			<radialGradient id="path20137_98_" cx="-613.085" cy="-2005.6138" r="11.9619" gradientTransform="matrix(-0.1239 0.2854 -0.2713 -0.1178 215.3128 577.4453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AAD051"/>
			<stop  offset="0.4082" style="stop-color:#A9D051"/>
			<stop  offset="0.5552" style="stop-color:#A3CE53"/>
			<stop  offset="0.66" style="stop-color:#9ECC53"/>
			<stop  offset="0.7448" style="stop-color:#92C851"/>
			<stop  offset="0.8174" style="stop-color:#83C350"/>
			<stop  offset="0.8817" style="stop-color:#76C050"/>
			<stop  offset="0.9398" style="stop-color:#64BC54"/>
			<stop  offset="0.9915" style="stop-color:#58B952"/>
			<stop  offset="1" style="stop-color:#58B952"/>
		</radialGradient>
		<path id="path20137_47_" fill="url(#path20137_98_)" stroke="#000000" d="M833.965,642.242c-1.793-0.777-2.581-2.938-1.763-4.822
			c0.819-1.886,2.936-2.784,4.728-2.005c1.794,0.778,2.583,2.938,1.764,4.824C837.874,642.123,835.758,643.021,833.965,642.242z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="818.89" y1="728.249" x2="387.908" y2="728.249"/>
		<polygon points="816.081,731.952 817.654,728.249 816.081,724.544 824.859,728.249 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="818.89" y1="639.301" x2="387.908" y2="639.301"/>
		<polygon points="816.081,643.004 817.654,639.301 816.081,635.597 824.859,639.301 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="818.89" y1="548.886" x2="557.078" y2="548.886"/>
		<polygon points="816.081,552.589 817.654,548.886 816.081,545.182 824.859,548.886 		"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_14_" cx="534.2686" cy="-102.7104" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_28_" fill="url(#path16609_14_)" stroke="#000000" d="M733.437,470.878c0,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.476C722.099,460.404,733.437,465.091,733.437,470.878z"/>
	<g>
		<path d="M699.996,471.859l-0.84,2.542h-1.08l2.759-8.083h1.247l2.759,8.083h-1.115l-0.864-2.542H699.996z M702.658,471.043
			l-0.804-2.327c-0.18-0.527-0.3-1.007-0.419-1.475h-0.025c-0.119,0.468-0.239,0.972-0.407,1.463l-0.792,2.338H702.658z"/>
		<path d="M706.032,466.414c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.217,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V466.414z M707.076,470.312c0.227,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.455,0-0.803,0.036-0.982,0.084V470.312z"/>
		<path d="M718.053,474.15c-0.371,0.192-1.15,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.542,1.716-4.246,4.222-4.246
			c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336c-1.896,0-3.154,1.211-3.154,3.334
			c0,1.991,1.14,3.25,3.095,3.25c0.646,0,1.295-0.132,1.715-0.336L718.053,474.15z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_15_" cx="534.2686" cy="2.0791" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_29_" fill="url(#path16609_15_)" stroke="#000000" d="M733.437,537.503c0,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.476C722.099,527.029,733.437,531.716,733.437,537.503z"/>
	<g>
		<path d="M698.557,539.755c0.467,0.3,1.139,0.528,1.859,0.528c1.066,0,1.69-0.563,1.69-1.379c0-0.743-0.432-1.187-1.522-1.595
			c-1.32-0.48-2.135-1.176-2.135-2.303c0-1.259,1.043-2.195,2.613-2.195c0.816,0,1.428,0.192,1.775,0.396l-0.287,0.852
			c-0.252-0.156-0.792-0.384-1.523-0.384c-1.104,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.818,2.339c-0.779,0-1.631-0.24-2.062-0.528L698.557,539.755z"/>
		<path d="M710.241,540.775c-0.372,0.192-1.151,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102
			c0-2.542,1.715-4.246,4.221-4.246c0.996,0,1.644,0.216,1.92,0.36l-0.264,0.852c-0.385-0.192-0.948-0.336-1.619-0.336
			c-1.896,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L710.241,540.775z"/>
		<path d="M711.553,532.943h4.354v0.875h-3.299v2.687h3.047v0.863h-3.047v3.658h-1.055V532.943z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_16_" cx="534.2686" cy="284.7861" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_30_" fill="url(#path16609_16_)" stroke="#000000" d="M733.437,717.249c0,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.476C722.099,706.774,733.437,711.461,733.437,717.249z"/>
	<g>
		<path d="M698.557,719.5c0.467,0.3,1.139,0.528,1.859,0.528c1.066,0,1.69-0.564,1.69-1.38c0-0.743-0.432-1.187-1.522-1.595
			c-1.32-0.48-2.135-1.176-2.135-2.303c0-1.26,1.043-2.195,2.613-2.195c0.816,0,1.428,0.192,1.775,0.396l-0.287,0.852
			c-0.252-0.156-0.792-0.385-1.523-0.385c-1.104,0-1.523,0.66-1.523,1.212c0,0.755,0.492,1.128,1.607,1.56
			c1.367,0.527,2.051,1.188,2.051,2.374c0,1.247-0.912,2.339-2.818,2.339c-0.779,0-1.631-0.24-2.062-0.527L698.557,719.5z"/>
		<path d="M710.241,720.52c-0.372,0.192-1.151,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.543,1.715-4.246,4.221-4.246
			c0.996,0,1.644,0.217,1.92,0.36l-0.264,0.852c-0.385-0.192-0.948-0.336-1.619-0.336c-1.896,0-3.154,1.212-3.154,3.334
			c0,1.991,1.139,3.251,3.094,3.251c0.648,0,1.295-0.133,1.715-0.336L710.241,720.52z"/>
		<path d="M711.553,712.689h4.354v0.875h-3.299v2.687h3.047v0.863h-3.047v3.658h-1.055V712.689z"/>
	</g>
</g>
<g>
	
		<radialGradient id="Cdc20_A_path3_1_" cx="442.6689" cy="145.0415" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdc20_A_path3" fill="url(#Cdc20_A_path3_1_)" stroke="#000000" d="M587.49,628.399c0,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.476C576.152,617.924,587.49,622.612,587.49,628.399z"/>
	<g>
		<path d="M553.082,631.67c-0.372,0.192-1.152,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102c0-2.543,1.715-4.246,4.222-4.246
			c0.995,0,1.644,0.217,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.212-3.154,3.334
			c0,1.991,1.139,3.251,3.094,3.251c0.648,0,1.296-0.133,1.716-0.336L553.082,631.67z"/>
		<path d="M559.238,623.408v7.016c0,0.516,0.023,1.104,0.048,1.499h-0.936l-0.048-1.007h-0.036
			c-0.312,0.646-1.007,1.139-1.955,1.139c-1.403,0-2.495-1.188-2.495-2.95c-0.012-1.931,1.2-3.106,2.604-3.106
			c0.899,0,1.486,0.42,1.751,0.875h0.024v-3.465H559.238z M558.195,628.48c0-0.132-0.013-0.312-0.049-0.443
			c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.738,0.959-1.738,2.23c0,1.176,0.588,2.146,1.715,2.146
			c0.707,0,1.355-0.479,1.547-1.26c0.036-0.144,0.049-0.287,0.049-0.455V628.48z"/>
		<path d="M565.143,631.718c-0.276,0.133-0.888,0.336-1.668,0.336c-1.75,0-2.891-1.188-2.891-2.963c0-1.787,1.225-3.094,3.119-3.094
			c0.623,0,1.176,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.646-0.275-1.223-0.275c-1.332,0-2.051,0.995-2.051,2.194
			c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.995-0.144,1.296-0.275L565.143,631.718z"/>
		<path d="M566.045,631.922v-0.647l0.827-0.804c1.991-1.896,2.902-2.902,2.902-4.077c0-0.792-0.372-1.523-1.535-1.523
			c-0.708,0-1.295,0.359-1.655,0.659l-0.336-0.743c0.528-0.444,1.308-0.792,2.195-0.792c1.68,0,2.387,1.151,2.387,2.267
			c0,1.439-1.043,2.604-2.687,4.186l-0.612,0.576v0.023h3.49v0.876H566.045z"/>
		<path d="M577.395,627.941c0,2.65-0.996,4.113-2.711,4.113c-1.523,0-2.566-1.428-2.591-4.006c0-2.627,1.14-4.054,2.723-4.054
			C576.446,623.995,577.395,625.458,577.395,627.941z M573.16,628.06c0,2.027,0.624,3.179,1.584,3.179
			c1.066,0,1.582-1.259,1.582-3.25c0-1.919-0.479-3.179-1.582-3.179C573.832,624.81,573.16,625.937,573.16,628.06z"/>
	</g>
</g>
<g>
	
		<radialGradient id="APC_P_path2_1_" cx="480.6875" cy="145.0415" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="APC_P_path2" fill="url(#APC_P_path2_1_)" stroke="#000000" d="M648.066,628.399c0,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.476C636.729,617.924,648.066,622.612,648.066,628.399z"/>
	<g>
		<path d="M609.592,629.38l-0.84,2.542h-1.079l2.759-8.083h1.247l2.759,8.083h-1.115l-0.864-2.542H609.592z M612.254,628.564
			l-0.803-2.326c-0.18-0.527-0.301-1.008-0.42-1.476h-0.024c-0.12,0.468-0.239,0.972-0.407,1.464l-0.792,2.338H612.254z"/>
		<path d="M615.629,623.935c0.503-0.084,1.162-0.156,2.002-0.156c1.031,0,1.787,0.24,2.268,0.672
			c0.432,0.384,0.707,0.971,0.707,1.691c0,0.73-0.216,1.307-0.623,1.727c-0.564,0.588-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.013-0.84-0.072v3.238h-1.043V623.935z M616.672,627.833c0.228,0.06,0.516,0.084,0.863,0.084
			c1.26,0,2.027-0.624,2.027-1.715c0-1.079-0.768-1.595-1.907-1.595c-0.456,0-0.804,0.035-0.983,0.084V627.833z"/>
		<path d="M627.649,631.67c-0.372,0.192-1.151,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.543,1.715-4.246,4.221-4.246
			c0.996,0,1.644,0.217,1.92,0.36l-0.264,0.852c-0.385-0.192-0.948-0.336-1.619-0.336c-1.896,0-3.154,1.212-3.154,3.334
			c0,1.991,1.139,3.251,3.094,3.251c0.647,0,1.295-0.133,1.715-0.336L627.649,631.67z"/>
		<path d="M631.383,628.3v0.768h-2.962V628.3H631.383z"/>
		<path d="M632.656,623.935c0.504-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.707,0.971,0.707,1.691c0,0.73-0.215,1.307-0.623,1.727c-0.563,0.588-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.013-0.84-0.072v3.238h-1.043V623.935z M633.699,627.833c0.229,0.06,0.516,0.084,0.863,0.084
			c1.26,0,2.027-0.624,2.027-1.715c0-1.079-0.768-1.595-1.906-1.595c-0.457,0-0.805,0.035-0.984,0.084V627.833z"/>
	</g>
</g>
<g>
	<path d="M590.733,632.39l3.334-8.695h0.827l-3.357,8.695H590.733z"/>
</g>
<g>
	
		<radialGradient id="path16609_17_" cx="458.5576" cy="18.5566" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_33_" fill="url(#path16609_17_)" stroke="#000000" d="M612.806,547.98c0,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.476C601.468,537.505,612.806,542.193,612.806,547.98z"/>
	<g>
		<path d="M585.83,551.251c-0.371,0.192-1.15,0.384-2.135,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.542,1.716-4.246,4.222-4.246
			c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336c-1.896,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.336L585.83,551.251z"/>
		<path d="M587.154,543.42h1.043v3.898h0.035c0.217-0.312,0.433-0.6,0.637-0.864l2.471-3.034h1.295l-2.926,3.43l3.153,4.653h-1.235
			l-2.65-3.97l-0.779,0.887v3.083h-1.043V543.42z"/>
		<path d="M593.741,542.988h1.056v8.515h-1.056V542.988z"/>
	</g>
	<path id="path19818" fill="#F5EA14" stroke="#000000" d="M561.759,547.98c0,2.682-2.098,4.854-4.681,4.854
		c-2.586,0-4.68-2.172-4.68-4.854c0-2.68,2.094-4.852,4.68-4.852C559.661,543.128,561.759,545.3,561.759,547.98z"/>
	<g enable-background="new    ">
		<path fill="#ED3C95" d="M555.623,545.035c0.322-0.063,0.744-0.111,1.279-0.111c0.659,0,1.142,0.159,1.448,0.444
			c0.283,0.254,0.46,0.643,0.46,1.119c0,0.483-0.139,0.864-0.406,1.143c-0.353,0.389-0.927,0.587-1.578,0.587
			c-0.199,0-0.383-0.008-0.536-0.048v2.143h-0.667V545.035z M556.29,547.605c0.146,0.04,0.337,0.056,0.552,0.056
			c0.812,0,1.295-0.412,1.295-1.135c0-0.714-0.483-1.055-1.219-1.055c-0.291,0-0.514,0.031-0.628,0.056V547.605z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="401.576" y1="554.069" x2="549.338" y2="554.069"/>
			<polygon points="404.385,550.366 402.812,554.069 404.385,557.773 395.607,554.069 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="539.188" y1="543.703" x2="391.426" y2="543.703"/>
			<polygon points="536.379,547.406 537.951,543.703 536.379,539.999 545.156,543.703 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="329.856" y1="547.981" x2="93.469" y2="547.981"/>
		<polygon points="327.048,551.684 328.621,547.981 327.048,544.277 335.826,547.981 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="329.856" y1="639.301" x2="93.469" y2="639.301"/>
		<polygon points="327.048,643.004 328.621,639.301 327.048,635.597 335.826,639.301 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="329.856" y1="728.249" x2="93.469" y2="728.249"/>
		<polygon points="327.048,731.952 328.621,728.249 327.048,724.544 335.826,728.249 		"/>
	</g>
</g>
<g id="Cln2">
	
		<radialGradient id="Cln2_path1_1_" cx="317.6387" cy="302.0854" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cln2_path1" fill="url(#Cln2_path1_1_)" stroke="#000000" d="M388.28,728.248c0,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.476C376.942,717.773,388.28,722.46,388.28,728.248z"/>
	<g>
		<path d="M358.125,731.519c-0.372,0.191-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.438-3.982-4.102
			c0-2.542,1.715-4.245,4.222-4.245c0.996,0,1.643,0.215,1.919,0.359l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L358.125,731.519z"/>
		<path d="M359.413,723.255h1.056v8.516h-1.056V723.255z"/>
		<path d="M362.245,727.537c0-0.611-0.012-1.091-0.048-1.57h0.936l0.06,0.959h0.024c0.288-0.539,0.959-1.079,1.919-1.079
			c0.803,0,2.051,0.479,2.051,2.471v3.454h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.223,0.491-1.415,1.078
			c-0.048,0.133-0.072,0.312-0.072,0.492v3.49h-1.056V727.537z"/>
		<path d="M368.568,731.771v-0.647l0.828-0.804c1.991-1.895,2.903-2.902,2.903-4.078c0-0.791-0.372-1.523-1.536-1.523
			c-0.708,0-1.295,0.36-1.655,0.66l-0.336-0.744c0.528-0.443,1.307-0.791,2.195-0.791c1.679,0,2.386,1.151,2.386,2.267
			c0,1.439-1.043,2.603-2.686,4.187l-0.612,0.575v0.024h3.49v0.875H368.568z"/>
	</g>
</g>
<g id="g3355_6_">
	
		<radialGradient id="path32439_3_" cx="-177.9795" cy="519.1929" r="14.7098" gradientTransform="matrix(1 0 0 -1 330.6191 1235.4424)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ABD053"/>
		<stop  offset="0.4082" style="stop-color:#A9D051"/>
		<stop  offset="0.5552" style="stop-color:#A5CE52"/>
		<stop  offset="0.66" style="stop-color:#9ECC53"/>
		<stop  offset="0.7448" style="stop-color:#92C851"/>
		<stop  offset="0.8174" style="stop-color:#83C34E"/>
		<stop  offset="0.8817" style="stop-color:#76C052"/>
		<stop  offset="0.9398" style="stop-color:#64BC54"/>
		<stop  offset="0.9915" style="stop-color:#58B952"/>
		<stop  offset="1" style="stop-color:#58B952"/>
	</radialGradient>
	<path id="path32439_7_" fill="url(#path32439_3_)" stroke="#000000" stroke-miterlimit="3.8637" d="M135.222,716.345
		c0-6.334,7.801-11.471,17.418-11.471c9.619,0,17.518,5.138,17.416,11.471c-0.021,1.307-1.021,2.557-1.898,3.082
		c0,0-12.318-3.891-16.582,0c-2.361,2.154,0,8.197,0,8.197C143.484,726.634,135.222,721.96,135.222,716.345z"/>
	<g enable-background="new    ">
		<path d="M145.307,715.357c0.39,0.25,0.95,0.439,1.549,0.439c0.89,0,1.409-0.459,1.409-1.148c0-0.62-0.36-0.99-1.269-1.33
			c-1.1-0.399-1.779-0.979-1.779-1.919c0-1.049,0.87-1.829,2.179-1.829c0.68,0,1.189,0.16,1.479,0.33l-0.24,0.71
			c-0.21-0.13-0.66-0.32-1.27-0.32c-0.919,0-1.27,0.55-1.27,1.01c0,0.63,0.41,0.939,1.339,1.299c1.14,0.45,1.709,0.99,1.709,1.979
			c0,1.039-0.759,1.949-2.349,1.949c-0.649,0-1.359-0.2-1.719-0.44L145.307,715.357z"/>
		<path d="M150.347,709.78c0.379-0.09,0.989-0.149,1.589-0.149c0.87,0,1.429,0.149,1.839,0.489c0.35,0.26,0.57,0.66,0.57,1.189
			c0,0.66-0.44,1.229-1.139,1.479v0.03c0.64,0.149,1.389,0.68,1.389,1.679c0,0.58-0.23,1.02-0.58,1.35
			c-0.46,0.43-1.22,0.629-2.319,0.629c-0.6,0-1.06-0.04-1.349-0.079V709.78z M151.216,712.539h0.79c0.91,0,1.449-0.489,1.449-1.14
			c0-0.779-0.589-1.099-1.469-1.099c-0.399,0-0.629,0.029-0.77,0.06V712.539z M151.216,715.757c0.18,0.029,0.42,0.039,0.73,0.039
			c0.899,0,1.729-0.329,1.729-1.309c0-0.91-0.79-1.3-1.739-1.3h-0.72V715.757z"/>
		<path d="M155.757,709.68h3.628v0.729h-2.749v2.239h2.539v0.72h-2.539v3.048h-0.879V709.68z"/>
	</g>
</g>
<g id="g3355_7_">
	
		<radialGradient id="path32439_4_" cx="-177.9795" cy="699.938" r="14.7098" gradientTransform="matrix(1 0 0 -1 330.6191 1235.4424)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ABD053"/>
		<stop  offset="0.4082" style="stop-color:#A9D051"/>
		<stop  offset="0.5552" style="stop-color:#A5CE52"/>
		<stop  offset="0.66" style="stop-color:#9ECC53"/>
		<stop  offset="0.7448" style="stop-color:#92C851"/>
		<stop  offset="0.8174" style="stop-color:#83C34E"/>
		<stop  offset="0.8817" style="stop-color:#76C052"/>
		<stop  offset="0.9398" style="stop-color:#64BC54"/>
		<stop  offset="0.9915" style="stop-color:#58B952"/>
		<stop  offset="1" style="stop-color:#58B952"/>
	</radialGradient>
	<path id="path32439_8_" fill="url(#path32439_4_)" stroke="#000000" stroke-miterlimit="3.8637" d="M135.222,535.6
		c0-6.334,7.801-11.471,17.418-11.471c9.619,0,17.518,5.138,17.416,11.471c-0.021,1.307-1.021,2.557-1.898,3.082
		c0,0-12.318-3.891-16.582,0c-2.361,2.154,0,8.197,0,8.197C143.484,545.889,135.222,541.215,135.222,535.6z"/>
	<g enable-background="new    ">
		<path d="M143.081,534.612c0.39,0.25,0.95,0.439,1.549,0.439c0.89,0,1.409-0.459,1.409-1.148c0-0.62-0.36-0.99-1.269-1.33
			c-1.1-0.399-1.779-0.979-1.779-1.919c0-1.049,0.87-1.829,2.179-1.829c0.68,0,1.189,0.16,1.479,0.33l-0.24,0.71
			c-0.21-0.13-0.66-0.32-1.27-0.32c-0.919,0-1.269,0.55-1.269,1.01c0,0.63,0.41,0.939,1.339,1.299c1.14,0.45,1.709,0.99,1.709,1.979
			c0,1.039-0.759,1.949-2.349,1.949c-0.649,0-1.359-0.2-1.719-0.44L143.081,534.612z"/>
		<path d="M148.353,530.834l0.649,2.448c0.13,0.54,0.26,1.05,0.35,1.549h0.03c0.11-0.489,0.27-1.009,0.43-1.539l0.79-2.458h0.74
			l0.75,2.418c0.18,0.57,0.32,1.09,0.43,1.579h0.03c0.08-0.489,0.21-0.999,0.37-1.568l0.689-2.429h0.87l-1.559,4.837h-0.8
			l-0.739-2.309c-0.17-0.55-0.31-1.029-0.43-1.6h-0.02c-0.12,0.58-0.27,1.09-0.44,1.609l-0.78,2.299h-0.799l-1.459-4.837H148.353z"
			/>
		<path d="M155.783,529.945c-0.33,0-0.55-0.26-0.55-0.57c0-0.31,0.23-0.56,0.57-0.56s0.56,0.25,0.56,0.56
			c0,0.311-0.22,0.57-0.57,0.57H155.783z M155.363,535.671v-4.837h0.879v4.837H155.363z"/>
		<path d="M161.301,529.915h-2.479l-0.25,1.649c0.15-0.021,0.29-0.04,0.53-0.04c0.51,0,1,0.109,1.399,0.35
			c0.51,0.28,0.93,0.85,0.93,1.689c0,1.269-1.009,2.219-2.418,2.219c-0.71,0-1.299-0.2-1.619-0.4l0.22-0.669
			c0.27,0.159,0.8,0.359,1.399,0.359c0.819,0,1.539-0.54,1.529-1.419c0-0.86-0.569-1.449-1.859-1.449
			c-0.38,0-0.669,0.029-0.909,0.069l0.419-3.098h3.108V529.915z"/>
	</g>
</g>
<g id="g3355_8_">
	
		<radialGradient id="path32439_5_" cx="-177.9795" cy="608.0425" r="14.7098" gradientTransform="matrix(1 0 0 -1 330.6191 1235.4424)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ABD053"/>
		<stop  offset="0.4082" style="stop-color:#A9D051"/>
		<stop  offset="0.5552" style="stop-color:#A5CE52"/>
		<stop  offset="0.66" style="stop-color:#9ECC53"/>
		<stop  offset="0.7448" style="stop-color:#92C851"/>
		<stop  offset="0.8174" style="stop-color:#83C34E"/>
		<stop  offset="0.8817" style="stop-color:#76C052"/>
		<stop  offset="0.9398" style="stop-color:#64BC54"/>
		<stop  offset="0.9915" style="stop-color:#58B952"/>
		<stop  offset="1" style="stop-color:#58B952"/>
	</radialGradient>
	<path id="path32439_9_" fill="url(#path32439_5_)" stroke="#000000" stroke-miterlimit="3.8637" d="M135.222,627.496
		c0-6.334,7.801-11.471,17.418-11.471c9.619,0,17.518,5.138,17.416,11.471c-0.021,1.307-1.021,2.557-1.898,3.082
		c0,0-12.318-3.891-16.582,0c-2.361,2.154,0,8.197,0,8.197C143.484,637.785,135.222,633.111,135.222,627.496z"/>
	<g enable-background="new    ">
		<path d="M149.539,624.609c-0.05-0.939-0.11-2.079-0.11-2.909h-0.02c-0.24,0.78-0.51,1.63-0.85,2.559l-1.189,3.269h-0.66
			l-1.099-3.208c-0.32-0.96-0.58-1.819-0.77-2.619h-0.02c-0.02,0.84-0.07,1.959-0.13,2.979l-0.18,2.889h-0.83l0.47-6.736h1.109
			l1.149,3.258c0.28,0.83,0.5,1.569,0.68,2.27h0.02c0.18-0.68,0.42-1.42,0.72-2.27l1.199-3.258h1.109l0.42,6.736h-0.86
			L149.539,624.609z"/>
		<path d="M151.902,620.93c0.379-0.09,0.989-0.149,1.589-0.149c0.87,0,1.429,0.149,1.839,0.489c0.35,0.26,0.57,0.66,0.57,1.189
			c0,0.66-0.44,1.229-1.139,1.479v0.03c0.64,0.149,1.389,0.68,1.389,1.679c0,0.58-0.23,1.02-0.58,1.35
			c-0.46,0.43-1.22,0.629-2.319,0.629c-0.6,0-1.06-0.04-1.349-0.079V620.93z M152.771,623.689h0.79c0.91,0,1.449-0.489,1.449-1.14
			c0-0.779-0.589-1.099-1.469-1.099c-0.399,0-0.629,0.029-0.77,0.06V623.689z M152.771,626.908c0.18,0.029,0.42,0.039,0.73,0.039
			c0.899,0,1.729-0.329,1.729-1.309c0-0.91-0.79-1.3-1.739-1.3h-0.72V626.908z"/>
		<path d="M157.312,620.831h3.628v0.729h-2.749v2.239h2.539v0.72h-2.539v3.048h-0.879V620.831z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="140.438" y1="518.292" x2="118" y2="488.866"/>
		<polygon points="135.79,518.304 139.688,517.31 141.68,513.813 144.057,523.039 		"/>
	</g>
</g>
<g>
	
		<radialGradient id="Cdc14_path2_1_" cx="159.6045" cy="-71.8516" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Cdc14_path2" fill="url(#Cdc14_path2_1_)" stroke="#000000" d="M136.485,490.499c0,5.786-11.338,10.478-25.317,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.333-10.476,25.314-10.476C125.147,480.024,136.485,484.711,136.485,490.499z"/>
	<g>
		<path d="M102.076,493.77c-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.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336c-1.895,0-3.154,1.211-3.154,3.334
			c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L102.076,493.77z"/>
		<path d="M108.232,485.506v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036
			c-0.312,0.647-1.007,1.139-1.955,1.139c-1.403,0-2.495-1.188-2.495-2.95c-0.012-1.931,1.2-3.106,2.603-3.106
			c0.9,0,1.487,0.42,1.751,0.875h0.024v-3.466H108.232z M107.189,490.58c0-0.132-0.012-0.312-0.048-0.444
			c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.739,0.959-1.739,2.231c0,1.175,0.588,2.146,1.715,2.146
			c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V490.58z"/>
		<path d="M114.136,493.817c-0.276,0.132-0.887,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962
			c0-1.787,1.224-3.094,3.119-3.094c0.624,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.647-0.275-1.223-0.275
			c-1.332,0-2.051,0.995-2.051,2.194c0,1.343,0.864,2.171,2.015,2.171c0.6,0,0.996-0.144,1.295-0.276L114.136,493.817z"/>
		<path d="M117.33,487.209h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V487.209z"/>
		<path d="M124.457,494.021v-2.135h-3.622v-0.684l3.479-4.978h1.139v4.846h1.091v0.815h-1.091v2.135H124.457z M124.457,491.071
			v-2.603c0-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.024H124.457z"/>
	</g>
</g>
<line fill="none" stroke="#000000" stroke-dasharray="3" x1="345.193" y1="467.802" x2="169.328" y2="522.241"/>
<line fill="none" stroke="#000000" x1="165.292" y1="518.292" x2="176" y2="526.559"/>
<g>
	<g>
		<g>
			<path fill="none" stroke="#000000" stroke-dasharray="3" d="M427.935,502.946c-54.032,0-54.032,33.314-54.032,38.647"/>
			<polygon points="425.126,506.649 426.699,502.946 425.126,499.242 433.904,502.946 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" stroke-dasharray="3" d="M432.139,504.212c-54.03,0-54.032-43.981-54.032-38.647"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<path fill="none" stroke="#000000" stroke-dasharray="3" d="M427.935,597.799c-54.032,0-54.032,33.313-54.032,38.647"/>
			<polygon points="425.126,601.502 426.699,597.799 425.126,594.095 433.904,597.799 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" stroke-dasharray="3" d="M427.935,599.066c-54.03,0-54.032-43.981-54.032-38.647"/>
		</g>
	</g>
</g>
<g id="Clb2_T">
	
		<radialGradient id="Clb2_T_path1_1_" cx="317.6382" cy="-119.188" r="16.1863" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Clb2_T_path1" fill="url(#Clb2_T_path1_1_)" stroke="#000000" d="M388.279,460.402c0,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.476C376.941,449.927,388.279,454.615,388.279,460.402z"/>
	<g>
		<path d="M358.125,463.673c-0.372,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L358.125,463.673z"/>
		<path d="M359.412,455.41h1.056v8.515h-1.056V455.41z"/>
		<path d="M362.244,455.41h1.043v3.646h0.024c0.372-0.648,1.043-1.056,1.979-1.056c1.451,0,2.458,1.199,2.458,2.95
			c0,2.075-1.319,3.106-2.614,3.106c-0.84,0-1.511-0.324-1.955-1.079h-0.024l-0.06,0.947h-0.899
			c0.024-0.396,0.048-0.983,0.048-1.499V455.41z M363.287,461.599c0,0.132,0.012,0.264,0.048,0.384
			c0.192,0.731,0.815,1.235,1.583,1.235c1.116,0,1.763-0.899,1.763-2.231c0-1.163-0.6-2.159-1.739-2.159
			c-0.708,0-1.379,0.504-1.595,1.295c-0.036,0.132-0.06,0.276-0.06,0.443V461.599z"/>
		<path d="M368.735,463.925v-0.647l0.828-0.804c1.991-1.895,2.902-2.902,2.902-4.078c0-0.792-0.371-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.044,2.603-2.687,4.186l-0.612,0.576v0.024h3.49v0.875H368.735z"/>
	</g>
</g>
<g id="Clb5_T">
	
		<radialGradient id="Clb5_T_path1_1_" cx="317.6387" cy="162.1875" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="Clb5_T_path1" fill="url(#Clb5_T_path1_1_)" stroke="#000000" d="M388.28,639.3c0,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.476C376.942,628.826,388.28,633.513,388.28,639.3z"/>
	<g>
		<path d="M358.125,642.572c-0.372,0.191-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.438-3.982-4.102
			c0-2.542,1.715-4.245,4.222-4.245c0.996,0,1.643,0.215,1.919,0.359l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L358.125,642.572z"/>
		<path d="M359.413,634.308h1.056v8.516h-1.056V634.308z"/>
		<path d="M362.245,634.308h1.043v3.646h0.024c0.372-0.648,1.043-1.056,1.979-1.056c1.451,0,2.458,1.199,2.458,2.95
			c0,2.075-1.319,3.106-2.614,3.106c-0.84,0-1.511-0.323-1.955-1.079h-0.024l-0.06,0.947h-0.899
			c0.024-0.396,0.048-0.983,0.048-1.499V634.308z M363.288,640.498c0,0.131,0.012,0.264,0.048,0.383
			c0.192,0.732,0.815,1.236,1.583,1.236c1.116,0,1.763-0.9,1.763-2.231c0-1.163-0.6-2.159-1.739-2.159
			c-0.708,0-1.379,0.504-1.595,1.296c-0.036,0.132-0.06,0.276-0.06,0.443V640.498z"/>
		<path d="M373.391,635.916h-2.975l-0.3,2.003c0.18-0.024,0.348-0.036,0.636-0.036c0.612,0,1.2,0.12,1.679,0.42
			c0.611,0.336,1.115,1.02,1.115,1.99c0,1.523-1.212,2.663-2.902,2.663c-0.852,0-1.559-0.239-1.943-0.479l0.264-0.804
			c0.324,0.192,0.959,0.432,1.679,0.432c0.983,0,1.847-0.647,1.835-1.69c0-1.008-0.684-1.716-2.231-1.716
			c-0.456,0-0.803,0.036-1.091,0.072l0.504-3.742h3.73V635.916z"/>
	</g>
</g>
<g id="CKl_T">
	
		<radialGradient id="CKl_T_path1_1_" cx="317.6382" cy="18.5566" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="CKl_T_path1" fill="url(#CKl_T_path1_1_)" stroke="#000000" d="M388.279,547.98c0,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.476C376.941,537.505,388.279,542.193,388.279,547.98z"/>
	<g>
		<path d="M361.304,551.251c-0.372,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L361.304,551.251z"/>
		<path d="M362.627,543.42h1.043v3.898h0.036c0.216-0.312,0.432-0.6,0.636-0.864l2.471-3.034h1.295l-2.926,3.43l3.154,4.653h-1.235
			l-2.651-3.97l-0.779,0.887v3.083h-1.043V543.42z"/>
		<path d="M369.215,542.988h1.056v8.515h-1.056V542.988z"/>
	</g>
</g>
<g>
	<path d="M438.111,498.793v8.083h-1.056v-8.083H438.111z"/>
	<path d="M440.021,502.643c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V502.643z"/>
	<path d="M450.757,505.486c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V505.486z
		 M449.737,503.915c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V503.915z"/>
	<path d="M456.602,506.673c-0.276,0.132-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.188-2.89-2.962c0-1.787,1.223-3.094,3.118-3.094
		c0.623,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.251-0.132-0.647-0.275-1.223-0.275c-1.331,0-2.051,0.995-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.995-0.144,1.295-0.276L456.602,506.673z"/>
	<path d="M459.267,499.681v1.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.08L459.267,499.681z"/>
	<path d="M463.143,499.441c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C462.879,498.781,463.143,499.069,463.143,499.441z M461.968,506.877v-5.805h1.055v5.805H461.968z"/>
	<path d="M465.183,501.072l1.14,3.25c0.191,0.54,0.348,1.02,0.468,1.499h0.036c0.132-0.479,0.3-0.959,0.491-1.499l1.128-3.25h1.103
		l-2.278,5.805h-1.008l-2.206-5.805H465.183z"/>
	<path d="M471.015,504.167c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,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.012,0.372-0.036,0.492H471.015z M474.109,503.411c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H474.109z"/>
	<path d="M480.062,499.681h-2.458v-0.887h5.984v0.887h-2.471v7.196h-1.056V499.681z"/>
	<path d="M483.915,502.883c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V502.883z"/>
	<path d="M489.062,499.441c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C488.799,498.781,489.062,499.069,489.062,499.441z M487.888,506.877v-5.805h1.055v5.805H487.888z"/>
	<path d="M490.695,502.643c0-0.611-0.024-1.091-0.049-1.571h0.924l0.048,0.947h0.036c0.324-0.552,0.863-1.067,1.835-1.067
		c0.779,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.42-0.576,0.659-0.756c0.349-0.264,0.72-0.408,1.271-0.408
		c0.779,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.26-1.787c-0.611,0-1.067,0.443-1.259,0.947
		c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.031v-3.478c0-0.923-0.408-1.583-1.212-1.583c-0.647,0-1.139,0.527-1.307,1.055
		c-0.061,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V502.643z"/>
	<path d="M501.29,504.167c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,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.012,0.372-0.036,0.492H501.29z M504.385,503.411c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H504.385z"/>
	<path d="M506.715,502.883c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.191,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V502.883z"/>
</g>
<g>
	<path d="M438.111,593.647v8.083h-1.056v-8.083H438.111z"/>
	<path d="M440.021,597.497c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.96h0.023c0.288-0.54,0.96-1.079,1.919-1.079
		c0.804,0,2.051,0.479,2.051,2.471v3.453h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V597.497z"/>
	<path d="M450.757,600.339c0,0.504,0.024,0.995,0.084,1.391h-0.947L449.81,601h-0.036c-0.324,0.455-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.668c0-1.402,1.247-2.17,3.49-2.158v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.707c0.48-0.301,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.362V600.339z
		 M449.737,598.768c-1.151-0.024-2.458,0.181-2.458,1.308c0,0.695,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.973
		c0.036-0.119,0.048-0.239,0.048-0.336V598.768z"/>
	<path d="M456.602,601.527c-0.276,0.132-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.188-2.89-2.963c0-1.787,1.223-3.094,3.118-3.094
		c0.623,0,1.175,0.155,1.463,0.312l-0.24,0.804c-0.251-0.133-0.647-0.275-1.223-0.275c-1.331,0-2.051,0.994-2.051,2.193
		c0,1.344,0.863,2.172,2.015,2.172c0.6,0,0.995-0.145,1.295-0.276L456.602,601.527z"/>
	<path d="M459.267,594.535v1.391h1.512v0.804h-1.512v3.13c0,0.721,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.611-0.071
		l0.048,0.803c-0.203,0.072-0.527,0.145-0.936,0.145c-0.491,0-0.887-0.168-1.139-0.444c-0.288-0.323-0.408-0.839-0.408-1.522v-3.167
		h-0.899v-0.804h0.899v-1.079L459.267,594.535z"/>
	<path d="M463.143,594.294c0,0.359-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.289-0.636-0.648s0.265-0.66,0.66-0.66
		C462.879,593.634,463.143,593.923,463.143,594.294z M461.968,601.73v-5.805h1.055v5.805H461.968z"/>
	<path d="M465.183,595.925l1.14,3.25c0.191,0.541,0.348,1.02,0.468,1.5h0.036c0.132-0.48,0.3-0.959,0.491-1.5l1.128-3.25h1.103
		l-2.278,5.805h-1.008l-2.206-5.805H465.183z"/>
	<path d="M471.015,599.02c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.939c0-1.75,1.031-3.117,2.723-3.117
		c1.906,0,2.398,1.654,2.398,2.723c0,0.215-0.012,0.371-0.036,0.491H471.015z M474.109,598.264c0.012-0.659-0.276-1.702-1.463-1.702
		c-1.08,0-1.535,0.971-1.619,1.702H474.109z"/>
	<path d="M480.062,594.535h-2.458v-0.888h5.984v0.888h-2.471v7.195h-1.056V594.535z"/>
	<path d="M483.915,597.737c0-0.684-0.013-1.271-0.049-1.812h0.924l0.048,1.152h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.023v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.145-0.036,0.324-0.036,0.492v3.094h-1.055V597.737z"/>
	<path d="M489.062,594.294c0,0.359-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.289-0.636-0.648s0.265-0.66,0.66-0.66
		C488.799,593.634,489.062,593.923,489.062,594.294z M487.888,601.73v-5.805h1.055v5.805H487.888z"/>
	<path d="M490.695,597.497c0-0.611-0.024-1.091-0.049-1.571h0.924l0.048,0.947h0.036c0.324-0.551,0.863-1.066,1.835-1.066
		c0.779,0,1.379,0.479,1.631,1.163h0.024c0.18-0.336,0.42-0.575,0.659-0.756c0.349-0.264,0.72-0.407,1.271-0.407
		c0.779,0,1.919,0.504,1.919,2.518v3.406h-1.031v-3.273c0-1.127-0.42-1.787-1.26-1.787c-0.611,0-1.067,0.443-1.259,0.947
		c-0.048,0.156-0.084,0.336-0.084,0.527v3.586h-1.031v-3.478c0-0.923-0.408-1.583-1.212-1.583c-0.647,0-1.139,0.527-1.307,1.055
		c-0.061,0.145-0.084,0.336-0.084,0.516v3.49h-1.031V597.497z"/>
	<path d="M501.29,599.02c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.939c0-1.75,1.031-3.117,2.723-3.117
		c1.906,0,2.398,1.654,2.398,2.723c0,0.215-0.012,0.371-0.036,0.491H501.29z M504.385,598.264c0.012-0.659-0.276-1.702-1.463-1.702
		c-1.08,0-1.535,0.971-1.619,1.702H504.385z"/>
	<path d="M506.715,597.737c0-0.684-0.013-1.271-0.049-1.812h0.924l0.048,1.152h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.191,0.012,0.288,0.023v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.145-0.036,0.324-0.036,0.492v3.094h-1.055V597.737z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="409.974" y1="680.845" x2="372.878" y2="650.384"/>
		<polygon points="405.453,681.924 409.019,680.061 410.153,676.201 414.587,684.633 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="409.974" y1="768.793" x2="372.878" y2="738.333"/>
		<polygon points="405.453,769.873 409.019,768.009 410.153,764.149 414.587,772.582 		"/>
	</g>
</g>
<g>
	<path d="M437.463,688.767c0.637-0.108,1.393-0.18,2.219-0.18c1.5,0,2.568,0.359,3.275,1.007c0.73,0.659,1.15,1.595,1.15,2.902
		c0,1.319-0.42,2.399-1.162,3.143c-0.768,0.755-2.016,1.163-3.586,1.163c-0.756,0-1.367-0.035-1.896-0.096V688.767z
		 M438.508,695.916c0.264,0.035,0.646,0.047,1.055,0.047c2.242,0,3.441-1.246,3.441-3.43c0.014-1.906-1.066-3.118-3.273-3.118
		c-0.539,0-0.947,0.048-1.223,0.108V695.916z"/>
	<path d="M445.455,696.73v-8.083h1.152l2.578,4.09c0.588,0.947,1.068,1.799,1.439,2.626l0.035-0.012
		c-0.096-1.079-0.119-2.062-0.119-3.322v-3.382h0.984v8.083h-1.057l-2.566-4.102c-0.562-0.899-1.104-1.822-1.498-2.698l-0.037,0.013
		c0.061,1.019,0.072,1.99,0.072,3.334v3.453H445.455z"/>
	<path d="M454.658,694.188l-0.84,2.542h-1.078l2.758-8.083h1.248l2.758,8.083h-1.115l-0.863-2.542H454.658z M457.32,693.373
		l-0.803-2.327c-0.18-0.527-0.299-1.007-0.42-1.476h-0.023c-0.121,0.469-0.24,0.973-0.408,1.464l-0.791,2.339H457.32z"/>
	<path d="M463.107,695.458c0.467,0.301,1.139,0.528,1.859,0.528c1.066,0,1.691-0.563,1.691-1.38c0-0.742-0.434-1.187-1.523-1.594
		c-1.32-0.48-2.135-1.176-2.135-2.303c0-1.26,1.043-2.195,2.613-2.195c0.816,0,1.428,0.191,1.775,0.396l-0.287,0.852
		c-0.252-0.155-0.793-0.384-1.523-0.384c-1.104,0-1.523,0.66-1.523,1.211c0,0.756,0.492,1.128,1.607,1.56
		c1.367,0.528,2.051,1.188,2.051,2.374c0,1.248-0.912,2.34-2.818,2.34c-0.779,0-1.631-0.24-2.062-0.528L463.107,695.458z"/>
	<path d="M469.408,690.925l1.258,3.431c0.145,0.384,0.289,0.839,0.385,1.187h0.023c0.107-0.348,0.229-0.791,0.371-1.211l1.152-3.406
		h1.115l-1.584,4.139c-0.754,1.99-1.27,2.998-1.99,3.633c-0.527,0.444-1.031,0.625-1.295,0.672l-0.264-0.875
		c0.264-0.084,0.611-0.252,0.924-0.516c0.287-0.229,0.635-0.636,0.887-1.176c0.049-0.107,0.084-0.191,0.084-0.252
		c0-0.06-0.023-0.144-0.084-0.275l-2.135-5.35H469.408z"/>
	<path d="M474.676,692.497c0-0.611-0.014-1.091-0.049-1.571h0.936l0.061,0.96h0.023c0.287-0.54,0.959-1.079,1.918-1.079
		c0.805,0,2.051,0.479,2.051,2.471v3.453h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.223,0.492-1.414,1.079
		c-0.049,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V692.497z"/>
	<path d="M482.559,689.535v1.391h1.512v0.804h-1.512v3.13c0,0.721,0.203,1.128,0.791,1.128c0.289,0,0.457-0.024,0.611-0.071
		l0.049,0.803c-0.203,0.072-0.527,0.145-0.936,0.145c-0.492,0-0.887-0.168-1.139-0.444c-0.289-0.323-0.408-0.839-0.408-1.522v-3.167
		h-0.9v-0.804h0.9v-1.079L482.559,689.535z"/>
	<path d="M485.26,688.215h1.055v3.634h0.023c0.168-0.3,0.432-0.576,0.756-0.756c0.312-0.18,0.684-0.287,1.08-0.287
		c0.779,0,2.025,0.479,2.025,2.471v3.453h-1.055v-3.334c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.211,0.48-1.414,1.043
		c-0.061,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V688.215z"/>
	<path d="M492.506,694.02c0.025,1.427,0.924,2.015,1.992,2.015c0.756,0,1.223-0.132,1.607-0.3l0.191,0.756
		c-0.373,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.939c0-1.75,1.031-3.117,2.723-3.117
		c1.906,0,2.398,1.654,2.398,2.723c0,0.215-0.012,0.371-0.037,0.491H492.506z M495.602,693.264c0.012-0.659-0.277-1.702-1.463-1.702
		c-1.08,0-1.535,0.971-1.619,1.702H495.602z"/>
	<path d="M497.787,695.664c0.324,0.191,0.875,0.407,1.402,0.407c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.299-0.768-1.066-1.056
		c-1.057-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.002-1.703c0.588,0,1.104,0.155,1.416,0.359l-0.252,0.768
		c-0.229-0.145-0.648-0.348-1.188-0.348c-0.623,0-0.959,0.359-0.959,0.791c0,0.48,0.336,0.695,1.09,0.996
		c0.996,0.371,1.523,0.875,1.523,1.738c0,1.031-0.803,1.752-2.158,1.752c-0.635,0-1.223-0.168-1.631-0.408L497.787,695.664z"/>
	<path d="M503.857,689.294c0,0.359-0.252,0.648-0.672,0.648c-0.383,0-0.635-0.289-0.635-0.648s0.264-0.66,0.66-0.66
		C503.594,688.634,503.857,688.923,503.857,689.294z M502.684,696.73v-5.805h1.055v5.805H502.684z"/>
	<path d="M505.348,695.664c0.324,0.191,0.875,0.407,1.402,0.407c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.299-0.768-1.066-1.056
		c-1.057-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.002-1.703c0.588,0,1.104,0.155,1.416,0.359l-0.252,0.768
		c-0.229-0.145-0.648-0.348-1.188-0.348c-0.623,0-0.959,0.359-0.959,0.791c0,0.48,0.336,0.695,1.09,0.996
		c0.996,0.371,1.523,0.875,1.523,1.738c0,1.031-0.803,1.752-2.158,1.752c-0.635,0-1.223-0.168-1.631-0.408L505.348,695.664z"/>
</g>
<g>
	<path d="M452.457,766.767c0.457-0.108,1.188-0.18,1.908-0.18c1.043,0,1.715,0.18,2.207,0.588c0.42,0.311,0.684,0.791,0.684,1.427
		c0,0.792-0.527,1.476-1.367,1.774v0.037c0.768,0.18,1.666,0.814,1.666,2.014c0,0.696-0.275,1.236-0.695,1.619
		c-0.551,0.516-1.463,0.756-2.783,0.756c-0.719,0-1.27-0.048-1.619-0.096V766.767z M453.502,770.078h0.947
		c1.092,0,1.738-0.588,1.738-1.367c0-0.936-0.707-1.32-1.762-1.32c-0.48,0-0.756,0.036-0.924,0.072V770.078z M453.502,773.939
		c0.215,0.036,0.504,0.048,0.875,0.048c1.08,0,2.074-0.396,2.074-1.571c0-1.092-0.947-1.559-2.086-1.559h-0.863V773.939z"/>
	<path d="M463.783,773.135c0,0.612,0.012,1.14,0.049,1.595h-0.936l-0.061-0.947h-0.023c-0.266,0.469-0.889,1.08-1.92,1.08
		c-0.912,0-2.002-0.516-2.002-2.543v-3.395h1.055v3.203c0,1.104,0.348,1.858,1.295,1.858c0.707,0,1.199-0.491,1.391-0.972
		c0.061-0.144,0.098-0.336,0.098-0.539v-3.551h1.055V773.135z"/>
	<path d="M470.539,766.215v7.017c0,0.516,0.023,1.103,0.049,1.498h-0.936l-0.049-1.007h-0.035c-0.312,0.647-1.008,1.14-1.955,1.14
		c-1.404,0-2.494-1.188-2.494-2.951c-0.014-1.931,1.199-3.105,2.602-3.105c0.9,0,1.488,0.42,1.752,0.875h0.023v-3.466H470.539z
		 M469.496,771.289c0-0.133-0.012-0.312-0.049-0.443c-0.154-0.66-0.73-1.212-1.521-1.212c-1.092,0-1.74,0.96-1.74,2.231
		c0,1.175,0.588,2.146,1.715,2.146c0.709,0,1.355-0.48,1.547-1.26c0.037-0.145,0.049-0.287,0.049-0.455V771.289z"/>
	<path d="M477.307,766.215v7.017c0,0.516,0.023,1.103,0.049,1.498h-0.936l-0.049-1.007h-0.035c-0.312,0.647-1.008,1.14-1.955,1.14
		c-1.404,0-2.494-1.188-2.494-2.951c-0.014-1.931,1.199-3.105,2.602-3.105c0.9,0,1.488,0.42,1.752,0.875h0.023v-3.466H477.307z
		 M476.264,771.289c0-0.133-0.012-0.312-0.049-0.443c-0.154-0.66-0.73-1.212-1.521-1.212c-1.092,0-1.74,0.96-1.74,2.231
		c0,1.175,0.588,2.146,1.715,2.146c0.709,0,1.355-0.48,1.547-1.26c0.037-0.145,0.049-0.287,0.049-0.455V771.289z"/>
	<path d="M480.248,767.294c0,0.359-0.252,0.648-0.672,0.648c-0.383,0-0.635-0.289-0.635-0.648s0.264-0.66,0.66-0.66
		C479.984,766.634,480.248,766.923,480.248,767.294z M479.074,774.73v-5.805h1.055v5.805H479.074z"/>
	<path d="M481.883,770.497c0-0.611-0.014-1.091-0.049-1.571h0.936l0.061,0.96h0.023c0.287-0.54,0.959-1.079,1.918-1.079
		c0.805,0,2.051,0.479,2.051,2.471v3.453h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.223,0.492-1.414,1.079
		c-0.049,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V770.497z"/>
	<path d="M493.506,773.878c0,1.344-0.275,2.147-0.826,2.663c-0.576,0.516-1.393,0.696-2.123,0.696c-0.697,0-1.465-0.168-1.932-0.48
		l0.264-0.815c0.385,0.252,0.984,0.468,1.703,0.468c1.08,0,1.871-0.564,1.871-2.039v-0.636h-0.023
		c-0.312,0.54-0.947,0.972-1.848,0.972c-1.439,0-2.471-1.223-2.471-2.83c0-1.967,1.283-3.07,2.627-3.07
		c1.008,0,1.547,0.516,1.811,0.995h0.023l0.037-0.876h0.936c-0.037,0.408-0.049,0.888-0.049,1.584V773.878z M492.451,771.216
		c0-0.18-0.012-0.336-0.061-0.468c-0.191-0.624-0.695-1.128-1.475-1.128c-1.008,0-1.727,0.852-1.727,2.195
		c0,1.14,0.588,2.087,1.715,2.087c0.658,0,1.246-0.407,1.463-1.079c0.061-0.18,0.084-0.384,0.084-0.564V771.216z"/>
</g>
<g>
	<path d="M29.545,448.668c-0.468,0.18-1.403,0.444-2.495,0.444c-1.223,0-2.23-0.312-3.021-1.067
		c-0.696-0.672-1.128-1.751-1.128-3.01c0-2.411,1.667-4.174,4.378-4.174c0.936,0,1.679,0.204,2.026,0.372l-0.264,0.852
		c-0.432-0.204-0.972-0.348-1.787-0.348c-1.967,0-3.25,1.223-3.25,3.25c0,2.051,1.224,3.262,3.118,3.262
		c0.684,0,1.151-0.096,1.392-0.216v-2.411h-1.631v-0.839h2.662V448.668z"/>
	<path d="M31.097,445.035c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V445.035z"/>
	<path d="M40.154,446.078c0,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
		C39.026,443.104,40.154,444.315,40.154,446.078z M35.56,446.138c0,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.219C36.1,443.895,35.56,445.046,35.56,446.138z"/>
	<path d="M41.825,443.224l0.78,2.95c0.155,0.647,0.312,1.248,0.419,1.847h0.036c0.132-0.588,0.324-1.211,0.516-1.835l0.948-2.962
		h0.887l0.9,2.902c0.216,0.695,0.384,1.307,0.516,1.895h0.035c0.097-0.588,0.252-1.2,0.444-1.883l0.827-2.914h1.044l-1.871,5.805
		h-0.96l-0.887-2.771c-0.204-0.647-0.372-1.223-0.516-1.907h-0.024c-0.144,0.695-0.324,1.295-0.527,1.919l-0.936,2.758h-0.96
		l-1.751-5.805H41.825z"/>
	<path d="M51.507,441.832v1.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.08L51.507,441.832z"/>
	<path d="M54.209,440.513h1.055v3.634h0.024c0.168-0.3,0.432-0.576,0.756-0.755c0.312-0.18,0.684-0.288,1.079-0.288
		c0.779,0,2.026,0.48,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.211,0.48-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V440.513z"/>
</g>
<g>
	
		<radialGradient id="path16609_18_" cx="115.7095" cy="-1.0669" r="16.1863" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_38_" fill="url(#path16609_18_)" stroke="#000000" d="M66.546,535.503c0,5.786-11.338,10.478-25.317,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.333-10.476,25.314-10.476C55.208,525.029,66.546,529.716,66.546,535.503z"/>
	<g>
		<path d="M36.476,538.774c-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.996,0,1.643,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336c-1.895,0-3.154,1.211-3.154,3.334
			c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.295-0.132,1.715-0.336L36.476,538.774z"/>
		<path d="M37.763,530.511h1.056v8.515h-1.056V530.511z"/>
		<path d="M40.595,534.792c0-0.611-0.012-1.091-0.048-1.571h0.936l0.06,0.959h0.024c0.288-0.54,0.959-1.08,1.919-1.08
			c0.803,0,2.051,0.48,2.051,2.471v3.454H44.48v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.223,0.492-1.415,1.079
			c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V534.792z"/>
		<path d="M47.17,537.827c0.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
			h-0.587v-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.847v0.024
			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.528L47.17,537.827z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_19_" cx="115.7095" cy="68.1577" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -143.1281 536.1827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_39_" fill="url(#path16609_19_)" stroke="#000000" d="M66.546,579.517c0,5.786-11.338,10.477-25.317,10.477
		c-13.98,0-25.314-4.689-25.314-10.477c0-5.788,11.333-10.476,25.314-10.476C55.208,569.042,66.546,573.729,66.546,579.517z"/>
	<g>
		<path d="M30.839,575.076c0.456-0.108,1.187-0.18,1.907-0.18c1.043,0,1.715,0.18,2.207,0.588c0.419,0.312,0.684,0.792,0.684,1.427
			c0,0.792-0.528,1.475-1.367,1.775v0.036c0.768,0.18,1.667,0.815,1.667,2.015c0,0.696-0.276,1.235-0.696,1.619
			c-0.552,0.516-1.463,0.755-2.782,0.755c-0.72,0-1.271-0.047-1.619-0.096V575.076z M31.882,578.386h0.947
			c1.091,0,1.739-0.588,1.739-1.367c0-0.936-0.708-1.319-1.763-1.319c-0.48,0-0.755,0.036-0.923,0.072V578.386z M31.882,582.248
			c0.216,0.036,0.503,0.048,0.875,0.048c1.079,0,2.075-0.396,2.075-1.571c0-1.091-0.947-1.559-2.087-1.559h-0.863V582.248z"/>
		<path d="M41.492,582.835c-0.276,0.133-0.887,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962c0-1.787,1.224-3.094,3.119-3.094
			c0.624,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.647-0.275-1.223-0.275c-1.332,0-2.051,0.995-2.051,2.194
			c0,1.343,0.864,2.171,2.015,2.171c0.6,0,0.996-0.144,1.295-0.276L41.492,582.835z"/>
		<path d="M43.774,579.897h0.024c0.144-0.204,0.336-0.456,0.504-0.66l1.715-2.003h1.259l-2.23,2.387l2.554,3.418h-1.295
			l-1.991-2.782l-0.54,0.6v2.183H42.73v-8.515h1.043V579.897z"/>
		<path d="M48.022,583.04v-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.024H53v0.875H48.022z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="41.231" y1="512.877" x2="41.231" y2="455.329"/>
		<polygon points="37.528,510.068 41.231,511.641 44.935,510.068 41.231,518.846 		"/>
	</g>
</g>
<g>
	<path d="M41.613,553.588v2.818h2.71v0.72h-2.71v2.843h-0.768v-2.843h-2.711v-0.72h2.711v-2.818H41.613z"/>
</g>
<line fill="none" stroke="#000000" stroke-dasharray="3" x1="41.229" y1="589.994" x2="41.229" y2="715.25"/>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="41.229" y1="716.25" x2="118" y2="716.25"/>
		<polygon points="115.191,719.953 116.764,716.25 115.191,712.545 123.969,716.25 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3" x1="41.229" y1="627.4" x2="118" y2="627.4"/>
		<polygon points="115.191,631.103 116.764,627.4 115.191,623.696 123.969,627.4 		"/>
	</g>
</g>
</svg>
</window>