Location: Razumova, Bukatina, Campbell, 2000 @ 1a93b929c350 / razumova_2000_remade.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2010-08-05 14:33:46+12:00
Desc:
Added new session file and xul
Permanent Source URI:
https://models.physiomeproject.org/workspace/razumova_bukatina_campbell_2000/rawfile/1a93b929c350931ebf427098f0ec4208aa1d2a7e/razumova_2000_remade.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 =
  {

			
	A_2: {
		id: "A_2",
		y: "main/A_2",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#ff3300",
		linestyle: "none"
	},

	D: {
		id: "D",
		y: "main/D",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#ffff00",
		linestyle: "none"
	},

	R_off: {
		id: "R_off",
		y: "main/R_off",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#9900ff",
		linestyle: "none"
	},


	A_1: {
		id: "A_1",
		y: "main/A_1",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#ff0000",
		linestyle: "none"
	},


	k_0_on: {
		id: "k_0_on",
		y: "main/k_0_on",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#33ffff",
		linestyle: "none"
	},


	k_0_off: {
		id: "k_0_off",
		y: "main/k_0_off",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#99ffff",
		linestyle: "none"
	},


	k_Ca_off: {
		id: "k_Ca_off",
		y: "main/k_Ca_off",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#ff00cc",
		linestyle: "none"
	},


	k_Ca_on: {
		id: "k_Ca_on",
		y: "main/k_Ca_on",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#ff99cc",
		linestyle: "none"
	},


	h: {
		id: "h",
		y: "main/h",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#ccff99",
		linestyle: "none"
	},


	h_prime: {
		id: "h_prime",
		y: "main/h_prime",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (s)",
		colour: "#99ffcc",
		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>
	<circle fill="none" stroke="#000000" cx="75.698" cy="112" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="91.073" cy="112" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="106.448" cy="112" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="68.323" y1="119.75" x2="113.823" y2="119.75"/>
<polygon fill="none" stroke="#272525" points="108.594,123.53 110.862,120.592 110.813,123.796 115.007,121.631 112.648,124.547 
	118.043,123.53 113.782,125.654 119.445,125.961 114.02,126.925 118.971,128.502 113.318,128.14 116.702,130.716 111.801,129.089 
	113.031,132.218 109.729,129.609 108.594,132.749 107.46,129.609 104.156,132.218 105.388,129.089 100.485,130.716 103.869,128.14 
	98.217,128.502 103.168,126.925 97.743,125.961 103.405,125.654 99.145,123.53 104.54,124.547 102.181,121.631 106.375,123.796 
	106.325,120.592 "/>
<g>
	<circle fill="none" stroke="#000000" cx="76.739" cy="222.958" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="92.114" cy="222.958" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="107.489" cy="222.958" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="69.364" y1="215.208" x2="114.864" y2="215.208"/>
<polygon fill="none" stroke="#272525" points="110.636,211.427 112.904,214.366 112.854,211.162 117.049,213.326 114.689,210.411 
	120.085,211.427 115.824,209.304 121.486,208.997 116.062,208.033 121.013,206.455 115.36,206.818 118.744,204.242 113.842,205.868 
	115.073,202.74 111.77,205.349 110.636,202.208 109.501,205.349 106.197,202.74 107.429,205.868 102.527,204.242 105.911,206.818 
	100.259,206.455 105.21,208.033 99.784,208.997 105.447,209.304 101.187,211.427 106.581,210.411 104.223,213.326 108.417,211.162 
	108.367,214.366 "/>
<g>
	<g>
		<path d="M25.957,79.051c1.32-0.27,3.21-0.42,5.01-0.42c2.79,0,4.591,0.51,5.851,1.65c1.02,0.9,1.59,2.28,1.59,3.84
			c0,2.67-1.68,4.44-3.81,5.16v0.09c1.56,0.54,2.489,1.979,2.97,4.08c0.66,2.82,1.14,4.77,1.56,5.55h-2.7
			c-0.329-0.6-0.779-2.31-1.35-4.83c-0.6-2.79-1.68-3.84-4.05-3.93h-2.46V99h-2.61V79.051z M28.567,88.261h2.67
			c2.79,0,4.56-1.53,4.56-3.84c0-2.61-1.89-3.75-4.649-3.78c-1.26,0-2.16,0.12-2.58,0.24V88.261z"/>
	</g>
	<g>
		<path d="M52.099,85.982c-0.513,0.256-1.537,0.528-2.85,0.528c-3.041,0-5.33-1.937-5.33-5.475c0-3.377,2.289-5.666,5.635-5.666
			c1.345,0,2.192,0.288,2.561,0.48l-0.336,1.137c-0.528-0.256-1.281-0.448-2.177-0.448c-2.529,0-4.209,1.617-4.209,4.45
			c0,2.641,1.521,4.338,4.146,4.338c0.85,0,1.713-0.176,2.273-0.448L52.099,85.982z"/>
		<path d="M59.123,84.478c0,0.672,0.032,1.329,0.128,1.857h-1.28l-0.112-0.977H57.81c-0.433,0.608-1.266,1.153-2.369,1.153
			c-1.569,0-2.369-1.104-2.369-2.225c0-1.873,1.665-2.897,4.658-2.881v-0.16c0-0.641-0.176-1.793-1.761-1.793
			c-0.721,0-1.474,0.224-2.018,0.576l-0.32-0.928c0.641-0.416,1.568-0.688,2.545-0.688c2.369,0,2.945,1.617,2.945,3.169
			L59.123,84.478L59.123,84.478z M57.762,82.381c-1.537-0.032-3.281,0.24-3.281,1.745c0,0.913,0.607,1.345,1.329,1.345
			c1.008,0,1.647-0.64,1.873-1.296c0.048-0.145,0.08-0.304,0.08-0.448L57.762,82.381L57.762,82.381z"/>
	</g>
	<g>
		<path d="M51.523,99.729c0,2.865-1.985,4.114-3.857,4.114c-2.097,0-3.713-1.537-3.713-3.986c0-2.593,1.696-4.114,3.841-4.114
			C50.019,95.744,51.523,97.36,51.523,99.729z M45.376,99.81c0,1.697,0.978,2.977,2.354,2.977c1.345,0,2.353-1.265,2.353-3.009
			c0-1.313-0.656-2.977-2.32-2.977C46.097,96.8,45.376,98.337,45.376,99.81z"/>
		<path d="M58.083,103.667v-6.675h-3.25v6.675H53.44v-6.675h-1.088V95.92h1.088v-0.224c0-1.088,0.256-2.033,0.864-2.641
			c0.447-0.464,1.088-0.736,1.952-0.736c0.448,0,0.864,0.144,1.104,0.272l-0.288,1.057c-0.208-0.112-0.512-0.208-0.832-0.208
			c-1.104,0-1.409,0.944-1.409,2.161v0.32h3.25v-0.368c0-1.088,0.256-2.081,0.912-2.705c0.528-0.512,1.232-0.72,1.873-0.72
			c0.512,0,0.928,0.112,1.2,0.224l-0.176,1.088c-0.225-0.096-0.497-0.176-0.913-0.176c-1.186,0-1.504,1.057-1.504,2.241v0.416h1.873
			v1.072H59.49v6.675L58.083,103.667L58.083,103.667z"/>
	</g>
</g>
<g id="k_Ca_off">
	<circle id="k_Ca_off_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="51.494" cy="168.81" r="19.151"/>
	<g>
		<g>
			<path d="M39.037,170.042h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.558l-4.512,4.801l5.14,6.875h-2.582l-4.029-5.597
				l-1.085,1.206v4.391h-2.099v-17.128h2.099V170.042z"/>
		</g>
		<g>
			<path d="M58.033,165.89c-0.412,0.206-1.235,0.425-2.29,0.425c-2.444,0-4.284-1.557-4.284-4.399c0-2.714,1.84-4.553,4.528-4.553
				c1.081,0,1.762,0.23,2.058,0.386l-0.27,0.913c-0.424-0.206-1.029-0.36-1.75-0.36c-2.032,0-3.383,1.299-3.383,3.576
				c0,2.123,1.222,3.486,3.332,3.486c0.682,0,1.376-0.141,1.826-0.36L58.033,165.89z"/>
			<path d="M63.684,164.681c0,0.541,0.025,1.068,0.103,1.492h-1.029l-0.09-0.785h-0.039c-0.348,0.489-1.016,0.926-1.903,0.926
				c-1.262,0-1.904-0.888-1.904-1.788c0-1.505,1.338-2.328,3.743-2.315v-0.128c0-0.515-0.143-1.441-1.415-1.441
				c-0.579,0-1.184,0.18-1.621,0.463l-0.257-0.746c0.515-0.334,1.261-0.553,2.045-0.553c1.904,0,2.367,1.299,2.367,2.547
				L63.684,164.681L63.684,164.681z M62.59,162.996c-1.234-0.026-2.637,0.193-2.637,1.402c0,0.733,0.489,1.08,1.068,1.08
				c0.81,0,1.325-0.514,1.505-1.042c0.039-0.116,0.063-0.245,0.063-0.36V162.996z"/>
		</g>
		<g>
			<path d="M57.57,176.951c0,2.303-1.595,3.306-3.1,3.306c-1.686,0-2.984-1.235-2.984-3.203c0-2.083,1.363-3.306,3.087-3.306
				C56.36,173.749,57.57,175.048,57.57,176.951z M52.63,177.016c0,1.364,0.785,2.393,1.892,2.393c1.081,0,1.891-1.016,1.891-2.418
				c0-1.055-0.527-2.392-1.865-2.392S52.63,175.833,52.63,177.016z"/>
			<path d="M62.848,180.116v-5.364h-2.611v5.364h-1.119v-5.364h-0.875v-0.862h0.875v-0.18c0-0.875,0.206-1.634,0.695-2.123
				c0.359-0.373,0.875-0.592,1.568-0.592c0.36,0,0.694,0.116,0.888,0.219l-0.231,0.849c-0.167-0.09-0.412-0.167-0.669-0.167
				c-0.887,0-1.132,0.759-1.132,1.737v0.257h2.611v-0.296c0-0.875,0.206-1.672,0.732-2.174c0.425-0.412,0.991-0.579,1.505-0.579
				c0.412,0,0.746,0.09,0.964,0.18l-0.141,0.875c-0.18-0.077-0.399-0.141-0.733-0.141c-0.951,0-1.209,0.849-1.209,1.801v0.334h1.506
				v0.862H63.98v5.364H62.848z"/>
		</g>
	</g>
</g>
<g>
	<g>
		<path d="M10.624,225.051c1.59-0.24,3.48-0.42,5.55-0.42c3.75,0,6.421,0.87,8.19,2.52c1.8,1.65,2.85,3.99,2.85,7.26
			c0,3.3-1.02,6-2.909,7.859c-1.891,1.89-5.011,2.91-8.94,2.91c-1.86,0-3.42-0.09-4.74-0.24V225.051z M13.233,242.931
			c0.66,0.12,1.62,0.15,2.64,0.15c5.58,0,8.609-3.12,8.609-8.58c0.03-4.77-2.67-7.8-8.189-7.8c-1.35,0-2.37,0.12-3.06,0.27V242.931z
			"/>
	</g>
	<g>
		<path d="M36.766,231.982c-0.513,0.256-1.537,0.528-2.85,0.528c-3.041,0-5.33-1.937-5.33-5.475c0-3.377,2.289-5.666,5.635-5.666
			c1.345,0,2.192,0.288,2.561,0.48l-0.336,1.137c-0.528-0.256-1.281-0.448-2.177-0.448c-2.529,0-4.209,1.617-4.209,4.45
			c0,2.641,1.521,4.338,4.146,4.338c0.85,0,1.713-0.176,2.273-0.448L36.766,231.982z"/>
		<path d="M43.789,230.478c0,0.672,0.032,1.329,0.128,1.857h-1.28l-0.112-0.977h-0.048c-0.433,0.608-1.266,1.153-2.369,1.153
			c-1.569,0-2.369-1.104-2.369-2.225c0-1.873,1.665-2.897,4.658-2.881v-0.16c0-0.641-0.176-1.793-1.762-1.793
			c-0.72,0-1.473,0.224-2.017,0.576l-0.32-0.928c0.641-0.416,1.568-0.688,2.545-0.688c2.369,0,2.945,1.617,2.945,3.169
			L43.789,230.478L43.789,230.478z M42.428,228.381c-1.537-0.032-3.281,0.24-3.281,1.745c0,0.913,0.607,1.345,1.329,1.345
			c1.008,0,1.647-0.64,1.873-1.296c0.048-0.145,0.08-0.304,0.08-0.448L42.428,228.381L42.428,228.381z"/>
	</g>
</g>
<g id="k_Ca_on">
	<circle id="k_Ca_on_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="119.619" cy="168.81" r="19.151"/>
	<g>
		<g>
			<path d="M108.037,170.042h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.558l-4.511,4.801l5.139,6.875h-2.582
				l-4.029-5.597l-1.085,1.206v4.391h-2.099v-17.128h2.099V170.042z"/>
		</g>
		<g>
			<path d="M127.033,165.89c-0.412,0.206-1.235,0.425-2.29,0.425c-2.444,0-4.284-1.557-4.284-4.399c0-2.714,1.84-4.553,4.528-4.553
				c1.081,0,1.762,0.23,2.058,0.386l-0.27,0.913c-0.424-0.206-1.029-0.36-1.75-0.36c-2.032,0-3.383,1.299-3.383,3.576
				c0,2.123,1.222,3.486,3.332,3.486c0.682,0,1.376-0.141,1.826-0.36L127.033,165.89z"/>
			<path d="M132.684,164.681c0,0.541,0.025,1.068,0.103,1.492h-1.029l-0.09-0.785h-0.039c-0.348,0.489-1.016,0.926-1.903,0.926
				c-1.262,0-1.904-0.888-1.904-1.788c0-1.505,1.338-2.328,3.743-2.315v-0.128c0-0.515-0.143-1.441-1.415-1.441
				c-0.579,0-1.184,0.18-1.621,0.463l-0.257-0.746c0.515-0.334,1.261-0.553,2.045-0.553c1.904,0,2.367,1.299,2.367,2.547
				L132.684,164.681L132.684,164.681z M131.59,162.996c-1.234-0.026-2.637,0.193-2.637,1.402c0,0.733,0.489,1.08,1.068,1.08
				c0.81,0,1.325-0.514,1.505-1.042c0.039-0.116,0.063-0.245,0.063-0.36V162.996z"/>
		</g>
		<g>
			<path d="M126.57,176.951c0,2.303-1.595,3.306-3.1,3.306c-1.686,0-2.984-1.235-2.984-3.203c0-2.083,1.363-3.306,3.087-3.306
				C125.36,173.749,126.57,175.048,126.57,176.951z M121.63,177.016c0,1.364,0.785,2.393,1.892,2.393
				c1.081,0,1.891-1.016,1.891-2.418c0-1.055-0.527-2.392-1.865-2.392S121.63,175.833,121.63,177.016z"/>
			<path d="M128.001,175.575c0-0.644-0.013-1.171-0.051-1.685h1.003l0.064,1.029h0.025c0.31-0.592,1.029-1.17,2.059-1.17
				c0.861,0,2.199,0.515,2.199,2.65v3.717h-1.132v-3.589c0-1.003-0.373-1.839-1.439-1.839c-0.746,0-1.325,0.527-1.519,1.158
				c-0.051,0.142-0.077,0.334-0.077,0.527v3.743h-1.132L128.001,175.575L128.001,175.575z"/>
		</g>
	</g>
</g>
<g>
	<polyline fill="none" stroke="#272525" points="84.594,211.333 84.594,126.25 79.594,134.75 	"/>
	<polyline fill="none" stroke="#272525" points="88.594,125.333 88.594,209.75 93.594,201.25 	"/>
</g>
<g>
	
		<ellipse transform="matrix(0.1605 -0.987 0.987 0.1605 -169.0167 296.6313)" fill="#272525" stroke="#272525" cx="89.873" cy="247.676" rx="11.5" ry="3.5"/>
	<g>
		<g>
			<circle fill="none" stroke="#000000" cx="121.83" cy="259.024" r="5.145"/>
			<circle fill="none" stroke="#000000" cx="111.359" cy="257.321" r="5.146"/>
			<circle fill="none" stroke="#000000" cx="100.889" cy="255.618" r="5.146"/>
		</g>
		<line fill="none" stroke="#272525" x1="132.731" y1="266.307" x2="87.822" y2="259.001"/>
	</g>
</g>
<g>
	<polyline fill="none" stroke="#272525" points="107.483,272.659 141.642,318.033 128.208,312.452 	"/>
	<polyline fill="none" stroke="#272525" points="148.131,316.842 113.972,271.467 127.406,277.049 	"/>
</g>
<g>
	<path d="M142.155,295.196v-10.061h-1.64v-1.616h1.64v-0.556c0-1.641,0.362-3.136,1.351-4.077c0.796-0.771,1.857-1.085,2.848-1.085
		c0.748,0,1.398,0.169,1.809,0.339l-0.289,1.64c-0.313-0.146-0.748-0.265-1.351-0.265c-1.811,0-2.269,1.592-2.269,3.377v0.627h2.822
		v1.617h-2.822v10.06H142.155z"/>
	<path d="M153.255,278.502c-0.555,2.002-1.592,4.607-2.268,5.717l-1.351,0.146c0.53-1.399,1.157-3.908,1.423-5.621L153.255,278.502z
		"/>
</g>
<g>
	<path d="M111.155,313.997v-10.06h-1.64v-1.617h1.64v-0.555c0-1.642,0.362-3.137,1.351-4.078c0.796-0.771,1.857-1.084,2.848-1.084
		c0.748,0,1.398,0.168,1.809,0.338l-0.289,1.64c-0.313-0.146-0.748-0.265-1.351-0.265c-1.811,0-2.269,1.592-2.269,3.377v0.627h2.822
		v1.617h-2.822v10.06H111.155L111.155,313.997z"/>
</g>
<g>
	<g>
		<path d="M79.561,341.975l-2.101,6.359h-2.699l6.869-20.22h3.15l6.9,20.22h-2.79l-2.16-6.359H79.561z M86.19,339.934l-1.98-5.818
			c-0.45-1.32-0.75-2.52-1.05-3.69H83.1c-0.301,1.2-0.63,2.431-1.021,3.66l-1.979,5.851h6.09V339.934z"/>
	</g>
	<g>
		<path d="M102.433,335.314c-0.513,0.256-1.537,0.528-2.85,0.528c-3.041,0-5.33-1.938-5.33-5.475c0-3.377,2.289-5.666,5.635-5.666
			c1.345,0,2.192,0.288,2.561,0.479l-0.336,1.137c-0.528-0.256-1.281-0.447-2.177-0.447c-2.529,0-4.209,1.617-4.209,4.45
			c0,2.641,1.521,4.338,4.146,4.338c0.85,0,1.713-0.177,2.273-0.448L102.433,335.314z"/>
		<path d="M109.456,333.811c0,0.672,0.032,1.328,0.128,1.857h-1.28l-0.112-0.977h-0.048c-0.433,0.606-1.266,1.151-2.369,1.151
			c-1.569,0-2.369-1.104-2.369-2.225c0-1.873,1.665-2.897,4.658-2.882v-0.16c0-0.641-0.176-1.793-1.762-1.793
			c-0.72,0-1.473,0.224-2.017,0.576l-0.32-0.928c0.641-0.416,1.568-0.688,2.545-0.688c2.369,0,2.945,1.616,2.945,3.169
			L109.456,333.811L109.456,333.811z M108.095,331.714c-1.537-0.032-3.281,0.24-3.281,1.745c0,0.912,0.607,1.344,1.329,1.344
			c1.008,0,1.647-0.64,1.873-1.296c0.048-0.146,0.08-0.304,0.08-0.448L108.095,331.714L108.095,331.714z"/>
	</g>
	<g>
		<path d="M97.455,343.908h-0.032l-1.809,0.977l-0.272-1.072l2.273-1.217h1.201V353h-1.361V343.908z"/>
	</g>
</g>
<g>
	<circle fill="none" stroke="#000000" cx="130.406" cy="333.291" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="145.781" cy="333.291" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="161.156" cy="333.291" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="123.031" y1="325.541" x2="168.531" y2="325.541"/>
<polygon fill="none" stroke="#272525" points="163.302,321.761 165.57,324.699 165.521,321.495 169.715,323.66 167.356,320.744 
	172.751,321.761 168.49,319.637 174.153,319.33 168.728,318.366 173.679,316.789 168.026,317.15 171.41,314.575 166.509,316.202 
	167.739,313.073 164.437,315.682 163.302,312.542 162.168,315.682 158.864,313.073 160.096,316.202 155.193,314.575 158.577,317.15 
	152.925,316.789 157.876,318.366 152.451,319.33 158.113,319.637 153.853,321.761 159.248,320.744 156.889,323.66 161.083,321.495 
	161.033,324.699 "/>
<g>
	<polyline fill="none" stroke="#272525" points="109.41,420.038 142.354,373.773 129.073,379.711 	"/>
	<polyline fill="none" stroke="#272525" points="148.871,374.794 115.928,421.059 129.21,415.12 	"/>
</g>
<g>
	<path d="M109.272,378.734h2.123v7.285h0.048c0.338-0.604,0.869-1.133,1.52-1.496c0.627-0.361,1.375-0.603,2.171-0.603
		c1.568,0,4.077,0.966,4.077,4.993v6.947h-2.123v-6.706c0-1.882-0.699-3.474-2.701-3.474c-1.375,0-2.462,0.965-2.848,2.121
		c-0.121,0.291-0.145,0.604-0.145,1.014v7.046h-2.123L109.272,378.734L109.272,378.734z"/>
	<path d="M124.547,379.169c-0.555,2.003-1.592,4.606-2.268,5.718l-1.351,0.146c0.53-1.399,1.157-3.908,1.423-5.621L124.547,379.169z
		"/>
</g>
<g>
	<path d="M141.605,395.535h2.123v7.285h0.048c0.338-0.604,0.869-1.135,1.52-1.496c0.627-0.361,1.375-0.604,2.171-0.604
		c1.568,0,4.077,0.965,4.077,4.993v6.948h-2.123v-6.706c0-1.883-0.699-3.476-2.701-3.476c-1.375,0-2.462,0.965-2.848,2.123
		c-0.121,0.289-0.145,0.604-0.145,1.015v7.044h-2.123L141.605,395.535L141.605,395.535z"/>
</g>
<g>
	<circle fill="none" stroke="#000000" cx="88.323" cy="444" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="103.698" cy="444" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="119.073" cy="444" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="80.948" y1="436.25" x2="126.448" y2="436.25"/>
<polygon fill="none" stroke="#272525" points="121.219,432.47 123.487,435.408 123.438,432.204 127.632,434.369 125.273,431.453 
	130.668,432.47 126.407,430.346 132.07,430.039 126.645,429.075 131.596,427.498 125.943,427.86 129.327,425.284 124.426,426.91 
	125.656,423.782 122.354,426.391 121.219,423.251 120.085,426.391 116.781,423.782 118.013,426.91 113.11,425.284 116.494,427.86 
	110.842,427.498 115.793,429.075 110.368,430.039 116.03,430.346 111.77,432.47 117.165,431.453 114.806,434.369 119,432.204 
	118.95,435.408 "/>
<g>
	<circle fill="none" stroke="#000000" cx="136.419" cy="474.935" r="5.146"/>
	<circle fill="none" stroke="#000000" cx="120.575" cy="472.028" r="5.146"/>
	<circle fill="none" stroke="#000000" cx="104.731" cy="469.122" r="5.146"/>
	<line fill="none" stroke="#272525" x1="149.917" y1="482.939" x2="91.599" y2="472.24"/>
</g>
<polygon fill="#272525" stroke="#272525" points="97.218,462.235 100.96,461.016 98.002,459.783 101.926,456.221 98.163,457.542 
	101.591,452.25 97.673,455.9 100.013,449.794 96.619,455.139 97.465,449.276 95.182,455.394 94.388,450.786 93.608,456.617 
	91.313,454.062 92.175,458.598 88.772,458.538 91.125,460.994 87.207,463.439 90.642,463.393 86.884,467.921 90.81,465.379 
	87.862,471.206 91.598,466.607 89.971,472.726 92.872,466.865 92.846,472.22 94.41,466.111 95.99,469.774 95.948,464.473 
	98.86,465.811 "/>
<g>
	
		<ellipse transform="matrix(0.1604 -0.987 0.987 0.1604 -224.6669 439.6981)" fill="#272525" stroke="#272525" cx="146.131" cy="351.913" rx="11.5" ry="3.5"/>
	<g>
		<g>
			<circle fill="none" stroke="#000000" cx="178.08" cy="363.273" r="5.145"/>
			<circle fill="none" stroke="#000000" cx="167.609" cy="361.57" r="5.146"/>
			<circle fill="none" stroke="#000000" cx="157.139" cy="359.868" r="5.146"/>
		</g>
		<line fill="none" stroke="#272525" x1="188.981" y1="370.557" x2="144.072" y2="363.252"/>
	</g>
</g>
<g>
	<g>
		<path d="M13.894,469.641L11.794,476H9.094l6.869-20.219h3.15l6.9,20.219h-2.79l-2.16-6.359H13.894z M20.523,467.601l-1.98-5.818
			c-0.45-1.32-0.75-2.521-1.05-3.689h-0.06c-0.301,1.199-0.63,2.431-1.021,3.659l-1.979,5.85L20.523,467.601L20.523,467.601z"/>
	</g>
	<g>
		<path d="M36.766,462.982c-0.513,0.256-1.537,0.527-2.85,0.527c-3.041,0-5.33-1.937-5.33-5.475c0-3.377,2.289-5.666,5.635-5.666
			c1.345,0,2.192,0.288,2.561,0.479l-0.336,1.138c-0.528-0.257-1.281-0.447-2.177-0.447c-2.529,0-4.209,1.616-4.209,4.449
			c0,2.641,1.521,4.338,4.146,4.338c0.85,0,1.713-0.176,2.273-0.448L36.766,462.982z"/>
		<path d="M43.789,461.478c0,0.674,0.032,1.329,0.128,1.856h-1.28l-0.112-0.977h-0.048c-0.433,0.608-1.266,1.152-2.369,1.152
			c-1.569,0-2.369-1.104-2.369-2.226c0-1.872,1.665-2.896,4.658-2.881v-0.16c0-0.642-0.176-1.793-1.762-1.793
			c-0.72,0-1.473,0.225-2.017,0.576l-0.32-0.929c0.641-0.416,1.568-0.688,2.545-0.688c2.369,0,2.945,1.616,2.945,3.169
			L43.789,461.478L43.789,461.478z M42.428,459.381c-1.537-0.032-3.281,0.24-3.281,1.744c0,0.913,0.607,1.346,1.329,1.346
			c1.008,0,1.647-0.641,1.873-1.297c0.048-0.145,0.08-0.305,0.08-0.448L42.428,459.381L42.428,459.381z"/>
	</g>
	<g>
		<path d="M28.73,480.667v-0.864l1.104-1.071c2.657-2.529,3.857-3.874,3.874-5.442c0-1.057-0.512-2.032-2.064-2.032
			c-0.944,0-1.729,0.479-2.208,0.88l-0.448-0.993c0.72-0.606,1.745-1.056,2.945-1.056c2.24,0,3.186,1.536,3.186,3.024
			c0,1.922-1.393,3.475-3.585,5.587l-0.833,0.769v0.031h4.674v1.169L28.73,480.667L28.73,480.667z"/>
	</g>
</g>
<g>
	<path d="M40.901,353.508c0,2.678-0.53,4.318-1.665,5.332c-1.134,1.061-2.774,1.398-4.246,1.398c-1.399,0-2.943-0.338-3.884-0.965
		l0.53-1.616c0.771,0.483,1.979,0.917,3.426,0.917c2.171,0,3.764-1.135,3.764-4.077v-1.304h-0.048
		c-0.651,1.086-1.906,1.955-3.715,1.955c-2.896,0-4.971-2.461-4.971-5.693c0-3.956,2.582-6.199,5.26-6.199
		c2.025,0,3.136,1.061,3.643,2.025h0.048l0.098-1.762h1.856c-0.048,0.846-0.097,1.785-0.097,3.209L40.901,353.508L40.901,353.508z
		 M38.803,348.129c0-0.361-0.024-0.676-0.121-0.965c-0.387-1.23-1.424-2.244-2.968-2.244c-2.025,0-3.474,1.713-3.474,4.414
		c0,2.293,1.158,4.198,3.45,4.198c1.303,0,2.484-0.82,2.942-2.171c0.121-0.362,0.17-0.772,0.17-1.135V348.129z"/>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M60.344,448.333c-54.666-36.666-44.25-183.083-1.333-204"/>
		<polygon points="58.108,248.893 57.9,244.875 54.863,242.234 64.377,241.718 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path11134_5_" cx="-64.1389" cy="285.3711" r="33.9819" gradientTransform="matrix(0.3664 0 0 -0.3664 299.3428 555.6323)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFFCDF"/>
			<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
			<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
			<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
			<stop  offset="0.5943" style="stop-color:#FFF090"/>
			<stop  offset="0.7706" style="stop-color:#FFEA64"/>
			<stop  offset="0.9506" style="stop-color:#FFE22F"/>
			<stop  offset="1" style="stop-color:#FFE01F"/>
		</radialGradient>
		<path id="path11134_2_" fill="url(#path11134_5_)" stroke="#000000" stroke-width="0.9921" d="M288.293,451.074
			c0,6.875-5.575,12.449-12.45,12.449c-6.878,0-12.451-5.574-12.451-12.449s5.572-12.453,12.451-12.453
			C282.718,438.621,288.293,444.199,288.293,451.074z"/>
		<g>
			<path d="M271.757,455.919c-0.342,0.177-1.059,0.354-1.963,0.354c-2.096,0-3.663-1.323-3.663-3.772
				c0-2.339,1.578-3.905,3.884-3.905c0.916,0,1.512,0.198,1.765,0.331l-0.243,0.783c-0.353-0.177-0.872-0.31-1.489-0.31
				c-1.743,0-2.9,1.113-2.9,3.066c0,1.831,1.048,2.989,2.846,2.989c0.596,0,1.191-0.121,1.578-0.309L271.757,455.919z"/>
			<path d="M276.626,454.871c0,0.463,0.022,0.915,0.077,1.279h-0.872l-0.088-0.674h-0.033c-0.287,0.42-0.872,0.795-1.633,0.795
				c-1.082,0-1.633-0.762-1.633-1.533c0-1.291,1.146-1.997,3.21-1.985v-0.11c0-0.44-0.122-1.246-1.214-1.235
				c-0.507,0-1.026,0.144-1.401,0.396l-0.221-0.649c0.44-0.276,1.092-0.464,1.765-0.464c1.645,0,2.041,1.113,2.041,2.185v1.996
				H276.626z M275.677,453.426c-1.059-0.021-2.262,0.165-2.262,1.202c0,0.64,0.419,0.927,0.905,0.927
				c0.706,0,1.158-0.44,1.312-0.894c0.033-0.101,0.044-0.21,0.044-0.31V453.426z"/>
			<path d="M277.727,452.475v-0.417l0.532-0.518c1.281-1.22,1.868-1.868,1.868-2.625c0-0.51-0.238-0.98-0.987-0.98
				c-0.456,0-0.834,0.231-1.065,0.426l-0.216-0.479c0.34-0.286,0.842-0.51,1.421-0.51c1.073,0,1.529,0.741,1.529,1.459
				c0,0.927-0.673,1.676-1.729,2.695l-0.394,0.369v0.017h2.247v0.562L277.727,452.475L277.727,452.475z"/>
			<path d="M283.891,448.367v1.813h1.744v0.463h-1.744v1.83h-0.494v-1.83h-1.745v-0.463h1.745v-1.813H283.891z"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M273.656,468.667c-10.534,7.786-26.108,11.405-46.5,11.405
				c-26.121,0-48.261-8.415-55.9-20.054"/>
			<polygon points="273.599,473.314 272.662,469.401 269.196,467.357 278.457,465.119 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M174.156,439c9.79-9.43,30.415-17.947,53.632-17.947c23.418,0,43.674,6.579,53.368,16.143"
				/>
			<polygon points="173.61,434.385 175.046,438.143 178.749,439.72 169.857,443.141 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M231.115,480.042c11.333-0.584,25.375-7.208,31.541-14.208"/>
			<polygon points="263.579,470.39 261.839,466.762 258.021,465.493 266.602,461.354 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M223.448,420.833c13.788,0.686,30.872,8.456,38.375,16.668"/>
		</g>
	</g>
	<g>
		<path d="M224.017,439.843h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.028h2.557l-4.511,4.801l5.139,6.876h-2.582l-4.028-5.597
			l-1.085,1.206v4.391h-2.1v-17.128h2.1V439.843z"/>
		<path d="M237.048,429.141v3.972h3.817v1.013h-3.817v4.003h-1.081v-4.003h-3.816v-1.013h3.816v-3.972H237.048z"/>
	</g>
	<g>
		<path d="M224.017,468.343h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.028h2.557l-4.511,4.801l5.139,6.876h-2.582l-4.028-5.597
			l-1.085,1.206v4.391h-2.1v-17.128h2.1V468.343z"/>
		<path d="M236.153,461.51v1.099h-4.172v-1.099H236.153z"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path11134_6_" cx="-104.3948" cy="627.8926" r="33.9819" gradientTransform="matrix(0.3664 0 0 -0.3664 299.3428 555.6323)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFFCDF"/>
			<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
			<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
			<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
			<stop  offset="0.5943" style="stop-color:#FFF090"/>
			<stop  offset="0.7706" style="stop-color:#FFEA64"/>
			<stop  offset="0.9506" style="stop-color:#FFE22F"/>
			<stop  offset="1" style="stop-color:#FFE01F"/>
		</radialGradient>
		<path id="path11134_1_" fill="url(#path11134_6_)" stroke="#000000" stroke-width="0.9921" d="M273.543,325.574
			c0,6.875-5.575,12.449-12.45,12.449c-6.878,0-12.451-5.574-12.451-12.449s5.572-12.453,12.451-12.453
			C267.968,313.121,273.543,318.699,273.543,325.574z"/>
		<g>
			<path d="M257.007,330.419c-0.342,0.177-1.059,0.353-1.963,0.353c-2.096,0-3.663-1.322-3.663-3.771
				c0-2.339,1.578-3.905,3.884-3.905c0.916,0,1.512,0.198,1.765,0.331l-0.243,0.783c-0.353-0.177-0.872-0.311-1.489-0.311
				c-1.742,0-2.9,1.115-2.9,3.067c0,1.831,1.048,2.989,2.846,2.989c0.596,0,1.191-0.121,1.578-0.309L257.007,330.419z"/>
			<path d="M261.876,329.371c0,0.463,0.022,0.915,0.077,1.279h-0.872l-0.088-0.674h-0.033c-0.287,0.42-0.872,0.795-1.633,0.795
				c-1.082,0-1.633-0.762-1.633-1.533c0-1.291,1.146-1.997,3.21-1.985v-0.11c0-0.44-0.122-1.246-1.214-1.235
				c-0.507,0-1.026,0.144-1.401,0.397l-0.221-0.65c0.44-0.276,1.092-0.465,1.765-0.465c1.645,0,2.041,1.115,2.041,2.186v1.996
				H261.876z M260.927,327.926c-1.059-0.021-2.262,0.165-2.262,1.202c0,0.64,0.419,0.927,0.905,0.927
				c0.706,0,1.158-0.44,1.312-0.894c0.033-0.101,0.044-0.21,0.044-0.31V327.926z"/>
			<path d="M262.977,326.975v-0.416l0.532-0.519c1.281-1.22,1.868-1.868,1.868-2.625c0-0.51-0.238-0.979-0.987-0.979
				c-0.456,0-0.834,0.23-1.065,0.424l-0.216-0.479c0.34-0.286,0.842-0.51,1.421-0.51c1.073,0,1.529,0.74,1.529,1.459
				c0,0.927-0.673,1.676-1.729,2.695l-0.394,0.369v0.017h2.247v0.563H262.977L262.977,326.975z"/>
			<path d="M269.141,322.867v1.814h1.744v0.463h-1.744v1.83h-0.494v-1.83h-1.745v-0.463h1.745v-1.814H269.141z"/>
		</g>
	</g>
	<g>
		<g>
			<g>
				<path fill="none" stroke="#000000" d="M260.92,343.167c-7.707,7.786-19.101,11.405-34.019,11.405
					c-19.109,0-35.306-8.415-40.896-20.053"/>
				<polygon points="261.576,347.77 260.051,344.045 256.312,342.559 265.119,338.925 				"/>
			</g>
		</g>
		<g>
			<g>
				<path fill="none" stroke="#000000" d="M188.128,313.5c7.161-9.43,22.251-17.947,39.235-17.947
					c17.132,0,31.951,6.579,39.043,16.143"/>
				<polygon points="186.877,309.023 188.875,312.516 192.776,313.503 184.518,318.254 				"/>
			</g>
		</g>
		<g>
			<g>
				<path fill="none" stroke="#000000" d="M229.797,354.542c8.291-0.584,18.564-7.208,23.075-14.208"/>
				<polygon points="254.464,344.701 252.203,341.373 248.237,340.688 256.105,335.316 				"/>
			</g>
		</g>
		<g>
			<g>
				<path fill="none" stroke="#000000" d="M224.188,295.333c10.087,0.687,22.585,8.456,28.074,16.668"/>
			</g>
		</g>
	</g>
	<g>
		<path d="M221.267,314.343h0.048c0.29-0.409,0.7-0.917,1.037-1.327l3.426-4.029h2.557l-4.511,4.802l5.139,6.875h-2.582
			l-4.028-5.597l-1.085,1.205v4.392h-2.1v-17.128h2.1V314.343z"/>
		<path d="M234.298,303.641v3.971h3.817v1.013h-3.817v4.003h-1.081v-4.003H229.4v-1.013h3.816v-3.971H234.298z"/>
	</g>
	<g>
		<path d="M221.267,342.843h0.048c0.29-0.409,0.7-0.917,1.037-1.327l3.426-4.029h2.557l-4.511,4.802l5.139,6.876h-2.582
			l-4.028-5.598l-1.085,1.207v4.391h-2.1v-17.128h2.1V342.843z"/>
		<path d="M233.403,336.01v1.098h-4.172v-1.098H233.403z"/>
	</g>
</g>
<g>
	<circle fill="none" stroke="#000000" cx="339.503" cy="440.958" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="354.878" cy="440.958" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="370.253" cy="440.958" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="332.129" y1="433.208" x2="377.629" y2="433.208"/>
<g>
	<circle fill="none" stroke="#000000" cx="387.599" cy="471.893" r="5.146"/>
	<circle fill="none" stroke="#000000" cx="371.756" cy="468.986" r="5.146"/>
	<circle fill="none" stroke="#000000" cx="355.912" cy="466.08" r="5.146"/>
	<line fill="none" stroke="#272525" x1="401.097" y1="479.897" x2="342.779" y2="469.198"/>
</g>
<polygon fill="#272525" stroke="#272525" points="348.398,459.193 352.14,457.974 349.182,456.741 353.106,453.179 349.344,454.5 
	352.771,449.208 348.853,452.858 351.193,446.752 347.8,452.097 348.646,446.234 346.362,452.352 345.568,447.744 344.789,453.575 
	342.494,451.02 343.355,455.556 339.953,455.496 342.305,457.952 338.387,460.397 341.822,460.351 338.064,464.879 341.99,462.337 
	339.043,468.164 342.778,463.565 341.151,469.684 344.052,463.823 344.026,469.178 345.591,463.069 347.171,466.732 
	347.129,461.431 350.041,462.769 "/>
<g>
	<polyline fill="none" stroke="#272525" points="353.872,421.538 320.927,375.273 334.208,381.211 	"/>
	<polyline fill="none" stroke="#272525" points="314.41,376.294 347.353,422.558 334.072,416.62 	"/>
</g>
<g>
	<path d="M346.272,381.734h2.122v7.285h0.049c0.338-0.604,0.868-1.133,1.52-1.496c0.627-0.361,1.375-0.603,2.171-0.603
		c1.568,0,4.077,0.966,4.077,4.993v6.947h-2.123v-6.706c0-1.882-0.7-3.474-2.702-3.474c-1.375,0-2.461,0.965-2.847,2.121
		c-0.121,0.291-0.146,0.604-0.146,1.014v7.046h-2.122L346.272,381.734L346.272,381.734z"/>
	<path d="M361.547,382.169c-0.555,2.003-1.592,4.606-2.268,5.718l-1.352,0.146c0.531-1.399,1.158-3.908,1.423-5.621L361.547,382.169
		z"/>
</g>
<g>
	<path d="M318.105,398.535h2.122v7.285h0.049c0.338-0.604,0.868-1.135,1.52-1.496c0.627-0.361,1.375-0.604,2.171-0.604
		c1.568,0,4.077,0.965,4.077,4.993v6.948h-2.123v-6.706c0-1.883-0.7-3.476-2.702-3.476c-1.375,0-2.461,0.965-2.847,2.123
		c-0.121,0.289-0.146,0.604-0.146,1.015v7.044h-2.122L318.105,398.535L318.105,398.535z"/>
</g>
<g>
	<circle fill="none" stroke="#000000" cx="287.906" cy="331.791" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="303.281" cy="331.791" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="318.656" cy="331.791" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="280.531" y1="324.041" x2="326.031" y2="324.041"/>
<g>
	
		<ellipse transform="matrix(0.1604 -0.9871 0.9871 0.1604 -93.6086 592.7689)" fill="#272525" stroke="#272525" cx="301.623" cy="351.407" rx="11.499" ry="3.5"/>
	<g>
		<g>
			<circle fill="none" stroke="#000000" cx="333.58" cy="362.773" r="5.145"/>
			<circle fill="none" stroke="#000000" cx="323.109" cy="361.07" r="5.146"/>
			<circle fill="none" stroke="#000000" cx="312.638" cy="359.368" r="5.146"/>
		</g>
		<line fill="none" stroke="#272525" x1="344.481" y1="370.057" x2="299.572" y2="362.752"/>
	</g>
</g>
<g>
	<polyline fill="none" stroke="#272525" points="303.41,316.038 336.353,269.773 323.073,275.711 	"/>
	<polyline fill="none" stroke="#272525" points="342.871,270.794 309.927,317.059 323.21,311.12 	"/>
</g>
<g>
	<path d="M303.489,291.863v-10.061h-1.641v-1.617h1.641v-0.555c0-1.641,0.361-3.136,1.351-4.076
		c0.796-0.772,1.857-1.086,2.848-1.086c0.747,0,1.398,0.17,1.809,0.338l-0.289,1.641c-0.314-0.145-0.748-0.266-1.351-0.266
		c-1.811,0-2.269,1.592-2.269,3.377v0.627h2.822v1.617h-2.822v10.061H303.489z"/>
	<path d="M314.589,275.169c-0.555,2.002-1.592,4.606-2.268,5.717l-1.352,0.146c0.531-1.399,1.158-3.908,1.423-5.621L314.589,275.169
		z"/>
</g>
<g>
	<path d="M335.822,308.663v-10.06h-1.641v-1.617h1.641v-0.555c0-1.642,0.361-3.137,1.351-4.078c0.796-0.771,1.857-1.084,2.847-1.084
		c0.748,0,1.399,0.168,1.81,0.338l-0.289,1.64c-0.314-0.146-0.748-0.265-1.351-0.265c-1.811,0-2.269,1.592-2.269,3.377v0.627h2.822
		v1.617h-2.822v10.06H335.822L335.822,308.663z"/>
</g>
<g>
	<g>
		<path d="M353.56,333.475l-2.1,6.359h-2.7l6.87-20.22h3.15l6.899,20.22h-2.79l-2.16-6.359H353.56z M360.19,331.434l-1.98-5.818
			c-0.45-1.32-0.75-2.521-1.05-3.69h-0.061c-0.3,1.2-0.63,2.431-1.02,3.66l-1.98,5.851h6.091V331.434z"/>
	</g>
	<g>
		<path d="M375.312,321.854c0,3.537-1.312,5.49-3.617,5.49c-2.033,0-3.409-1.904-3.441-5.346c0-3.49,1.505-5.41,3.618-5.41
			C374.064,316.587,375.312,318.54,375.312,321.854z M369.662,322.014c0,2.704,0.833,4.241,2.113,4.241
			c1.439,0,2.129-1.681,2.129-4.337c0-2.561-0.656-4.242-2.113-4.242C370.558,317.676,369.662,319.18,369.662,322.014z"/>
	</g>
	<g>
		<path d="M371.455,335.408h-0.032l-1.809,0.977l-0.272-1.072l2.273-1.217h1.201V344.5h-1.361V335.408z"/>
	</g>
</g>
<g>
	<path d="M428.901,349.008c0,2.678-0.53,4.318-1.665,5.332c-1.135,1.061-2.774,1.398-4.246,1.398c-1.399,0-2.943-0.338-3.884-0.965
		l0.529-1.616c0.772,0.483,1.979,0.917,3.426,0.917c2.172,0,3.765-1.135,3.765-4.077v-1.304h-0.048
		c-0.651,1.086-1.906,1.955-3.716,1.955c-2.895,0-4.97-2.461-4.97-5.693c0-3.956,2.582-6.199,5.259-6.199
		c2.026,0,3.137,1.061,3.644,2.025h0.048l0.097-1.762h1.857c-0.048,0.846-0.097,1.785-0.097,3.209L428.901,349.008L428.901,349.008z
		 M426.802,343.629c0-0.361-0.023-0.676-0.121-0.965c-0.386-1.23-1.423-2.244-2.967-2.244c-2.025,0-3.474,1.713-3.474,4.414
		c0,2.293,1.158,4.198,3.45,4.198c1.303,0,2.484-0.82,2.942-2.171c0.121-0.362,0.169-0.772,0.169-1.135V343.629z"/>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M399.504,446.333c54.667-36.666,44.25-183.083,1.333-204"/>
		<polygon points="404.984,240.235 401.948,242.875 401.739,246.895 395.47,239.718 		"/>
	</g>
</g>
<g>
	<g>
		<path d="M431.374,222.051c1.59-0.24,3.479-0.42,5.55-0.42c3.75,0,6.42,0.87,8.19,2.52c1.8,1.65,2.85,3.99,2.85,7.26
			c0,3.3-1.02,6-2.91,7.859c-1.89,1.89-5.01,2.91-8.939,2.91c-1.86,0-3.42-0.09-4.74-0.24V222.051z M433.983,239.931
			c0.659,0.12,1.619,0.15,2.64,0.15c5.58,0,8.609-3.12,8.609-8.58c0.029-4.77-2.67-7.8-8.189-7.8c-1.35,0-2.37,0.12-3.06,0.27
			V239.931L433.983,239.931z"/>
	</g>
	<g>
		<path d="M456.396,224.021c0,3.537-1.313,5.49-3.618,5.49c-2.033,0-3.409-1.905-3.441-5.346c0-3.49,1.505-5.41,3.618-5.41
			C455.147,218.754,456.396,220.707,456.396,224.021z M450.745,224.18c0,2.705,0.833,4.242,2.113,4.242
			c1.439,0,2.129-1.681,2.129-4.337c0-2.561-0.656-4.242-2.113-4.242C451.641,219.843,450.745,221.347,450.745,224.18z"/>
	</g>
</g>
<g>
	<g>
		<path d="M434.643,466.641l-2.1,6.359h-2.7l6.87-20.219h3.15L446.763,473h-2.79l-2.159-6.359H434.643z M441.273,464.601
			l-1.98-5.818c-0.45-1.32-0.75-2.521-1.05-3.689h-0.061c-0.3,1.199-0.63,2.431-1.02,3.659l-1.98,5.85L441.273,464.601
			L441.273,464.601z"/>
	</g>
	<g>
		<path d="M456.396,455.021c0,3.536-1.313,5.489-3.618,5.489c-2.033,0-3.409-1.904-3.441-5.347c0-3.489,1.505-5.41,3.618-5.41
			C455.147,449.754,456.396,451.707,456.396,455.021z M450.745,455.18c0,2.705,0.833,4.242,2.113,4.242
			c1.439,0,2.129-1.681,2.129-4.338c0-2.561-0.656-4.241-2.113-4.241C451.641,450.843,450.745,452.348,450.745,455.18z"/>
	</g>
	<g>
		<path d="M449.48,477.667v-0.864l1.104-1.071c2.657-2.529,3.857-3.874,3.874-5.442c0-1.057-0.512-2.032-2.065-2.032
			c-0.943,0-1.729,0.479-2.208,0.88l-0.447-0.993c0.72-0.606,1.745-1.056,2.944-1.056c2.241,0,3.187,1.536,3.187,3.024
			c0,1.922-1.394,3.475-3.585,5.587l-0.833,0.769v0.031h4.674v1.169L449.48,477.667L449.48,477.667z"/>
	</g>
</g>
<g>
	<circle fill="none" stroke="#000000" cx="337.198" cy="112" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="352.573" cy="112" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="367.948" cy="112" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="329.823" y1="119.75" x2="375.323" y2="119.75"/>
<g>
	<circle fill="none" stroke="#000000" cx="337.239" cy="222.957" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="352.614" cy="222.957" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="367.989" cy="222.957" r="7.458"/>
</g>
<line fill="none" stroke="#272525" x1="329.864" y1="215.207" x2="375.364" y2="215.207"/>
<g>
	
		<ellipse transform="matrix(0.1604 -0.987 0.987 0.1604 50.3501 551.514)" fill="#272525" stroke="#272525" cx="349.367" cy="246.16" rx="11.5" ry="3.5"/>
	<g>
		<g>
			<circle fill="none" stroke="#000000" cx="381.33" cy="257.523" r="5.145"/>
			<circle fill="none" stroke="#000000" cx="370.859" cy="255.82" r="5.146"/>
			<circle fill="none" stroke="#000000" cx="360.388" cy="254.118" r="5.146"/>
		</g>
		<line fill="none" stroke="#272525" x1="392.231" y1="264.807" x2="347.322" y2="257.502"/>
	</g>
</g>
<g>
	<g>
		<path d="M389.457,79.051c1.32-0.27,3.21-0.42,5.01-0.42c2.79,0,4.59,0.51,5.851,1.65c1.02,0.9,1.59,2.28,1.59,3.84
			c0,2.67-1.681,4.44-3.811,5.16v0.09c1.561,0.54,2.49,1.979,2.971,4.08c0.659,2.82,1.14,4.77,1.56,5.55h-2.7
			c-0.33-0.6-0.779-2.31-1.35-4.83c-0.601-2.79-1.68-3.84-4.05-3.93h-2.46V99h-2.61V79.051L389.457,79.051z M392.067,88.261h2.67
			c2.79,0,4.56-1.53,4.56-3.84c0-2.61-1.89-3.75-4.649-3.78c-1.261,0-2.16,0.12-2.58,0.24V88.261L392.067,88.261z"/>
	</g>
	<g>
		<path d="M414.478,81.021c0,3.537-1.312,5.49-3.617,5.49c-2.033,0-3.409-1.905-3.441-5.346c0-3.49,1.505-5.41,3.618-5.41
			C413.23,75.754,414.478,77.707,414.478,81.021z M408.829,81.18c0,2.705,0.833,4.242,2.113,4.242c1.439,0,2.129-1.681,2.129-4.337
			c0-2.561-0.656-4.242-2.113-4.242C409.724,76.843,408.829,78.347,408.829,81.18z"/>
	</g>
	<g>
		<path d="M415.023,99.729c0,2.865-1.985,4.114-3.857,4.114c-2.097,0-3.713-1.537-3.713-3.986c0-2.593,1.696-4.114,3.841-4.114
			C413.518,95.744,415.023,97.36,415.023,99.729z M408.876,99.81c0,1.697,0.977,2.977,2.353,2.977c1.346,0,2.354-1.265,2.354-3.009
			c0-1.313-0.656-2.977-2.321-2.977C409.596,96.8,408.876,98.337,408.876,99.81z"/>
		<path d="M421.583,103.667v-6.675h-3.25v6.675h-1.393v-6.675h-1.089V95.92h1.089v-0.224c0-1.088,0.256-2.033,0.863-2.641
			c0.448-0.464,1.088-0.736,1.953-0.736c0.448,0,0.864,0.144,1.104,0.272l-0.288,1.057c-0.208-0.112-0.513-0.208-0.832-0.208
			c-1.104,0-1.409,0.944-1.409,2.161v0.32h3.25v-0.368c0-1.088,0.256-2.081,0.912-2.705c0.528-0.512,1.231-0.72,1.873-0.72
			c0.512,0,0.928,0.112,1.2,0.224l-0.177,1.088c-0.224-0.096-0.497-0.176-0.912-0.176c-1.186,0-1.505,1.057-1.505,2.241v0.416h1.873
			v1.072h-1.856v6.675L421.583,103.667L421.583,103.667z"/>
	</g>
</g>
<g id="k_0_off">
	<circle id="k_0_off_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="321.994" cy="168.964" r="19.151"/>
	<g>
		<g>
			<path d="M309.537,170.042h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.558l-4.512,4.801l5.14,6.875h-2.582l-4.029-5.597
				l-1.085,1.206v4.391h-2.099v-17.128h2.099V170.042L309.537,170.042z"/>
		</g>
		<g>
			<path d="M327.632,161.903c0,2.843-1.055,4.412-2.907,4.412c-1.633,0-2.739-1.531-2.766-4.296c0-2.804,1.209-4.348,2.907-4.348
				C326.629,157.671,327.632,159.24,327.632,161.903z M323.092,162.031c0,2.174,0.669,3.409,1.698,3.409
				c1.158,0,1.711-1.351,1.711-3.486c0-2.058-0.527-3.409-1.698-3.409C323.812,158.545,323.092,159.754,323.092,162.031z"/>
		</g>
		<g>
			<path d="M328.07,176.951c0,2.303-1.596,3.306-3.101,3.306c-1.685,0-2.983-1.235-2.983-3.203c0-2.083,1.362-3.306,3.087-3.306
				C326.86,173.749,328.07,175.048,328.07,176.951z M323.13,177.016c0,1.364,0.785,2.393,1.892,2.393
				c1.08,0,1.891-1.016,1.891-2.418c0-1.055-0.527-2.392-1.865-2.392S323.13,175.833,323.13,177.016z"/>
			<path d="M333.347,180.116v-5.364h-2.61v5.364h-1.119v-5.364h-0.875v-0.862h0.875v-0.18c0-0.875,0.206-1.634,0.695-2.123
				c0.359-0.373,0.875-0.592,1.568-0.592c0.36,0,0.694,0.116,0.887,0.219l-0.23,0.849c-0.167-0.09-0.412-0.167-0.669-0.167
				c-0.887,0-1.132,0.759-1.132,1.737v0.257h2.61v-0.296c0-0.875,0.206-1.672,0.733-2.174c0.425-0.412,0.991-0.579,1.505-0.579
				c0.412,0,0.746,0.09,0.964,0.18l-0.141,0.875c-0.18-0.077-0.399-0.141-0.733-0.141c-0.952,0-1.209,0.849-1.209,1.801v0.334h1.505
				v0.862h-1.491v5.364H333.347z"/>
		</g>
	</g>
</g>
<g id="k_0_on">
	<circle id="k_0_on_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="390.119" cy="168.964" r="19.151"/>
	<g>
		<g>
			<path d="M378.537,170.042h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.558l-4.512,4.801l5.14,6.875h-2.582l-4.029-5.597
				l-1.085,1.206v4.391h-2.099v-17.128h2.099V170.042L378.537,170.042z"/>
		</g>
		<g>
			<path d="M396.632,161.903c0,2.843-1.055,4.412-2.907,4.412c-1.633,0-2.739-1.531-2.766-4.296c0-2.804,1.209-4.348,2.907-4.348
				C395.629,157.671,396.632,159.24,396.632,161.903z M392.092,162.031c0,2.174,0.669,3.409,1.698,3.409
				c1.158,0,1.711-1.351,1.711-3.486c0-2.058-0.527-3.409-1.698-3.409C392.812,158.545,392.092,159.754,392.092,162.031z"/>
		</g>
		<g>
			<path d="M397.07,176.951c0,2.303-1.596,3.306-3.101,3.306c-1.685,0-2.983-1.235-2.983-3.203c0-2.083,1.362-3.306,3.087-3.306
				C395.86,173.749,397.07,175.048,397.07,176.951z M392.13,177.016c0,1.364,0.785,2.393,1.892,2.393
				c1.08,0,1.891-1.016,1.891-2.418c0-1.055-0.527-2.392-1.865-2.392S392.13,175.833,392.13,177.016z"/>
			<path d="M398.501,175.575c0-0.644-0.013-1.171-0.051-1.685h1.003l0.063,1.029h0.026c0.309-0.592,1.029-1.17,2.058-1.17
				c0.862,0,2.2,0.515,2.2,2.65v3.717h-1.132v-3.589c0-1.003-0.373-1.839-1.439-1.839c-0.746,0-1.325,0.527-1.519,1.158
				c-0.051,0.142-0.077,0.334-0.077,0.527v3.743h-1.132L398.501,175.575L398.501,175.575z"/>
		</g>
	</g>
</g>
<g>
	<polyline fill="none" stroke="#272525" points="350.594,211.333 350.594,126.25 345.594,134.75 	"/>
	<polyline fill="none" stroke="#272525" points="354.594,125.333 354.594,209.75 359.594,201.25 	"/>
</g>
<g>
	<g>
		
			<radialGradient id="path11134_7_" cx="-64.1389" cy="929.4766" r="33.9819" gradientTransform="matrix(0.3664 0 0 -0.3664 299.3428 555.6323)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFFCDF"/>
			<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
			<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
			<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
			<stop  offset="0.5943" style="stop-color:#FFF090"/>
			<stop  offset="0.7706" style="stop-color:#FFEA64"/>
			<stop  offset="0.9506" style="stop-color:#FFE22F"/>
			<stop  offset="1" style="stop-color:#FFE01F"/>
		</radialGradient>
		<path id="path11134_3_" fill="url(#path11134_7_)" stroke="#000000" stroke-width="0.9921" d="M288.293,215.074
			c0,6.875-5.575,12.449-12.45,12.449c-6.878,0-12.451-5.574-12.451-12.449s5.572-12.453,12.451-12.453
			C282.718,202.621,288.293,208.199,288.293,215.074z"/>
		<g>
			<path d="M271.757,219.919c-0.342,0.177-1.059,0.353-1.963,0.353c-2.096,0-3.663-1.323-3.663-3.772
				c0-2.339,1.578-3.905,3.884-3.905c0.916,0,1.512,0.198,1.765,0.331l-0.243,0.783c-0.353-0.177-0.872-0.31-1.489-0.31
				c-1.743,0-2.9,1.114-2.9,3.067c0,1.831,1.048,2.989,2.846,2.989c0.596,0,1.191-0.121,1.578-0.309L271.757,219.919z"/>
			<path d="M276.626,218.871c0,0.463,0.022,0.915,0.077,1.279h-0.872l-0.088-0.673h-0.033c-0.287,0.419-0.872,0.794-1.633,0.794
				c-1.082,0-1.633-0.761-1.633-1.533c0-1.291,1.146-1.997,3.21-1.985v-0.11c0-0.441-0.122-1.247-1.214-1.236
				c-0.507,0-1.026,0.144-1.401,0.397l-0.221-0.65c0.44-0.276,1.092-0.464,1.765-0.464c1.645,0,2.041,1.114,2.041,2.185v1.996
				H276.626z M275.677,217.426c-1.059-0.022-2.262,0.165-2.262,1.202c0,0.64,0.419,0.927,0.905,0.927
				c0.706,0,1.158-0.441,1.312-0.894c0.033-0.1,0.044-0.21,0.044-0.309V217.426z"/>
			<path d="M277.727,216.475v-0.417l0.532-0.518c1.281-1.22,1.868-1.868,1.868-2.625c0-0.51-0.238-0.98-0.987-0.98
				c-0.456,0-0.834,0.231-1.065,0.425l-0.216-0.479c0.34-0.286,0.842-0.51,1.421-0.51c1.073,0,1.529,0.741,1.529,1.459
				c0,0.927-0.673,1.676-1.729,2.695l-0.394,0.37v0.016h2.247v0.563L277.727,216.475L277.727,216.475z"/>
			<path d="M283.891,212.367v1.814h1.744v0.463h-1.744v1.83h-0.494v-1.83h-1.745v-0.463h1.745v-1.814H283.891z"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M273.656,232.667c-10.534,7.786-26.108,11.405-46.5,11.405
				c-26.121,0-48.261-8.415-55.9-20.053"/>
			<polygon points="273.599,237.314 272.662,233.401 269.196,231.357 278.457,229.119 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M174.156,203c9.79-9.43,30.415-17.947,53.632-17.947c23.418,0,43.674,6.579,53.368,16.142"
				/>
			<polygon points="173.61,198.385 175.046,202.143 178.749,203.72 169.857,207.141 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M231.115,244.042c11.333-0.584,25.375-7.208,31.541-14.208"/>
			<polygon points="263.579,234.389 261.839,230.761 258.021,229.493 266.602,225.354 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M223.448,184.833c13.788,0.686,30.872,8.456,38.375,16.668"/>
		</g>
	</g>
	<g>
		<path d="M224.017,203.843h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.557l-4.511,4.801l5.139,6.875h-2.582l-4.028-5.597
			l-1.085,1.206v4.391h-2.1v-17.128h2.1V203.843z"/>
		<path d="M237.048,193.141v3.97h3.817v1.013h-3.817v4.003h-1.081v-4.003h-3.816v-1.013h3.816v-3.97H237.048z"/>
	</g>
	<g>
		<path d="M224.017,232.343h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.557l-4.511,4.801l5.139,6.875h-2.582l-4.028-5.597
			l-1.085,1.206v4.391h-2.1v-17.128h2.1V232.343z"/>
		<path d="M236.153,225.509v1.098h-4.172v-1.098H236.153z"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path11134_8_" cx="-64.1389" cy="1202.4023" r="33.9819" gradientTransform="matrix(0.3664 0 0 -0.3664 299.3428 555.6323)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFFCDF"/>
			<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
			<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
			<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
			<stop  offset="0.5943" style="stop-color:#FFF090"/>
			<stop  offset="0.7706" style="stop-color:#FFEA64"/>
			<stop  offset="0.9506" style="stop-color:#FFE22F"/>
			<stop  offset="1" style="stop-color:#FFE01F"/>
		</radialGradient>
		<path id="path11134_4_" fill="url(#path11134_8_)" stroke="#000000" stroke-width="0.9921" d="M288.293,115.074
			c0,6.875-5.575,12.449-12.45,12.449c-6.878,0-12.451-5.574-12.451-12.449s5.572-12.453,12.451-12.453
			C282.718,102.621,288.293,108.199,288.293,115.074z"/>
		<g>
			<path d="M271.757,119.919c-0.342,0.177-1.059,0.353-1.963,0.353c-2.096,0-3.663-1.323-3.663-3.772
				c0-2.339,1.578-3.905,3.884-3.905c0.916,0,1.512,0.198,1.765,0.331l-0.243,0.783c-0.353-0.177-0.872-0.31-1.489-0.31
				c-1.743,0-2.9,1.114-2.9,3.067c0,1.831,1.048,2.989,2.846,2.989c0.596,0,1.191-0.121,1.578-0.309L271.757,119.919z"/>
			<path d="M276.626,118.871c0,0.463,0.022,0.915,0.077,1.279h-0.872l-0.088-0.673h-0.033c-0.287,0.419-0.872,0.794-1.633,0.794
				c-1.082,0-1.633-0.761-1.633-1.533c0-1.291,1.146-1.997,3.21-1.985v-0.11c0-0.441-0.122-1.247-1.214-1.236
				c-0.507,0-1.026,0.144-1.401,0.397l-0.221-0.65c0.44-0.276,1.092-0.464,1.765-0.464c1.645,0,2.041,1.114,2.041,2.185v1.996
				H276.626z M275.677,117.426c-1.059-0.022-2.262,0.165-2.262,1.202c0,0.64,0.419,0.927,0.905,0.927
				c0.706,0,1.158-0.441,1.312-0.894c0.033-0.1,0.044-0.21,0.044-0.309V117.426z"/>
			<path d="M277.727,116.475v-0.417l0.532-0.518c1.281-1.22,1.868-1.868,1.868-2.625c0-0.51-0.238-0.98-0.987-0.98
				c-0.456,0-0.834,0.231-1.065,0.425l-0.216-0.479c0.34-0.286,0.842-0.51,1.421-0.51c1.073,0,1.529,0.741,1.529,1.459
				c0,0.927-0.673,1.676-1.729,2.695l-0.394,0.37v0.016h2.247v0.563L277.727,116.475L277.727,116.475z"/>
			<path d="M283.891,112.367v1.814h1.744v0.463h-1.744v1.83h-0.494v-1.83h-1.745v-0.463h1.745v-1.814H283.891z"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M273.656,132.667c-10.534,7.786-26.108,11.405-46.5,11.405
				c-26.121,0-48.261-8.415-55.9-20.053"/>
			<polygon points="273.599,137.314 272.662,133.401 269.196,131.357 278.457,129.119 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M174.156,103c9.79-9.43,30.415-17.947,53.632-17.947c23.418,0,43.674,6.579,53.368,16.142"
				/>
			<polygon points="173.61,98.385 175.046,102.143 178.749,103.72 169.857,107.141 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M231.115,144.042c11.333-0.584,25.375-7.208,31.541-14.208"/>
			<polygon points="263.579,134.389 261.839,130.761 258.021,129.493 266.602,125.354 			"/>
		</g>
	</g>
	<g>
		<g>
			<path fill="none" stroke="#000000" d="M223.448,84.833c13.788,0.686,30.872,8.456,38.375,16.668"/>
		</g>
	</g>
	<g>
		<path d="M224.017,103.843h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.557l-4.511,4.801l5.139,6.875h-2.582l-4.028-5.597
			l-1.085,1.206v4.391h-2.1V93.035h2.1V103.843z"/>
		<path d="M237.048,93.141v3.97h3.817v1.013h-3.817v4.003h-1.081v-4.003h-3.816v-1.013h3.816v-3.97H237.048z"/>
	</g>
	<g>
		<path d="M224.017,132.343h0.048c0.29-0.41,0.7-0.917,1.037-1.327l3.426-4.029h2.557l-4.511,4.801l5.139,6.875h-2.582l-4.028-5.597
			l-1.085,1.206v4.391h-2.1v-17.128h2.1V132.343z"/>
		<path d="M236.153,125.509v1.098h-4.172v-1.098H236.153z"/>
	</g>
</g>
<g>
	<g>
		<circle fill="none" stroke="#000000" cx="695.899" cy="148.47" r="7.458"/>
		<circle fill="none" stroke="#000000" cx="711.274" cy="148.47" r="7.458"/>
		<circle fill="none" stroke="#000000" cx="726.649" cy="148.47" r="7.458"/>
	</g>
	<line fill="none" stroke="#272525" x1="688.524" y1="156.22" x2="734.024" y2="156.22"/>
</g>
<g>
	<g>
		<circle fill="none" stroke="#000000" cx="695.899" cy="259.427" r="7.459"/>
		<circle fill="none" stroke="#000000" cx="711.274" cy="259.427" r="7.459"/>
		<circle fill="none" stroke="#000000" cx="726.649" cy="259.427" r="7.459"/>
	</g>
	<line fill="none" stroke="#272525" x1="688.524" y1="251.677" x2="734.024" y2="251.677"/>
</g>
<g id="R_off">
	<ellipse id="R_off_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="666.366" cy="127.707" rx="28.095" ry="19.151"/>
	<g>
		<g>
			<path d="M648.312,115.521c1.318-0.27,3.21-0.42,5.01-0.42c2.79,0,4.59,0.51,5.851,1.65c1.021,0.9,1.59,2.28,1.59,3.84
				c0,2.67-1.681,4.44-3.811,5.16v0.09c1.561,0.54,2.49,1.979,2.971,4.08c0.659,2.82,1.14,4.77,1.56,5.55h-2.699
				c-0.33-0.6-0.779-2.31-1.35-4.83c-0.601-2.79-1.681-3.84-4.052-3.93h-2.459v8.76h-2.609L648.312,115.521L648.312,115.521z
				 M650.922,124.73h2.67c2.789,0,4.561-1.53,4.561-3.84c0-2.61-1.891-3.75-4.649-3.78c-1.26,0-2.16,0.12-2.58,0.24L650.922,124.73
				L650.922,124.73z"/>
		</g>
		<g>
			<path d="M673.877,136.199c0,2.865-1.984,4.114-3.857,4.114c-2.096,0-3.713-1.537-3.713-3.986c0-2.593,1.696-4.114,3.843-4.114
				C672.373,132.213,673.877,133.83,673.877,136.199z M667.73,136.279c0,1.697,0.977,2.977,2.354,2.977
				c1.345,0,2.354-1.265,2.354-3.009c0-1.313-0.655-2.977-2.32-2.977S667.73,134.807,667.73,136.279z"/>
			<path d="M680.437,140.137v-6.675h-3.25v6.675h-1.393v-6.675h-1.088v-1.072h1.088v-0.224c0-1.088,0.256-2.033,0.864-2.641
				c0.448-0.464,1.089-0.736,1.953-0.736c0.447,0,0.863,0.144,1.104,0.272l-0.289,1.057c-0.207-0.112-0.512-0.208-0.832-0.208
				c-1.104,0-1.407,0.944-1.407,2.161v0.32h3.25v-0.368c0-1.088,0.256-2.081,0.911-2.705c0.527-0.512,1.232-0.72,1.873-0.72
				c0.513,0,0.929,0.112,1.199,0.224l-0.176,1.088c-0.225-0.096-0.496-0.176-0.912-0.176c-1.185,0-1.504,1.057-1.504,2.241v0.416
				h1.872v1.072h-1.856v6.675h-1.407V140.137z"/>
		</g>
	</g>
</g>
<g>
	<circle id="k_Ca_off_path2" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="679.848" cy="205.28" r="19.151"/>
	<g>
		<g>
			<path d="M667.391,206.511h0.049c0.29-0.41,0.699-0.917,1.036-1.327l3.427-4.029h2.558l-4.511,4.801l5.139,6.875h-2.582
				l-4.028-5.597l-1.086,1.206v4.391h-2.099v-17.128h2.099L667.391,206.511L667.391,206.511z"/>
		</g>
		<g>
			<path d="M686.386,202.36c-0.411,0.206-1.233,0.425-2.289,0.425c-2.442,0-4.282-1.557-4.282-4.399c0-2.714,1.84-4.553,4.526-4.553
				c1.08,0,1.762,0.231,2.06,0.386l-0.271,0.913c-0.425-0.206-1.028-0.36-1.749-0.36c-2.033,0-3.383,1.299-3.383,3.576
				c0,2.123,1.222,3.486,3.331,3.486c0.682,0,1.376-0.141,1.827-0.36L686.386,202.36z"/>
			<path d="M692.038,201.151c0,0.541,0.026,1.068,0.103,1.492h-1.028l-0.09-0.785h-0.038c-0.349,0.489-1.018,0.926-1.903,0.926
				c-1.262,0-1.904-0.888-1.904-1.788c0-1.505,1.338-2.328,3.743-2.315v-0.128c0-0.515-0.142-1.441-1.415-1.441
				c-0.578,0-1.184,0.18-1.621,0.463l-0.257-0.746c0.515-0.334,1.261-0.553,2.046-0.553c1.903,0,2.366,1.299,2.366,2.547
				L692.038,201.151L692.038,201.151z M690.945,199.466c-1.235-0.026-2.639,0.193-2.639,1.402c0,0.733,0.489,1.08,1.067,1.08
				c0.811,0,1.325-0.514,1.506-1.042c0.038-0.116,0.064-0.245,0.064-0.36L690.945,199.466L690.945,199.466z"/>
		</g>
		<g>
			<path d="M685.924,213.421c0,2.303-1.595,3.306-3.1,3.306c-1.687,0-2.984-1.235-2.984-3.203c0-2.083,1.363-3.306,3.088-3.306
				C684.715,210.218,685.924,211.518,685.924,213.421z M680.984,213.485c0,1.364,0.784,2.393,1.891,2.393
				c1.081,0,1.892-1.016,1.892-2.418c0-1.055-0.526-2.392-1.864-2.392S680.984,212.302,680.984,213.485z"/>
			<path d="M691.202,216.585v-5.364h-2.611v5.364h-1.119v-5.364h-0.874v-0.862h0.874v-0.18c0-0.875,0.206-1.634,0.694-2.123
				c0.36-0.373,0.875-0.592,1.57-0.592c0.358,0,0.692,0.116,0.887,0.219l-0.231,0.849c-0.167-0.09-0.411-0.167-0.669-0.167
				c-0.887,0-1.132,0.759-1.132,1.737v0.257h2.611v-0.296c0-0.875,0.206-1.672,0.732-2.174c0.425-0.412,0.99-0.579,1.505-0.579
				c0.411,0,0.746,0.09,0.965,0.18l-0.142,0.875c-0.18-0.077-0.397-0.141-0.732-0.141c-0.952,0-1.209,0.849-1.209,1.801v0.334h1.505
				v0.862h-1.492v5.364H691.202L691.202,216.585z"/>
		</g>
	</g>
</g>
<g>
	<circle id="k_Ca_on_path2" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="741.974" cy="205.28" r="19.151"/>
	<g>
		<g>
			<path d="M730.391,206.511h0.049c0.29-0.41,0.699-0.917,1.036-1.327l3.427-4.029h2.558l-4.511,4.801l5.139,6.875h-2.582
				l-4.028-5.597l-1.086,1.206v4.391h-2.099v-17.128h2.099L730.391,206.511L730.391,206.511z"/>
		</g>
		<g>
			<path d="M749.386,202.36c-0.411,0.206-1.233,0.425-2.289,0.425c-2.442,0-4.282-1.557-4.282-4.399c0-2.714,1.84-4.553,4.526-4.553
				c1.08,0,1.762,0.231,2.06,0.386l-0.271,0.913c-0.425-0.206-1.028-0.36-1.749-0.36c-2.033,0-3.383,1.299-3.383,3.576
				c0,2.123,1.222,3.486,3.331,3.486c0.682,0,1.376-0.141,1.827-0.36L749.386,202.36z"/>
			<path d="M755.038,201.151c0,0.541,0.026,1.068,0.103,1.492h-1.028l-0.09-0.785h-0.038c-0.349,0.489-1.018,0.926-1.903,0.926
				c-1.262,0-1.904-0.888-1.904-1.788c0-1.505,1.338-2.328,3.743-2.315v-0.128c0-0.515-0.142-1.441-1.415-1.441
				c-0.578,0-1.184,0.18-1.621,0.463l-0.257-0.746c0.515-0.334,1.261-0.553,2.046-0.553c1.903,0,2.366,1.299,2.366,2.547
				L755.038,201.151L755.038,201.151z M753.945,199.466c-1.235-0.026-2.639,0.193-2.639,1.402c0,0.733,0.489,1.08,1.067,1.08
				c0.811,0,1.325-0.514,1.506-1.042c0.038-0.116,0.064-0.245,0.064-0.36L753.945,199.466L753.945,199.466z"/>
		</g>
		<g>
			<path d="M748.924,213.421c0,2.303-1.595,3.306-3.1,3.306c-1.687,0-2.984-1.235-2.984-3.203c0-2.083,1.363-3.306,3.088-3.306
				C747.715,210.218,748.924,211.518,748.924,213.421z M743.984,213.485c0,1.364,0.784,2.393,1.891,2.393
				c1.081,0,1.892-1.016,1.892-2.418c0-1.055-0.526-2.392-1.864-2.392S743.984,212.302,743.984,213.485z"/>
			<path d="M750.355,212.045c0-0.644-0.013-1.171-0.052-1.685h1.004l0.063,1.029h0.025c0.31-0.592,1.028-1.17,2.059-1.17
				c0.862,0,2.2,0.515,2.2,2.65v3.717h-1.134v-3.589c0-1.003-0.372-1.839-1.439-1.839c-0.746,0-1.325,0.527-1.52,1.158
				c-0.051,0.142-0.075,0.334-0.075,0.527v3.743h-1.134v-4.541H750.355z"/>
		</g>
	</g>
</g>
<g>
	<polyline fill="none" stroke="#272525" points="709.274,247.805 709.274,162.72 704.274,171.22 	"/>
	<polyline fill="none" stroke="#272525" points="713.274,161.804 713.274,246.22 718.274,237.72 	"/>
</g>
<g id="D">
	<circle id="D_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="667.012" cy="278.905" r="19.151"/>
	<g>
		<path d="M658.719,269.051c1.59-0.24,3.479-0.42,5.549-0.42c3.75,0,6.42,0.87,8.19,2.52c1.8,1.65,2.85,3.99,2.85,7.261
			c0,3.3-1.021,6-2.908,7.858c-1.892,1.891-5.011,2.91-8.94,2.91c-1.86,0-3.42-0.09-4.739-0.24L658.719,269.051L658.719,269.051z
			 M661.328,286.932c0.66,0.119,1.62,0.149,2.641,0.149c5.579,0,8.609-3.12,8.609-8.58c0.029-4.771-2.67-7.8-8.189-7.8
			c-1.351,0-2.371,0.12-3.061,0.27V286.932z"/>
	</g>
</g>
<g>
	<ellipse fill="#272525" stroke="#272525" cx="712.404" cy="284.74" rx="3.5" ry="11.499"/>
	<g>
		<g>
			<circle fill="none" stroke="#000000" cx="745.761" cy="290.825" r="5.145"/>
			<circle fill="none" stroke="#000000" cx="735.154" cy="290.817" r="5.146"/>
			<circle fill="none" stroke="#000000" cx="724.546" cy="290.81" r="5.146"/>
		</g>
		<line fill="none" stroke="#272525" x1="757.687" y1="296.271" x2="712.187" y2="296.239"/>
	</g>
</g>
<line fill="none" stroke="#272525" x1="599.241" y1="373.84" x2="644.741" y2="373.84"/>
<g>
	<circle fill="none" stroke="#000000" cx="606.617" cy="381.59" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="621.992" cy="381.59" r="7.458"/>
	<circle fill="none" stroke="#000000" cx="637.367" cy="381.59" r="7.458"/>
</g>
<g>
	<circle fill="none" stroke="#000000" cx="663.021" cy="407.192" r="5.146"/>
	<circle fill="none" stroke="#000000" cx="646.914" cy="407.166" r="5.146"/>
	<circle fill="none" stroke="#000000" cx="630.804" cy="407.138" r="5.146"/>
	<line fill="none" stroke="#272525" x1="677.733" y1="412.654" x2="618.441" y2="412.555"/>
</g>
<polygon fill="#272525" stroke="#272525" points="622.18,401.707 625.646,399.838 622.514,399.152 625.738,394.947 622.271,396.92 
	624.698,391.1 621.497,395.393 622.706,388.966 620.323,394.831 620.107,388.912 618.955,395.339 617.348,390.948 617.626,396.823 
	614.911,394.721 616.569,399.029 613.212,399.579 615.966,401.574 612.548,404.682 615.918,404.021 613.03,409.146 616.437,405.943 
	614.581,412.205 617.434,407.014 616.927,413.323 618.733,407.039 619.665,412.312 620.112,406.021 622.322,409.343 
	621.333,404.134 624.437,404.932 "/>
<g>
	<g>
		<g>
			<circle fill="none" stroke="#000000" cx="779.657" cy="380" r="7.459"/>
			<circle fill="none" stroke="#000000" cx="795.032" cy="380" r="7.459"/>
			<circle fill="none" stroke="#000000" cx="810.407" cy="380" r="7.459"/>
		</g>
		<line fill="none" stroke="#272525" x1="772.282" y1="372.25" x2="817.782" y2="372.25"/>
	</g>
	<g>
		<ellipse fill="#272525" stroke="#272525" cx="796.162" cy="399.313" rx="3.5" ry="11.499"/>
		<g>
			<g>
				<circle fill="none" stroke="#000000" cx="829.519" cy="405.397" r="5.145"/>
				<circle fill="none" stroke="#000000" cx="818.912" cy="405.39" r="5.146"/>
				<circle fill="none" stroke="#000000" cx="808.303" cy="405.383" r="5.146"/>
			</g>
			<line fill="none" stroke="#272525" x1="841.445" y1="410.846" x2="795.945" y2="410.812"/>
		</g>
	</g>
</g>
<g>
	<polyline fill="none" stroke="#272525" points="688.991,397.021 745.784,396.732 733.284,404.171 	"/>
	<polyline fill="none" stroke="#272525" points="745.784,390.816 688.991,391.105 701.493,383.668 	"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="648.948" y1="360" x2="682.948" y2="313"/>
		<polygon fill="#272525" points="684.302,317.446 682.223,314.001 678.301,313.104 686.447,308.164 		"/>
	</g>
</g>
<g>
	<polyline fill="none" stroke="#272525" points="788.475,355.538 755.532,309.273 768.812,315.211 	"/>
	<polyline fill="none" stroke="#272525" points="749.014,310.294 781.958,356.559 768.677,350.62 	"/>
</g>
<g>
	<path d="M781.094,332.863v-10.061h-1.641v-1.617h1.641v-0.555c0-1.641,0.361-3.136,1.352-4.076
		c0.796-0.772,1.856-1.086,2.847-1.086c0.748,0,1.399,0.17,1.809,0.338l-0.288,1.641c-0.313-0.145-0.748-0.266-1.352-0.266
		c-1.81,0-2.268,1.592-2.268,3.377v0.627h2.821v1.617h-2.821v10.061H781.094L781.094,332.863z"/>
	<path d="M792.193,316.169c-0.556,2.002-1.593,4.606-2.269,5.717l-1.352,0.146c0.53-1.399,1.158-3.908,1.424-5.621L792.193,316.169z
		"/>
</g>
<g>
	<path d="M752.927,349.663v-10.06h-1.64v-1.617h1.64v-0.555c0-1.642,0.362-3.137,1.352-4.076c0.797-0.772,1.856-1.086,2.848-1.086
		c0.748,0,1.398,0.168,1.81,0.338l-0.289,1.641c-0.314-0.145-0.748-0.266-1.353-0.266c-1.809,0-2.268,1.592-2.268,3.377v0.627h2.821
		v1.617h-2.821v10.06H752.927L752.927,349.663z"/>
</g>
<g>
	<path d="M657.673,329.975c0,2.678-0.53,4.318-1.665,5.332c-1.133,1.062-2.772,1.398-4.245,1.398c-1.398,0-2.942-0.338-3.884-0.965
		l0.53-1.617c0.771,0.482,1.979,0.918,3.426,0.918c2.171,0,3.764-1.135,3.764-4.078v-1.303h-0.048
		c-0.651,1.086-1.905,1.953-3.716,1.953c-2.896,0-4.97-2.459-4.97-5.692c0-3.956,2.582-6.2,5.26-6.2
		c2.025,0,3.136,1.062,3.644,2.026h0.048l0.097-1.761h1.857c-0.05,0.845-0.098,1.785-0.098,3.207V329.975L657.673,329.975z
		 M655.574,324.595c0-0.362-0.023-0.675-0.121-0.965c-0.385-1.229-1.423-2.244-2.967-2.244c-2.026,0-3.475,1.714-3.475,4.415
		c0,2.292,1.157,4.198,3.45,4.198c1.303,0,2.484-0.819,2.942-2.171c0.12-0.362,0.169-0.771,0.169-1.135L655.574,324.595
		L655.574,324.595z"/>
</g>
<g id="h_prime">
	<circle id="h_prime_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="718.268" cy="416.299" r="19.151"/>
	<g>
		<path d="M710.631,407.734h2.122v7.285h0.048c0.338-0.604,0.869-1.133,1.521-1.496c0.627-0.361,1.375-0.603,2.171-0.603
			c1.567,0,4.077,0.966,4.077,4.993v6.948h-2.123v-6.707c0-1.882-0.7-3.474-2.702-3.474c-1.375,0-2.461,0.965-2.846,2.121
			c-0.121,0.291-0.146,0.604-0.146,1.014v7.046h-2.122V407.734z"/>
		<path d="M725.905,408.169c-0.557,2.003-1.593,4.606-2.269,5.718l-1.351,0.146c0.53-1.399,1.157-3.908,1.423-5.621L725.905,408.169
			z"/>
	</g>
</g>
<g id="h">
	<circle id="h_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="717.421" cy="371.099" r="19.151"/>
	<g>
		<path d="M712.452,362.535h2.122v7.285h0.049c0.338-0.604,0.869-1.135,1.52-1.496c0.628-0.361,1.375-0.604,2.173-0.604
			c1.567,0,4.075,0.965,4.075,4.993v6.948h-2.123v-6.706c0-1.883-0.698-3.476-2.7-3.476c-1.375,0-2.461,0.965-2.848,2.123
			c-0.12,0.289-0.146,0.604-0.146,1.015v7.044h-2.122V362.535L712.452,362.535z"/>
	</g>
</g>
<g id="A_2">
	<circle id="A_2_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="595.505" cy="435.225" r="19.151"/>
	<g>
		<g>
			<path d="M587.165,436.641L585.064,443h-2.699l6.869-20.219h3.149l6.9,20.219h-2.791l-2.159-6.359H587.165z M593.795,434.601
				l-1.979-5.818c-0.449-1.32-0.75-2.521-1.051-3.689h-0.06c-0.301,1.199-0.631,2.431-1.021,3.659l-1.979,5.85L593.795,434.601
				L593.795,434.601z"/>
		</g>
		<g>
			<path d="M602.002,447.667v-0.864l1.104-1.071c2.656-2.529,3.856-3.874,3.874-5.442c0-1.057-0.514-2.032-2.065-2.032
				c-0.944,0-1.729,0.479-2.208,0.88l-0.449-0.993c0.722-0.606,1.745-1.056,2.945-1.056c2.241,0,3.186,1.536,3.186,3.024
				c0,1.922-1.393,3.475-3.586,5.587l-0.832,0.769v0.031h4.675v1.169L602.002,447.667L602.002,447.667z"/>
		</g>
	</g>
</g>
<g id="A_1">
	<circle id="A_1_path1" fill="#FCFAFA" stroke="#000000" stroke-width="2" cx="864.284" cy="434.384" r="19.151"/>
	<g>
		<g>
			<path d="M857.056,435.801l-2.101,6.36h-2.699l6.869-20.22h3.149l6.9,20.22h-2.791l-2.159-6.36H857.056z M863.686,433.761
				l-1.979-5.818c-0.449-1.32-0.75-2.521-1.051-3.69h-0.06c-0.301,1.2-0.631,2.431-1.021,3.66l-1.979,5.85L863.686,433.761
				L863.686,433.761z"/>
		</g>
		<g>
			<path d="M874.95,437.735h-0.03l-1.81,0.977l-0.271-1.072l2.271-1.217h1.201v10.404h-1.361V437.735L874.95,437.735z"/>
		</g>
	</g>
</g>
<g>
	<path d="M166.814,18.792c-1.729-0.816-2.473-2.161-2.473-3.504c0-2.472,2.089-4.152,4.824-4.152c3.024,0,4.537,1.896,4.537,3.84
		c0,1.32-0.647,2.736-2.568,3.648v0.072c1.944,0.768,3.145,2.136,3.145,4.032c0,2.712-2.328,4.537-5.304,4.537
		c-3.265,0-5.232-1.944-5.232-4.225c0-1.968,1.176-3.36,3.096-4.176L166.814,18.792z M172.142,22.944
		c0-1.896-1.32-2.809-3.433-3.409c-1.824,0.528-2.808,1.729-2.808,3.216c-0.072,1.584,1.128,2.977,3.12,2.977
		C170.918,25.728,172.142,24.528,172.142,22.944z M166.334,15.143c0,1.56,1.176,2.4,2.977,2.88c1.344-0.456,2.376-1.417,2.376-2.833
		c0-1.248-0.744-2.544-2.642-2.544C167.294,12.647,166.334,13.799,166.334,15.143z"/>
	<path d="M181.813,19.728v1.56h-5.929v-1.56H181.813z"/>
	<path d="M184.069,24.456c0.936,0.576,2.304,1.056,3.744,1.056c2.136,0,3.384-1.128,3.384-2.76c0-1.512-0.864-2.376-3.048-3.216
		c-2.642-0.936-4.272-2.304-4.272-4.584c0-2.521,2.088-4.393,5.232-4.393c1.656,0,2.855,0.384,3.576,0.792l-0.576,1.704
		c-0.528-0.288-1.608-0.768-3.072-0.768c-2.208,0-3.048,1.32-3.048,2.424c0,1.512,0.984,2.256,3.216,3.12
		c2.736,1.056,4.128,2.376,4.128,4.752c0,2.497-1.848,4.681-5.665,4.681c-1.56,0-3.264-0.48-4.128-1.056L184.069,24.456z"/>
	<path d="M198.589,12.599v2.784h3.024v1.608h-3.024v6.265c0,1.44,0.408,2.256,1.584,2.256c0.576,0,0.912-0.048,1.225-0.144
		l0.096,1.584c-0.408,0.168-1.056,0.312-1.872,0.312c-0.983,0-1.775-0.336-2.28-0.912c-0.6-0.624-0.815-1.656-0.815-3.024v-6.336
		h-1.8v-1.608h1.8v-2.136L198.589,12.599z"/>
	<path d="M212.15,24.216c0,1.008,0.048,1.992,0.191,2.784h-1.92l-0.168-1.464h-0.071c-0.648,0.912-1.896,1.729-3.553,1.729
		c-2.353,0-3.553-1.656-3.553-3.336c0-2.808,2.497-4.344,6.985-4.32v-0.24c0-0.96-0.265-2.688-2.641-2.688
		c-1.08,0-2.208,0.336-3.023,0.864l-0.48-1.392c0.96-0.624,2.353-1.032,3.816-1.032c3.552,0,4.417,2.424,4.417,4.752L212.15,24.216
		L212.15,24.216z M210.109,21.071c-2.304-0.048-4.92,0.36-4.92,2.616c0,1.368,0.912,2.017,1.992,2.017
		c1.512,0,2.472-0.96,2.808-1.944c0.072-0.216,0.12-0.456,0.12-0.672V21.071z"/>
	<path d="M218.005,12.599v2.784h3.024v1.608h-3.024v6.265c0,1.44,0.408,2.256,1.584,2.256c0.576,0,0.912-0.048,1.225-0.144
		l0.096,1.584c-0.408,0.168-1.056,0.312-1.872,0.312c-0.983,0-1.775-0.336-2.28-0.912c-0.6-0.624-0.815-1.656-0.815-3.024v-6.336
		h-1.8v-1.608h1.8v-2.136L218.005,12.599z"/>
	<path d="M224.437,21.576c0.048,2.856,1.872,4.032,3.983,4.032c1.513,0,2.425-0.264,3.217-0.6l0.359,1.512
		c-0.744,0.336-2.016,0.744-3.864,0.744c-3.575,0-5.712-2.376-5.712-5.881c0-3.504,2.064-6.264,5.448-6.264
		c3.792,0,4.801,3.336,4.801,5.472c0,0.432-0.048,0.768-0.071,0.984L224.437,21.576L224.437,21.576z M230.629,20.063
		c0.024-1.344-0.552-3.433-2.928-3.433c-2.136,0-3.072,1.968-3.24,3.433H230.629z"/>
	<path d="M254.078,19.896c-0.12-2.256-0.264-4.969-0.24-6.985h-0.071c-0.553,1.896-1.225,3.937-2.041,6.145l-2.856,7.849h-1.584
		l-2.616-7.705c-0.768-2.28-1.416-4.368-1.872-6.289h-0.048c-0.048,2.016-0.168,4.729-0.312,7.153L242.005,27h-1.991l1.128-16.177
		h2.665l2.76,7.825c0.672,1.992,1.224,3.768,1.632,5.448h0.072c0.408-1.632,0.983-3.408,1.704-5.448l2.88-7.825h2.664L256.526,27
		h-2.041L254.078,19.896z"/>
	<path d="M270.325,21.096c0,4.296-2.977,6.168-5.785,6.168c-3.144,0-5.567-2.304-5.567-5.977c0-3.888,2.544-6.168,5.76-6.168
		C268.068,15.119,270.325,17.543,270.325,21.096z M261.108,21.215c0,2.544,1.464,4.464,3.528,4.464c2.016,0,3.527-1.896,3.527-4.512
		c0-1.968-0.983-4.464-3.479-4.464S261.108,19.007,261.108,21.215z"/>
	<path d="M283.021,9.958V24c0,1.032,0.023,2.208,0.096,3h-1.896l-0.097-2.016h-0.048c-0.647,1.296-2.063,2.28-3.96,2.28
		c-2.808,0-4.968-2.376-4.968-5.905c-0.024-3.864,2.376-6.24,5.208-6.24c1.775,0,2.976,0.84,3.504,1.776h0.048V9.958H283.021z
		 M280.908,20.111c0-0.264-0.024-0.624-0.096-0.888c-0.312-1.344-1.464-2.448-3.048-2.448c-2.185,0-3.48,1.92-3.48,4.489
		c0,2.352,1.152,4.296,3.432,4.296c1.416,0,2.712-0.936,3.097-2.521c0.071-0.288,0.096-0.576,0.096-0.912V20.111z"/>
	<path d="M287.7,21.576c0.048,2.856,1.872,4.032,3.984,4.032c1.512,0,2.424-0.264,3.216-0.6l0.359,1.512
		c-0.743,0.336-2.016,0.744-3.863,0.744c-3.576,0-5.712-2.376-5.712-5.881c0-3.504,2.063-6.264,5.447-6.264
		c3.792,0,4.802,3.336,4.802,5.472c0,0.432-0.049,0.768-0.072,0.984L287.7,21.576L287.7,21.576z M293.892,20.063
		c0.023-1.344-0.553-3.433-2.929-3.433c-2.136,0-3.071,1.968-3.239,3.433H293.892z"/>
	<path d="M298.548,9.958h2.112V27h-2.112V9.958z"/>
</g>
<g>
	<path d="M613.55,11.039c1.057-0.216,2.568-0.336,4.008-0.336c2.232,0,3.673,0.408,4.682,1.32c0.815,0.72,1.271,1.824,1.271,3.072
		c0,2.136-1.345,3.553-3.049,4.128v0.072c1.248,0.432,1.992,1.584,2.377,3.264c0.527,2.256,0.912,3.816,1.248,4.44h-2.16
		c-0.265-0.48-0.624-1.848-1.08-3.864c-0.479-2.232-1.345-3.072-3.239-3.145h-1.97V27h-2.088V11.039z M615.637,18.407h2.138
		c2.23,0,3.647-1.224,3.647-3.072c0-2.088-1.513-3-3.721-3.024c-1.008,0-1.729,0.096-2.064,0.192V18.407z"/>
	<path d="M627.662,21.576c0.048,2.856,1.872,4.032,3.982,4.032c1.514,0,2.426-0.264,3.218-0.6l0.359,1.512
		c-0.744,0.336-2.017,0.744-3.864,0.744c-3.576,0-5.713-2.376-5.713-5.881c0-3.504,2.064-6.264,5.448-6.264
		c3.793,0,4.801,3.336,4.801,5.472c0,0.432-0.048,0.768-0.071,0.984L627.662,21.576L627.662,21.576z M633.853,20.063
		c0.023-1.344-0.553-3.433-2.929-3.433c-2.136,0-3.072,1.968-3.24,3.433H633.853z"/>
	<path d="M648.542,9.958V24c0,1.032,0.023,2.208,0.096,3h-1.896l-0.096-2.016h-0.049c-0.647,1.296-2.063,2.28-3.96,2.28
		c-2.809,0-4.969-2.376-4.969-5.905c-0.024-3.864,2.376-6.24,5.208-6.24c1.776,0,2.977,0.84,3.505,1.776h0.048V9.958H648.542z
		 M646.429,20.111c0-0.264-0.023-0.624-0.096-0.888c-0.312-1.344-1.465-2.448-3.049-2.448c-2.185,0-3.48,1.92-3.48,4.489
		c0,2.352,1.152,4.296,3.434,4.296c1.416,0,2.712-0.936,3.097-2.521c0.071-0.288,0.096-0.576,0.096-0.912L646.429,20.111
		L646.429,20.111z"/>
	<path d="M661.765,23.832c0,1.2,0.024,2.256,0.098,3.168h-1.872l-0.12-1.896h-0.048c-0.554,0.936-1.776,2.16-3.841,2.16
		c-1.824,0-4.01-1.008-4.01-5.088v-6.793h2.112v6.433c0,2.208,0.673,3.696,2.593,3.696c1.416,0,2.4-0.984,2.784-1.92
		c0.12-0.312,0.191-0.696,0.191-1.08v-7.129h2.111L661.765,23.832L661.765,23.832z"/>
	<path d="M673.55,26.568c-0.553,0.288-1.775,0.696-3.337,0.696c-3.504,0-5.784-2.4-5.784-5.953c0-3.576,2.448-6.168,6.24-6.168
		c1.248,0,2.354,0.312,2.929,0.6l-0.479,1.632c-0.504-0.288-1.296-0.552-2.448-0.552c-2.664,0-4.104,1.968-4.104,4.392
		c0,2.688,1.729,4.345,4.032,4.345c1.199,0,1.992-0.312,2.593-0.576L673.55,26.568z"/>
	<path d="M677.053,21.576c0.048,2.856,1.872,4.032,3.984,4.032c1.512,0,2.424-0.264,3.216-0.6l0.36,1.512
		c-0.744,0.336-2.018,0.744-3.864,0.744c-3.577,0-5.713-2.376-5.713-5.881c0-3.504,2.063-6.264,5.448-6.264
		c3.793,0,4.801,3.336,4.801,5.472c0,0.432-0.048,0.768-0.072,0.984L677.053,21.576L677.053,21.576z M683.246,20.063
		c0.022-1.344-0.553-3.433-2.929-3.433c-2.137,0-3.072,1.968-3.24,3.433H683.246z"/>
	<path d="M697.933,9.958V24c0,1.032,0.023,2.208,0.097,3h-1.896l-0.097-2.016h-0.048c-0.648,1.296-2.064,2.28-3.96,2.28
		c-2.81,0-4.969-2.376-4.969-5.905c-0.024-3.864,2.375-6.24,5.207-6.24c1.776,0,2.978,0.84,3.506,1.776h0.048V9.958H697.933z
		 M695.821,20.111c0-0.264-0.024-0.624-0.097-0.888c-0.312-1.344-1.465-2.448-3.049-2.448c-2.184,0-3.479,1.92-3.479,4.489
		c0,2.352,1.151,4.296,3.433,4.296c1.416,0,2.712-0.936,3.097-2.521c0.071-0.288,0.097-0.576,0.097-0.912L695.821,20.111
		L695.821,20.111z"/>
	<path d="M712.381,27v-4.249h-7.248v-1.392l6.96-9.961h2.28v9.697h2.185v1.656h-2.185V27H712.381z M712.381,21.096v-5.208
		c0-0.816,0.024-1.632,0.072-2.448h-0.072c-0.479,0.912-0.864,1.584-1.296,2.304l-3.816,5.304v0.048H712.381z"/>
	<path d="M723.732,19.728v1.56h-5.93v-1.56H723.732z"/>
	<path d="M725.988,24.456c0.937,0.576,2.304,1.056,3.744,1.056c2.137,0,3.385-1.128,3.385-2.76c0-1.512-0.864-2.376-3.049-3.216
		c-2.641-0.936-4.272-2.304-4.272-4.584c0-2.521,2.089-4.393,5.232-4.393c1.655,0,2.855,0.384,3.577,0.792l-0.576,1.704
		c-0.528-0.288-1.608-0.768-3.072-0.768c-2.209,0-3.049,1.32-3.049,2.424c0,1.512,0.983,2.256,3.217,3.12
		c2.736,1.056,4.128,2.376,4.128,4.752c0,2.497-1.848,4.681-5.664,4.681c-1.561,0-3.265-0.48-4.129-1.056L725.988,24.456z"/>
	<path d="M740.508,12.599v2.784h3.024v1.608h-3.024v6.265c0,1.44,0.408,2.256,1.585,2.256c0.576,0,0.912-0.048,1.225-0.144
		l0.096,1.584c-0.407,0.168-1.056,0.312-1.872,0.312c-0.983,0-1.775-0.336-2.28-0.912c-0.6-0.624-0.814-1.656-0.814-3.024v-6.336
		h-1.802v-1.608h1.802v-2.136L740.508,12.599z"/>
	<path d="M754.069,24.216c0,1.008,0.048,1.992,0.19,2.784h-1.92l-0.168-1.464h-0.072c-0.646,0.912-1.896,1.729-3.552,1.729
		c-2.353,0-3.553-1.656-3.553-3.336c0-2.808,2.496-4.344,6.983-4.32v-0.24c0-0.96-0.264-2.688-2.64-2.688
		c-1.08,0-2.208,0.336-3.024,0.864l-0.479-1.392c0.961-0.624,2.353-1.032,3.816-1.032c3.553,0,4.417,2.424,4.417,4.752
		L754.069,24.216L754.069,24.216z M752.029,21.071c-2.306-0.048-4.921,0.36-4.921,2.616c0,1.368,0.911,2.017,1.991,2.017
		c1.514,0,2.474-0.96,2.81-1.944c0.071-0.216,0.12-0.456,0.12-0.672V21.071z"/>
	<path d="M759.925,12.599v2.784h3.024v1.608h-3.024v6.265c0,1.44,0.408,2.256,1.585,2.256c0.576,0,0.912-0.048,1.225-0.144
		l0.096,1.584c-0.407,0.168-1.056,0.312-1.872,0.312c-0.983,0-1.775-0.336-2.28-0.912c-0.6-0.624-0.814-1.656-0.814-3.024v-6.336
		h-1.802v-1.608h1.802v-2.136L759.925,12.599z"/>
	<path d="M766.357,21.576c0.048,2.856,1.871,4.032,3.982,4.032c1.513,0,2.425-0.264,3.217-0.6l0.36,1.512
		c-0.744,0.336-2.017,0.744-3.864,0.744c-3.577,0-5.713-2.376-5.713-5.881c0-3.504,2.064-6.264,5.448-6.264
		c3.793,0,4.801,3.336,4.801,5.472c0,0.432-0.048,0.768-0.072,0.984L766.357,21.576L766.357,21.576z M772.55,20.063
		c0.023-1.344-0.553-3.433-2.929-3.433c-2.136,0-3.072,1.968-3.24,3.433H772.55z"/>
	<path d="M795.997,19.896c-0.12-2.256-0.264-4.969-0.239-6.985h-0.072c-0.552,1.896-1.225,3.937-2.039,6.145l-2.856,7.849h-1.584
		L786.59,19.2c-0.769-2.28-1.416-4.368-1.872-6.289h-0.049c-0.048,2.016-0.168,4.729-0.312,7.153L783.925,27h-1.992l1.128-16.177
		h2.664l2.761,7.825c0.673,1.992,1.225,3.768,1.633,5.448h0.071c0.407-1.632,0.983-3.408,1.703-5.448l2.881-7.825h2.664L798.445,27
		h-2.04L795.997,19.896z"/>
	<path d="M812.244,21.096c0,4.296-2.977,6.168-5.784,6.168c-3.145,0-5.568-2.304-5.568-5.977c0-3.888,2.544-6.168,5.762-6.168
		C809.988,15.119,812.244,17.543,812.244,21.096z M803.027,21.215c0,2.544,1.465,4.464,3.527,4.464c2.018,0,3.528-1.896,3.528-4.512
		c0-1.968-0.983-4.464-3.479-4.464S803.027,19.007,803.027,21.215z"/>
	<path d="M824.94,9.958V24c0,1.032,0.022,2.208,0.096,3h-1.896l-0.096-2.016h-0.048c-0.648,1.296-2.064,2.28-3.96,2.28
		c-2.81,0-4.969-2.376-4.969-5.905c-0.024-3.864,2.376-6.24,5.208-6.24c1.775,0,2.977,0.84,3.505,1.776h0.048V9.958H824.94z
		 M822.828,20.111c0-0.264-0.024-0.624-0.096-0.888c-0.313-1.344-1.466-2.448-3.05-2.448c-2.184,0-3.479,1.92-3.479,4.489
		c0,2.352,1.152,4.296,3.433,4.296c1.416,0,2.712-0.936,3.098-2.521c0.07-0.288,0.096-0.576,0.096-0.912L822.828,20.111
		L822.828,20.111z"/>
	<path d="M829.62,21.576c0.048,2.856,1.872,4.032,3.983,4.032c1.513,0,2.425-0.264,3.217-0.6l0.359,1.512
		c-0.744,0.336-2.017,0.744-3.863,0.744c-3.577,0-5.714-2.376-5.714-5.881c0-3.504,2.064-6.264,5.448-6.264
		c3.793,0,4.801,3.336,4.801,5.472c0,0.432-0.048,0.768-0.071,0.984L829.62,21.576L829.62,21.576z M835.812,20.063
		c0.023-1.344-0.553-3.433-2.929-3.433c-2.136,0-3.072,1.968-3.24,3.433H835.812z"/>
	<path d="M840.467,9.958h2.112V27h-2.112V9.958z"/>
</g>
</svg>
</window>