Location: Yates, Stark, Klein, Antia, Callard, 2007 @ 6bb961f48fec / yates_2007c.xul

Author:
Tommy Yu <tommy.yu@auckland.ac.nz>
Date:
2010-08-25 18:53:09+12:00
Desc:
xml:base fix
Permanent Source URI:
http://models.cellml.org/workspace/yates_stark_klein_antia_callard_2007/rawfile/6bb961f48fec279ff556f1377ee3a20edf9ca4f8/yates_2007c.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 Elements Against Time (days)",
		colour: "#ff9900",
		linestyle: "none"
	},

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

	z: {
		id: "z",
		y: "z/z",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (days)",
		colour: "#ff6666",
		linestyle: "none"
	},

	w: {
		id: "w",
		y: "w/w",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (days)",
		colour: "#ffcc00",
		linestyle: "none"
	}		
			
 // Repeat the above section for each controllable graph trace.
 // Remember to add a comma to each repeat after the final },
 // except for the final one!
 
};

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

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

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

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

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

	flushVisibilityInformation(entity.id);
}

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

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

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

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

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

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

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

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

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

	event.stopPropagation;
	return false;
}

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

	window.open(url);

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

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

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

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

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

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

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

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

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

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

	mouseDown = true;

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

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

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

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

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

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

function setupDocument()
{
	flushVisibilityInformation();

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

	window.svgIdToName = {};

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

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

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

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

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

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

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

]]>
</script>

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

<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="423px" height="486px" viewBox="0 0 423 486" enable-background="new 0 0 423 486" xml:space="preserve">

<g>
	<g>
		<g>
			<g>
				<line fill="none" stroke="#000000" x1="245.66" y1="56.552" x2="134.957" y2="56.552"/>
				<polygon points="242.852,60.255 244.424,56.552 242.852,52.848 251.629,56.552 				"/>
			</g>
		</g>
		<g>
			<g>
				<line fill="none" stroke="#000000" x1="140.66" y1="63.552" x2="251.409" y2="63.552"/>
				<polygon points="143.469,59.849 141.896,63.552 143.469,67.256 134.691,63.552 				"/>
			</g>
		</g>
	</g>
	<g>
		<path d="M195.244,46.016c0,0.503,0.023,0.995,0.096,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.247-2.171,3.49-2.159v-0.12c0-0.479-0.133-1.343-1.319-1.343
			c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.695c0.479-0.312,1.175-0.516,1.907-0.516c1.774,0,2.207,1.211,2.207,2.375
			L195.244,46.016L195.244,46.016z M194.225,44.445c-1.15-0.024-2.458,0.18-2.458,1.307c0,0.684,0.456,1.008,0.996,1.008
			c0.755,0,1.235-0.479,1.403-0.972c0.036-0.108,0.06-0.228,0.06-0.336L194.225,44.445L194.225,44.445z"/>
	</g>
	<g>
		<path d="M192.097,75.747c0-0.684-0.012-1.271-0.048-1.811h0.923l0.036,1.139h0.048c0.264-0.779,0.899-1.271,1.607-1.271
			c0.12,0,0.204,0.012,0.3,0.036v0.996c-0.108-0.024-0.216-0.036-0.359-0.036c-0.744,0-1.271,0.564-1.416,1.355
			c-0.023,0.144-0.048,0.312-0.048,0.492v3.094h-1.043V75.747z"/>
	</g>
</g>
<g>
	<path d="M73.382,25.598c0.527-0.108,1.283-0.168,2.003-0.168c1.115,0,1.835,0.204,2.338,0.66c0.408,0.36,0.636,0.912,0.636,1.535
		c0,1.067-0.671,1.775-1.522,2.063v0.036c0.624,0.216,0.995,0.792,1.187,1.631c0.265,1.127,0.456,1.907,0.624,2.219h-1.08
		c-0.132-0.24-0.312-0.923-0.54-1.931c-0.239-1.115-0.672-1.535-1.618-1.571h-0.983v3.502h-1.043V25.598L73.382,25.598z
		 M74.426,29.28h1.067c1.114,0,1.822-0.612,1.822-1.535c0-1.043-0.755-1.5-1.858-1.511c-0.504,0-0.863,0.048-1.031,0.096V29.28z"/>
	<path d="M80.438,30.863c0.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.187-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.492h-4.079V30.863z M83.532,30.107c0.012-0.671-0.276-1.715-1.464-1.715
		c-1.066,0-1.534,0.983-1.618,1.715H83.532z"/>
	<path d="M85.718,32.494c0.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.078-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.008,0.384,1.523,0.888,1.523,1.751c0,1.02-0.792,1.751-2.171,1.751c-0.635,0-1.224-0.168-1.631-0.408L85.718,32.494z"/>
	<path d="M91.885,26.377v1.391h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.612-0.072
		l0.048,0.792c-0.204,0.084-0.528,0.156-0.937,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.828-0.408-1.511V28.57
		h-0.898v-0.803h0.898V26.7L91.885,26.377z"/>
	<path d="M95.761,26.137c0.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.659-0.66
		C95.509,25.478,95.761,25.766,95.761,26.137z M94.586,33.573v-5.805h1.056v5.805H94.586z"/>
	<path d="M97.394,29.339c0-0.6-0.012-1.091-0.048-1.571h0.937l0.06,0.959h0.024c0.287-0.552,0.959-1.091,1.919-1.091
		c0.803,0,2.051,0.479,2.051,2.47v3.466h-1.057v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.694,0-1.234,0.492-1.415,1.079
		c-0.048,0.132-0.071,0.312-0.071,0.492v3.49h-1.057V29.339z"/>
	<path d="M109.007,32.734c0,1.331-0.264,2.146-0.827,2.65c-0.563,0.528-1.379,0.696-2.111,0.696c-0.695,0-1.463-0.168-1.931-0.48
		l0.264-0.804c0.385,0.24,0.984,0.456,1.703,0.456c1.08,0,1.871-0.564,1.871-2.027v-0.648h-0.023
		c-0.324,0.54-0.948,0.972-1.848,0.972c-1.438,0-2.471-1.224-2.471-2.831c0-1.967,1.284-3.082,2.615-3.082
		c1.007,0,1.559,0.527,1.811,1.007h0.024l0.048-0.875h0.924c-0.023,0.419-0.048,0.887-0.048,1.595L109.007,32.734L109.007,32.734z
		 M107.963,30.059c0-0.18-0.012-0.336-0.061-0.479c-0.191-0.612-0.708-1.116-1.476-1.116c-1.007,0-1.727,0.852-1.727,2.195
		c0,1.14,0.575,2.087,1.715,2.087c0.646,0,1.234-0.408,1.463-1.079c0.06-0.18,0.084-0.384,0.084-0.564L107.963,30.059
		L107.963,30.059z"/>
</g>
<g id="x">
	<ellipse id="x_path1" fill="#E7585B" stroke="#231F20" cx="91.178" cy="60.364" rx="30.248" ry="18.21"/>
	<g>
		<path d="M89.767,58.083l0.828,1.247c0.216,0.324,0.396,0.624,0.588,0.948h0.036c0.192-0.348,0.384-0.648,0.576-0.959l0.814-1.235
			h1.141l-1.979,2.806l2.039,2.999h-1.2l-0.852-1.307c-0.229-0.336-0.419-0.66-0.624-1.008H91.11
			c-0.191,0.36-0.396,0.66-0.611,1.008l-0.839,1.307h-1.163l2.062-2.962l-1.967-2.842h1.175V58.083z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="297.174" y1="189.251" x2="297.174" y2="85.809"/>
		<polygon points="293.471,186.443 297.174,188.016 300.878,186.443 297.174,195.221 		"/>
	</g>
</g>
<g>
	<path d="M277.637,137.143c0-0.744-0.024-1.343-0.048-1.895h0.947l0.048,0.995h0.023c0.433-0.708,1.115-1.127,2.063-1.127
		c1.403,0,2.459,1.187,2.459,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.769,0-1.439-0.336-1.787-0.912h-0.024v3.154h-1.043V137.143z
		 M278.68,138.69c0,0.156,0.024,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235c1.115,0,1.764-0.911,1.764-2.243
		c0-1.163-0.611-2.159-1.728-2.159c-0.72,0-1.391,0.516-1.595,1.307c-0.036,0.132-0.072,0.288-0.072,0.432V138.69L278.68,138.69z"/>
	<path d="M283.721,140.441l2.626-3.418c0.252-0.312,0.492-0.588,0.756-0.899V136.1h-3.143v-0.852h4.426l-0.012,0.66l-2.59,3.37
		c-0.24,0.324-0.48,0.611-0.744,0.911v0.024h3.395v0.839h-4.714V140.441L283.721,140.441z"/>
</g>
<g id="y">
	<g>
		<path d="M268.274,12.296v3.382h3.91v-3.382h1.055v8.083h-1.055v-3.79h-3.91v3.79h-1.044v-8.083H268.274z"/>
		<path d="M280.272,17.43c0,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
			C279.144,14.443,280.272,15.654,280.272,17.43z M275.667,17.489c0,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.23-1.737-2.23C276.206,15.235,275.667,16.386,275.667,17.489z"/>
		<path d="M281.606,16.146c0-0.6-0.012-1.091-0.049-1.571h0.924l0.049,0.936h0.035c0.324-0.552,0.863-1.067,1.824-1.067
			c0.791,0,1.391,0.479,1.644,1.163h0.022c0.18-0.324,0.408-0.576,0.648-0.755c0.348-0.264,0.729-0.408,1.282-0.408
			c0.769,0,1.906,0.503,1.906,2.519v3.418h-1.031v-3.286c0-1.115-0.407-1.787-1.26-1.787c-0.6,0-1.065,0.444-1.246,0.959
			c-0.049,0.144-0.084,0.336-0.084,0.528v3.586h-1.03v-3.478c0-0.923-0.408-1.595-1.214-1.595c-0.657,0-1.139,0.528-1.307,1.056
			c-0.061,0.156-0.084,0.335-0.084,0.516v3.502h-1.031L281.606,16.146L281.606,16.146z"/>
		<path d="M292.202,17.669c0.022,1.427,0.936,2.015,1.989,2.015c0.757,0,1.211-0.132,1.607-0.3l0.18,0.756
			c-0.371,0.168-1.008,0.372-1.93,0.372c-1.787,0-2.855-1.187-2.855-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
			c0,0.216-0.022,0.384-0.035,0.492L292.202,17.669L292.202,17.669z M295.296,16.914c0.012-0.671-0.275-1.715-1.463-1.715
			c-1.066,0-1.535,0.983-1.619,1.715H295.296z"/>
		<path d="M302.88,17.43c0,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
			C301.751,14.443,302.88,15.654,302.88,17.43z M298.275,17.489c0,1.271,0.729,2.23,1.762,2.23c1.008,0,1.764-0.947,1.764-2.255
			c0-0.983-0.492-2.23-1.738-2.23C298.813,15.235,298.275,16.386,298.275,17.489z"/>
		<path d="M304.07,19.3c0.312,0.204,0.862,0.42,1.393,0.42c0.769,0,1.127-0.384,1.127-0.863c0-0.504-0.301-0.78-1.08-1.067
			c-1.043-0.372-1.535-0.948-1.535-1.644c0-0.935,0.757-1.703,2.005-1.703c0.588,0,1.104,0.167,1.426,0.359l-0.265,0.768
			c-0.227-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.104,0.983
			c1.008,0.384,1.523,0.888,1.523,1.751c0,1.021-0.791,1.751-2.173,1.751c-0.635,0-1.223-0.168-1.631-0.408L304.07,19.3z"/>
		<path d="M310.238,13.184v1.391h1.512v0.803h-1.512v3.13c0,0.72,0.203,1.127,0.791,1.127c0.289,0,0.457-0.024,0.61-0.072
			l0.049,0.792c-0.202,0.084-0.526,0.156-0.936,0.156c-0.492,0-0.887-0.168-1.139-0.456c-0.302-0.312-0.408-0.828-0.408-1.511
			v-3.167h-0.9v-0.803h0.9v-1.067L310.238,13.184z"/>
		<path d="M317.015,18.989c0,0.503,0.025,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.035c-0.324,0.456-0.947,0.863-1.775,0.863
			c-1.176,0-1.774-0.828-1.774-1.667c0-1.403,1.248-2.171,3.489-2.159v-0.12c0-0.479-0.131-1.343-1.317-1.343
			c-0.541,0-1.104,0.168-1.513,0.432l-0.239-0.695c0.479-0.312,1.176-0.516,1.905-0.516c1.775,0,2.207,1.211,2.207,2.375
			L317.015,18.989L317.015,18.989z M315.995,17.417c-1.15-0.024-2.457,0.18-2.457,1.307c0,0.684,0.455,1.008,0.994,1.008
			c0.756,0,1.235-0.48,1.403-0.972c0.035-0.108,0.06-0.228,0.06-0.336V17.417L315.995,17.417z"/>
		<path d="M319.945,13.184v1.391h1.512v0.803h-1.512v3.13c0,0.72,0.205,1.127,0.793,1.127c0.287,0,0.455-0.024,0.61-0.072
			l0.047,0.792c-0.202,0.084-0.526,0.156-0.936,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.067L319.945,13.184z"/>
		<path d="M323.822,12.944c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.638-0.288-0.638-0.648c0-0.372,0.277-0.66,0.66-0.66
			C323.57,12.284,323.822,12.572,323.822,12.944z M322.647,20.38v-5.805h1.055v5.805H322.647z"/>
		<path d="M329.591,20.164c-0.274,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.117-3.083
			c0.623,0,1.176,0.156,1.463,0.3l-0.24,0.815c-0.25-0.144-0.646-0.276-1.223-0.276c-1.33,0-2.052,0.984-2.052,2.195
			c0,1.343,0.863,2.171,2.017,2.171c0.6,0,0.994-0.156,1.295-0.288L329.591,20.164z"/>
		<path d="M278.954,26.804c0.636-0.096,1.392-0.168,2.219-0.168c1.5,0,2.566,0.348,3.272,1.007c0.722,0.66,1.142,1.595,1.142,2.902
			c0,1.319-0.408,2.399-1.164,3.143c-0.756,0.755-2.002,1.163-3.574,1.163c-0.744,0-1.367-0.036-1.895-0.096V26.804z
			 M279.998,33.952c0.264,0.048,0.646,0.06,1.056,0.06c2.23,0,3.441-1.247,3.441-3.43c0.012-1.907-1.068-3.118-3.273-3.118
			c-0.541,0-0.949,0.048-1.224,0.108V33.952z"/>
		<path d="M288.085,27.344c0.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.66-0.66
			C287.833,26.684,288.085,26.972,288.085,27.344z M286.911,34.78v-5.805h1.055v5.805H286.911z"/>
		<path d="M290.126,28.975l1.139,3.262c0.191,0.528,0.348,1.007,0.469,1.487h0.035c0.133-0.479,0.301-0.959,0.492-1.487l1.127-3.262
			h1.104l-2.279,5.805h-1.008L289,28.975H290.126z"/>
		<path d="M296.665,27.344c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.638-0.288-0.638-0.648c0-0.372,0.277-0.66,0.66-0.66
			C296.413,26.684,296.665,26.972,296.665,27.344z M295.49,34.78v-5.805h1.055v5.805H295.49z"/>
		<path d="M298.154,33.7c0.311,0.204,0.862,0.42,1.391,0.42c0.769,0,1.127-0.384,1.127-0.863c0-0.504-0.299-0.78-1.078-1.068
			c-1.045-0.372-1.535-0.947-1.535-1.643c0-0.935,0.757-1.703,2.002-1.703c0.589,0,1.104,0.167,1.429,0.359l-0.265,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.102,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.223-0.168-1.631-0.408L298.154,33.7z"/>
		<path d="M304.224,27.344c0.013,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.635-0.288-0.635-0.648c0-0.372,0.275-0.66,0.66-0.66
			C303.972,26.684,304.224,26.972,304.224,27.344z M303.05,34.78v-5.805h1.056v5.805H303.05z"/>
		<path d="M311.111,31.83c0,2.146-1.488,3.082-2.892,3.082c-1.571,0-2.783-1.151-2.783-2.986c0-1.943,1.271-3.082,2.88-3.082
			C309.982,28.843,311.111,30.054,311.111,31.83z M306.505,31.889c0,1.271,0.73,2.231,1.762,2.231c1.009,0,1.765-0.947,1.765-2.255
			c0-0.983-0.492-2.23-1.738-2.23C307.044,29.635,306.505,30.786,306.505,31.889z"/>
		<path d="M312.445,30.546c0-0.6-0.013-1.091-0.05-1.571h0.937l0.061,0.959h0.023c0.289-0.552,0.961-1.091,1.92-1.091
			c0.803,0,2.051,0.479,2.051,2.47v3.466h-1.055v-3.346c0-0.936-0.35-1.715-1.344-1.715c-0.695,0-1.236,0.492-1.416,1.079
			c-0.047,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V30.546L312.445,30.546z"/>
	</g>
	<ellipse id="y_path1" fill="#57B6DD" stroke="#231F20" cx="298.137" cy="60.558" rx="30.248" ry="18.21"/>
	<g>
		<path d="M296.149,58.274l1.271,3.43c0.131,0.384,0.274,0.839,0.371,1.187h0.024c0.107-0.348,0.228-0.792,0.371-1.211l1.15-3.406
			h1.117l-1.584,4.138c-0.756,1.991-1.271,3.01-1.99,3.634c-0.517,0.456-1.031,0.636-1.297,0.684l-0.265-0.887
			c0.265-0.084,0.611-0.252,0.925-0.516c0.289-0.228,0.647-0.635,0.889-1.175c0.047-0.108,0.084-0.192,0.084-0.251
			c0-0.06-0.025-0.144-0.072-0.276l-2.146-5.349h1.15V58.274z"/>
	</g>
</g>
<g>
	<path d="M279.063,247.583v8.084h-1.044v-8.084H279.063z"/>
	<path d="M280.972,251.434c0-0.601-0.013-1.093-0.049-1.572h0.936l0.062,0.959h0.022c0.288-0.551,0.96-1.09,1.919-1.09
		c0.805,0,2.052,0.479,2.052,2.471v3.466h-1.056v-3.347c0-0.936-0.348-1.715-1.344-1.715c-0.695,0-1.235,0.492-1.415,1.08
		c-0.048,0.131-0.072,0.312-0.072,0.49v3.49h-1.055V251.434L280.972,251.434z"/>
	<path d="M287.74,255.667v-5.001h-0.815v-0.805h0.815v-0.275c0-0.814,0.18-1.559,0.672-2.025c0.396-0.385,0.923-0.541,1.415-0.541
		c0.372,0,0.694,0.084,0.898,0.168l-0.144,0.815c-0.156-0.071-0.372-0.132-0.672-0.132c-0.899,0-1.127,0.792-1.127,1.68v0.312h1.401
		v0.804h-1.401v5.001L287.74,255.667L287.74,255.667z"/>
	<path d="M291.566,252.956c0.024,1.428,0.937,2.017,1.991,2.017c0.756,0,1.211-0.133,1.607-0.301l0.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.131,2.724-3.131c1.895,0,2.397,1.668,2.397,2.734
		c0,0.217-0.023,0.385-0.036,0.491H291.566z M294.661,252.201c0.012-0.672-0.276-1.717-1.463-1.717
		c-1.067,0-1.535,0.984-1.619,1.717H294.661z"/>
	<path d="M301.129,255.451c-0.276,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.975c0-1.787,1.224-3.082,3.119-3.082
		c0.622,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.251-0.145-0.647-0.275-1.223-0.275c-1.331,0-2.052,0.982-2.052,2.193
		c0,1.345,0.863,2.172,2.016,2.172c0.6,0,0.995-0.156,1.295-0.288L301.129,255.451z"/>
	<path d="M303.794,248.47v1.392h1.512v0.805h-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.511v-3.166
		h-0.898v-0.805h0.898v-1.066L303.794,248.47z"/>
	<path d="M307.01,252.956c0.024,1.428,0.937,2.017,1.991,2.017c0.756,0,1.211-0.133,1.607-0.301l0.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.131,2.723-3.131c1.896,0,2.398,1.668,2.398,2.734
		c0,0.217-0.024,0.385-0.036,0.491H307.01z M310.104,252.201c0.013-0.672-0.275-1.717-1.463-1.717c-1.066,0-1.534,0.984-1.618,1.717
		H310.104z"/>
	<path d="M317.448,247.15v7.018c0,0.516,0.012,1.104,0.048,1.499h-0.947l-0.048-1.008h-0.024c-0.322,0.647-1.03,1.14-1.979,1.14
		c-1.403,0-2.482-1.188-2.482-2.949c-0.013-1.932,1.188-3.119,2.604-3.119c0.888,0,1.487,0.42,1.751,0.889h0.022v-3.467h1.056
		V247.15z M316.392,252.225c0-0.133-0.012-0.312-0.048-0.443c-0.154-0.672-0.73-1.225-1.522-1.225c-1.091,0-1.738,0.961-1.738,2.243
		c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.467,1.547-1.258c0.036-0.146,0.048-0.289,0.048-0.457L316.392,252.225
		L316.392,252.225z"/>
</g>
<g id="z">
	<ellipse id="z_path1" fill="#AC5DAA" stroke="#231F20" cx="297.769" cy="220.558" rx="30.248" ry="18.21"/>
	<g>
		<path fill="#231F20" d="M295.417,223.467l2.627-3.418c0.252-0.312,0.49-0.588,0.754-0.9v-0.022h-3.141v-0.853h4.424l-0.012,0.66
			l-2.591,3.369c-0.239,0.324-0.479,0.611-0.744,0.912v0.023h3.396v0.84h-4.713V223.467L295.417,223.467z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="247.001" y1="219.725" x2="136" y2="219.725"/>
		<polygon points="244.192,223.427 245.765,219.725 244.192,216.02 252.97,219.725 		"/>
	</g>
</g>
<g>
	<g>
		<path d="M41.805,48.277c-0.156-0.152-0.324-0.297-0.504-0.434c-0.574-0.441-0.945-0.782-1.113-1.022
			c-0.168-0.24-0.252-0.464-0.252-0.671c0-0.305,0.146-0.572,0.439-0.803s0.758-0.346,1.395-0.346c0.738,0,1.314,0.141,1.729,0.422
			c0.258,0.176,0.387,0.385,0.387,0.627c0,0.133-0.048,0.246-0.144,0.34c-0.097,0.094-0.217,0.141-0.36,0.141
			c-0.086,0-0.162-0.021-0.229-0.059c-0.098-0.059-0.267-0.219-0.507-0.48c-0.24-0.261-0.431-0.428-0.57-0.498
			c-0.185-0.09-0.4-0.135-0.65-0.135c-0.348,0-0.614,0.075-0.8,0.226c-0.187,0.151-0.278,0.315-0.278,0.495
			c0,0.172,0.104,0.364,0.312,0.577c0.207,0.213,0.666,0.532,1.377,0.958c0.901,0.535,1.514,1.033,1.834,1.494
			c0.319,0.461,0.479,0.965,0.479,1.512c0,0.801-0.271,1.483-0.816,2.048c-0.546,0.565-1.188,0.847-1.932,0.847
			c-0.672,0-1.234-0.234-1.689-0.703s-0.684-1.047-0.684-1.734c0-0.41,0.092-0.812,0.275-1.204c0.183-0.392,0.459-0.716,0.826-0.97
			C40.696,48.651,41.188,48.441,41.805,48.277z M42.116,48.559c-0.609,0.102-1.067,0.343-1.374,0.724
			c-0.308,0.381-0.46,0.929-0.46,1.644c0,0.715,0.151,1.259,0.456,1.632c0.306,0.373,0.656,0.56,1.056,0.56
			c0.479,0,0.855-0.195,1.128-0.586c0.271-0.391,0.407-0.887,0.407-1.488c0-0.324-0.046-0.629-0.139-0.914
			c-0.092-0.285-0.204-0.521-0.337-0.709C42.752,49.279,42.506,48.992,42.116,48.559z"/>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="22.667" y1="59.057" x2="53.335" y2="59.057"/>
			<polygon points="25.476,55.354 23.903,59.057 25.476,62.761 16.698,59.057 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<path d="M351.66,47.966v3.533c0,0.469,0.021,0.797,0.063,0.984c0.035,0.133,0.089,0.229,0.158,0.287
			c0.07,0.058,0.146,0.088,0.224,0.088c0.098,0,0.188-0.049,0.271-0.146c0.084-0.097,0.146-0.291,0.185-0.58h0.24
			c-0.065,0.523-0.194,0.885-0.387,1.084c-0.192,0.199-0.434,0.299-0.728,0.299c-0.288,0-0.52-0.088-0.69-0.264
			s-0.275-0.48-0.312-0.914c-0.397,0.441-0.775,0.749-1.134,0.923c-0.357,0.174-0.667,0.261-0.929,0.261
			c-0.176,0-0.348-0.034-0.516-0.103s-0.332-0.169-0.492-0.302c-0.008,0.566,0.041,1.061,0.146,1.482
			c0.074,0.301,0.111,0.512,0.111,0.633c0,0.211-0.054,0.379-0.161,0.504s-0.229,0.188-0.366,0.188
			c-0.141,0-0.256-0.055-0.346-0.164c-0.121-0.148-0.182-0.334-0.182-0.557c0-0.109,0.022-0.246,0.069-0.41
			c0.109-0.367,0.179-0.688,0.205-0.961c0.047-0.469,0.07-0.867,0.07-1.195v-4.67h0.983v3.381c0,0.398,0.033,0.686,0.101,0.861
			c0.066,0.175,0.186,0.314,0.356,0.416c0.172,0.102,0.345,0.152,0.517,0.152c0.203,0,0.442-0.061,0.721-0.182
			c0.278-0.121,0.56-0.316,0.844-0.586v-4.043L351.66,47.966L351.66,47.966z"/>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="368.335" y1="59.057" x2="337.667" y2="59.057"/>
			<polygon points="365.527,62.76 367.099,59.057 365.527,55.353 374.304,59.057 			"/>
		</g>
	</g>
</g>
<g>
	<path d="M349.377,207.527l1.14,3.264c0.191,0.527,0.349,1.007,0.469,1.486h0.036c0.132-0.479,0.3-0.959,0.49-1.486l1.128-3.264
		h1.104l-2.278,5.806h-1.008l-2.206-5.806H349.377z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="368.335" y1="219.057" x2="337.667" y2="219.057"/>
		<polygon points="365.527,222.76 367.099,219.057 365.527,215.354 374.304,219.057 		"/>
	</g>
</g>
<g>
	<path d="M187.269,207.061c0-0.744-0.023-1.344-0.048-1.896h0.947l0.048,0.996h0.024c0.432-0.708,1.114-1.127,2.062-1.127
		c1.403,0,2.459,1.187,2.459,2.949c0,2.088-1.271,3.119-2.639,3.119c-0.769,0-1.439-0.336-1.787-0.912h-0.024v3.153h-1.043V207.061
		L187.269,207.061z M188.313,208.607c0,0.156,0.024,0.3,0.048,0.432c0.192,0.73,0.828,1.234,1.583,1.234
		c1.115,0,1.764-0.91,1.764-2.241c0-1.164-0.611-2.159-1.728-2.159c-0.72,0-1.391,0.516-1.595,1.309
		c-0.036,0.131-0.072,0.286-0.072,0.432V208.607L188.313,208.607z"/>
	<path d="M193.353,210.357l2.626-3.418c0.252-0.312,0.492-0.588,0.756-0.898v-0.023h-3.143v-0.853h4.426l-0.012,0.66l-2.59,3.37
		c-0.24,0.322-0.48,0.611-0.744,0.91v0.024h3.394v0.839h-4.713V210.357z"/>
</g>
<g id="w">
	<ellipse id="w_path1" fill="#40AE74" stroke="#231F20" cx="91.178" cy="220.558" rx="30.248" ry="18.21"/>
	<g>
		<path d="M88.057,218.273l0.769,2.951c0.168,0.646,0.323,1.246,0.432,1.846h0.036c0.132-0.586,0.324-1.211,0.516-1.846l0.947-2.951
			h0.888l0.899,2.902c0.216,0.695,0.384,1.309,0.516,1.895h0.036c0.096-0.586,0.252-1.198,0.444-1.883l0.828-2.914h1.043
			l-1.871,5.806H92.58l-0.889-2.771c-0.204-0.647-0.372-1.225-0.516-1.908h-0.024c-0.144,0.697-0.323,1.297-0.527,1.92l-0.937,2.759
			h-0.959l-1.751-5.806H88.057L88.057,218.273z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<g>
				<line fill="none" stroke="#000000" x1="88.15" y1="188.73" x2="88.15" y2="87.274"/>
				<polygon points="84.447,185.923 88.15,187.496 91.854,185.923 88.15,194.701 				"/>
			</g>
		</g>
		<g>
			<g>
				<line fill="none" stroke="#000000" x1="94.229" y1="92.502" x2="94.229" y2="194"/>
				<polygon points="97.932,95.311 94.229,93.738 90.524,95.311 94.229,86.533 				"/>
			</g>
		</g>
	</g>
</g>
<g>
	<path d="M107.289,135.686h0.979c-0.062,0.141-0.385,0.809-0.967,2.004c-0.242,0.5-0.416,0.879-0.521,1.137
		c-0.047,0.105-0.1,0.221-0.157,0.346l-0.675,1.441c0.027,0.25,0.048,0.479,0.06,0.691c0.012,0.211,0.018,0.402,0.018,0.574
		c0,0.531-0.039,0.941-0.116,1.23c-0.056,0.203-0.128,0.343-0.218,0.419c-0.09,0.076-0.188,0.114-0.293,0.114
		c-0.129,0-0.243-0.055-0.343-0.164s-0.149-0.25-0.149-0.422c0-0.301,0.062-0.647,0.183-1.04s0.301-0.833,0.539-1.321
		c-0.285-2-0.514-3.207-0.684-3.621c-0.17-0.414-0.404-0.621-0.706-0.621c-0.184,0-0.327,0.056-0.434,0.167
		c-0.106,0.111-0.186,0.362-0.24,0.753h-0.229c-0.004-0.117-0.006-0.205-0.006-0.264c0-0.539,0.104-0.945,0.315-1.219
		c0.16-0.203,0.375-0.305,0.646-0.305c0.233,0,0.426,0.07,0.573,0.211c0.203,0.199,0.386,0.633,0.546,1.301
		c0.202,0.867,0.36,1.811,0.475,2.83l0.516-1.74C106.628,137.406,106.925,136.572,107.289,135.686z"/>
	<path d="M108.807,141.053v-0.646l0.828-0.804c1.991-1.895,2.891-2.902,2.902-4.078c0-0.792-0.385-1.523-1.547-1.523
		c-0.708,0-1.296,0.36-1.655,0.66l-0.336-0.744c0.54-0.456,1.308-0.792,2.207-0.792c1.679,0,2.387,1.151,2.387,2.267
		c0,1.439-1.043,2.603-2.687,4.186l-0.624,0.576v0.024h3.502v0.875H108.807z"/>
</g>
<g>
	<path d="M72.954,139.662c0,0.503,0.023,0.995,0.096,1.391h-0.96l-0.084-0.73H71.97c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.133-1.343-1.319-1.343
		c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.695c0.479-0.312,1.176-0.516,1.907-0.516c1.774,0,2.207,1.211,2.207,2.375V139.662z
		 M71.935,138.09c-1.15-0.024-2.459,0.18-2.459,1.307c0,0.684,0.456,1.008,0.996,1.008c0.755,0,1.235-0.48,1.403-0.972
		c0.036-0.108,0.06-0.228,0.06-0.336V138.09z"/>
	<path d="M77.73,133.245l-1.139,1.499v0.024l1.811-0.24v0.815l-1.811-0.216v0.024l1.151,1.439l-0.757,0.432l-0.72-1.679h-0.023
		l-0.779,1.691l-0.685-0.432l1.14-1.463v-0.024l-1.775,0.228v-0.815l1.764,0.228v-0.024l-1.128-1.463l0.731-0.42l0.744,1.667h0.023
		l0.731-1.679L77.73,133.245z"/>
</g>
<g>
	<g>
		<path d="M39.778,207.967h0.979c-0.063,0.141-0.385,0.809-0.967,2.004c-0.242,0.5-0.416,0.879-0.521,1.137
			c-0.047,0.105-0.1,0.222-0.158,0.347l-0.674,1.44c0.027,0.25,0.047,0.48,0.06,0.691c0.012,0.211,0.018,0.402,0.018,0.574
			c0,0.531-0.039,0.941-0.117,1.23c-0.055,0.202-0.127,0.342-0.217,0.418c-0.09,0.075-0.188,0.114-0.293,0.114
			c-0.129,0-0.243-0.055-0.343-0.164c-0.101-0.108-0.149-0.25-0.149-0.422c0-0.301,0.062-0.647,0.183-1.041s0.301-0.832,0.539-1.319
			c-0.285-2-0.514-3.207-0.684-3.621s-0.405-0.621-0.706-0.621c-0.184,0-0.328,0.055-0.434,0.166
			c-0.106,0.11-0.187,0.362-0.24,0.754h-0.229c-0.005-0.117-0.007-0.205-0.007-0.264c0-0.539,0.105-0.945,0.316-1.22
			c0.16-0.203,0.375-0.305,0.645-0.305c0.234,0,0.427,0.069,0.574,0.211c0.203,0.198,0.385,0.633,0.545,1.301
			c0.203,0.867,0.361,1.812,0.476,2.83l0.516-1.74C39.118,209.688,39.415,208.854,39.778,207.967z"/>
		<path d="M43.587,206.521h-0.024l-1.354,0.731l-0.204-0.804l1.703-0.912h0.899v7.797h-1.02V206.521z"/>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="22.667" y1="219.057" x2="53.335" y2="219.057"/>
			<polygon points="25.476,215.354 23.903,219.057 25.476,222.761 16.698,219.057 			"/>
		</g>
	</g>
</g>
<g>
	<path d="M71.478,246.583v8.084h-1.043v-8.084H71.478z"/>
	<path d="M73.387,250.434c0-0.601-0.012-1.093-0.048-1.572h0.923l0.048,0.937h0.036c0.324-0.552,0.864-1.067,1.823-1.067
		c0.792,0,1.391,0.479,1.643,1.164h0.024c0.18-0.324,0.408-0.576,0.646-0.756c0.349-0.265,0.731-0.408,1.283-0.408
		c0.769,0,1.907,0.504,1.907,2.52v3.418h-1.032v-3.286c0-1.114-0.408-1.787-1.259-1.787c-0.6,0-1.067,0.443-1.247,0.96
		c-0.048,0.145-0.084,0.336-0.084,0.527v3.586h-1.032v-3.479c0-0.924-0.408-1.596-1.211-1.596c-0.66,0-1.14,0.527-1.308,1.057
		c-0.061,0.154-0.084,0.336-0.084,0.516v3.502h-1.031v-4.234H73.387z"/>
	<path d="M83.395,250.434c0-0.601-0.012-1.093-0.048-1.572h0.923l0.048,0.937h0.036c0.324-0.552,0.864-1.067,1.823-1.067
		c0.792,0,1.391,0.479,1.643,1.164h0.024c0.18-0.324,0.408-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.52v3.418H90.65v-3.286c0-1.114-0.407-1.787-1.259-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.527v3.586h-1.032v-3.479c0-0.924-0.407-1.596-1.211-1.596c-0.659,0-1.14,0.527-1.308,1.057
		c-0.06,0.154-0.084,0.336-0.084,0.516v3.502h-1.031L83.395,250.434L83.395,250.434z"/>
	<path d="M98.26,253.083c0,0.601,0.012,1.127,0.048,1.583h-0.936l-0.061-0.947h-0.023c-0.276,0.469-0.888,1.079-1.919,1.079
		c-0.911,0-2.003-0.504-2.003-2.543v-3.394h1.056v3.214c0,1.104,0.336,1.848,1.295,1.848c0.708,0,1.199-0.491,1.391-0.96
		c0.061-0.156,0.097-0.348,0.097-0.54v-3.562h1.056V253.083z"/>
	<path d="M100.014,250.434c0-0.601-0.012-1.093-0.048-1.572h0.936l0.061,0.959h0.023c0.288-0.551,0.959-1.09,1.919-1.09
		c0.804,0,2.052,0.479,2.052,2.471v3.466H103.9v-3.347c0-0.936-0.348-1.715-1.343-1.715c-0.695,0-1.235,0.492-1.415,1.08
		c-0.048,0.131-0.072,0.312-0.072,0.49v3.49h-1.056V250.434z"/>
	<path d="M107.262,251.956c0.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.131c1.896,0,2.399,1.668,2.399,2.734
		c0,0.217-0.024,0.385-0.036,0.491H107.262z M110.356,251.201c0.013-0.672-0.275-1.717-1.463-1.717
		c-1.066,0-1.535,0.984-1.619,1.717H110.356z"/>
	<path d="M69.06,266.523l-0.839,2.543h-1.08l2.747-8.084h1.259l2.758,8.084H72.79l-0.863-2.543H69.06L69.06,266.523z M71.71,265.708
		l-0.792-2.326c-0.181-0.528-0.3-1.008-0.419-1.476h-0.024c-0.12,0.479-0.251,0.972-0.408,1.463l-0.792,2.339H71.71z"/>
	<path d="M79.055,268.852c-0.276,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.975c0-1.787,1.224-3.082,3.119-3.082
		c0.624,0,1.175,0.155,1.463,0.299l-0.24,0.815c-0.252-0.144-0.647-0.274-1.223-0.274c-1.332,0-2.052,0.982-2.052,2.193
		c0,1.344,0.864,2.172,2.016,2.172c0.6,0,0.996-0.156,1.295-0.289L79.055,268.852z"/>
	<path d="M81.72,261.871v1.393h1.511v0.803H81.72v3.131c0,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.204,0.084-0.528,0.156-0.937,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.827-0.408-1.512v-3.166
		h-0.898v-0.803h0.898v-1.067L81.72,261.871z"/>
	<path d="M85.596,261.631c0.012,0.359-0.252,0.646-0.671,0.646c-0.372,0-0.636-0.287-0.636-0.646c0-0.372,0.275-0.66,0.66-0.66
		C85.344,260.971,85.596,261.259,85.596,261.631z M84.42,269.066v-5.805h1.056v5.805H84.42z"/>
	<path d="M87.636,263.262l1.14,3.262c0.192,0.528,0.349,1.009,0.469,1.487h0.035c0.133-0.479,0.301-0.959,0.492-1.487l1.127-3.262
		h1.104l-2.279,5.805h-1.007l-2.207-5.805H87.636z"/>
	<path d="M97.03,267.675c0,0.504,0.024,0.996,0.097,1.392h-0.959l-0.084-0.73h-0.036c-0.324,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.489-2.159v-0.119c0-0.48-0.132-1.344-1.318-1.344
		c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.695c0.479-0.312,1.175-0.516,1.907-0.516c1.774,0,2.206,1.211,2.206,2.374L97.03,267.675
		L97.03,267.675z M96.011,266.105c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.235-0.479,1.403-0.972c0.035-0.107,0.06-0.228,0.06-0.336L96.011,266.105L96.011,266.105z"/>
	<path d="M99.96,261.871v1.393h1.511v0.803H99.96v3.131c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.61-0.072l0.049,0.791
		c-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.827-0.408-1.512v-3.166h-0.899v-0.803
		h0.899v-1.067L99.96,261.871z"/>
	<path d="M103.176,266.355c0.024,1.429,0.935,2.017,1.991,2.017c0.755,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.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.49H103.176L103.176,266.355z M106.271,265.602c0.013-0.672-0.275-1.717-1.463-1.717
		c-1.066,0-1.535,0.984-1.619,1.717H106.271z"/>
	<path d="M113.613,260.551v7.018c0,0.516,0.013,1.104,0.049,1.498h-0.947l-0.048-1.008h-0.024c-0.324,0.648-1.032,1.141-1.979,1.141
		c-1.403,0-2.483-1.188-2.483-2.95c-0.012-1.931,1.188-3.118,2.604-3.118c0.888,0,1.486,0.42,1.751,0.889h0.023v-3.468
		L113.613,260.551L113.613,260.551z M112.558,265.625c0-0.132-0.012-0.312-0.048-0.443c-0.156-0.672-0.731-1.224-1.523-1.224
		c-1.091,0-1.738,0.96-1.738,2.243c0,1.175,0.576,2.146,1.715,2.146c0.708,0,1.354-0.469,1.547-1.26
		c0.036-0.145,0.048-0.288,0.048-0.456V265.625z"/>
</g>
</svg>
</window>