Location: Wodarz, Nowak, 1999 @ 9b46e976aaad / wodarz_1999.xul

Author:
Tommy Yu <tommy.yu@auckland.ac.nz>
Date:
2010-08-25 18:51:43+12:00
Desc:
xml:base fix
Permanent Source URI:
https://models.cellml.org/workspace/wodarz_nowak_1999/rawfile/9b46e976aaadd1c0a5ff7ac11489f7e99d8dbbe7/wodarz_1999.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 =
  {

			
	x: {
		id: "x",
		y: "x/x",
		x: "environment/time",
		graph: "Traces: Clickable Traces against Time (days)",
		colour: "#ff9900",
		linestyle: "none"
	},

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

w: {
		id: "w",
		y: "w/w",
		x: "environment/time",
		graph: "Traces: Clickable Traces against Time (days)",
		colour: "#cc00ff",
		linestyle: "none"
	},


	z: {
		id: "z",
		y: "z/z",
		x: "environment/time",
		graph: "Traces: Clickable Traces against Time (days)",
		colour: "#3300ff",
		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>
	<path d="M23.772,209.784c-0.276,0.144-0.889,0.348-1.667,0.348c-1.751,0-2.892-1.199-2.892-2.974c0-1.787,1.225-3.083,3.119-3.083
		c0.624,0,1.175,0.156,1.463,0.3l-0.239,0.815c-0.252-0.144-0.647-0.275-1.224-0.275c-1.332,0-2.051,0.983-2.051,2.194
		c0,1.343,0.864,2.171,2.015,2.171c0.601,0,0.996-0.156,1.295-0.288L23.772,209.784z"/>
	<path d="M25.526,207.29c0.023,1.427,0.935,2.015,1.991,2.015c0.755,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.492L25.526,207.29L25.526,207.29z M28.621,206.534c0.012-0.671-0.275-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H28.621z"/>
	<path d="M30.95,201.485h1.056V210H30.95V201.485z"/>
	<path d="M33.782,201.485h1.056V210h-1.056V201.485z"/>
	<path d="M39.014,208.92c0.312,0.204,0.863,0.42,1.392,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.068
		c-1.043-0.372-1.535-0.947-1.535-1.643c0-0.935,0.755-1.703,2.003-1.703c0.587,0,1.104,0.167,1.428,0.359l-0.265,0.768
		c-0.228-0.144-0.646-0.335-1.187-0.335c-0.624,0-0.973,0.36-0.973,0.792c0,0.479,0.349,0.695,1.104,0.983
		c1.007,0.384,1.523,0.888,1.523,1.751c0,1.02-0.792,1.751-2.172,1.751c-0.635,0-1.223-0.168-1.631-0.408L39.014,208.92z"/>
	<path d="M44.294,204.195l1.271,3.43c0.132,0.384,0.275,0.839,0.372,1.187h0.023c0.108-0.348,0.229-0.792,0.372-1.211l1.151-3.406
		H48.6l-1.583,4.138c-0.756,1.991-1.271,3.01-1.991,3.634c-0.517,0.456-1.031,0.636-1.295,0.684l-0.265-0.887
		c0.265-0.084,0.612-0.252,0.925-0.516c0.288-0.228,0.646-0.635,0.887-1.175c0.048-0.108,0.084-0.192,0.084-0.251
		c0-0.061-0.024-0.145-0.072-0.276l-2.146-5.349h1.15V204.195z"/>
	<path d="M49.562,205.766c0-0.6-0.013-1.091-0.048-1.571h0.936l0.06,0.959h0.024c0.288-0.552,0.959-1.091,1.919-1.091
		c0.803,0,2.051,0.479,2.051,2.47V210h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492V210h-1.056V205.766z"/>
	<path d="M57.445,202.804v1.392h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.792c-0.204,0.084-0.528,0.156-0.937,0.156c-0.492,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.898v-0.803h0.898v-1.067L57.445,202.804z"/>
	<path d="M60.146,201.485h1.056v3.622h0.024c0.168-0.3,0.432-0.563,0.755-0.743c0.312-0.18,0.684-0.3,1.08-0.3
		c0.778,0,2.026,0.479,2.026,2.482V210h-1.056v-3.334c0-0.936-0.348-1.727-1.343-1.727c-0.685,0-1.224,0.479-1.415,1.055
		c-0.061,0.144-0.072,0.3-0.072,0.504V210h-1.056V201.485z"/>
	<path d="M67.394,207.29c0.023,1.427,0.935,2.015,1.99,2.015c0.756,0,1.212-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.023,0.384-0.035,0.492L67.394,207.29L67.394,207.29z M70.488,206.534c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H70.488z"/>
	<path d="M72.673,208.92c0.312,0.204,0.864,0.42,1.393,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.068
		c-1.043-0.372-1.535-0.947-1.535-1.643c0-0.935,0.755-1.703,2.003-1.703c0.587,0,1.104,0.167,1.427,0.359l-0.264,0.768
		c-0.228-0.144-0.646-0.335-1.187-0.335c-0.624,0-0.973,0.36-0.973,0.792c0,0.479,0.349,0.695,1.104,0.983
		c1.007,0.384,1.522,0.888,1.522,1.751c0,1.02-0.792,1.751-2.171,1.751c-0.635,0-1.223-0.168-1.631-0.408L72.673,208.92z"/>
	<path d="M78.745,202.564c0.012,0.36-0.252,0.648-0.671,0.648c-0.372,0-0.636-0.288-0.636-0.648c0-0.372,0.275-0.66,0.66-0.66
		C78.493,201.904,78.745,202.192,78.745,202.564z M77.569,210v-5.805h1.056V210H77.569z"/>
	<path d="M80.233,208.92c0.312,0.204,0.864,0.42,1.392,0.42c0.769,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.068
		c-1.043-0.372-1.534-0.947-1.534-1.643c0-0.935,0.755-1.703,2.003-1.703c0.587,0,1.103,0.167,1.427,0.359l-0.264,0.768
		c-0.229-0.144-0.647-0.335-1.188-0.335c-0.624,0-0.972,0.36-0.972,0.792c0,0.479,0.348,0.695,1.104,0.983
		c1.007,0.384,1.523,0.888,1.523,1.751c0,1.02-0.792,1.751-2.171,1.751c-0.636,0-1.224-0.168-1.631-0.408L80.233,208.92z"/>
</g>
<g>
	<path d="M256.678,79.783c-0.276,0.144-0.889,0.348-1.667,0.348c-1.752,0-2.892-1.199-2.892-2.974c0-1.787,1.224-3.083,3.119-3.083
		c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.646-0.275-1.223-0.275c-1.332,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.996-0.156,1.295-0.288L256.678,79.783z"/>
	<path d="M258.432,77.289c0.023,1.427,0.935,2.015,1.99,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.023,0.384-0.036,0.492L258.432,77.289L258.432,77.289z M261.526,76.533c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H261.526z"/>
	<path d="M263.856,71.484h1.056v8.515h-1.056V71.484z"/>
	<path d="M266.688,71.484h1.056v8.515h-1.056V71.484z"/>
	<path d="M277.077,71.484V78.5c0,0.516,0.012,1.103,0.048,1.499h-0.946l-0.049-1.007h-0.023c-0.324,0.647-1.032,1.139-1.979,1.139
		c-1.402,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.118,2.603-3.118c0.888,0,1.487,0.419,1.751,0.887h0.024v-3.466H277.077z
		 M276.022,76.557c0-0.132-0.013-0.312-0.048-0.444c-0.156-0.672-0.731-1.224-1.523-1.224c-1.091,0-1.739,0.959-1.739,2.243
		c0,1.175,0.576,2.146,1.715,2.146c0.708,0,1.355-0.468,1.548-1.259c0.035-0.144,0.048-0.288,0.048-0.456V76.557L276.022,76.557z"/>
	<path d="M279.42,77.289c0.024,1.427,0.937,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.492L279.42,77.289L279.42,77.289z M282.514,76.533c0.012-0.671-0.276-1.715-1.464-1.715
		c-1.066,0-1.534,0.983-1.618,1.715H282.514z"/>
	<path d="M288.921,78.608c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.246-2.171,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.176-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L288.921,78.608L288.921,78.608z M287.902,77.037c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.234-0.48,1.402-0.972c0.036-0.108,0.061-0.228,0.061-0.336V77.037z"/>
	<path d="M291.851,72.803v1.392h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.61-0.072
		l0.048,0.792c-0.203,0.084-0.527,0.156-0.936,0.156c-0.492,0-0.888-0.168-1.14-0.456c-0.301-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.899v-0.803h0.899v-1.067L291.851,72.803z"/>
	<path d="M294.551,71.484h1.057v3.622h0.023c0.168-0.3,0.433-0.563,0.755-0.743c0.312-0.18,0.685-0.3,1.08-0.3
		c0.779,0,2.027,0.479,2.027,2.482v3.454h-1.057v-3.334c0-0.936-0.348-1.727-1.343-1.727c-0.684,0-1.223,0.479-1.414,1.055
		c-0.061,0.144-0.072,0.3-0.072,0.504v3.502h-1.057V71.484z"/>
</g>
<g id="x">
	<g>
		<ellipse id="x_path5" fill="#CDE1F0" stroke="#231F20" cx="148.221" cy="162.441" rx="30.249" ry="18.211"/>
		<ellipse id="x_path4" fill="#CDE1F0" stroke="#231F20" cx="180.503" cy="137.834" rx="30.249" ry="18.211"/>
		<ellipse id="x_path3" fill="#CDE1F0" stroke="#231F20" cx="223.841" cy="160.952" rx="30.249" ry="18.211"/>
		<ellipse id="x_path2" fill="#CDE1F0" stroke="#231F20" cx="227.22" cy="122.942" rx="30.248" ry="18.211"/>
		<ellipse id="x_path1" fill="#CDE1F0" stroke="#231F20" cx="146.721" cy="115.941" rx="30.249" ry="18.211"/>
	</g>
	<g>
		<path d="M165.547,202.146c0,0.6,0.013,1.127,0.049,1.583h-0.937l-0.06-0.947h-0.024c-0.276,0.468-0.887,1.079-1.919,1.079
			c-0.911,0-2.003-0.503-2.003-2.542v-3.394h1.056v3.214c0,1.104,0.336,1.847,1.295,1.847c0.708,0,1.199-0.492,1.392-0.959
			c0.06-0.156,0.096-0.348,0.096-0.54v-3.562h1.056V202.146L165.547,202.146z"/>
		<path d="M167.302,199.495c0-0.6-0.012-1.091-0.048-1.571h0.937l0.06,0.959h0.024c0.288-0.552,0.959-1.091,1.919-1.091
			c0.803,0,2.051,0.479,2.051,2.47v3.466h-1.056v-3.346c0-0.936-0.349-1.715-1.343-1.715c-0.695,0-1.235,0.492-1.415,1.079
			c-0.049,0.132-0.072,0.312-0.072,0.492v3.49h-1.057V199.495z"/>
		<path d="M175.137,196.292c0.012,0.36-0.253,0.648-0.672,0.648c-0.372,0-0.636-0.288-0.636-0.648c0-0.372,0.276-0.66,0.66-0.66
			C174.885,195.633,175.137,195.921,175.137,196.292z M173.962,203.729v-5.805h1.057v5.805H173.962z"/>
		<path d="M176.77,199.495c0-0.6-0.013-1.091-0.048-1.571h0.936l0.06,0.959h0.024c0.288-0.552,0.959-1.091,1.919-1.091
			c0.803,0,2.051,0.479,2.051,2.47v3.466h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.695,0-1.235,0.492-1.415,1.079
			c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V199.495z"/>
		<path d="M183.538,203.729v-5.001h-0.814v-0.803h0.814v-0.276c0-0.815,0.18-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
			c0.372,0,0.696,0.084,0.899,0.168l-0.145,0.816c-0.155-0.072-0.372-0.132-0.671-0.132c-0.898,0-1.127,0.792-1.127,1.679v0.312
			h1.403v0.803h-1.403v5.001H183.538z"/>
		<path d="M187.366,201.018c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.606-0.3l0.181,0.756
			c-0.372,0.168-1.007,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
			c0,0.216-0.024,0.384-0.036,0.492L187.366,201.018L187.366,201.018z M190.46,200.262c0.013-0.671-0.275-1.715-1.463-1.715
			c-1.066,0-1.535,0.983-1.619,1.715H190.46z"/>
		<path d="M196.927,203.513c-0.275,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974
			c0-1.787,1.224-3.083,3.119-3.083c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.646-0.275-1.223-0.275
			c-1.332,0-2.051,0.983-2.051,2.194c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.996-0.156,1.295-0.288L196.927,203.513z"/>
		<path d="M199.593,196.532v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
			l0.048,0.792c-0.204,0.084-0.527,0.156-0.936,0.156c-0.492,0-0.888-0.168-1.141-0.456c-0.3-0.312-0.407-0.828-0.407-1.511v-3.167
			h-0.899v-0.803h0.899v-1.067L199.593,196.532z"/>
		<path d="M202.809,201.018c0.023,1.427,0.936,2.015,1.99,2.015c0.756,0,1.212-0.132,1.607-0.3l0.18,0.756
			c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.667,2.398,2.734
			c0,0.216-0.023,0.384-0.035,0.492L202.809,201.018L202.809,201.018z M205.903,200.262c0.012-0.671-0.276-1.715-1.463-1.715
			c-1.067,0-1.535,0.983-1.619,1.715H205.903z"/>
		<path d="M213.246,195.213v7.016c0,0.516,0.012,1.103,0.048,1.499h-0.946l-0.049-1.007h-0.023
			c-0.324,0.647-1.032,1.139-1.979,1.139c-1.402,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.118,2.603-3.118
			c0.889,0,1.487,0.419,1.751,0.887h0.024v-3.466H213.246z M212.191,200.287c0-0.132-0.012-0.312-0.048-0.444
			c-0.156-0.672-0.731-1.224-1.523-1.224c-1.091,0-1.739,0.959-1.739,2.243c0,1.175,0.576,2.146,1.716,2.146
			c0.708,0,1.354-0.468,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V200.287z"/>
		<path d="M174.297,210.933h-2.459v-0.888h5.985v0.888h-2.471v7.196h-1.056V210.933L174.297,210.933z"/>
		<path d="M185.372,217.913c-0.275,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974
			c0-1.787,1.224-3.083,3.119-3.083c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.647-0.276-1.223-0.276
			c-1.332,0-2.052,0.984-2.052,2.195c0,1.343,0.864,2.171,2.016,2.171c0.6,0,0.996-0.156,1.295-0.288L185.372,217.913z"/>
		<path d="M187.126,215.418c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
			c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.187-2.854-2.938c0-1.751,1.032-3.13,2.723-3.13
			c1.896,0,2.399,1.667,2.399,2.734c0,0.216-0.024,0.384-0.036,0.492L187.126,215.418L187.126,215.418z M190.22,214.662
			c0.012-0.671-0.276-1.715-1.464-1.715c-1.066,0-1.534,0.983-1.618,1.715H190.22z"/>
		<path d="M192.55,209.613h1.057v8.515h-1.057V209.613z"/>
		<path d="M195.382,209.613h1.057v8.515h-1.057V209.613z"/>
		<path d="M198.07,217.049c0.312,0.204,0.864,0.42,1.392,0.42c0.769,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.067
			c-1.043-0.372-1.534-0.948-1.534-1.644c0-0.935,0.755-1.703,2.003-1.703c0.587,0,1.104,0.167,1.427,0.359l-0.264,0.768
			c-0.229-0.144-0.647-0.335-1.188-0.335c-0.624,0-0.972,0.36-0.972,0.792c0,0.479,0.348,0.695,1.104,0.983
			c1.007,0.384,1.523,0.888,1.523,1.751c0,1.021-0.792,1.751-2.171,1.751c-0.635,0-1.224-0.168-1.631-0.408L198.07,217.049z"/>
	</g>
</g>
<g>
	<ellipse fill="#EE383F" stroke="#231F20" cx="333.593" cy="138.097" rx="13.141" ry="7.911"/>
	<g>
		<path d="M324.911,165.002V160h-0.815v-0.803h0.815v-0.276c0-0.815,0.18-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
			c0.372,0,0.696,0.084,0.899,0.168l-0.145,0.816c-0.156-0.072-0.372-0.132-0.671-0.132c-0.899,0-1.127,0.792-1.127,1.679v0.312
			h1.403V160h-1.403v5.001L324.911,165.002L324.911,165.002z"/>
		<path d="M328.306,161.008c0-0.684-0.012-1.271-0.048-1.811h0.923l0.036,1.139h0.048c0.265-0.779,0.899-1.271,1.607-1.271
			c0.12,0,0.204,0.012,0.3,0.036v0.996c-0.107-0.024-0.216-0.036-0.359-0.036c-0.744,0-1.271,0.564-1.416,1.355
			c-0.024,0.144-0.049,0.312-0.049,0.492v3.094h-1.043L328.306,161.008L328.306,161.008z"/>
		<path d="M332.698,162.292c0.023,1.427,0.935,2.015,1.991,2.015c0.755,0,1.211-0.132,1.606-0.3l0.18,0.756
			c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.895,0,2.398,1.667,2.398,2.734
			c0,0.216-0.023,0.384-0.035,0.492L332.698,162.292L332.698,162.292z M335.792,161.536c0.012-0.671-0.276-1.715-1.463-1.715
			c-1.067,0-1.535,0.983-1.619,1.715H335.792z"/>
		<path d="M338.71,162.292c0.024,1.427,0.935,2.015,1.991,2.015c0.755,0,1.211-0.132,1.606-0.3l0.181,0.756
			c-0.372,0.168-1.007,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
			c0,0.216-0.024,0.384-0.036,0.492L338.71,162.292L338.71,162.292z M341.803,161.536c0.013-0.671-0.275-1.715-1.463-1.715
			c-1.066,0-1.535,0.983-1.619,1.715H341.803z"/>
		<path d="M322.943,173.597l1.14,3.262c0.192,0.527,0.348,1.007,0.468,1.487h0.036c0.132-0.48,0.3-0.96,0.492-1.487l1.127-3.262
			h1.104l-2.278,5.805h-1.007l-2.207-5.805H322.943z"/>
		<path d="M329.482,171.966c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.636-0.288-0.636-0.648c0-0.372,0.276-0.66,0.66-0.66
			C329.23,171.306,329.482,171.594,329.482,171.966z M328.306,179.402v-5.805h1.057v5.805H328.306z"/>
		<path d="M331.115,175.408c0-0.684-0.013-1.271-0.048-1.811h0.923l0.036,1.139h0.048c0.264-0.779,0.898-1.271,1.606-1.271
			c0.12,0,0.204,0.012,0.301,0.036v0.996c-0.108-0.024-0.217-0.036-0.36-0.036c-0.744,0-1.271,0.564-1.416,1.355
			c-0.024,0.144-0.048,0.312-0.048,0.492v3.094h-1.043L331.115,175.408L331.115,175.408z"/>
		<path d="M339.896,177.819c0,0.6,0.012,1.127,0.048,1.583h-0.937l-0.06-0.947h-0.024c-0.275,0.467-0.887,1.079-1.919,1.079
			c-0.911,0-2.003-0.503-2.003-2.542v-3.394h1.056v3.214c0,1.103,0.336,1.847,1.296,1.847c0.707,0,1.198-0.492,1.391-0.959
			c0.06-0.156,0.096-0.348,0.096-0.54v-3.562h1.057V177.819L339.896,177.819z"/>
		<path d="M341.507,178.322c0.312,0.204,0.864,0.42,1.393,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.301-0.78-1.079-1.067
			c-1.043-0.372-1.535-0.948-1.535-1.644c0-0.935,0.755-1.703,2.003-1.703c0.587,0,1.103,0.167,1.427,0.359l-0.264,0.768
			c-0.229-0.144-0.647-0.335-1.188-0.335c-0.624,0-0.972,0.36-0.972,0.792c0,0.479,0.348,0.695,1.104,0.983
			c1.007,0.384,1.522,0.888,1.522,1.751c0,1.02-0.792,1.751-2.171,1.751c-0.635,0-1.223-0.168-1.631-0.408L341.507,178.322z"/>
	</g>
</g>
<g>
	<path d="M395.998,132.065c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.637-0.288-0.637-0.648c0-0.372,0.276-0.66,0.659-0.66
		C395.746,131.405,395.998,131.693,395.998,132.065z M394.822,139.501v-5.805h1.055v5.805H394.822z"/>
	<path d="M397.631,135.267c0-0.6-0.014-1.091-0.049-1.571h0.936l0.062,0.959h0.022c0.287-0.552,0.959-1.091,1.918-1.091
		c0.806,0,2.052,0.479,2.052,2.47v3.466h-1.056v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.695,0-1.233,0.492-1.414,1.079
		c-0.049,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V135.267L397.631,135.267z"/>
	<path d="M404.398,139.501V134.5h-0.816v-0.803h0.816v-0.276c0-0.815,0.18-1.559,0.672-2.027c0.395-0.384,0.922-0.54,1.414-0.54
		c0.373,0,0.694,0.084,0.899,0.168l-0.145,0.816c-0.156-0.072-0.371-0.132-0.672-0.132c-0.898,0-1.127,0.792-1.127,1.679v0.312
		h1.401v0.803h-1.401v5.001H404.398z"/>
	<path d="M408.224,136.791c0.025,1.427,0.937,2.015,1.992,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.373,0.168-1.008,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.024,0.384-0.037,0.492L408.224,136.791L408.224,136.791z M411.32,136.035c0.012-0.671-0.277-1.715-1.463-1.715
		c-1.068,0-1.535,0.983-1.619,1.715H411.32z"/>
	<path d="M417.787,139.285c-0.275,0.144-0.887,0.348-1.668,0.348c-1.75,0-2.889-1.199-2.889-2.974c0-1.787,1.223-3.083,3.116-3.083
		c0.623,0,1.177,0.156,1.463,0.3l-0.237,0.815c-0.252-0.144-0.648-0.275-1.226-0.275c-1.33,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.016,2.171c0.601,0,0.994-0.156,1.296-0.288L417.787,139.285z"/>
	<path d="M420.453,132.305v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.203,1.127,0.791,1.127c0.289,0,0.457-0.024,0.611-0.072
		l0.049,0.792c-0.203,0.084-0.527,0.156-0.937,0.156c-0.492,0-0.887-0.168-1.139-0.456c-0.301-0.312-0.408-0.828-0.408-1.511V134.5
		h-0.899v-0.803h0.899v-1.067L420.453,132.305z"/>
	<path d="M424.328,132.065c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.635-0.288-0.635-0.648c0-0.372,0.274-0.66,0.659-0.66
		C424.076,131.405,424.328,131.693,424.328,132.065z M423.154,139.501v-5.805h1.055v5.805H423.154z"/>
	<path d="M431.215,136.551c0,2.146-1.488,3.082-2.891,3.082c-1.572,0-2.783-1.151-2.783-2.986c0-1.943,1.271-3.082,2.879-3.082
		C430.086,133.564,431.215,134.775,431.215,136.551z M426.609,136.61c0,1.271,0.729,2.231,1.762,2.231
		c1.008,0,1.764-0.947,1.764-2.255c0-0.983-0.492-2.23-1.737-2.23C427.148,134.356,426.609,135.507,426.609,136.61z"/>
	<path d="M432.549,135.267c0-0.6-0.012-1.091-0.049-1.571h0.936l0.062,0.959h0.022c0.289-0.552,0.962-1.091,1.921-1.091
		c0.803,0,2.051,0.479,2.051,2.47v3.466h-1.056v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.694,0-1.235,0.492-1.416,1.079
		c-0.047,0.132-0.071,0.312-0.071,0.492v3.49h-1.056V135.267L432.549,135.267z"/>
</g>
<g>
	<path d="M419.349,33.696l1.141,3.262c0.19,0.528,0.348,1.007,0.468,1.487h0.036c0.132-0.479,0.3-0.959,0.491-1.487l1.128-3.262
		h1.103l-2.278,5.805h-1.008l-2.206-5.805H419.349z"/>
	<path d="M425.888,32.065c0.013,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.636-0.288-0.636-0.648c0-0.372,0.276-0.66,0.66-0.66
		C425.636,31.405,425.888,31.693,425.888,32.065z M424.714,39.501v-5.805h1.055v5.805H424.714z"/>
	<path d="M427.521,35.507c0-0.684-0.014-1.271-0.05-1.811h0.925l0.035,1.139h0.049c0.264-0.779,0.898-1.271,1.606-1.271
		c0.12,0,0.203,0.012,0.3,0.036v0.996c-0.107-0.024-0.216-0.036-0.359-0.036c-0.743,0-1.271,0.564-1.415,1.355
		c-0.023,0.144-0.048,0.312-0.048,0.492v3.094h-1.043V35.507z"/>
	<path d="M436.302,37.918c0,0.6,0.014,1.127,0.049,1.583h-0.936l-0.062-0.947h-0.022c-0.276,0.468-0.888,1.079-1.919,1.079
		c-0.912,0-2.003-0.503-2.003-2.542v-3.394h1.055v3.214c0,1.104,0.336,1.847,1.296,1.847c0.707,0,1.199-0.492,1.392-0.959
		c0.061-0.156,0.097-0.348,0.097-0.54v-3.562h1.055L436.302,37.918L436.302,37.918z"/>
	<path d="M437.913,38.421c0.312,0.204,0.863,0.42,1.392,0.42c0.769,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.068
		c-1.044-0.372-1.534-0.947-1.534-1.643c0-0.935,0.756-1.703,2.003-1.703c0.588,0,1.104,0.167,1.427,0.359l-0.264,0.768
		c-0.229-0.144-0.647-0.335-1.188-0.335c-0.623,0-0.971,0.36-0.971,0.792c0,0.479,0.348,0.695,1.103,0.983
		c1.008,0.384,1.523,0.888,1.523,1.751c0,1.02-0.791,1.751-2.171,1.751c-0.637,0-1.224-0.168-1.631-0.408L437.913,38.421z"/>
	<path d="M402.796,49.991c0-0.744-0.023-1.343-0.049-1.895h0.948l0.048,0.995h0.022c0.433-0.708,1.115-1.127,2.063-1.127
		c1.403,0,2.458,1.187,2.458,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.769,0-1.438-0.336-1.786-0.912h-0.024v3.154h-1.043
		L402.796,49.991L402.796,49.991z M403.839,51.538c0,0.156,0.024,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235
		c1.115,0,1.765-0.911,1.765-2.243c0-1.163-0.612-2.159-1.729-2.159c-0.72,0-1.392,0.516-1.595,1.307
		c-0.036,0.132-0.072,0.288-0.072,0.432V51.538L403.839,51.538z"/>
	<path d="M409.624,49.907c0-0.684-0.013-1.271-0.049-1.811h0.924l0.036,1.139h0.048c0.264-0.779,0.899-1.271,1.607-1.271
		c0.119,0,0.203,0.012,0.3,0.036v0.996c-0.108-0.024-0.216-0.036-0.36-0.036c-0.743,0-1.271,0.564-1.415,1.355
		c-0.022,0.144-0.048,0.312-0.048,0.492v3.094h-1.043V49.907z"/>
	<path d="M418.68,50.951c0,2.146-1.486,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.986c0-1.943,1.271-3.082,2.878-3.082
		C417.552,47.964,418.68,49.175,418.68,50.951z M414.075,51.01c0,1.271,0.73,2.231,1.763,2.231c1.008,0,1.763-0.947,1.763-2.255
		c0-0.983-0.49-2.23-1.737-2.23C414.614,48.756,414.075,49.907,414.075,51.01z"/>
	<path d="M425.028,45.386v7.016c0,0.516,0.012,1.103,0.048,1.499h-0.947l-0.048-1.007h-0.024c-0.322,0.647-1.03,1.139-1.979,1.139
		c-1.403,0-2.482-1.187-2.482-2.95c-0.013-1.931,1.188-3.118,2.604-3.118c0.888,0,1.486,0.419,1.751,0.887h0.022v-3.466H425.028z
		 M423.972,50.459c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.672-0.73-1.224-1.521-1.224c-1.093,0-1.739,0.959-1.739,2.243
		c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456L423.972,50.459
		L423.972,50.459z"/>
	<path d="M431.639,52.318c0,0.6,0.014,1.127,0.05,1.583h-0.937l-0.061-0.947h-0.023c-0.276,0.467-0.888,1.079-1.919,1.079
		c-0.912,0-2.003-0.503-2.003-2.542v-3.394h1.055v3.214c0,1.103,0.336,1.847,1.296,1.847c0.707,0,1.199-0.492,1.392-0.959
		c0.061-0.156,0.097-0.348,0.097-0.54v-3.562h1.055L431.639,52.318L431.639,52.318z"/>
	<path d="M437.533,53.685c-0.276,0.144-0.889,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.239,0.815c-0.251-0.144-0.647-0.276-1.224-0.276c-1.331,0-2.051,0.984-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.288L437.533,53.685z"/>
	<path d="M440.198,46.705v1.391h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.61-0.072
		l0.049,0.792c-0.203,0.084-0.527,0.156-0.937,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.899v-0.803h0.899v-1.067L440.198,46.705z"/>
	<path d="M444.074,46.465c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.637-0.288-0.637-0.648c0-0.372,0.276-0.66,0.66-0.66
		C443.822,45.805,444.074,46.093,444.074,46.465z M442.899,53.901v-5.805h1.055v5.805H442.899z"/>
	<path d="M450.96,50.951c0,2.146-1.487,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.986c0-1.943,1.271-3.082,2.878-3.082
		C449.832,47.964,450.96,49.175,450.96,50.951z M446.353,51.01c0,1.271,0.731,2.231,1.764,2.231c1.008,0,1.763-0.947,1.763-2.255
		c0-0.983-0.491-2.23-1.738-2.23C446.893,48.756,446.353,49.907,446.353,51.01z"/>
	<path d="M452.295,49.667c0-0.6-0.013-1.091-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.96-1.091,1.919-1.091
		c0.805,0,2.052,0.479,2.052,2.47V53.9h-1.056v-3.346c0-0.936-0.349-1.715-1.344-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V49.667L452.295,49.667z"/>
</g>
<g>
	<path d="M396.271,209.806h-2.459v-0.887h5.984v0.887h-2.471v7.196h-1.057v-7.196H396.271z"/>
	<path d="M403.209,208.487h1.055v3.622h0.024c0.168-0.3,0.432-0.563,0.756-0.743c0.312-0.18,0.684-0.3,1.079-0.3
		c0.779,0,2.026,0.479,2.026,2.482v3.454h-1.056v-3.334c0-0.936-0.349-1.727-1.344-1.727c-0.684,0-1.224,0.479-1.415,1.055
		c-0.06,0.144-0.072,0.3-0.072,0.504v3.502h-1.055L403.209,208.487L403.209,208.487z"/>
	<path d="M410.456,214.292c0.024,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.009,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L410.456,214.292L410.456,214.292z M413.551,213.536c0.012-0.671-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H413.551z"/>
	<path d="M415.881,208.487h1.055v8.515h-1.055V208.487z"/>
	<path d="M418.713,213.092c0-0.744-0.023-1.343-0.049-1.895h0.948l0.048,0.995h0.022c0.433-0.708,1.115-1.127,2.063-1.127
		c1.403,0,2.458,1.187,2.458,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.769,0-1.438-0.336-1.786-0.912h-0.024v3.154h-1.043
		L418.713,213.092L418.713,213.092z M419.756,214.639c0,0.156,0.024,0.3,0.048,0.432c0.192,0.731,0.828,1.235,1.583,1.235
		c1.115,0,1.765-0.911,1.765-2.243c0-1.163-0.612-2.159-1.729-2.159c-0.72,0-1.392,0.516-1.595,1.307
		c-0.036,0.132-0.072,0.288-0.072,0.432V214.639L419.756,214.639z"/>
	<path d="M426.128,214.292c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L426.128,214.292L426.128,214.292z M429.222,213.536c0.013-0.671-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H429.222z"/>
	<path d="M431.552,213.008c0-0.684-0.013-1.271-0.049-1.811h0.924l0.036,1.139h0.048c0.265-0.779,0.899-1.271,1.607-1.271
		c0.12,0,0.203,0.012,0.3,0.036v0.996c-0.108-0.024-0.216-0.036-0.36-0.036c-0.742,0-1.271,0.564-1.415,1.355
		c-0.022,0.144-0.048,0.312-0.048,0.492v3.094h-1.043V213.008z"/>
	<path d="M410.736,231.186c-0.276,0.144-0.889,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.251-0.144-0.646-0.276-1.223-0.276c-1.331,0-2.051,0.984-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.288L410.736,231.186z"/>
	<path d="M412.489,228.691c0.023,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.187-2.854-2.938c0-1.751,1.03-3.13,2.723-3.13
		c1.895,0,2.397,1.667,2.397,2.734c0,0.216-0.023,0.384-0.035,0.492L412.489,228.691L412.489,228.691z M415.584,227.936
		c0.012-0.671-0.276-1.715-1.463-1.715c-1.067,0-1.535,0.983-1.619,1.715H415.584z"/>
	<path d="M417.914,222.887h1.055v8.515h-1.055V222.887z"/>
	<path d="M420.746,222.887h1.055v8.515h-1.055V222.887z"/>
</g>
<g>
	<path d="M412.765,299.736c-0.384,0.19-1.15,0.396-2.135,0.396c-2.279,0-3.994-1.45-3.994-4.102c0-2.53,1.715-4.246,4.223-4.246
		c1.008,0,1.644,0.216,1.919,0.36l-0.252,0.852c-0.396-0.192-0.959-0.336-1.632-0.336c-1.895,0-3.153,1.211-3.153,3.334
		c0,1.979,1.14,3.25,3.105,3.25c0.637,0,1.283-0.133,1.703-0.336L412.765,299.736z"/>
	<path d="M415.947,292.804h-2.458v-0.888h5.983v0.888h-2.471V300h-1.056L415.947,292.804L415.947,292.804z"/>
	<path d="M420.376,291.916h1.044v7.208h3.454V300h-4.498V291.916L420.376,291.916z"/>
	<path d="M385.856,305.885v7.018c0,0.516,0.012,1.104,0.048,1.498h-0.947l-0.048-1.008h-0.024c-0.322,0.648-1.031,1.141-1.979,1.141
		c-1.403,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.118,2.604-3.118c0.888,0,1.486,0.42,1.751,0.889h0.022v-3.468
		L385.856,305.885L385.856,305.885z M384.801,310.958c0-0.132-0.012-0.312-0.048-0.442c-0.155-0.673-0.73-1.225-1.522-1.225
		c-1.092,0-1.738,0.96-1.738,2.243c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.354-0.468,1.547-1.259
		c0.036-0.146,0.048-0.288,0.048-0.456L384.801,310.958L384.801,310.958z"/>
	<path d="M388.786,306.965c0.012,0.359-0.252,0.646-0.672,0.646c-0.371,0-0.636-0.287-0.636-0.646c0-0.372,0.275-0.66,0.659-0.66
		C388.534,306.305,388.786,306.593,388.786,306.965z M387.611,314.4v-5.806h1.055v5.806H387.611z"/>
	<path d="M394.005,314.4v-5.002h-2.435v5.002h-1.044v-5.002h-0.815v-0.804h0.815v-0.168c0-0.815,0.191-1.522,0.646-1.979
		c0.336-0.349,0.815-0.552,1.464-0.552c0.335,0,0.647,0.106,0.827,0.203l-0.216,0.791c-0.156-0.084-0.384-0.156-0.624-0.156
		c-0.827,0-1.055,0.709-1.055,1.619v0.24h2.435v-0.275c0-0.815,0.191-1.56,0.684-2.026c0.396-0.384,0.924-0.54,1.403-0.54
		c0.384,0,0.695,0.084,0.899,0.168l-0.132,0.814c-0.168-0.07-0.372-0.131-0.685-0.131c-0.888,0-1.128,0.791-1.128,1.68v0.312h1.403
		v0.804h-1.393v5.002H394.005L394.005,314.4z"/>
	<path d="M397.845,311.689c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.607-0.3l0.18,0.755
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.491H397.845L397.845,311.689z M400.94,310.936c0.012-0.672-0.276-1.717-1.464-1.717
		c-1.066,0-1.534,0.984-1.618,1.717H400.94z"/>
	<path d="M403.271,310.406c0-0.684-0.014-1.271-0.05-1.812h0.925l0.035,1.14h0.049c0.264-0.779,0.898-1.271,1.606-1.271
		c0.12,0,0.203,0.013,0.3,0.036v0.995c-0.107-0.024-0.216-0.036-0.359-0.036c-0.743,0-1.271,0.562-1.415,1.355
		c-0.023,0.144-0.048,0.312-0.048,0.49v3.096h-1.043V310.406z"/>
	<path d="M407.662,311.689c0.023,1.428,0.936,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.181,0.755
		c-0.372,0.168-1.009,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.491H407.662L407.662,311.689z M410.757,310.936c0.012-0.672-0.275-1.717-1.463-1.717
		c-1.067,0-1.535,0.984-1.619,1.717H410.757z"/>
	<path d="M413.087,310.167c0-0.601-0.013-1.092-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.96-1.091,1.919-1.091
		c0.805,0,2.052,0.479,2.052,2.472v3.465h-1.056v-3.346c0-0.936-0.349-1.716-1.344-1.716c-0.695,0-1.234,0.492-1.415,1.08
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V310.167L413.087,310.167z"/>
	<path d="M420.969,307.204v1.392h1.513v0.805h-1.513v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.791c-0.203,0.084-0.527,0.156-0.936,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.827-0.408-1.511V309.4
		h-0.898v-0.805h0.898v-1.066L420.969,307.204z"/>
	<path d="M424.844,306.965c0.013,0.359-0.252,0.646-0.672,0.646c-0.371,0-0.636-0.287-0.636-0.646c0-0.372,0.276-0.66,0.66-0.66
		C424.593,306.305,424.844,306.593,424.844,306.965z M423.67,314.4v-5.806h1.055v5.806H423.67z"/>
	<path d="M430.555,313.009c0,0.505,0.024,0.996,0.097,1.392h-0.959l-0.084-0.73h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.773-0.827-1.773-1.667c0-1.403,1.247-2.171,3.489-2.159v-0.119c0-0.48-0.132-1.344-1.318-1.344
		c-0.54,0-1.104,0.168-1.513,0.432l-0.238-0.695c0.479-0.312,1.175-0.516,1.905-0.516c1.775,0,2.207,1.211,2.207,2.374
		L430.555,313.009L430.555,313.009z M429.536,311.438c-1.151-0.023-2.458,0.181-2.458,1.308c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.234-0.479,1.402-0.972c0.036-0.107,0.061-0.229,0.061-0.336V311.438z"/>
	<path d="M433.484,307.204v1.392h1.512v0.805h-1.512v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.61-0.072
		l0.048,0.791c-0.202,0.084-0.526,0.156-0.936,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.301-0.312-0.408-0.827-0.408-1.511V309.4
		h-0.899v-0.805h0.899v-1.066L433.484,307.204z"/>
	<path d="M437.36,306.965c0.012,0.359-0.252,0.646-0.673,0.646c-0.37,0-0.636-0.287-0.636-0.646c0-0.372,0.276-0.66,0.66-0.66
		C437.108,306.305,437.36,306.593,437.36,306.965z M436.185,314.4v-5.806h1.056v5.806H436.185z"/>
	<path d="M444.246,311.45c0,2.146-1.487,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.986c0-1.942,1.271-3.082,2.878-3.082
		C443.118,308.464,444.246,309.675,444.246,311.45z M439.64,311.51c0,1.271,0.731,2.231,1.764,2.231
		c1.008,0,1.763-0.948,1.763-2.255c0-0.983-0.491-2.231-1.738-2.231C440.179,309.255,439.64,310.406,439.64,311.51z"/>
	<path d="M445.581,310.167c0-0.601-0.013-1.092-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.96-1.091,1.919-1.091
		c0.805,0,2.052,0.479,2.052,2.472v3.465h-1.056v-3.346c0-0.936-0.349-1.716-1.344-1.716c-0.695,0-1.235,0.492-1.415,1.08
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V310.167L445.581,310.167z"/>
</g>
<g>
	<path d="M283.679,397.296c-0.276,0.144-0.889,0.349-1.667,0.349c-1.752,0-2.892-1.199-2.892-2.976c0-1.787,1.225-3.082,3.119-3.082
		c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.646-0.275-1.223-0.275c-1.332,0-2.051,0.983-2.051,2.194
		c0,1.344,0.864,2.171,2.015,2.171c0.601,0,0.996-0.156,1.295-0.288L283.679,397.296z"/>
	<path d="M285.434,394.801c0.023,1.428,0.935,2.016,1.99,2.016c0.756,0,1.211-0.131,1.607-0.299l0.18,0.754
		c-0.372,0.168-1.007,0.373-1.931,0.373c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.215-0.023,0.383-0.036,0.49H285.434L285.434,394.801z M288.528,394.046c0.012-0.672-0.276-1.716-1.463-1.716
		c-1.067,0-1.535,0.984-1.619,1.716H288.528z"/>
	<path d="M290.857,388.996h1.056v8.516h-1.056V388.996z"/>
	<path d="M293.689,388.996h1.056v8.516h-1.056V388.996z"/>
	<path d="M304.079,388.996v7.018c0,0.516,0.012,1.104,0.048,1.498h-0.947l-0.048-1.008h-0.023c-0.324,0.648-1.032,1.141-1.979,1.141
		c-1.403,0-2.482-1.188-2.482-2.951c-0.013-1.93,1.188-3.117,2.603-3.117c0.888,0,1.487,0.42,1.751,0.888h0.024v-3.467
		L304.079,388.996L304.079,388.996z M303.023,394.068c0-0.131-0.013-0.312-0.049-0.442c-0.155-0.672-0.73-1.224-1.522-1.224
		c-1.091,0-1.739,0.959-1.739,2.242c0,1.176,0.576,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259
		c0.036-0.146,0.049-0.288,0.049-0.456V394.068L303.023,394.068z"/>
	<path d="M306.421,394.801c0.024,1.428,0.937,2.016,1.991,2.016c0.755,0,1.211-0.131,1.606-0.299l0.181,0.754
		c-0.372,0.168-1.007,0.373-1.932,0.373c-1.786,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.215-0.024,0.383-0.036,0.49H306.421L306.421,394.801z M309.515,394.046c0.013-0.672-0.275-1.716-1.463-1.716
		c-1.066,0-1.535,0.984-1.619,1.716H309.515z"/>
	<path d="M315.923,396.12c0,0.504,0.024,0.996,0.096,1.392h-0.959l-0.084-0.73h-0.035c-0.324,0.455-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.668c0-1.402,1.247-2.17,3.49-2.158v-0.119c0-0.48-0.132-1.344-1.319-1.344
		c-0.54,0-1.103,0.168-1.511,0.432l-0.24-0.695c0.48-0.312,1.177-0.516,1.907-0.516c1.775,0,2.207,1.211,2.207,2.374L315.923,396.12
		L315.923,396.12z M314.904,394.55c-1.151-0.024-2.459,0.181-2.459,1.308c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.234-0.479,1.402-0.973c0.036-0.106,0.061-0.228,0.061-0.336V394.55z"/>
	<path d="M318.852,390.314v1.393h1.512v0.804h-1.512v3.13c0,0.721,0.204,1.129,0.792,1.129c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.791c-0.204,0.084-0.527,0.156-0.936,0.156c-0.492,0-0.888-0.168-1.141-0.457c-0.3-0.312-0.407-0.826-0.407-1.511v-3.165
		h-0.899v-0.805h0.899v-1.066L318.852,390.314z"/>
	<path d="M321.552,388.996h1.057v3.622h0.023c0.168-0.3,0.433-0.563,0.755-0.743c0.312-0.18,0.685-0.3,1.08-0.3
		c0.779,0,2.027,0.479,2.027,2.481v3.455h-1.056v-3.335c0-0.936-0.349-1.728-1.344-1.728c-0.684,0-1.223,0.48-1.415,1.056
		c-0.06,0.144-0.071,0.3-0.071,0.504v3.503h-1.057V388.996z"/>
</g>
<g>
	<path d="M610.468,358.784c-0.275,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.89-1.198-2.89-2.975c0-1.787,1.223-3.082,3.118-3.082
		c0.623,0,1.175,0.155,1.463,0.3l-0.239,0.814c-0.252-0.144-0.648-0.274-1.224-0.274c-1.331,0-2.052,0.983-2.052,2.194
		c0,1.344,0.863,2.17,2.016,2.17c0.6,0,0.995-0.155,1.295-0.287L610.468,358.784z"/>
	<path d="M616.886,356.05c0,2.146-1.486,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.985c0-1.942,1.271-3.082,2.878-3.082
		C615.759,353.062,616.886,354.273,616.886,356.05z M612.281,356.109c0,1.271,0.73,2.23,1.763,2.23c1.008,0,1.763-0.947,1.763-2.255
		c0-0.983-0.49-2.231-1.737-2.231C612.82,353.854,612.281,355.006,612.281,356.109z"/>
	<path d="M618.221,354.768c0-0.601-0.013-1.093-0.049-1.572h0.924l0.048,0.937h0.036c0.324-0.552,0.863-1.067,1.823-1.067
		c0.791,0,1.391,0.479,1.643,1.164h0.024c0.18-0.324,0.407-0.576,0.647-0.756c0.348-0.265,0.73-0.408,1.282-0.408
		c0.769,0,1.907,0.504,1.907,2.52V359h-1.031v-3.286c0-1.114-0.407-1.787-1.26-1.787c-0.6,0-1.066,0.443-1.247,0.96
		c-0.048,0.145-0.084,0.336-0.084,0.527V359h-1.031v-3.479c0-0.924-0.407-1.596-1.212-1.596c-0.658,0-1.139,0.527-1.307,1.057
		c-0.061,0.154-0.084,0.336-0.084,0.516V359h-1.031L618.221,354.768L618.221,354.768z"/>
	<path d="M628.228,355.09c0-0.742-0.023-1.343-0.049-1.895h0.948l0.048,0.994h0.023c0.432-0.707,1.115-1.127,2.062-1.127
		c1.403,0,2.458,1.188,2.458,2.951c0,2.086-1.271,3.117-2.639,3.117c-0.769,0-1.438-0.336-1.786-0.91h-0.023v3.153h-1.044
		L628.228,355.09L628.228,355.09z M629.271,356.639c0,0.154,0.024,0.299,0.049,0.432c0.191,0.73,0.828,1.234,1.583,1.234
		c1.114,0,1.764-0.912,1.764-2.242c0-1.164-0.612-2.16-1.729-2.16c-0.72,0-1.392,0.518-1.595,1.309
		c-0.036,0.132-0.072,0.288-0.072,0.432V356.639L629.271,356.639z"/>
	<path d="M635.057,350.484h1.056V359h-1.056V350.484z"/>
	<path d="M638.476,356.289c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.607-0.3l0.18,0.755
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.129,2.724-3.129c1.895,0,2.397,1.666,2.397,2.733
		c0,0.216-0.023,0.384-0.036,0.491H638.476L638.476,356.289z M641.571,355.534c0.012-0.673-0.276-1.716-1.463-1.716
		c-1.067,0-1.535,0.983-1.619,1.716H641.571z"/>
	<path d="M644.357,353.195l0.826,1.246c0.218,0.324,0.396,0.625,0.589,0.947h0.035c0.192-0.348,0.385-0.646,0.576-0.959l0.815-1.234
		h1.139l-1.979,2.807l2.039,2.998H647.2l-0.853-1.309c-0.229-0.336-0.42-0.658-0.624-1.006h-0.022
		c-0.192,0.358-0.396,0.658-0.612,1.006L644.25,359h-1.164l2.063-2.962l-1.969-2.843H644.357z"/>
</g>
<g>
	<path d="M557.821,419.736c-0.384,0.19-1.151,0.396-2.136,0.396c-2.278,0-3.993-1.45-3.993-4.103c0-2.529,1.715-4.245,4.222-4.245
		c1.008,0,1.644,0.216,1.919,0.36l-0.252,0.852c-0.396-0.191-0.959-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
		c0,1.979,1.14,3.25,3.106,3.25c0.636,0,1.282-0.133,1.703-0.336L557.821,419.736z"/>
	<path d="M561.003,412.805h-2.458v-0.889h5.984v0.889h-2.472V420h-1.056L561.003,412.805L561.003,412.805z"/>
	<path d="M565.431,411.916h1.044v7.208h3.454V420h-4.498V411.916z"/>
	<path d="M573.603,415.768c0-0.601-0.013-1.093-0.049-1.572h0.924l0.049,0.937h0.035c0.324-0.552,0.863-1.067,1.823-1.067
		c0.791,0,1.392,0.479,1.644,1.164h0.023c0.181-0.324,0.407-0.576,0.647-0.756c0.348-0.265,0.73-0.408,1.283-0.408
		c0.768,0,1.906,0.504,1.906,2.52V420h-1.03v-3.286c0-1.114-0.408-1.787-1.261-1.787c-0.6,0-1.066,0.443-1.247,0.96
		c-0.048,0.145-0.084,0.336-0.084,0.527V420h-1.03v-3.479c0-0.924-0.408-1.596-1.212-1.596c-0.659,0-1.14,0.527-1.308,1.057
		c-0.061,0.154-0.084,0.336-0.084,0.516V420h-1.031L573.603,415.768L573.603,415.768z"/>
	<path d="M584.199,417.289c0.023,1.428,0.936,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.18,0.755
		c-0.371,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.129,2.723-3.129c1.895,0,2.397,1.666,2.397,2.733
		c0,0.216-0.023,0.384-0.035,0.491H584.199L584.199,417.289z M587.294,416.534c0.012-0.673-0.276-1.716-1.463-1.716
		c-1.067,0-1.535,0.983-1.619,1.716H587.294z"/>
	<path d="M594.636,411.484v7.017c0,0.517,0.013,1.104,0.048,1.499h-0.946l-0.048-1.008h-0.024c-0.323,0.648-1.031,1.14-1.979,1.14
		c-1.403,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.117,2.603-3.117c0.889,0,1.487,0.42,1.751,0.888h0.023v-3.468H594.636
		L594.636,411.484z M593.581,416.559c0-0.133-0.012-0.312-0.048-0.443c-0.155-0.672-0.731-1.225-1.523-1.225
		c-1.091,0-1.737,0.961-1.737,2.243c0,1.175,0.574,2.146,1.715,2.146c0.708,0,1.354-0.468,1.547-1.259
		c0.036-0.146,0.048-0.289,0.048-0.457L593.581,416.559L593.581,416.559z"/>
	<path d="M597.566,412.564c0.012,0.358-0.252,0.646-0.673,0.646c-0.37,0-0.636-0.288-0.636-0.646c0-0.373,0.276-0.66,0.66-0.66
		C597.314,411.904,597.566,412.191,597.566,412.564z M596.391,420v-5.805h1.056V420H596.391z"/>
	<path d="M603.276,418.607c0,0.504,0.023,0.996,0.096,1.393h-0.959l-0.084-0.73h-0.036c-0.324,0.455-0.947,0.862-1.775,0.862
		c-1.175,0-1.773-0.827-1.773-1.667c0-1.402,1.247-2.171,3.49-2.158v-0.119c0-0.48-0.133-1.344-1.319-1.344
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.175-0.516,1.906-0.516c1.774,0,2.207,1.211,2.207,2.373
		L603.276,418.607L603.276,418.607z M602.257,417.038c-1.15-0.024-2.458,0.18-2.458,1.308c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.235-0.479,1.403-0.973c0.036-0.107,0.06-0.229,0.06-0.336V417.038z"/>
	<path d="M606.206,412.805v1.391h1.512V415h-1.512v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.791c-0.203,0.084-0.527,0.156-0.937,0.156c-0.49,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.827-0.408-1.511V415
		h-0.898v-0.805h0.898v-1.066L606.206,412.805z"/>
	<path d="M609.422,417.289c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.181,0.755
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.031-3.129,2.723-3.129c1.896,0,2.398,1.666,2.398,2.733
		c0,0.216-0.024,0.384-0.036,0.491H609.422L609.422,417.289z M612.516,416.534c0.013-0.673-0.275-1.716-1.463-1.716
		c-1.066,0-1.534,0.983-1.619,1.716H612.516z"/>
	<path d="M619.859,411.484v7.017c0,0.517,0.012,1.104,0.048,1.499h-0.947l-0.048-1.008h-0.024c-0.322,0.648-1.03,1.14-1.979,1.14
		c-1.403,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.117,2.604-3.117c0.888,0,1.486,0.42,1.751,0.888h0.022v-3.468H619.859
		L619.859,411.484z M618.803,416.559c0-0.133-0.012-0.312-0.048-0.443c-0.155-0.672-0.73-1.225-1.522-1.225
		c-1.092,0-1.738,0.961-1.738,2.243c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259
		c0.036-0.146,0.048-0.289,0.048-0.457L618.803,416.559L618.803,416.559z"/>
	<path d="M559.856,427.204h-2.458v-0.888h5.983v0.888h-2.471v7.196h-1.056L559.856,427.204L559.856,427.204z"/>
	<path d="M570.931,434.185c-0.275,0.145-0.888,0.349-1.668,0.349c-1.751,0-2.89-1.199-2.89-2.976c0-1.786,1.223-3.082,3.118-3.082
		c0.623,0,1.175,0.156,1.463,0.301l-0.24,0.814c-0.251-0.144-0.646-0.274-1.223-0.274c-1.331,0-2.051,0.982-2.051,2.193
		c0,1.344,0.862,2.171,2.015,2.171c0.6,0,0.995-0.155,1.295-0.288L570.931,434.185z"/>
	<path d="M572.684,431.689c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.607-0.3l0.18,0.755
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.023,0.384-0.036,0.491H572.684L572.684,431.689z M575.779,430.935c0.012-0.672-0.276-1.716-1.463-1.716
		c-1.067,0-1.535,0.984-1.619,1.716H575.779z"/>
	<path d="M578.109,425.885h1.055v8.517h-1.055V425.885z"/>
	<path d="M580.941,425.885h1.055v8.517h-1.055V425.885z"/>
	<path d="M591.33,425.885v7.018c0,0.516,0.012,1.104,0.048,1.499h-0.947l-0.048-1.009h-0.023c-0.323,0.648-1.031,1.141-1.979,1.141
		c-1.403,0-2.481-1.188-2.481-2.95c-0.014-1.931,1.188-3.118,2.603-3.118c0.888,0,1.487,0.42,1.751,0.888h0.023v-3.467
		L591.33,425.885L591.33,425.885z M590.274,430.958c0-0.132-0.013-0.312-0.049-0.443c-0.154-0.672-0.73-1.224-1.522-1.224
		c-1.091,0-1.738,0.96-1.738,2.243c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259
		c0.036-0.145,0.049-0.288,0.049-0.456L590.274,430.958L590.274,430.958z"/>
	<path d="M593.672,431.689c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.181,0.755
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.491H593.672L593.672,431.689z M596.766,430.935c0.013-0.672-0.275-1.716-1.463-1.716
		c-1.066,0-1.534,0.984-1.619,1.716H596.766z"/>
	<path d="M603.174,433.009c0,0.504,0.024,0.996,0.096,1.393h-0.959l-0.084-0.731h-0.035c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.827-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.479-0.132-1.344-1.318-1.344
		c-0.54,0-1.104,0.168-1.513,0.432l-0.238-0.694c0.479-0.312,1.175-0.517,1.905-0.517c1.775,0,2.207,1.211,2.207,2.374
		L603.174,433.009L603.174,433.009z M602.154,431.438c-1.151-0.023-2.458,0.181-2.458,1.308c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.234-0.479,1.402-0.972c0.036-0.107,0.061-0.229,0.061-0.336V431.438z"/>
	<path d="M606.103,427.204v1.392h1.513v0.805h-1.513v3.13c0,0.72,0.204,1.128,0.793,1.128c0.287,0,0.455-0.024,0.61-0.072
		l0.048,0.791c-0.203,0.084-0.526,0.156-0.936,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.301-0.312-0.408-0.827-0.408-1.511V429.4
		h-0.899v-0.805h0.899v-1.066L606.103,427.204z"/>
	<path d="M608.804,425.885h1.056v3.622h0.023c0.168-0.3,0.433-0.562,0.756-0.743c0.312-0.18,0.685-0.3,1.079-0.3
		c0.779,0,2.026,0.479,2.026,2.482v3.454h-1.056v-3.334c0-0.937-0.349-1.729-1.344-1.729c-0.684,0-1.224,0.48-1.415,1.056
		c-0.06,0.145-0.071,0.301-0.071,0.505v3.502h-1.056L608.804,425.885L608.804,425.885z"/>
</g>
<g>
	<path d="M619.374,239.784c-0.276,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.89-1.199-2.89-2.974c0-1.787,1.223-3.083,3.117-3.083
		c0.623,0,1.176,0.156,1.463,0.3l-0.239,0.815c-0.251-0.144-0.647-0.275-1.224-0.275c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.016,2.171c0.6,0,0.994-0.156,1.295-0.288L619.374,239.784z"/>
	<path d="M621.127,237.29c0.024,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L621.127,237.29L621.127,237.29z M624.221,236.534c0.013-0.671-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H624.221z"/>
	<path d="M626.552,231.485h1.056V240h-1.056V231.485z"/>
	<path d="M629.384,231.485h1.056V240h-1.056V231.485z"/>
	<path d="M639.771,231.485v7.016c0,0.516,0.013,1.103,0.049,1.499h-0.947l-0.048-1.007h-0.024c-0.323,0.647-1.031,1.139-1.979,1.139
		c-1.403,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.118,2.604-3.118c0.888,0,1.486,0.419,1.751,0.887h0.022v-3.466H639.771z
		 M638.717,236.558c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.672-0.731-1.224-1.522-1.224c-1.092,0-1.738,0.959-1.738,2.243
		c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456L638.717,236.558
		L638.717,236.558z"/>
	<path d="M642.114,237.29c0.023,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L642.114,237.29L642.114,237.29z M645.209,236.534c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H645.209z"/>
	<path d="M651.616,238.609c0,0.503,0.023,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.036c-0.322,0.456-0.947,0.863-1.774,0.863
		c-1.176,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.175-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L651.616,238.609L651.616,238.609z M650.596,237.038c-1.15-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.235-0.48,1.403-0.972c0.036-0.108,0.06-0.228,0.06-0.336V237.038z"/>
	<path d="M654.546,232.804v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.792c-0.203,0.084-0.527,0.156-0.937,0.156c-0.49,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.898v-0.803h0.898v-1.067L654.546,232.804z"/>
	<path d="M657.247,231.485h1.055v3.622h0.024c0.168-0.3,0.432-0.563,0.756-0.743c0.312-0.18,0.684-0.3,1.079-0.3
		c0.778,0,2.025,0.479,2.025,2.482V240h-1.055v-3.334c0-0.936-0.349-1.727-1.344-1.727c-0.685,0-1.224,0.479-1.415,1.055
		c-0.061,0.144-0.072,0.3-0.072,0.504V240h-1.055L657.247,231.485L657.247,231.485z"/>
</g>
<g id="y">
	<g>
		<ellipse id="y_path5" fill="#6AA4D3" stroke="#231F20" cx="505.676" cy="156" rx="30.248" ry="18.211"/>
		<ellipse fill="#EE383F" stroke="#231F20" cx="505.676" cy="156" rx="13.142" ry="7.911"/>
	</g>
	<g>
		<ellipse id="y_path4" fill="#6AA4D3" stroke="#231F20" cx="606.676" cy="155.088" rx="30.248" ry="18.211"/>
		<ellipse fill="#EE383F" stroke="#231F20" cx="606.676" cy="155.088" rx="13.142" ry="7.911"/>
	</g>
	<g>
		<ellipse id="y_path3" fill="#6AA4D3" stroke="#231F20" cx="557.676" cy="123" rx="30.248" ry="18.211"/>
		<ellipse fill="#EE383F" stroke="#231F20" cx="557.676" cy="123" rx="13.142" ry="7.911"/>
	</g>
	<g>
		<ellipse id="y_path2" fill="#6AA4D3" stroke="#231F20" cx="552.676" cy="167" rx="30.248" ry="18.211"/>
		<ellipse fill="#EE383F" stroke="#231F20" cx="552.676" cy="167" rx="13.142" ry="7.911"/>
	</g>
	<g>
		<ellipse id="y_path1" fill="#6AA4D3" stroke="#231F20" cx="514.676" cy="121" rx="30.248" ry="18.211"/>
		<ellipse fill="#EE383F" stroke="#231F20" cx="514.676" cy="121" rx="13.142" ry="7.911"/>
	</g>
</g>
<g>
	<path d="M592.207,87.063c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.636-0.288-0.636-0.648c0-0.372,0.275-0.66,0.659-0.66
		C591.955,86.403,592.207,86.691,592.207,87.063z M591.032,94.499v-5.805h1.055v5.805H591.032z"/>
	<path d="M593.84,90.265c0-0.6-0.013-1.091-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.961-1.091,1.92-1.091
		c0.804,0,2.051,0.479,2.051,2.47v3.466h-1.056v-3.346c0-0.936-0.349-1.715-1.344-1.715c-0.694,0-1.234,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V90.265z"/>
	<path d="M600.607,94.499v-5.001h-0.815v-0.803h0.815v-0.276c0-0.815,0.18-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
		c0.372,0,0.694,0.084,0.898,0.168l-0.144,0.816c-0.156-0.072-0.372-0.132-0.672-0.132c-0.899,0-1.127,0.792-1.127,1.679v0.312
		h1.401v0.803h-1.401v5.001H600.607z"/>
	<path d="M604.434,91.789c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.023,0.384-0.036,0.492L604.434,91.789L604.434,91.789z M607.529,91.033c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H607.529z"/>
	<path d="M613.997,94.283c-0.276,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.89-1.199-2.89-2.974c0-1.787,1.223-3.083,3.117-3.083
		c0.623,0,1.176,0.156,1.463,0.3l-0.238,0.815c-0.252-0.144-0.648-0.275-1.225-0.275c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.296-0.288L613.997,94.283z"/>
	<path d="M616.662,87.303v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.792c-0.203,0.084-0.527,0.156-0.937,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.898v-0.803h0.898v-1.067L616.662,87.303z"/>
	<path d="M619.878,91.789c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L619.878,91.789L619.878,91.789z M622.972,91.033c0.013-0.671-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H622.972z"/>
	<path d="M630.315,85.984V93c0,0.516,0.012,1.103,0.048,1.499h-0.947l-0.048-1.007h-0.024c-0.322,0.647-1.031,1.139-1.979,1.139
		c-1.403,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.118,2.604-3.118c0.888,0,1.486,0.419,1.751,0.887h0.022v-3.466H630.315z
		 M629.26,91.057c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.672-0.73-1.224-1.521-1.224c-1.093,0-1.739,0.959-1.739,2.243
		c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456L629.26,91.057
		L629.26,91.057z"/>
	<path d="M598.002,101.703h-2.458v-0.888h5.984v0.888h-2.472v7.196h-1.056L598.002,101.703L598.002,101.703z"/>
	<path d="M609.077,108.683c-0.276,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.238,0.815c-0.252-0.144-0.648-0.276-1.225-0.276c-1.331,0-2.051,0.984-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.288L609.077,108.683z"/>
	<path d="M610.83,106.188c0.023,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.009,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L610.83,106.188L610.83,106.188z M613.925,105.433c0.013-0.671-0.275-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H613.925z"/>
	<path d="M616.255,100.384h1.055v8.515h-1.055V100.384z"/>
	<path d="M619.087,100.384h1.055v8.515h-1.055V100.384z"/>
	<path d="M621.774,107.819c0.312,0.204,0.862,0.42,1.392,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.067
		c-1.044-0.372-1.535-0.948-1.535-1.644c0-0.935,0.757-1.703,2.003-1.703c0.589,0,1.104,0.167,1.428,0.359l-0.265,0.768
		c-0.228-0.144-0.646-0.335-1.188-0.335c-0.623,0-0.971,0.36-0.971,0.792c0,0.479,0.348,0.695,1.103,0.983
		c1.008,0.384,1.523,0.888,1.523,1.751c0,1.02-0.791,1.751-2.172,1.751c-0.636,0-1.223-0.168-1.631-0.408L621.774,107.819z"/>
</g>
<g>
	<path d="M678.896,139.284c-0.276,0.144-0.889,0.348-1.669,0.348c-1.751,0-2.89-1.199-2.89-2.974c0-1.787,1.223-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.251-0.144-0.646-0.275-1.223-0.275c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.343,0.862,2.171,2.015,2.171c0.6,0,0.995-0.156,1.295-0.288L678.896,139.284z"/>
	<path d="M680.648,136.79c0.023,1.427,0.936,2.015,1.99,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.023,0.384-0.036,0.492L680.648,136.79L680.648,136.79z M683.743,136.034c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H683.743z"/>
	<path d="M686.073,130.985h1.055v8.515h-1.055V130.985z"/>
	<path d="M688.905,130.985h1.055v8.515h-1.055V130.985z"/>
	<path d="M699.294,130.985v7.016c0,0.516,0.012,1.103,0.048,1.499h-0.947l-0.048-1.007h-0.023c-0.323,0.647-1.031,1.139-1.979,1.139
		c-1.402,0-2.481-1.188-2.481-2.95c-0.014-1.931,1.188-3.118,2.603-3.118c0.889,0,1.487,0.419,1.751,0.887h0.023v-3.466H699.294z
		 M698.238,136.058c0-0.132-0.013-0.312-0.048-0.444c-0.155-0.672-0.731-1.224-1.523-1.224c-1.091,0-1.738,0.959-1.738,2.243
		c0,1.175,0.575,2.146,1.716,2.146c0.707,0,1.354-0.468,1.547-1.259c0.035-0.144,0.048-0.288,0.048-0.456L698.238,136.058
		L698.238,136.058z"/>
	<path d="M701.635,136.79c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L701.635,136.79L701.635,136.79z M704.73,136.034c0.012-0.671-0.276-1.715-1.464-1.715
		c-1.066,0-1.534,0.983-1.618,1.715H704.73z"/>
	<path d="M711.198,139.284c-0.276,0.144-0.889,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.25-0.144-0.646-0.275-1.223-0.275c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.288L711.198,139.284z"/>
	<path d="M716.513,138.109c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.773-0.828-1.773-1.667c0-1.403,1.246-2.171,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.513,0.432l-0.238-0.695c0.479-0.312,1.175-0.516,1.905-0.516c1.775,0,2.207,1.211,2.207,2.375
		L716.513,138.109L716.513,138.109z M715.494,136.538c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.234-0.48,1.402-0.972c0.036-0.108,0.061-0.228,0.061-0.336V136.538z"/>
	<path d="M718.509,133.695l1.271,3.43c0.132,0.384,0.275,0.839,0.372,1.187h0.023c0.107-0.348,0.229-0.792,0.371-1.211l1.151-3.406
		h1.114l-1.583,4.138c-0.755,1.991-1.271,3.01-1.989,3.634c-0.517,0.456-1.032,0.636-1.296,0.684l-0.265-0.887
		c0.265-0.084,0.611-0.252,0.924-0.516c0.288-0.228,0.647-0.635,0.889-1.175c0.048-0.108,0.084-0.192,0.084-0.251
		c0-0.061-0.024-0.145-0.072-0.276l-2.146-5.349h1.151V133.695z"/>
</g>
<g id="w">
	<g>
		<path d="M303.125,354.734c-0.384,0.191-1.151,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.102c0-2.53,1.715-4.246,4.222-4.246
			c1.008,0,1.644,0.216,1.919,0.359l-0.252,0.853c-0.396-0.192-0.959-0.336-1.631-0.336c-1.895,0-3.154,1.211-3.154,3.334
			c0,1.979,1.14,3.25,3.106,3.25c0.636,0,1.283-0.132,1.703-0.336L303.125,354.734z"/>
		<path d="M306.307,347.803h-2.459v-0.888h5.985v0.888h-2.471v7.196h-1.056V347.803L306.307,347.803z"/>
		<path d="M310.736,346.915h1.043v7.208h3.454v0.876h-4.498L310.736,346.915L310.736,346.915z"/>
		<path d="M318.908,351.089c0-0.743-0.024-1.343-0.048-1.896h0.946l0.049,0.996h0.023c0.432-0.707,1.115-1.127,2.063-1.127
			c1.402,0,2.459,1.188,2.459,2.949c0,2.088-1.271,3.118-2.64,3.118c-0.768,0-1.438-0.336-1.787-0.911h-0.023v3.154h-1.043V351.089z
			 M319.952,352.637c0,0.155,0.023,0.301,0.048,0.432c0.192,0.731,0.828,1.236,1.583,1.236c1.116,0,1.763-0.912,1.763-2.244
			c0-1.162-0.611-2.158-1.727-2.158c-0.72,0-1.391,0.517-1.595,1.308c-0.036,0.132-0.072,0.288-0.072,0.433V352.637L319.952,352.637
			z"/>
		<path d="M325.736,351.005c0-0.685-0.013-1.271-0.049-1.812h0.924l0.036,1.141h0.048c0.264-0.779,0.898-1.271,1.606-1.271
			c0.12,0,0.204,0.013,0.3,0.037v0.994c-0.107-0.023-0.216-0.035-0.358-0.035c-0.744,0-1.271,0.562-1.416,1.354
			c-0.024,0.144-0.048,0.312-0.048,0.491v3.095h-1.043V351.005z"/>
		<path d="M330.128,352.288c0.024,1.428,0.935,2.017,1.991,2.017c0.755,0,1.211-0.133,1.606-0.301l0.181,0.755
			c-0.372,0.168-1.007,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.131,2.723-3.131
			c1.896,0,2.399,1.668,2.399,2.734c0,0.217-0.024,0.385-0.036,0.491H330.128L330.128,352.288z M333.221,351.533
			c0.013-0.672-0.275-1.717-1.463-1.717c-1.066,0-1.535,0.984-1.619,1.717H333.221z"/>
		<path d="M339.689,354.783c-0.276,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.892-1.199-2.892-2.975
			c0-1.787,1.225-3.082,3.119-3.082c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.145-0.646-0.275-1.223-0.275
			c-1.332,0-2.051,0.982-2.051,2.193c0,1.345,0.864,2.172,2.015,2.172c0.601,0,0.996-0.156,1.295-0.288L339.689,354.783z"/>
		<path d="M345.785,353.416c0,0.6,0.012,1.127,0.048,1.583h-0.936l-0.061-0.947h-0.023c-0.276,0.468-0.888,1.079-1.92,1.079
			c-0.91,0-2.003-0.504-2.003-2.543v-3.395h1.057v3.215c0,1.104,0.336,1.848,1.295,1.848c0.708,0,1.199-0.492,1.391-0.96
			c0.061-0.155,0.097-0.348,0.097-0.54v-3.562h1.056V353.416L345.785,353.416z"/>
		<path d="M347.539,351.005c0-0.685-0.012-1.271-0.048-1.812h0.923l0.036,1.141h0.048c0.264-0.779,0.899-1.271,1.607-1.271
			c0.119,0,0.203,0.013,0.3,0.037v0.994c-0.108-0.023-0.216-0.035-0.36-0.035c-0.744,0-1.271,0.562-1.416,1.354
			c-0.023,0.144-0.048,0.312-0.048,0.491v3.095h-1.043L347.539,351.005L347.539,351.005z"/>
		<path d="M351.319,353.92c0.312,0.203,0.863,0.42,1.392,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.779-1.079-1.067
			c-1.043-0.371-1.535-0.947-1.535-1.644c0-0.936,0.755-1.703,2.003-1.703c0.589,0,1.104,0.168,1.428,0.359l-0.265,0.768
			c-0.228-0.144-0.646-0.336-1.187-0.336c-0.624,0-0.972,0.36-0.972,0.793c0,0.479,0.348,0.694,1.103,0.982
			c1.008,0.385,1.523,0.889,1.523,1.751c0,1.021-0.791,1.751-2.172,1.751c-0.635,0-1.223-0.168-1.631-0.406L351.319,353.92z"/>
		<path d="M361.468,352.049c0,2.146-1.486,3.082-2.891,3.082c-1.571,0-2.782-1.15-2.782-2.986c0-1.941,1.271-3.082,2.878-3.082
			C360.34,349.062,361.468,350.273,361.468,352.049z M356.863,352.107c0,1.271,0.73,2.231,1.763,2.231
			c1.008,0,1.763-0.948,1.763-2.255c0-0.982-0.49-2.23-1.737-2.23C357.402,349.854,356.863,351.005,356.863,352.107z"/>
		<path d="M362.802,351.005c0-0.685-0.013-1.271-0.049-1.812h0.924l0.036,1.141h0.048c0.265-0.779,0.899-1.271,1.607-1.271
			c0.12,0,0.204,0.013,0.3,0.037v0.994c-0.108-0.023-0.216-0.035-0.36-0.035c-0.742,0-1.271,0.562-1.415,1.354
			c-0.022,0.144-0.048,0.312-0.048,0.491v3.095h-1.043V351.005z"/>
	</g>
	<polygon id="w_path1" fill="#F9BB72" stroke="#F26F43" stroke-width="2" points="306.959,322.749 309.429,309.145 306.959,294.749 
		317.209,284.499 331.01,287.562 345.208,284.5 355.457,294.749 352.392,309.343 355.457,322.748 345.208,332.998 330.417,330.527 
		317.208,332.997 	"/>
</g>
<g id="z">
	<g>
		<path d="M504.67,253.998c-0.384,0.191-1.151,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.102c0-2.53,1.715-4.246,4.222-4.246
			c1.009,0,1.645,0.215,1.919,0.36l-0.252,0.852c-0.396-0.192-0.959-0.336-1.631-0.336c-1.895,0-3.154,1.211-3.154,3.334
			c0,1.979,1.141,3.25,3.106,3.25c0.636,0,1.283-0.132,1.703-0.336L504.67,253.998z"/>
		<path d="M507.851,247.065h-2.458v-0.887h5.984v0.887h-2.471v7.196h-1.057L507.851,247.065L507.851,247.065z"/>
		<path d="M512.28,246.178h1.044v7.208h3.454v0.876h-4.498V246.178z"/>
	</g>
	<polygon id="z_path1" fill="#F9BB72" stroke="#F26F43" points="546.625,240.768 549.122,237.516 550.349,240.985 554.006,238.094 
		553.912,241.629 558.569,239.225 557.156,242.672 562.609,240.858 559.939,244.066 565.951,242.924 562.14,245.754 
		568.449,245.331 563.664,247.658 569.992,247.976 564.443,249.697 570.513,250.74 564.443,251.782 569.992,253.504 
		563.664,253.821 568.449,256.148 562.14,255.727 565.951,258.557 559.939,257.413 562.609,260.621 557.156,258.809 
		558.569,262.255 553.912,259.852 554.006,263.386 550.349,260.494 549.122,263.964 546.625,260.712 544.128,263.964 542.9,260.494 
		539.244,263.386 539.338,259.852 534.68,262.255 536.094,258.809 530.64,260.621 533.31,257.413 527.299,258.557 531.109,255.727 
		524.801,256.148 529.586,253.821 523.258,253.504 528.806,251.782 522.736,250.74 528.806,249.697 523.258,247.976 
		529.586,247.658 524.801,245.331 531.109,245.754 527.299,242.924 533.31,244.066 530.64,240.858 536.094,242.672 534.68,239.225 
		539.338,241.629 539.244,238.094 542.9,240.985 544.128,237.516 	"/>
</g>
<g>
	<g>
		<ellipse fill="#6AA4D3" stroke="#231F20" cx="525.814" cy="357.53" rx="30.248" ry="18.211"/>
		<ellipse fill="#EE383F" stroke="#231F20" cx="525.814" cy="357.53" rx="13.141" ry="7.912"/>
	</g>
	<polygon fill="#F9BB72" stroke="#F26F43" points="573.168,347.559 575.665,344.307 576.892,347.775 580.549,344.885 
		580.455,348.42 585.112,346.016 583.699,349.463 589.152,347.648 586.482,350.857 592.494,349.715 588.683,352.545 
		594.992,352.122 590.207,354.449 596.535,354.768 590.986,356.488 597.056,357.531 590.986,358.573 596.535,360.295 
		590.207,360.611 594.992,362.939 588.683,362.518 592.494,365.348 586.482,364.204 589.152,367.412 583.699,365.6 585.112,369.046 
		580.455,366.643 580.549,370.177 576.892,367.285 575.665,370.755 573.168,367.503 570.671,370.755 569.443,367.285 
		565.787,370.177 565.881,366.643 561.223,369.046 562.636,365.6 557.183,367.412 559.853,364.204 553.842,365.348 557.652,362.518 
		551.344,362.939 556.129,360.611 549.801,360.295 555.349,358.573 549.279,357.531 555.349,356.488 549.801,354.768 
		556.129,354.449 551.344,352.122 557.652,352.545 553.842,349.715 559.853,350.857 557.183,347.648 562.636,349.463 
		561.223,346.016 565.881,348.42 565.787,344.885 569.443,347.775 570.671,344.307 	"/>
</g>
<polygon id="z_path2" fill="#F9BB72" stroke="#F26F43" points="546.625,465.521 549.122,462.27 550.349,465.739 554.006,462.848 
	553.912,466.383 558.569,463.979 557.156,467.426 562.609,465.612 559.939,468.82 565.951,467.678 562.14,470.508 568.449,470.085 
	563.664,472.412 569.992,472.729 564.443,474.451 570.513,475.494 564.443,476.536 569.992,478.258 563.664,478.575 
	568.449,480.902 562.14,480.48 565.951,483.31 559.939,482.167 562.609,485.375 557.156,483.562 558.569,487.009 553.912,484.604 
	554.006,488.14 550.349,485.248 549.122,488.718 546.625,485.466 544.128,488.718 542.9,485.248 539.244,488.14 539.338,484.604 
	534.68,487.009 536.094,483.562 530.64,485.375 533.31,482.167 527.299,483.31 531.109,480.48 524.801,480.902 529.586,478.575 
	523.258,478.258 528.806,476.536 522.736,475.494 528.806,474.451 523.258,472.729 529.586,472.412 524.801,470.085 
	531.109,470.508 527.299,467.678 533.31,468.82 530.64,465.612 536.094,467.426 534.68,463.979 539.338,466.383 539.244,462.848 
	542.9,465.739 544.128,462.27 "/>
<g>
	<path d="M289.553,138.775v7.05h6.779v1.8h-6.779v7.11h-1.921v-7.11h-6.778v-1.8h6.778v-7.05H289.553z"/>
</g>
<g>
	<path d="M549.271,205.282v7.05h6.778v1.8h-6.778v7.11h-1.921v-7.11h-6.778v-1.8h6.778v-7.05H549.271z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="109" y1="177" x2="68" y2="196"/>
		<polygon points="108.009,181.541 107.879,177.52 104.895,174.82 114.416,174.49 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="261" y1="56" x2="231" y2="97"/>
		<polygon points="262.33,60.453 260.27,56.998 256.352,56.079 264.525,51.183 		"/>
	</g>
</g>
<g>
	<path fill="none" stroke="#000000" d="M387,229"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="453.672" y1="147.891" x2="378.609" y2="147.891"/>
		<polygon points="450.863,151.594 452.435,147.891 450.863,144.187 459.64,147.891 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M510,97c-58.887-45.319-119.78-47.928-165,23"/>
		<polygon points="343.386,115.641 345.665,118.958 349.633,119.623 341.791,125.033 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="746.922" y1="147.891" x2="649.861" y2="147.891"/>
		<polygon points="744.113,151.594 745.685,147.891 744.113,144.187 752.89,147.891 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="677.225" y1="249.891" x2="580.165" y2="249.891"/>
		<polygon points="674.417,253.594 675.99,249.891 674.417,246.187 683.195,249.891 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="546.751" y1="326.334" x2="546.751" y2="269.334"/>
		<polygon points="543.048,323.525 546.751,325.098 550.455,323.525 546.751,332.303 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="547.084" y1="455.333" x2="547.084" y2="378.667"/>
		<polygon points="543.381,452.524 547.084,454.098 550.788,452.524 547.084,461.303 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="332" y1="422.49" x2="332" y2="365.49"/>
		<polygon points="328.297,419.682 332,421.255 335.704,419.682 332,428.46 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="491" y1="263" x2="363" y2="297"/>
		<polygon points="489.236,267.3 489.805,263.316 487.335,260.141 496.769,261.468 		"/>
	</g>
</g>
<g>
	<line fill="none" stroke="#EC1C24" x1="340" y1="185" x2="411" y2="253"/>
	<line fill="none" stroke="#EC1C24" x1="411" y1="248.667" x2="411" y2="256.333"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3,3" x1="414.207" y1="272" x2="414.207" y2="236"/>
		<polygon points="410.504,269.191 414.207,270.764 417.911,269.191 414.207,277.969 		"/>
	</g>
</g>
</svg>
</window>