Location: Leloup, Gonze, Goldbeter, 1999 @ 3b17ef6d3d98 / leloup_1999_tagged.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2010-07-08 13:50:31+12:00
Desc:
Added new xul and session files
Permanent Source URI:
https://models.cellml.org/workspace/leloup_gonze_goldbeter_1999/rawfile/3b17ef6d3d985fb4ab56416368d5f752393113a3/leloup_1999_tagged.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()">

<script>
<![CDATA[
window.model_entities =
  {

			
	MP: {
		id: "MP",
		y: "MP/MP",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#99cc00",
		linestyle: "none"
	},

	P0: {
		id: "P0",
		y: "P0/P0",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ccff66",
		linestyle: "none"
	},

	P1: {
		id: "P1",
		y: "P1/P1",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ffff00",
		linestyle: "none"
	},


	P2: {
		id: "P2",
		y: "P2/P2",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ff9900",
		linestyle: "none"
	},


	MT: {
		id: "MT",
		y: "MT/MT",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ff3300",
		linestyle: "none"
	},


	T0: {
		id: "T0",
		y: "T0/T0",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#99ffff",
		linestyle: "none"
	}
,


	T1: {
		id: "T1",
		y: "T1/T1",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#0000ff",
		linestyle: "none"
	}
,


	T2: {
		id: "T2",
		y: "T2/T2",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#9933cc",
		linestyle: "none"
	}
,


	C: {
		id: "C",
		y: "C/C",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#cc33cc",
		linestyle: "none"
	}
,


	CN: {
		id: "CN",
		y: "CN/CN",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ff3399",
		linestyle: "none"
	}
,


	Pt: {
		id: "Pt",
		y: "P2/Pt",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ff99ff",
		linestyle: "none"
	}
,


	vdT: {
		id: "vdT",
		y: "T2/vdT",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#33ff99",
		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">

<path id="path11218"  fill="#C2DCF3" stroke="#2A8FCE" stroke-width="4.6459" d="
	M241.865,237.152c0,42.503-51.011,76.959-113.936,76.959c-62.924,0-113.935-34.456-113.935-76.959l0,0
	c0-42.504,51.011-76.96,113.935-76.96C190.854,160.192,241.865,194.648,241.865,237.152z"/>
<path id="path34811" fill="none" stroke="#010101" d="M92.328,272.205"/>
<g enable-background="new    ">
	<path fill="#010101" d="M59.418,186.599v1.16h1.259v0.669h-1.259v2.608c0,0.601,0.17,0.939,0.66,0.939c0.239,0,0.38-0.02,0.51-0.06
		l0.04,0.67c-0.17,0.06-0.44,0.12-0.78,0.12c-0.41,0-0.74-0.141-0.949-0.37c-0.24-0.27-0.34-0.699-0.34-1.27v-2.639h-0.75v-0.669
		h0.75v-0.89L59.418,186.599z"/>
	<path fill="#010101" d="M62.088,186.869c-0.33,0-0.55-0.26-0.55-0.57c0-0.31,0.229-0.56,0.569-0.56s0.561,0.25,0.561,0.56
		c0,0.311-0.221,0.57-0.57,0.57H62.088z M61.669,192.596v-4.837h0.879v4.837H61.669z"/>
	<path fill="#010101" d="M64.008,189.067c0-0.51-0.021-0.909-0.04-1.309h0.77l0.04,0.779h0.03c0.271-0.46,0.719-0.89,1.529-0.89
		c0.649,0,1.148,0.399,1.358,0.97h0.021c0.149-0.28,0.35-0.48,0.55-0.63c0.29-0.22,0.6-0.34,1.061-0.34
		c0.648,0,1.599,0.42,1.599,2.099v2.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.789
		c-0.04,0.13-0.07,0.29-0.07,0.44v2.998h-0.859v-2.898c0-0.779-0.341-1.329-1.01-1.329c-0.54,0-0.949,0.439-1.089,0.879
		c-0.05,0.131-0.069,0.28-0.069,0.431v2.918h-0.86L64.008,189.067L64.008,189.067z"/>
	<path fill="#010101" d="M75.527,186.599v1.16h1.26v0.669h-1.26v2.608c0,0.601,0.17,0.939,0.66,0.939c0.24,0,0.38-0.02,0.51-0.06
		l0.04,0.67c-0.17,0.06-0.439,0.12-0.779,0.12c-0.41,0-0.74-0.141-0.949-0.37c-0.24-0.27-0.34-0.699-0.34-1.27v-2.639h-0.75v-0.669
		h0.75v-0.89L75.527,186.599z"/>
	<path fill="#010101" d="M77.789,189.268c0-0.569-0.011-1.06-0.04-1.509h0.77l0.04,0.949h0.03c0.22-0.649,0.76-1.06,1.349-1.06
		c0.09,0,0.16,0.01,0.24,0.03v0.819c-0.1-0.01-0.19-0.021-0.31-0.021c-0.62,0-1.061,0.47-1.18,1.12
		c-0.02,0.13-0.029,0.27-0.029,0.42v2.578h-0.88L77.789,189.268z"/>
	<path fill="#010101" d="M84.396,191.436c0,0.42,0.021,0.829,0.07,1.159h-0.79l-0.08-0.609h-0.03c-0.26,0.38-0.79,0.72-1.479,0.72
		c-0.979,0-1.479-0.69-1.479-1.39c0-1.169,1.04-1.809,2.909-1.799v-0.101c0-0.399-0.11-1.129-1.1-1.119
		c-0.459,0-0.93,0.13-1.27,0.36l-0.2-0.59c0.4-0.25,0.99-0.42,1.6-0.42c1.489,0,1.849,1.01,1.849,1.979V191.436z M83.537,190.127
		c-0.959-0.02-2.05,0.15-2.05,1.09c0,0.579,0.379,0.839,0.819,0.839c0.64,0,1.049-0.399,1.189-0.81
		c0.029-0.09,0.04-0.189,0.04-0.279L83.537,190.127L83.537,190.127z"/>
	<path fill="#010101" d="M85.808,189.067c0-0.51-0.01-0.909-0.04-1.309h0.78l0.05,0.789h0.021c0.239-0.449,0.8-0.899,1.599-0.899
		c0.67,0,1.709,0.399,1.709,2.059v2.889h-0.879v-2.788c0-0.78-0.29-1.439-1.119-1.439c-0.57,0-1.021,0.409-1.18,0.899
		c-0.04,0.11-0.061,0.27-0.061,0.41v2.918h-0.879L85.808,189.067L85.808,189.067z"/>
	<path fill="#010101" d="M91.237,191.706c0.271,0.16,0.729,0.34,1.169,0.34c0.631,0,0.931-0.31,0.931-0.72
		c0-0.42-0.25-0.649-0.891-0.89c-0.879-0.319-1.289-0.789-1.289-1.369c0-0.779,0.641-1.419,1.67-1.419c0.489,0,0.919,0.13,1.179,0.3
		l-0.209,0.63c-0.19-0.11-0.54-0.28-0.99-0.28c-0.52,0-0.799,0.3-0.799,0.66c0,0.409,0.28,0.59,0.909,0.829
		c0.83,0.31,1.27,0.729,1.27,1.459c0,0.86-0.67,1.46-1.799,1.46c-0.53,0-1.02-0.141-1.359-0.34L91.237,191.706z"/>
	<path fill="#010101" d="M98.766,192.426c-0.229,0.11-0.74,0.28-1.389,0.28c-1.459,0-2.409-0.99-2.409-2.479
		c0-1.488,1.02-2.578,2.599-2.578c0.521,0,0.979,0.13,1.22,0.26l-0.2,0.67c-0.209-0.11-0.54-0.23-1.02-0.23
		c-1.108,0-1.709,0.83-1.709,1.84c0,1.119,0.72,1.809,1.68,1.809c0.5,0,0.829-0.12,1.079-0.229L98.766,192.426z"/>
	<path fill="#010101" d="M99.808,189.268c0-0.569-0.01-1.06-0.04-1.509h0.771l0.04,0.949h0.029c0.221-0.649,0.761-1.06,1.35-1.06
		c0.09,0,0.159,0.01,0.239,0.03v0.819c-0.1-0.01-0.189-0.021-0.31-0.021c-0.62,0-1.06,0.47-1.179,1.12
		c-0.021,0.13-0.03,0.27-0.03,0.42v2.578h-0.879L99.808,189.268z"/>
	<path fill="#010101" d="M103.527,186.869c-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.569,0.57H103.527z M103.107,192.596v-4.837h0.879v4.837H103.107z"/>
	<path fill="#010101" d="M105.447,189.338c0-0.62-0.01-1.12-0.04-1.579h0.79l0.051,0.829h0.02c0.351-0.6,0.929-0.939,1.709-0.939
		c1.179,0,2.06,0.989,2.06,2.459c0,1.738-1.069,2.599-2.199,2.599c-0.649,0-1.199-0.28-1.489-0.76h-0.02v2.628h-0.88
		L105.447,189.338L105.447,189.338z M106.327,190.627c0,0.12,0.01,0.25,0.039,0.359c0.15,0.61,0.69,1.029,1.311,1.029
		c0.929,0,1.469-0.759,1.469-1.868c0-0.97-0.5-1.8-1.429-1.8c-0.601,0-1.169,0.42-1.339,1.08c-0.021,0.12-0.05,0.25-0.05,0.359
		L106.327,190.627L106.327,190.627z"/>
	<path fill="#010101" d="M112.196,186.599v1.16h1.26v0.669h-1.26v2.608c0,0.601,0.17,0.939,0.66,0.939c0.24,0,0.38-0.02,0.51-0.06
		l0.04,0.67c-0.17,0.06-0.439,0.12-0.779,0.12c-0.41,0-0.74-0.141-0.949-0.37c-0.24-0.27-0.34-0.699-0.34-1.27v-2.639h-0.75v-0.669
		h0.75v-0.89L112.196,186.599z"/>
	<path fill="#010101" d="M114.868,186.869c-0.33,0-0.551-0.26-0.551-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.569,0.57H114.868z M114.447,192.596v-4.837h0.88v4.837H114.447z"/>
	<path fill="#010101" d="M118.757,192.706c-1.299,0-2.319-0.96-2.319-2.489c0-1.619,1.069-2.568,2.398-2.568
		c1.389,0,2.329,1.01,2.329,2.479c0,1.799-1.25,2.579-2.399,2.579L118.757,192.706L118.757,192.706z M118.787,192.046
		c0.839,0,1.469-0.789,1.469-1.889c0-0.819-0.41-1.85-1.449-1.85c-1.029,0-1.479,0.96-1.479,1.88c0,1.059,0.6,1.858,1.448,1.858
		L118.787,192.046L118.787,192.046z"/>
	<path fill="#010101" d="M122.276,189.067c0-0.51-0.01-0.909-0.04-1.309h0.78l0.05,0.789h0.021c0.239-0.449,0.8-0.899,1.599-0.899
		c0.67,0,1.709,0.399,1.709,2.059v2.889h-0.879v-2.788c0-0.78-0.29-1.439-1.119-1.439c-0.569,0-1.02,0.409-1.18,0.899
		c-0.04,0.11-0.061,0.27-0.061,0.41v2.918h-0.879L122.276,189.067L122.276,189.067z"/>
</g>
<g enable-background="new    ">
	<path fill="#010101" d="M58.362,280.259c0-0.62-0.01-1.12-0.04-1.579h0.79l0.051,0.829h0.02c0.35-0.6,0.929-0.938,1.709-0.938
		c1.179,0,2.06,0.989,2.06,2.459c0,1.738-1.069,2.599-2.199,2.599c-0.649,0-1.199-0.28-1.489-0.76h-0.02v2.628h-0.88L58.362,280.259
		L58.362,280.259z M59.243,281.548c0,0.12,0.01,0.25,0.039,0.359c0.15,0.61,0.69,1.029,1.311,1.029c0.929,0,1.469-0.759,1.469-1.868
		c0-0.97-0.5-1.8-1.429-1.8c-0.601,0-1.169,0.42-1.339,1.08c-0.021,0.12-0.05,0.25-0.05,0.359L59.243,281.548L59.243,281.548z"/>
	<path fill="#010101" d="M64.562,281.248c0.021,1.189,0.771,1.679,1.649,1.679c0.63,0,1.02-0.109,1.339-0.239l0.16,0.619
		c-0.311,0.14-0.851,0.31-1.619,0.31c-1.479,0-2.378-0.989-2.378-2.438c0-1.469,0.87-2.618,2.279-2.618
		c1.578,0,1.988,1.389,1.988,2.278c0,0.18-0.01,0.32-0.029,0.42L64.562,281.248z M67.131,280.618c0.01-0.55-0.23-1.429-1.209-1.429
		c-0.899,0-1.279,0.819-1.35,1.429H67.131z"/>
	<path fill="#010101" d="M69.083,280.188c0-0.569-0.011-1.06-0.04-1.509h0.77l0.04,0.949h0.03c0.22-0.649,0.76-1.06,1.349-1.06
		c0.09,0,0.16,0.01,0.24,0.03v0.819c-0.1-0.01-0.19-0.021-0.31-0.021c-0.62,0-1.06,0.47-1.18,1.12c-0.02,0.13-0.029,0.27-0.029,0.42
		v2.578h-0.88L69.083,280.188z"/>
	<path fill="#010101" d="M75.522,277.519v1.16h1.259v0.669h-1.259v2.608c0,0.601,0.17,0.939,0.66,0.939c0.24,0,0.38-0.02,0.51-0.06
		l0.04,0.67c-0.17,0.06-0.439,0.12-0.779,0.12c-0.41,0-0.74-0.141-0.949-0.37c-0.24-0.27-0.34-0.699-0.34-1.27v-2.639h-0.75v-0.669
		h0.75v-0.89L75.522,277.519z"/>
	<path fill="#010101" d="M77.782,280.188c0-0.569-0.01-1.06-0.039-1.509h0.77l0.04,0.949h0.03c0.22-0.649,0.76-1.06,1.349-1.06
		c0.09,0,0.16,0.01,0.24,0.03v0.819c-0.101-0.01-0.19-0.021-0.311-0.021c-0.62,0-1.059,0.47-1.179,1.12
		c-0.02,0.13-0.03,0.27-0.03,0.42v2.578h-0.879L77.782,280.188z"/>
	<path fill="#010101" d="M84.392,282.357c0,0.42,0.021,0.829,0.07,1.159h-0.79l-0.08-0.609h-0.03c-0.26,0.38-0.79,0.72-1.479,0.72
		c-0.979,0-1.479-0.69-1.479-1.39c0-1.169,1.04-1.809,2.909-1.799v-0.101c0-0.399-0.11-1.129-1.1-1.119
		c-0.459,0-0.93,0.13-1.27,0.36l-0.2-0.59c0.4-0.25,0.99-0.42,1.6-0.42c1.488,0,1.849,1.01,1.849,1.979V282.357z M83.531,281.048
		c-0.959-0.02-2.049,0.15-2.049,1.09c0,0.579,0.379,0.839,0.819,0.839c0.64,0,1.049-0.399,1.188-0.81
		c0.03-0.09,0.04-0.189,0.04-0.279L83.531,281.048L83.531,281.048z"/>
	<path fill="#010101" d="M85.803,279.988c0-0.51-0.01-0.909-0.04-1.309h0.78l0.05,0.789h0.02c0.24-0.449,0.801-0.899,1.6-0.899
		c0.67,0,1.709,0.399,1.709,2.059v2.889h-0.879v-2.788c0-0.78-0.29-1.439-1.119-1.439c-0.57,0-1.021,0.409-1.18,0.899
		c-0.04,0.11-0.061,0.27-0.061,0.41v2.918h-0.879L85.803,279.988L85.803,279.988z"/>
	<path fill="#010101" d="M91.232,282.627c0.271,0.16,0.729,0.34,1.169,0.34c0.63,0,0.931-0.31,0.931-0.72
		c0-0.42-0.25-0.649-0.891-0.89c-0.879-0.319-1.289-0.789-1.289-1.369c0-0.779,0.641-1.419,1.669-1.419c0.49,0,0.919,0.13,1.18,0.3
		l-0.209,0.63c-0.19-0.11-0.54-0.28-0.99-0.28c-0.521,0-0.799,0.3-0.799,0.66c0,0.409,0.279,0.59,0.909,0.829
		c0.829,0.31,1.27,0.729,1.27,1.459c0,0.86-0.67,1.46-1.799,1.46c-0.529,0-1.02-0.141-1.359-0.34L91.232,282.627z"/>
	<path fill="#010101" d="M98.761,283.347c-0.23,0.11-0.74,0.28-1.389,0.28c-1.459,0-2.409-0.99-2.409-2.479
		c0-1.488,1.02-2.578,2.599-2.578c0.521,0,0.979,0.13,1.219,0.26l-0.199,0.67c-0.21-0.11-0.54-0.23-1.021-0.23
		c-1.108,0-1.709,0.83-1.709,1.84c0,1.119,0.719,1.809,1.679,1.809c0.5,0,0.83-0.12,1.08-0.229L98.761,283.347z"/>
	<path fill="#010101" d="M99.803,280.188c0-0.569-0.01-1.06-0.04-1.509h0.77l0.04,0.949h0.03c0.22-0.649,0.76-1.06,1.35-1.06
		c0.09,0,0.159,0.01,0.239,0.03v0.819c-0.1-0.01-0.189-0.021-0.31-0.021c-0.62,0-1.061,0.47-1.179,1.12
		c-0.021,0.13-0.03,0.27-0.03,0.42v2.578h-0.879L99.803,280.188z"/>
	<path fill="#010101" d="M103.522,277.79c-0.33,0-0.55-0.26-0.55-0.57s0.23-0.56,0.57-0.56s0.56,0.25,0.56,0.56
		c0,0.311-0.22,0.57-0.57,0.57H103.522z M103.103,283.517v-4.837h0.879v4.837H103.103z"/>
	<path fill="#010101" d="M105.441,280.259c0-0.62-0.01-1.12-0.04-1.579h0.79l0.05,0.829h0.021c0.35-0.6,0.929-0.938,1.709-0.938
		c1.179,0,2.059,0.989,2.059,2.459c0,1.738-1.068,2.599-2.198,2.599c-0.649,0-1.199-0.28-1.489-0.76h-0.021v2.628h-0.879
		L105.441,280.259L105.441,280.259z M106.321,281.548c0,0.12,0.011,0.25,0.04,0.359c0.15,0.61,0.69,1.029,1.311,1.029
		c0.929,0,1.469-0.759,1.469-1.868c0-0.97-0.5-1.8-1.429-1.8c-0.601,0-1.169,0.42-1.339,1.08c-0.021,0.12-0.051,0.25-0.051,0.359
		L106.321,281.548L106.321,281.548z"/>
	<path fill="#010101" d="M112.191,277.519v1.16h1.26v0.669h-1.26v2.608c0,0.601,0.17,0.939,0.66,0.939c0.24,0,0.38-0.02,0.51-0.06
		l0.04,0.67c-0.17,0.06-0.439,0.12-0.779,0.12c-0.41,0-0.74-0.141-0.949-0.37c-0.24-0.27-0.34-0.699-0.34-1.27v-2.639h-0.75v-0.669
		h0.75v-0.89L112.191,277.519z"/>
	<path fill="#010101" d="M114.861,277.79c-0.33,0-0.55-0.26-0.55-0.57s0.23-0.56,0.57-0.56s0.56,0.25,0.56,0.56
		c0,0.311-0.22,0.57-0.569,0.57H114.861z M114.441,283.517v-4.837h0.879v4.837H114.441z"/>
	<path fill="#010101" d="M118.752,283.627c-1.299,0-2.319-0.96-2.319-2.489c0-1.619,1.069-2.568,2.398-2.568
		c1.389,0,2.329,1.01,2.329,2.479c0,1.799-1.25,2.579-2.399,2.579L118.752,283.627L118.752,283.627z M118.78,282.967
		c0.84,0,1.47-0.789,1.47-1.889c0-0.819-0.41-1.85-1.449-1.85c-1.029,0-1.479,0.96-1.479,1.88c0,1.059,0.601,1.858,1.449,1.858
		L118.78,282.967L118.78,282.967z"/>
	<path fill="#010101" d="M122.271,279.988c0-0.51-0.01-0.909-0.04-1.309h0.78l0.05,0.789h0.021c0.239-0.449,0.8-0.899,1.599-0.899
		c0.67,0,1.709,0.399,1.709,2.059v2.889h-0.879v-2.788c0-0.78-0.29-1.439-1.119-1.439c-0.57,0-1.02,0.409-1.18,0.899
		c-0.04,0.11-0.061,0.27-0.061,0.41v2.918h-0.879L122.271,279.988L122.271,279.988z"/>
</g>
<path id="path3234"  fill="none" stroke="#010101" d="M91.981,193.854"/>
<path id="path3278"  fill="#010101" d="M82.226,410.663"/>
<path id="path3282"  fill="#010101" d="M79.151,48.409"/>
<path id="path3284" fill="none" stroke="#010101" d="M200.646,236.63h161.956"/>
<g enable-background="new    ">
	<path fill="#010101" d="M449.55,458.623h3.629v0.729h-2.75v2.238h2.539v0.721h-2.539v3.047h-0.879V458.623z"/>
	<path fill="#010101" d="M454.56,459.633c-0.33,0-0.549-0.26-0.549-0.569c0-0.311,0.229-0.561,0.568-0.561
		c0.342,0,0.561,0.25,0.561,0.561s-0.219,0.569-0.57,0.569H454.56z M454.14,465.358v-4.836h0.881v4.836H454.14z"/>
	<path fill="#010101" d="M460.617,464.649c0,1.119-0.229,1.789-0.688,2.219c-0.48,0.43-1.16,0.58-1.771,0.58
		c-0.578,0-1.219-0.141-1.607-0.399l0.221-0.68c0.32,0.21,0.818,0.39,1.418,0.39c0.9,0,1.561-0.47,1.561-1.699v-0.528h-0.02
		c-0.262,0.448-0.791,0.81-1.541,0.81c-1.199,0-2.059-1.02-2.059-2.369c0-1.639,1.068-2.559,2.188-2.559
		c0.84,0,1.289,0.43,1.51,0.829h0.021l0.029-0.72h0.779c-0.031,0.341-0.041,0.729-0.041,1.32V464.649z M459.738,462.421
		c0-0.14-0.01-0.27-0.051-0.39c-0.16-0.521-0.578-0.939-1.229-0.939c-0.84,0-1.439,0.71-1.439,1.839c0,0.939,0.49,1.739,1.43,1.739
		c0.549,0,1.039-0.34,1.219-0.909c0.051-0.141,0.07-0.311,0.07-0.471V462.421L459.738,462.421z"/>
	<path fill="#010101" d="M465.818,459.683h-0.02l-1.129,0.609l-0.17-0.67l1.418-0.759h0.75v6.495h-0.85V459.683L465.818,459.683z"/>
	<path fill="#010101" d="M469.689,465.47c-0.34,0-0.58-0.271-0.58-0.63c0-0.36,0.25-0.63,0.6-0.63c0.352,0,0.592,0.26,0.592,0.63
		c0,0.359-0.24,0.63-0.602,0.63H469.689z"/>
	<path fill="#010101" d="M472.789,458.713c0.541-0.08,1.17-0.14,1.859-0.14c1.25,0,2.139,0.279,2.73,0.828
		c0.607,0.551,0.959,1.341,0.959,2.43c0,1.1-0.352,1.999-0.971,2.619c-0.639,0.629-1.68,0.969-2.986,0.969
		c-0.631,0-1.141-0.02-1.592-0.079V458.713z M473.669,464.681c0.221,0.039,0.539,0.039,0.881,0.039
		c1.857,0.01,2.867-1.039,2.867-2.857c0.012-1.609-0.891-2.6-2.729-2.6c-0.451,0-0.791,0.041-1.021,0.09v5.328H473.669z"/>
	<path fill="#010101" d="M479.46,462.031c0-0.569-0.012-1.06-0.041-1.509h0.77l0.041,0.949h0.029c0.221-0.649,0.76-1.061,1.35-1.061
		c0.09,0,0.16,0.01,0.24,0.029v0.82c-0.102-0.011-0.189-0.021-0.312-0.021c-0.617,0-1.059,0.47-1.178,1.119
		c-0.021,0.131-0.031,0.271-0.031,0.421v2.577h-0.879L479.46,462.031z"/>
	<path fill="#010101" d="M484.63,465.47c-1.301,0-2.32-0.959-2.32-2.488c0-1.619,1.07-2.568,2.398-2.568
		c1.391,0,2.328,1.01,2.328,2.479c0,1.799-1.25,2.58-2.396,2.58h-0.01V465.47z M484.658,464.81c0.84,0,1.471-0.789,1.471-1.889
		c0-0.818-0.41-1.85-1.449-1.85c-1.029,0-1.48,0.96-1.48,1.88c0,1.06,0.602,1.858,1.449,1.858H484.658L484.658,464.81z"/>
	<path fill="#010101" d="M488.029,464.47c0.271,0.16,0.73,0.34,1.17,0.34c0.629,0,0.93-0.31,0.93-0.72c0-0.42-0.25-0.649-0.891-0.89
		c-0.879-0.319-1.289-0.789-1.289-1.369c0-0.779,0.641-1.419,1.67-1.419c0.488,0,0.918,0.13,1.18,0.3l-0.209,0.63
		c-0.189-0.11-0.541-0.28-0.99-0.28c-0.521,0-0.799,0.301-0.799,0.66c0,0.409,0.277,0.59,0.908,0.829
		c0.828,0.31,1.27,0.729,1.27,1.46c0,0.859-0.67,1.459-1.799,1.459c-0.529,0-1.02-0.141-1.359-0.34L488.029,464.47z"/>
	<path fill="#010101" d="M494.078,465.47c-1.299,0-2.316-0.959-2.316-2.488c0-1.619,1.066-2.568,2.396-2.568
		c1.391,0,2.328,1.01,2.328,2.479c0,1.799-1.248,2.58-2.396,2.58h-0.012V465.47z M494.107,464.81c0.84,0,1.471-0.789,1.471-1.889
		c0-0.818-0.41-1.85-1.449-1.85c-1.029,0-1.479,0.96-1.479,1.88c0,1.06,0.6,1.858,1.449,1.858H494.107L494.107,464.81z"/>
	<path fill="#010101" d="M497.599,462.103c0-0.621-0.01-1.121-0.039-1.58h0.789l0.051,0.83h0.02c0.35-0.601,0.93-0.939,1.709-0.939
		c1.18,0,2.059,0.988,2.059,2.459c0,1.738-1.068,2.6-2.197,2.6c-0.648,0-1.199-0.281-1.488-0.761h-0.021v2.628h-0.879v-5.236
		H497.599z M498.48,463.392c0,0.119,0.01,0.25,0.039,0.358c0.15,0.61,0.689,1.029,1.311,1.029c0.93,0,1.469-0.759,1.469-1.868
		c0-0.971-0.5-1.801-1.43-1.801c-0.6,0-1.17,0.421-1.34,1.08c-0.02,0.121-0.049,0.25-0.049,0.359V463.392z"/>
	<path fill="#010101" d="M503.289,458.265h0.881v3.018h0.02c0.141-0.249,0.359-0.479,0.631-0.619c0.26-0.16,0.568-0.25,0.898-0.25
		c0.648,0,1.688,0.398,1.688,2.068v2.879h-0.879v-2.778c0-0.79-0.289-1.438-1.119-1.438c-0.568,0-1.01,0.398-1.18,0.879
		c-0.051,0.121-0.061,0.25-0.061,0.42v2.918h-0.879V458.265L503.289,458.265z"/>
	<path fill="#010101" d="M509.259,459.633c-0.33,0-0.551-0.26-0.551-0.569c0-0.311,0.23-0.561,0.57-0.561s0.561,0.25,0.561,0.561
		s-0.221,0.569-0.57,0.569H509.259z M508.839,465.358v-4.836h0.879v4.836H508.839z"/>
	<path fill="#010101" d="M511.179,458.265h0.879v7.096h-0.879V458.265z"/>
	<path fill="#010101" d="M516.927,464.2c0,0.42,0.02,0.829,0.068,1.158h-0.789l-0.078-0.608h-0.031
		c-0.26,0.38-0.789,0.72-1.479,0.72c-0.979,0-1.479-0.689-1.479-1.39c0-1.169,1.039-1.81,2.908-1.799v-0.101
		c0-0.399-0.109-1.13-1.102-1.119c-0.459,0-0.93,0.129-1.27,0.359l-0.199-0.59c0.4-0.25,0.99-0.42,1.6-0.42
		c1.488,0,1.85,1.01,1.85,1.979V464.2z M516.066,462.892c-0.959-0.021-2.049,0.149-2.049,1.09c0,0.578,0.381,0.838,0.82,0.838
		c0.639,0,1.049-0.398,1.189-0.809c0.029-0.091,0.039-0.189,0.039-0.279V462.892L516.066,462.892z"/>
</g>
<path id="path4167"  fill="#010101" d="M104.774-184.754"/>
<path id="path4201"  fill="none" stroke="#010101" d="M241.724,0"/>
<g>
	<g>
		<path fill="none" stroke="#010101" d="M467.08,94.765c-22.877,29.042-61.215,31.351-86.984,4.942"/>
		<polygon fill="#010101" points="384.707,99.13 380.957,100.591 379.404,104.304 375.925,95.435 		"/>
	</g>
</g>
<g id="T0">
	
		<radialGradient id="T0_path1_1_" cx="37.0049" cy="558.2217" r="16.1865" gradientTransform="matrix(0.9269 0 0 -0.6352 244.0336 439.2193)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="T0_path1" fill="url(#T0_path1_1_)" stroke="#010101" d="M293.062,84.636c0,5.78-6.598,10.467-14.73,10.467
		c-8.133,0-14.726-4.685-14.726-10.467c0-5.782,6.593-10.466,14.726-10.466C286.464,74.171,293.062,78.854,293.062,84.636z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M270.112,81.574h-2.049v-0.739h4.987v0.739h-2.06v5.997h-0.879V81.574z"/>
		<path fill="#010101" d="M274.672,80.835v6.736h-0.88v-6.736H274.672z"/>
		<path fill="#010101" d="M281.869,84.613c-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.559
			l-1.189,3.269h-0.66l-1.1-3.208c-0.32-0.96-0.58-1.819-0.769-2.619h-0.021c-0.02,0.84-0.07,1.959-0.13,2.979l-0.18,2.889h-0.83
			l0.47-6.736h1.11l1.148,3.258c0.279,0.83,0.5,1.569,0.68,2.27h0.02c0.18-0.68,0.42-1.42,0.721-2.27l1.199-3.258h1.109l0.42,6.736
			h-0.861L281.869,84.613z"/>
		<path fill="#010101" d="M285.992,87.682c-1.27,0-2.139-1.189-2.16-3.339c0-2.188,0.949-3.378,2.271-3.378
			c1.359,0,2.146,1.22,2.146,3.288c0,2.209-0.828,3.429-2.246,3.429H285.992z M286.031,87.002c0.891,0,1.32-1.05,1.32-2.709
			c0-1.599-0.4-2.648-1.32-2.648c-0.799,0-1.318,1.02-1.318,2.648c-0.021,1.689,0.5,2.709,1.311,2.709H286.031z"/>
	</g>
</g>
<g id="T1">
	<g>
		
			<radialGradient id="T1_path1_1_" cx="33.9312" cy="558.2217" r="16.1858" gradientTransform="matrix(0.9269 0 0 -0.6352 342.1879 439.2193)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#ADD252"/>
			<stop  offset="0.4082" style="stop-color:#ACD152"/>
			<stop  offset="0.5552" style="stop-color:#A7D053"/>
			<stop  offset="0.66" style="stop-color:#A0CD52"/>
			<stop  offset="0.7448" style="stop-color:#94C951"/>
			<stop  offset="0.8174" style="stop-color:#85C551"/>
			<stop  offset="0.8817" style="stop-color:#75C151"/>
			<stop  offset="0.9398" style="stop-color:#65BD53"/>
			<stop  offset="0.9915" style="stop-color:#59BA53"/>
			<stop  offset="1" style="stop-color:#57BA53"/>
		</radialGradient>
		<path id="T1_path1" fill="url(#T1_path1_1_)" stroke="#010101" d="M388.367,84.636c0,5.78-6.596,10.467-14.729,10.467
			s-14.727-4.685-14.727-10.467c0-5.782,6.594-10.466,14.727-10.466C381.773,74.171,388.367,78.854,388.367,84.636z"/>
		<g enable-background="new    ">
			<path fill="#010101" d="M365.419,81.573h-2.049v-0.739h4.986v0.739h-2.059v5.997h-0.881v-5.997H365.419z"/>
			<path fill="#010101" d="M369.98,80.834v6.736h-0.879v-6.736H369.98z"/>
			<path fill="#010101" d="M377.177,84.612c-0.049-0.939-0.109-2.079-0.109-2.909h-0.02c-0.24,0.78-0.512,1.63-0.852,2.559
				l-1.188,3.269h-0.66l-1.102-3.208c-0.318-0.96-0.578-1.819-0.77-2.619h-0.02c-0.02,0.84-0.07,1.959-0.131,2.979l-0.18,2.889
				h-0.83l0.471-6.736h1.109l1.148,3.258c0.279,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.109
				l0.42,6.736h-0.859L377.177,84.612z"/>
			<path fill="#010101" d="M381.14,81.894h-0.021l-1.129,0.609l-0.17-0.67l1.418-0.759h0.75v6.496h-0.85v-5.676H381.14z"/>
		</g>
	</g>
	<path id="path87172"  fill="#010101" d="M373.642,84.636"/>
</g>
<path id="path3264"  fill="#010101" d="M287.292,61.835"/>
<path id="path3268"  fill="#010101" d="M385.445,61.724"/>
<g id="T2">
	<g id="g3175" transform="translate(215.4491,-67.85668)">
		
			<radialGradient id="T2_path1_1_" cx="-400.0389" cy="558.2249" r="16.1865" gradientTransform="matrix(0.9269 0 0 -0.6352 624.2931 507.077)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#ADD252"/>
			<stop  offset="0.4082" style="stop-color:#ACD152"/>
			<stop  offset="0.5552" style="stop-color:#A7D053"/>
			<stop  offset="0.66" style="stop-color:#A0CD52"/>
			<stop  offset="0.7448" style="stop-color:#94C951"/>
			<stop  offset="0.8174" style="stop-color:#85C551"/>
			<stop  offset="0.8817" style="stop-color:#75C151"/>
			<stop  offset="0.9398" style="stop-color:#65BD53"/>
			<stop  offset="0.9915" style="stop-color:#59BA53"/>
			<stop  offset="1" style="stop-color:#57BA53"/>
		</radialGradient>
		<path id="T2_path1" fill="url(#T2_path1_1_)" stroke="#010101" d="M268.226,152.492c0,5.78-6.598,10.467-14.73,10.467
			s-14.727-4.685-14.727-10.467c0-5.782,6.594-10.466,14.727-10.466C261.629,142.028,268.226,146.711,268.226,152.492z"/>
		<g enable-background="new    ">
			<path fill="#010101" d="M245.722,149.931h-2.051v-0.739h4.986v0.739h-2.059v5.997h-0.879v-5.997H245.722z"/>
			<path fill="#010101" d="M250.281,149.192v6.736H249.4v-6.736H250.281z"/>
			<path fill="#010101" d="M257.48,152.97c-0.051-0.939-0.111-2.079-0.111-2.909h-0.02c-0.24,0.78-0.512,1.63-0.852,2.559
				l-1.188,3.269h-0.66l-1.098-3.208c-0.32-0.96-0.58-1.819-0.771-2.619h-0.02c-0.021,0.84-0.07,1.959-0.131,2.979l-0.18,2.889
				h-0.83l0.471-6.736h1.107l1.15,3.258c0.277,0.83,0.5,1.569,0.68,2.27h0.02c0.18-0.68,0.42-1.42,0.721-2.27l1.199-3.258h1.109
				l0.42,6.736h-0.859L257.48,152.97z"/>
			<path fill="#010101" d="M259.531,155.928v-0.54l0.689-0.669c1.658-1.579,2.42-2.419,2.42-3.398c0-0.66-0.311-1.27-1.279-1.27
				c-0.59,0-1.08,0.3-1.381,0.55l-0.279-0.619c0.439-0.37,1.09-0.66,1.84-0.66c1.391,0,1.979,0.96,1.979,1.889
				c0,1.2-0.869,2.169-2.238,3.488l-0.51,0.479v0.021h2.908v0.729H259.531z"/>
		</g>
	</g>
	<path id="path3266"  fill="#010101" d="M468.947,84.636"/>
	<path id="path3294"  fill="#010101" d="M468.947,84.636"/>
</g>
<g enable-background="new    ">
	<path fill="#010101" d="M498.515,10.263h0.881v6.007h2.877v0.729h-3.758V10.263z"/>
	<path fill="#010101" d="M503.636,11.272c-0.33,0-0.553-0.26-0.553-0.57s0.23-0.56,0.57-0.56s0.561,0.25,0.561,0.56
		c0,0.311-0.221,0.57-0.568,0.57H503.636z M503.216,16.999v-4.837h0.879v4.837H503.216z"/>
	<path fill="#010101" d="M509.691,16.289c0,1.12-0.229,1.789-0.688,2.219c-0.48,0.43-1.158,0.58-1.77,0.58
		c-0.58,0-1.221-0.14-1.607-0.399l0.219-0.68c0.318,0.21,0.818,0.39,1.42,0.39c0.898,0,1.559-0.47,1.559-1.699v-0.529h-0.02
		c-0.26,0.449-0.789,0.81-1.539,0.81c-1.199,0-2.061-1.02-2.061-2.369c0-1.639,1.068-2.559,2.189-2.559
		c0.84,0,1.289,0.43,1.51,0.829h0.02l0.031-0.719h0.779c-0.031,0.34-0.041,0.729-0.041,1.319v2.807H509.691z M508.814,14.06
		c0-0.14-0.01-0.27-0.051-0.39c-0.16-0.52-0.578-0.939-1.229-0.939c-0.84,0-1.439,0.71-1.439,1.839c0,0.938,0.49,1.739,1.43,1.739
		c0.549,0,1.039-0.34,1.219-0.91c0.053-0.14,0.07-0.31,0.07-0.47V14.06L508.814,14.06z"/>
	<path fill="#010101" d="M511.146,9.903h0.879v3.018h0.02c0.141-0.249,0.359-0.479,0.631-0.619c0.26-0.16,0.568-0.25,0.898-0.25
		c0.65,0,1.689,0.399,1.689,2.068v2.879h-0.879v-2.778c0-0.79-0.291-1.439-1.119-1.439c-0.57,0-1.01,0.399-1.18,0.88
		c-0.053,0.12-0.062,0.25-0.062,0.42V17h-0.879V9.903H511.146z"/>
	<path fill="#010101" d="M517.714,11.002v1.16h1.26v0.669h-1.26v2.608c0,0.601,0.17,0.939,0.658,0.939c0.24,0,0.381-0.02,0.512-0.06
		l0.039,0.67c-0.17,0.06-0.439,0.12-0.779,0.12c-0.41,0-0.74-0.141-0.949-0.37c-0.24-0.27-0.34-0.699-0.34-1.27v-2.639h-0.75V12.16
		h0.75v-0.89L517.714,11.002z"/>
</g>
<g>
	<g>
		<path fill="none" stroke="#010101" d="M376.05,74.511c23.236-27.796,61.52-30.348,86.959-4.659"/>
		<polygon fill="#010101" points="458.4,70.462 462.14,68.974 463.664,65.25 467.208,74.093 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#010101" d="M370.08,94.765c-22.877,29.042-61.215,31.351-86.984,4.942"/>
		<polygon fill="#010101" points="287.707,99.13 283.957,100.591 282.406,104.304 278.925,95.435 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#010101" d="M279.048,74.511c23.238-27.796,61.521-30.348,86.959-4.659"/>
		<polygon fill="#010101" points="361.4,70.462 365.14,68.974 366.664,65.25 370.208,74.093 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="531.302" y1="84.011" x2="483.302" y2="84.011"/>
		<polygon fill="#010101" points="528.492,87.715 530.064,84.011 528.492,80.307 537.271,84.011 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" x1="508.5" y1="75.844" x2="508.5" y2="20.01"/>
		<polygon fill="#F6EB16" points="504.796,73.035 508.5,74.608 512.203,73.035 508.5,81.813 		"/>
	</g>
	<g>
		<line fill="none" stroke="#EEE92E" x1="508.5" y1="75.844" x2="508.5" y2="20.01"/>
		<polygon fill="#EEE92E" points="504.796,73.035 508.5,74.608 512.203,73.035 508.5,81.813 		"/>
	</g>
</g>
<g id="P0" transform="translate(17.17704,243.1136)">
	
		<radialGradient id="P0_path1_1_" cx="1.5158" cy="558.3161" r="16.186" gradientTransform="matrix(0.9269 0 0 -0.6352 256.736 507.0764)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="P0_path1" fill="url(#P0_path1_1_)" stroke="#010101" d="M272.869,152.433c0,5.78-6.598,10.467-14.728,10.467
		c-8.134,0-14.728-4.685-14.728-10.467s6.594-10.466,14.728-10.466C266.272,141.967,272.869,146.652,272.869,152.433z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M249.086,149.221c0.419-0.079,0.969-0.139,1.669-0.139c0.858,0,1.489,0.199,1.889,0.56
			c0.37,0.319,0.601,0.81,0.601,1.409c0,0.608-0.181,1.09-0.53,1.438c-0.46,0.489-1.209,0.739-2.06,0.739
			c-0.26,0-0.5-0.01-0.699-0.061v2.698h-0.869V149.221L249.086,149.221z M249.955,152.462c0.189,0.049,0.439,0.069,0.72,0.069
			c1.06,0,1.688-0.521,1.688-1.43c0-0.899-0.629-1.329-1.589-1.329c-0.38,0-0.67,0.04-0.819,0.07V152.462z"/>
		<path fill="#010101" d="M257.884,152.712h-2.609v2.429h2.918v0.729h-3.798v-6.735h3.648v0.729h-2.77v2.129h2.609L257.884,152.712
			L257.884,152.712z"/>
		<path fill="#010101" d="M259.326,149.232c0.438-0.09,1.079-0.149,1.668-0.149c0.93,0,1.539,0.18,1.959,0.561
			c0.33,0.29,0.529,0.75,0.529,1.279c0,0.879-0.568,1.469-1.27,1.709v0.029c0.51,0.18,0.82,0.659,0.99,1.359
			c0.219,0.939,0.379,1.589,0.51,1.849h-0.9c-0.109-0.188-0.26-0.77-0.438-1.608c-0.201-0.931-0.57-1.279-1.359-1.31h-0.82v2.918
			h-0.869L259.326,149.232L259.326,149.232z M260.194,152.292h0.891c0.93,0,1.52-0.511,1.52-1.279c0-0.869-0.629-1.25-1.549-1.25
			c-0.42,0-0.711,0.041-0.861,0.08V152.292L260.194,152.292z"/>
		<path fill="#010101" d="M266.465,155.979c-1.27,0-2.139-1.189-2.16-3.339c0-2.188,0.949-3.378,2.27-3.378
			c1.357,0,2.148,1.22,2.148,3.287c0,2.209-0.83,3.43-2.25,3.43H266.465z M266.504,155.299c0.891,0,1.32-1.051,1.32-2.709
			c0-1.6-0.4-2.648-1.32-2.648c-0.799,0-1.318,1.02-1.318,2.648c-0.02,1.688,0.5,2.709,1.311,2.709H266.504z"/>
	</g>
</g>
<g id="P1" transform="translate(115.3315,243.1136)">
	
		<radialGradient id="P1_path1_1_" cx="-194.7919" cy="558.3161" r="16.1865" gradientTransform="matrix(0.9269 0 0 -0.6352 438.6946 507.0764)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="P1_path1" fill="url(#P1_path1_1_)" stroke="#010101" d="M272.871,152.433c0,5.78-6.596,10.467-14.73,10.467
		c-8.133,0-14.727-4.685-14.727-10.467s6.594-10.466,14.727-10.466C266.275,141.967,272.871,146.652,272.871,152.433z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M249.086,149.221c0.42-0.079,0.971-0.139,1.67-0.139c0.859,0,1.488,0.199,1.889,0.56
			c0.369,0.319,0.6,0.81,0.6,1.409c0,0.608-0.18,1.09-0.529,1.438c-0.459,0.489-1.209,0.739-2.059,0.739
			c-0.26,0-0.5-0.01-0.699-0.061v2.698h-0.869v-6.646H249.086z M249.955,152.462c0.189,0.049,0.439,0.069,0.721,0.069
			c1.061,0,1.689-0.521,1.689-1.43c0-0.899-0.631-1.329-1.59-1.329c-0.381,0-0.672,0.04-0.82,0.07V152.462z"/>
		<path fill="#010101" d="M257.883,152.712h-2.607v2.429h2.918v0.729h-3.799v-6.735h3.648v0.729h-2.77v2.129h2.609V152.712
			L257.883,152.712z"/>
		<path fill="#010101" d="M259.326,149.232c0.438-0.09,1.08-0.149,1.67-0.149c0.928,0,1.539,0.18,1.959,0.561
			c0.328,0.29,0.529,0.75,0.529,1.279c0,0.879-0.57,1.469-1.271,1.709v0.029c0.51,0.18,0.82,0.659,0.99,1.359
			c0.219,0.939,0.379,1.589,0.51,1.849h-0.898c-0.109-0.188-0.262-0.77-0.439-1.608c-0.201-0.931-0.57-1.279-1.359-1.31h-0.82v2.918
			h-0.869V149.232L259.326,149.232z M260.195,152.292h0.891c0.93,0,1.518-0.511,1.518-1.279c0-0.869-0.629-1.25-1.549-1.25
			c-0.42,0-0.709,0.041-0.859,0.08V152.292L260.195,152.292z"/>
		<path fill="#010101" d="M266.305,150.192h-0.021l-1.129,0.609l-0.17-0.67l1.42-0.76h0.748v6.496h-0.85v-5.676H266.305z"/>
	</g>
</g>
<g id="P2" transform="translate(213.4860,243.1136)">
	
		<radialGradient id="P2_path1_1_" cx="-394.3385" cy="558.3161" r="16.1863" gradientTransform="matrix(0.9269 0 0 -0.6352 620.6543 507.0764)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="P2_path1" fill="url(#P2_path1_1_)" stroke="#010101" d="M269.871,152.433c0,5.78-6.596,10.467-14.729,10.467
		c-8.135,0-14.729-4.685-14.729-10.467s6.594-10.466,14.729-10.466C263.275,141.967,269.871,146.652,269.871,152.433z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M246.086,149.221c0.418-0.079,0.969-0.139,1.668-0.139c0.859,0,1.49,0.199,1.891,0.56
			c0.369,0.319,0.6,0.81,0.6,1.409c0,0.608-0.18,1.09-0.529,1.438c-0.461,0.489-1.209,0.739-2.059,0.739
			c-0.26,0-0.5-0.01-0.701-0.061v2.698h-0.869V149.221L246.086,149.221z M246.955,152.462c0.189,0.049,0.439,0.069,0.719,0.069
			c1.061,0,1.689-0.521,1.689-1.43c0-0.899-0.629-1.329-1.59-1.329c-0.379,0-0.67,0.04-0.818,0.07V152.462z"/>
		<path fill="#010101" d="M254.883,152.712h-2.607v2.429h2.918v0.729h-3.797v-6.735h3.646v0.729h-2.77v2.129h2.609V152.712
			L254.883,152.712z"/>
		<path fill="#010101" d="M256.326,149.232c0.438-0.09,1.08-0.149,1.67-0.149c0.928,0,1.539,0.18,1.959,0.561
			c0.328,0.29,0.529,0.75,0.529,1.279c0,0.879-0.57,1.469-1.271,1.709v0.029c0.512,0.18,0.82,0.659,0.99,1.359
			c0.219,0.939,0.379,1.589,0.51,1.849h-0.898c-0.109-0.188-0.262-0.77-0.439-1.608c-0.201-0.931-0.57-1.279-1.359-1.31h-0.82v2.918
			h-0.869V149.232L256.326,149.232z M257.195,152.292h0.891c0.93,0,1.52-0.511,1.52-1.279c0-0.869-0.631-1.25-1.551-1.25
			c-0.42,0-0.709,0.041-0.859,0.08V152.292L257.195,152.292z"/>
		<path fill="#010101" d="M261.396,155.869v-0.54l0.688-0.669c1.66-1.579,2.42-2.419,2.42-3.397c0-0.66-0.311-1.271-1.279-1.271
			c-0.59,0-1.078,0.3-1.381,0.55l-0.277-0.619c0.438-0.369,1.09-0.66,1.838-0.66c1.391,0,1.979,0.961,1.979,1.89
			c0,1.2-0.869,2.169-2.238,3.488l-0.51,0.479v0.021h2.908v0.729H261.396z"/>
	</g>
</g>
<path id="path3270"  fill="#010101" d="M359.833,393.507"/>
<path id="path3272"  fill="#010101" d="M458.972,393.507"/>
<path id="path3274"  fill="#010101" d="M386.091,372.211"/>
<path id="path3276"  fill="#010101" d="M286.953,372.701"/>
<path id="path3292"  fill="#010101" d="M473.81,369.567"/>
<g>
	<g>
		<g>
			<path fill="none" stroke="#010101" d="M467.066,405.593c-22.877,29.042-61.215,31.352-86.986,4.942"/>
			<polygon fill="#010101" points="384.693,409.958 380.943,411.42 379.392,415.132 375.912,406.263 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#010101" d="M376.035,385.339c23.238-27.796,61.521-30.348,86.959-4.658"/>
			<polygon fill="#010101" points="458.386,381.29 462.125,379.802 463.65,376.078 467.195,384.921 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<path fill="none" stroke="#010101" d="M369.912,405.593c-22.877,29.042-61.215,31.352-86.986,4.942"/>
			<polygon fill="#010101" points="287.537,409.958 283.789,411.42 282.236,415.132 278.757,406.263 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#010101" d="M278.88,385.339c23.238-27.796,61.521-30.348,86.961-4.658"/>
			<polygon fill="#010101" points="361.232,381.29 364.972,379.802 366.496,376.078 370.041,384.921 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="534.314" y1="395.422" x2="486.314" y2="395.422"/>
		<polygon fill="#010101" points="531.507,399.126 533.078,395.422 531.507,391.718 540.283,395.422 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="254.342" y1="395.904" x2="121.314" y2="395.904"/>
		<polygon fill="#010101" points="251.532,399.608 253.105,395.904 251.532,392.2 260.311,395.904 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="256.968" y1="84.571" x2="121.916" y2="84.571"/>
		<polygon fill="#010101" points="254.159,88.275 255.731,84.571 254.159,80.867 262.938,84.571 		"/>
	</g>
</g>
<g id="path5958_2_" >
	<g>
		<path fill="none" stroke="#010101" d="M390.427,240.011c68.375,0,79.375-24,79.375-138.833"/>
		<polygon fill="#010101" points="473.507,103.986 469.802,102.414 466.099,103.986 469.802,95.208 		"/>
	</g>
</g>
<g id="path5958_3_" >
	<g>
		<path fill="none" stroke="#010101" d="M390.427,240.011c69.375,0,78.793,22,78.793,138.696"/>
		<polygon fill="#010101" points="465.515,375.897 469.22,377.472 472.923,375.897 469.22,384.677 		"/>
		<polygon fill="#010101" points="393.234,236.307 391.662,240.011 393.234,243.715 384.457,240.011 		"/>
	</g>
</g>
<g>
	<g id="path5958_6_" >
		<g>
			<path fill="none" stroke="#ED2224" d="M150.553,235.957c-40.953-0.231-58.032-39.031-58.032-39.031"/>
		</g>
	</g>
	<g id="path5958_5_" >
		<g>
			<path fill="none" stroke="#ED2224" d="M150.484,236.296c-40.952,0.231-58.031,39.033-58.031,39.033"/>
		</g>
	</g>
</g>
<g id="C">
	
		<radialGradient id="C_path1_1_" cx="53.4204" cy="557.7432" r="16.1858" gradientTransform="matrix(1.5933 0 0 -0.6358 273.9116 591.2441)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="C_path1" fill="url(#C_path1_1_)" stroke="#010101" d="M384.341,236.63c0,5.786-11.338,10.477-25.316,10.477
		c-13.98,0-25.314-4.688-25.314-10.477s11.334-10.476,25.314-10.476C373.003,226.155,384.341,230.843,384.341,236.63z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M342.74,232.918c0.418-0.08,0.969-0.14,1.668-0.14c0.859,0,1.49,0.2,1.891,0.56
			c0.369,0.319,0.6,0.81,0.6,1.409c0,0.609-0.18,1.09-0.529,1.439c-0.461,0.489-1.209,0.739-2.059,0.739
			c-0.26,0-0.5-0.01-0.701-0.06v2.698h-0.869V232.918L342.74,232.918z M343.609,236.156c0.189,0.05,0.439,0.07,0.719,0.07
			c1.061,0,1.689-0.52,1.689-1.43c0-0.899-0.629-1.329-1.59-1.329c-0.379,0-0.67,0.04-0.818,0.07V236.156z"/>
		<path fill="#010101" d="M351.537,236.406h-2.607v2.429h2.918v0.729h-3.797v-6.736h3.646v0.729h-2.77v2.129h2.609V236.406
			L351.537,236.406z"/>
		<path fill="#010101" d="M352.98,232.928c0.438-0.09,1.08-0.149,1.67-0.149c0.928,0,1.539,0.18,1.959,0.56
			c0.328,0.29,0.529,0.75,0.529,1.279c0,0.88-0.57,1.469-1.271,1.709v0.03c0.512,0.18,0.82,0.659,0.99,1.359
			c0.219,0.939,0.379,1.589,0.51,1.849h-0.898c-0.109-0.189-0.262-0.77-0.439-1.609c-0.201-0.93-0.57-1.279-1.359-1.309h-0.82v2.918
			h-0.869V232.928L352.98,232.928z M353.849,235.986h0.891c0.93,0,1.52-0.51,1.52-1.279c0-0.869-0.631-1.249-1.551-1.249
			c-0.42,0-0.709,0.04-0.859,0.08V235.986L353.849,235.986z"/>
		<path fill="#010101" d="M360.367,236.546v0.64h-2.469v-0.64H360.367z"/>
		<path fill="#010101" d="M362.708,233.567h-2.049v-0.739h4.986v0.739h-2.059v5.997h-0.881v-5.997H362.708z"/>
		<path fill="#010101" d="M367.269,232.828v6.736h-0.879v-6.736H367.269z"/>
		<path fill="#010101" d="M374.466,236.606c-0.051-0.939-0.109-2.079-0.109-2.909h-0.02c-0.24,0.78-0.512,1.63-0.852,2.559
			l-1.188,3.269h-0.66l-1.102-3.208c-0.318-0.96-0.58-1.819-0.77-2.619h-0.02c-0.02,0.84-0.07,1.959-0.131,2.979l-0.18,2.889h-0.83
			l0.471-6.736h1.109l1.148,3.258c0.279,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.109
			l0.42,6.736h-0.859L374.466,236.606z"/>
	</g>
</g>
<path id="path33139" fill="none" stroke="#010101" d="M94.97,197.001l-4.519-0.094"/>
<path id="path33139_1_" fill="none" stroke="#010101" d="M90.449,275.293l4.521,0.024"/>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="92.362" y1="47.678" x2="92.362" y2="184.177"/>
		<polygon fill="#010101" points="96.066,50.486 92.362,48.914 88.66,50.486 92.362,41.708 		"/>
	</g>
</g>
<g id="CN">
	
		<radialGradient id="CN_path1_1_" cx="72.2485" cy="557.6338" r="16.1858" gradientTransform="matrix(1.5933 0 0 -0.6358 60.9379 591.1738)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="CN_path1" fill="url(#CN_path1_1_)" stroke="#010101" d="M201.366,236.629c0,5.786-11.338,10.478-25.315,10.478
		c-13.981,0-25.315-4.689-25.315-10.478c0-5.787,11.334-10.475,25.315-10.475C190.028,226.155,201.366,230.843,201.366,236.629z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M159.767,232.918c0.419-0.08,0.969-0.14,1.669-0.14c0.859,0,1.489,0.2,1.889,0.56
			c0.37,0.319,0.601,0.81,0.601,1.409c0,0.609-0.181,1.09-0.53,1.439c-0.46,0.489-1.209,0.739-2.059,0.739
			c-0.261,0-0.5-0.01-0.7-0.06v2.698h-0.869V232.918L159.767,232.918z M160.636,236.156c0.189,0.05,0.439,0.07,0.72,0.07
			c1.06,0,1.688-0.52,1.688-1.43c0-0.899-0.629-1.329-1.589-1.329c-0.38,0-0.67,0.04-0.819,0.07V236.156z"/>
		<path fill="#010101" d="M168.564,236.406h-2.609v2.429h2.918v0.729h-3.798v-6.736h3.648v0.729h-2.77v2.129h2.609L168.564,236.406
			L168.564,236.406z"/>
		<path fill="#010101" d="M170.006,232.928c0.438-0.09,1.078-0.149,1.669-0.149c0.929,0,1.539,0.18,1.959,0.56
			c0.33,0.29,0.529,0.75,0.529,1.279c0,0.88-0.569,1.469-1.27,1.709v0.03c0.51,0.18,0.82,0.659,0.989,1.359
			c0.22,0.939,0.38,1.589,0.51,1.849h-0.899c-0.109-0.189-0.26-0.77-0.438-1.609c-0.2-0.93-0.57-1.279-1.359-1.309h-0.819v2.918
			h-0.869L170.006,232.928L170.006,232.928z M170.875,235.986h0.891c0.93,0,1.519-0.51,1.519-1.279c0-0.869-0.629-1.249-1.549-1.249
			c-0.42,0-0.71,0.04-0.859,0.08L170.875,235.986L170.875,235.986z"/>
		<path fill="#010101" d="M177.395,236.546v0.64h-2.469v-0.64H177.395z"/>
		<path fill="#010101" d="M179.734,233.567h-2.049v-0.739h4.987v0.739h-2.06v5.997h-0.879V233.567z"/>
		<path fill="#010101" d="M184.294,232.828v6.736h-0.879v-6.736H184.294z"/>
		<path fill="#010101" d="M191.492,236.606c-0.05-0.939-0.109-2.079-0.109-2.909h-0.021c-0.24,0.78-0.51,1.63-0.85,2.559
			l-1.189,3.269h-0.66l-1.099-3.208c-0.32-0.96-0.58-1.819-0.77-2.619h-0.021c-0.02,0.84-0.07,1.959-0.13,2.979l-0.18,2.889h-0.83
			l0.47-6.736h1.109l1.148,3.258c0.28,0.83,0.5,1.569,0.68,2.27h0.021c0.18-0.68,0.42-1.42,0.72-2.27l1.199-3.258h1.109l0.42,6.736
			h-0.86L191.492,236.606z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="92.362" y1="432.345" x2="92.362" y2="286.552"/>
		<polygon fill="#010101" points="88.658,429.535 92.362,431.108 96.066,429.535 92.362,438.313 		"/>
	</g>
</g>
<g id="MP" transform="translate(17.66781,-104.7056)">
	
		<radialGradient id="MP_path1_1_" cx="44.2624" cy="557.6128" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 4.1732 855.1406)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="MP_path1" fill="url(#MP_path1_1_)" stroke="#010101" d="M100.011,500.609c0,5.786-11.338,10.479-25.316,10.479
		c-13.98,0-25.314-4.689-25.314-10.479s11.334-10.476,25.314-10.476C88.673,490.134,100.011,494.822,100.011,500.609z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M54.978,500.435c0-0.62-0.01-1.12-0.04-1.579h0.79l0.05,0.829h0.021c0.35-0.6,0.929-0.939,1.709-0.939
			c1.179,0,2.059,0.989,2.059,2.459c0,1.738-1.069,2.6-2.199,2.6c-0.648,0-1.198-0.28-1.488-0.76h-0.021v2.627h-0.879V500.435z
			 M55.857,501.724c0,0.12,0.01,0.25,0.04,0.359c0.15,0.609,0.69,1.028,1.31,1.028c0.93,0,1.47-0.759,1.47-1.868
			c0-0.97-0.5-1.8-1.43-1.8c-0.6,0-1.169,0.421-1.339,1.08c-0.02,0.12-0.05,0.25-0.05,0.359L55.857,501.724L55.857,501.724z"/>
		<path fill="#010101" d="M61.177,501.424c0.02,1.188,0.77,1.679,1.648,1.679c0.63,0,1.021-0.109,1.339-0.239l0.16,0.619
			c-0.31,0.14-0.85,0.31-1.619,0.31c-1.479,0-2.378-0.988-2.378-2.438c0-1.469,0.87-2.618,2.279-2.618
			c1.579,0,1.989,1.39,1.989,2.278c0,0.18-0.01,0.32-0.03,0.42L61.177,501.424z M63.745,500.794c0.011-0.551-0.229-1.43-1.209-1.43
			c-0.898,0-1.278,0.819-1.349,1.43H63.745z"/>
		<path fill="#010101" d="M65.696,500.365c0-0.568-0.01-1.06-0.04-1.509h0.771l0.04,0.949h0.029c0.221-0.649,0.761-1.06,1.35-1.06
			c0.09,0,0.16,0.01,0.24,0.029v0.819c-0.101-0.011-0.19-0.021-0.311-0.021c-0.62,0-1.059,0.469-1.179,1.119
			c-0.021,0.131-0.03,0.27-0.03,0.42v2.578h-0.879L65.696,500.365z"/>
		<path fill="#010101" d="M71.076,500.166c0-0.511-0.02-0.91-0.04-1.31h0.771l0.04,0.779h0.03c0.27-0.46,0.719-0.89,1.528-0.89
			c0.65,0,1.149,0.398,1.359,0.969h0.02c0.15-0.279,0.351-0.479,0.551-0.629c0.29-0.221,0.6-0.34,1.06-0.34
			c0.649,0,1.599,0.42,1.599,2.099v2.849h-0.859v-2.738c0-0.938-0.351-1.488-1.049-1.488c-0.511,0-0.891,0.369-1.05,0.789
			c-0.04,0.13-0.069,0.289-0.069,0.439v2.998h-0.86v-2.898c0-0.778-0.34-1.328-1.009-1.328c-0.54,0-0.95,0.438-1.089,0.879
			c-0.05,0.131-0.07,0.279-0.07,0.431v2.918h-0.86L71.076,500.166L71.076,500.166z"/>
		<path fill="#010101" d="M79.446,497.056c0.439-0.09,1.079-0.148,1.669-0.148c0.931,0,1.539,0.18,1.959,0.56
			c0.33,0.29,0.53,0.75,0.53,1.278c0,0.881-0.57,1.47-1.27,1.709v0.03c0.51,0.181,0.819,0.659,0.989,1.359
			c0.221,0.938,0.379,1.589,0.51,1.849h-0.899c-0.11-0.189-0.26-0.77-0.439-1.609c-0.199-0.93-0.569-1.278-1.358-1.309h-0.82v2.918
			h-0.869L79.446,497.056L79.446,497.056z M80.317,500.115h0.89c0.931,0,1.52-0.51,1.52-1.279c0-0.868-0.629-1.248-1.549-1.248
			c-0.42,0-0.71,0.039-0.86,0.08V500.115z"/>
		<path fill="#010101" d="M84.826,503.693v-6.736h0.959l2.148,3.408c0.49,0.789,0.89,1.489,1.2,2.188l0.029-0.011
			c-0.079-0.898-0.1-1.719-0.1-2.758v-2.828h0.82v6.735h-0.879l-2.14-3.418c-0.47-0.75-0.919-1.521-1.249-2.249l-0.029,0.01
			c0.05,0.851,0.06,1.659,0.06,2.778v2.879L84.826,503.693L84.826,503.693z"/>
		<path fill="#010101" d="M92.496,501.574l-0.699,2.119h-0.899l2.289-6.736h1.049l2.299,6.736h-0.93l-0.719-2.119H92.496z
			 M94.704,500.894l-0.669-1.938c-0.14-0.439-0.239-0.84-0.34-1.229h-0.029c-0.091,0.39-0.2,0.81-0.33,1.22l-0.66,1.948
			L94.704,500.894L94.704,500.894z"/>
	</g>
</g>
<g id="MT">
	
		<radialGradient id="MT_path1_1_" cx="78.3652" cy="558.082" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 -32.4957 439.4648)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="MT_path1" fill="url(#MT_path1_1_)" stroke="#010101" d="M117.679,84.636c0,5.786-11.338,10.477-25.316,10.477
		c-13.98,0-25.314-4.688-25.314-10.477c0-5.789,11.334-10.477,25.314-10.477C106.341,74.161,117.679,78.849,117.679,84.636z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M72.888,81.574v1.16h1.259v0.669h-1.259v2.608c0,0.601,0.17,0.939,0.66,0.939c0.24,0,0.38-0.02,0.51-0.06
			l0.04,0.67c-0.17,0.06-0.44,0.12-0.78,0.12c-0.41,0-0.739-0.141-0.948-0.37c-0.24-0.27-0.341-0.699-0.341-1.27v-2.639h-0.75
			v-0.669h0.75v-0.89L72.888,81.574z"/>
		<path fill="#010101" d="M75.558,81.845c-0.33,0-0.55-0.26-0.55-0.57s0.229-0.56,0.57-0.56c0.34,0,0.56,0.25,0.56,0.56
			c0,0.311-0.22,0.57-0.57,0.57H75.558z M75.138,87.571v-4.837h0.879v4.837H75.138z"/>
		<path fill="#010101" d="M77.478,84.043c0-0.51-0.02-0.909-0.04-1.309h0.771l0.04,0.779h0.029c0.271-0.46,0.72-0.89,1.529-0.89
			c0.65,0,1.149,0.399,1.359,0.97h0.02c0.15-0.28,0.351-0.479,0.55-0.63c0.29-0.22,0.601-0.34,1.061-0.34
			c0.648,0,1.599,0.42,1.599,2.099v2.849h-0.859v-2.738c0-0.939-0.351-1.489-1.05-1.489c-0.51,0-0.89,0.37-1.049,0.789
			c-0.04,0.13-0.07,0.29-0.07,0.44v2.998h-0.859v-2.898c0-0.779-0.34-1.329-1.009-1.329c-0.54,0-0.95,0.439-1.09,0.879
			c-0.05,0.131-0.069,0.28-0.069,0.431v2.918h-0.86L77.478,84.043L77.478,84.043z"/>
		<path fill="#010101" d="M87.938,84.043c0-0.51-0.02-0.909-0.04-1.309h0.771l0.04,0.779h0.029c0.271-0.46,0.72-0.89,1.529-0.89
			c0.65,0,1.149,0.399,1.359,0.97h0.02c0.15-0.28,0.351-0.479,0.55-0.63c0.29-0.22,0.601-0.34,1.061-0.34
			c0.648,0,1.599,0.42,1.599,2.099v2.849h-0.859v-2.738c0-0.939-0.351-1.489-1.05-1.489c-0.51,0-0.89,0.37-1.049,0.789
			c-0.04,0.13-0.069,0.29-0.069,0.44v2.998h-0.86v-2.898c0-0.779-0.34-1.329-1.009-1.329c-0.54,0-0.95,0.439-1.089,0.879
			c-0.051,0.131-0.07,0.28-0.07,0.431v2.918h-0.86L87.938,84.043L87.938,84.043z"/>
		<path fill="#010101" d="M96.308,80.935c0.439-0.09,1.079-0.149,1.669-0.149c0.929,0,1.539,0.18,1.959,0.56
			c0.33,0.29,0.53,0.75,0.53,1.279c0,0.88-0.57,1.469-1.271,1.709v0.03c0.511,0.18,0.82,0.659,0.989,1.359
			c0.22,0.939,0.38,1.589,0.51,1.849h-0.898c-0.11-0.189-0.26-0.77-0.439-1.609c-0.2-0.93-0.569-1.279-1.358-1.309h-0.82v2.918
			h-0.869L96.308,80.935L96.308,80.935z M97.177,83.993h0.89c0.931,0,1.52-0.51,1.52-1.279c0-0.869-0.629-1.249-1.549-1.249
			c-0.421,0-0.71,0.04-0.86,0.08V83.993z"/>
		<path fill="#010101" d="M101.688,87.571v-6.736h0.959l2.148,3.408c0.49,0.789,0.89,1.489,1.2,2.188l0.029-0.01
			c-0.08-0.899-0.1-1.719-0.1-2.759v-2.828h0.82v6.736h-0.88l-2.139-3.418c-0.47-0.75-0.919-1.52-1.249-2.249l-0.03,0.01
			c0.051,0.85,0.061,1.659,0.061,2.778v2.879L101.688,87.571L101.688,87.571z"/>
		<path fill="#010101" d="M109.356,85.452l-0.7,2.119h-0.898l2.289-6.736h1.049l2.299,6.736h-0.929l-0.72-2.119H109.356z
			 M111.565,84.772l-0.669-1.938c-0.14-0.439-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.199,0.81-0.33,1.22l-0.659,1.948
			L111.565,84.772L111.565,84.772z"/>
	</g>
</g>
<g id="vdT">
	<ellipse id="vdT_path1" fill="#FFFFFF" stroke="#000000" cx="535.895" cy="61.835" rx="16.376" ry="9.692"/>
	<g>
		<path d="M529.06,65.357l-2.65-8.084h1.139l1.26,3.982c0.336,1.091,0.635,2.074,0.863,3.022h0.023
			c0.229-0.936,0.553-1.955,0.924-3.011l1.367-3.994h1.115l-2.891,8.084H529.06z"/>
		<path d="M538.55,56.842v7.017c0,0.516,0.023,1.104,0.047,1.499h-0.936l-0.047-1.008h-0.037c-0.311,0.648-1.008,1.14-1.955,1.14
			c-1.402,0-2.494-1.188-2.494-2.95c-0.012-1.931,1.199-3.106,2.604-3.106c0.898,0,1.486,0.42,1.75,0.876h0.023v-3.467H538.55z
			 M537.505,61.915c0-0.132-0.012-0.312-0.047-0.443c-0.156-0.66-0.732-1.212-1.523-1.212c-1.092,0-1.738,0.96-1.738,2.231
			c0,1.175,0.586,2.146,1.715,2.146c0.707,0,1.355-0.479,1.547-1.259c0.035-0.145,0.047-0.288,0.047-0.456V61.915z"/>
		<path d="M541.888,58.161h-2.459v-0.888h5.984v0.888h-2.471v7.196h-1.055V58.161z"/>
	</g>
</g>
</svg>
</window>