Location: Aguda, Tang, 1999 @ d080a1693583 / aguda_tang_1999.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2010-07-02 09:36:06+12:00
Desc:
Made new xul and tidied session file
Permanent Source URI:
https://staging.physiomeproject.org/workspace/aguda_tang_1999/rawfile/d080a16935831627a94ab836ea65c29f6f2d3316/aguda_tang_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()"
>
  <script>
<![CDATA[
window.model_entities =
  {
			a_CyclinE_Cdk2: 

			{	id: "a_CyclinE_Cdk2",
				y: 'a_CyclinE_Cdk2/a_CyclinE_Cdk2', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},

			CycE_Cdk2_p27: 

			{	id: "CycE_Cdk2_p27",
				y: 'CycE_Cdk2_p27/CycE_Cdk2_p27', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},

			CycD_Cdk4_p27: 

			{	id: "CycD_Cdk4_p27",
				y: 'CycD_Cdk4_p27/CycD_Cdk4_p27', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},

			i_CyclinE_Cdk2: 

			{	id: "i_CyclinE_Cdk2",
				y: 'i_CyclinE_Cdk2/i_CyclinE_Cdk2', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},

			p27: 

			{	id: "p27",
				y: 'p27/p27', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},

			CycD_Cdk4: 

			{	id: "CycD_Cdk4",
				y: 'CycD_Cdk4/CycD_Cdk4', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},
			
			pRB_P: 

			{	id: "pRB_P",
				y: 'pRB_P/pRB_P', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},
			
			pRB_E2F: 

			{	id: "pRB_E2F",
				y: 'pRB_E2F/pRB_E2F', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},
			
			p16: 

			{	id: "p16",
				y: 'p16/p16', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},
			
			pRB: 

			{	id: "pRB",
				y: 'pRB/pRB', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			},
			
			E2F: 

			{	id: "E2F",
				y: 'E2F/E2F', 
				x: 'environment/time', 
				graph: 'Graph of protein levels using the set of parameters that reproduces figure 5b of the published paper', 
				linestyle: 'none'
			}
   
};

function flushVisibilityInformation()
{
  var i;
  var message = "Displaying flux of ";
  if(pcenv != null)
  {
    for (i in window.model_entities)
    {
      pcenv.selectTrace(window.model_entities[i].graph,
                        window.model_entities[i].x,
                        window.model_entities[i].y,
                        '',
                        window.model_entities[i].linestyle);
      if (window.model_entities[i].linestyle != "none")
        message += i +", ";
    }
    message = message.slice(0, -2);
    if (message != "Displaying flux o")
      pcenv.status(message);
    else
      pcenv.status("No fluxes displayed.");
  }
}

function processSelectEntity(event)
{
  pcenv.status("In processSelectEntity");

  var name = window.svgIdToName[event.currentTarget.id];

  if (window.model_entities[name].linestyle == "none")
    window.model_entities[name].linestyle = "lines";
  else
    window.model_entities[name].linestyle = "none";

  flushVisibilityInformation();
}

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

  var name = window.svgIdToName[event.currentTarget.id];
  
  if (window.model_entities[name].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 window.model_entities[name].context)
  {
    var item = window.model_entities[name].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 setupDocument()
{
  flushVisibilityInformation();

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

  window.svgIdToName = {};

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

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

    svg.addEventListener("click", processSelectEntity, false);
    svg.addEventListener("contextmenu", processContext, false);
  }
}

]]>
  </script>

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

<svg
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   version="1.1"
   id="aguda_1999"
   width="382.974"
   height="292.698"
   overflow="visible"
   xml:space="preserve">

<metadata
   id="aguda_1999">
<rdf:RDF><cc:Work
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
   id="aguda_1999" />
   
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<!--svg
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   version="1.0"
   width="382.974"
   height="292.698"
   viewBox="0 0 382.974 292.698"
   id="Layer_1"
   xml:space="preserve"><defs
   id="defs1418" /-->
<pattern
   overflow="visible"
   viewBox="2.125 -70.896 69 69"
   id="Polka_Dot_Pattern"
   patternUnits="userSpaceOnUse"
   height="69"
   width="69"
   y="707.781"
   x="-134.05">
	<g
   id="g4">
		<polygon
   id="polygon6"
   points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   "
   fill="none" />
		<polygon
   id="polygon8"
   points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   "
   fill="#F6BB60" />
		<g
   id="g10">
			<path
   id="path12"
   d="M61.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path14"
   d="M54.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path16"
   d="M46.439-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path18"
   d="M38.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path20"
   d="M31.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path22"
   d="M23.439-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path24"
   d="M15.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path26"
   d="M8.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path28"
   d="M0.439-71.653c0.018,0.072,0.008,0.127-0.026,0.19C0.361-71.362,0.3-71.4,0.248-71.335     c-0.051,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
		</g>
		<g
   id="g30">
			<path
   id="path32"
   d="M69.439-71.653c0.018,0.072,0.008,0.127-0.026,0.19c-0.052,0.101-0.113,0.063-0.165,0.128     c-0.051,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
		</g>
		<path
   id="path34"
   d="M0.495-71.653c0.018,0.072,0.008,0.127-0.026,0.19c-0.052,0.101-0.113,0.063-0.165,0.128    c-0.051,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161    c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631    c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45    c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221    c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337    c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207    c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224C0.5-71.68,0.503-71.744,0.51-71.626    c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
		<g
   id="g36">
			<g
   id="g38">
				<path
   id="path40"
   d="M69.439-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path42"
   d="M61.778-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path44"
   d="M54.118-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path46"
   d="M46.458-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path48"
   d="M38.797-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path50"
   d="M31.137-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path52"
   d="M23.477-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path54"
   d="M15.816-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path56"
   d="M8.156-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path58"
   d="M0.495-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143C2-61.45,2.217-61.397,2.391-61.46c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
			<g
   id="g60">
				<path
   id="path62"
   d="M69.439-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path64"
   d="M61.778-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path66"
   d="M54.118-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path68"
   d="M46.458-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path70"
   d="M38.797-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path72"
   d="M31.137-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path74"
   d="M23.477-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path76"
   d="M15.816-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path78"
   d="M8.156-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path80"
   d="M0.495-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-56.374,0.503-56.438,0.51-56.32      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
			<g
   id="g82">
				<path
   id="path84"
   d="M69.439-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path86"
   d="M61.778-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path88"
   d="M54.118-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path90"
   d="M46.458-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path92"
   d="M38.797-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path94"
   d="M31.137-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path96"
   d="M23.477-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path98"
   d="M15.816-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path100"
   d="M8.156-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path102"
   d="M0.495-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
			<g
   id="g104">
				<path
   id="path106"
   d="M69.439-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path108"
   d="M61.778-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path110"
   d="M54.118-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path112"
   d="M46.458-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path114"
   d="M38.797-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path116"
   d="M31.137-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path118"
   d="M23.477-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path120"
   d="M15.816-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path122"
   d="M8.156-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      C8.15-41.004,8.149-41.02,8.14-41.04"
   fill="#FFFFFF" />
				<path
   id="path124"
   d="M0.495-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
			<g
   id="g126">
				<path
   id="path128"
   d="M69.439-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path130"
   d="M61.778-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path132"
   d="M54.118-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path134"
   d="M46.458-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path136"
   d="M38.797-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path138"
   d="M31.137-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path140"
   d="M23.477-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path142"
   d="M15.816-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path144"
   d="M8.156-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path146"
   d="M0.495-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-33.416,0.503-33.48,0.51-33.362      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
			<g
   id="g148">
				<path
   id="path150"
   d="M69.439-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path152"
   d="M61.778-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path154"
   d="M54.118-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path156"
   d="M46.458-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path158"
   d="M38.797-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path160"
   d="M31.137-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path162"
   d="M23.477-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path164"
   d="M15.816-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path166"
   d="M8.156-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path168"
   d="M0.495-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
			<g
   id="g170">
				<path
   id="path172"
   d="M69.439-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path174"
   d="M61.778-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path176"
   d="M54.118-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path178"
   d="M46.458-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path180"
   d="M38.797-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path182"
   d="M31.137-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path184"
   d="M23.477-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path186"
   d="M15.816-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path188"
   d="M8.156-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path190"
   d="M0.495-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-18.11,0.503-18.175,0.51-18.057      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
			<g
   id="g192">
				<path
   id="path194"
   d="M69.439-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362C69-9.692,69.159-9.523,69.154-9.4c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path196"
   d="M61.778-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path198"
   d="M54.118-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path200"
   d="M46.458-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path202"
   d="M38.797-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path204"
   d="M31.137-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path206"
   d="M23.477-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path208"
   d="M15.816-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053C17.933-7.969,17.839-8.227,18-8.34      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path210"
   d="M8.156-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      C7.915-10.05,7.866-9.836,7.886-9.75C7.717-9.692,7.876-9.523,7.871-9.4C7.868-9.351,7.83-9.295,7.826-9.239      c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631      C9.114-7.652,9.321-7.799,9.48-7.837c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
				<path
   id="path212"
   d="M0.495-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128      C0.254-10.05,0.205-9.836,0.225-9.75C0.056-9.692,0.215-9.523,0.21-9.4c-0.002,0.05-0.041,0.105-0.045,0.161      c-0.01,0.119,0.017,0.266,0.068,0.37C0.33-8.671,0.501-8.456,0.668-8.325c0.19,0.148,0.365,0.572,0.608,0.631      C1.454-7.652,1.66-7.799,1.819-7.837C2-7.88,2.217-7.827,2.391-7.89c0.222-0.079,0.127-0.337,0.288-0.45      c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46C3.477-8.933,3.471-8.995,3.5-9.071      c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337      c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207      c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169      c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			</g>
		</g>
		<g
   id="g214">
			<path
   id="path216"
   d="M69.439-2.778c0.018,0.072,0.008,0.127-0.026,0.19C69.361-2.487,69.3-2.525,69.248-2.46     c-0.051,0.063-0.099,0.276-0.079,0.362C69-2.04,69.159-1.871,69.154-1.748c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C70.397,0,70.604-0.146,70.763-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path218"
   d="M61.778-2.778c0.018,0.072,0.007,0.127-0.026,0.19C61.7-2.487,61.64-2.525,61.587-2.46     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C62.737,0,62.943-0.146,63.103-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C61.915-3.117,61.78-3.02,61.781-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path220"
   d="M54.118-2.778c0.018,0.072,0.007,0.127-0.026,0.19C54.04-2.487,53.98-2.525,53.927-2.46     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C55.077,0,55.283-0.146,55.442-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C54.255-3.117,54.12-3.02,54.121-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path222"
   d="M46.458-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C47.416,0,47.623-0.146,47.782-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C46.594-3.117,46.459-3.02,46.46-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path224"
   d="M38.797-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C39.756,0,39.962-0.146,40.122-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C38.934-3.117,38.799-3.02,38.8-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path226"
   d="M31.137-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C32.095,0,32.302-0.146,32.461-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224C31.273-3.117,31.139-3.02,31.14-2.92c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path228"
   d="M23.477-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C24.435,0,24.642-0.146,24.801-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     c-0.021,0.011-0.021-0.005-0.03-0.025"
   fill="#FFFFFF" />
			<path
   id="path230"
   d="M15.816-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C16.774,0,16.981-0.146,17.14-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207     c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169     C15.81-2.74,15.809-2.756,15.8-2.776"
   fill="#FFFFFF" />
			<path
   id="path232"
   d="M8.156-2.778c0.018,0.072,0.007,0.127-0.026,0.19C8.077-2.487,8.018-2.525,7.965-2.46     c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35C7.868-1.698,7.83-1.643,7.826-1.587     c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631     C9.114,0,9.321-0.146,9.48-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221     c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789C8.954-3.54,8.847-3.448,8.692-3.367     c-0.17,0.088-0.139,0.166-0.318,0.224C8.292-3.117,8.158-3.02,8.159-2.92C8.16-2.805,8.164-2.869,8.17-2.751     C8.15-2.74,8.149-2.756,8.14-2.776"
   fill="#FFFFFF" />
			<path
   id="path234"
   d="M0.495-2.778c0.018,0.072,0.008,0.127-0.026,0.19C0.417-2.487,0.356-2.525,0.304-2.46     C0.253-2.397,0.205-2.184,0.225-2.098C0.056-2.04,0.215-1.871,0.21-1.748c-0.002,0.05-0.041,0.105-0.045,0.161     c-0.01,0.119,0.017,0.266,0.068,0.37C0.33-1.019,0.501-0.804,0.668-0.673c0.19,0.148,0.365,0.572,0.608,0.631     C1.454,0,1.66-0.146,1.819-0.185C2-0.228,2.217-0.175,2.391-0.237c0.222-0.079,0.127-0.337,0.288-0.45     c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46C3.477-1.28,3.471-1.343,3.5-1.419     c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337     c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789C1.293-3.54,1.187-3.448,1.031-3.367     c-0.17,0.088-0.139,0.166-0.318,0.224C0.632-3.117,0.498-3.02,0.498-2.92C0.5-2.805,0.503-2.869,0.51-2.751     C0.489-2.74,0.488-2.756,0.479-2.776"
   fill="#FFFFFF" />
		</g>
	</g>
</pattern>
<g
   id="g236">
	<g
   id="g238">
		<g
   id="pRB_E2F">
			<g
   id="g3355">
				
					<radialGradient
   cx="-266.94781"
   cy="476.94241"
   r="14.7098"
   id="path32439_3_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,330.6191,695.2441)">
					<stop
   id="stop244"
   style="stop-color:#add153;stop-opacity:1"
   offset="0" />
					<stop
   id="stop246"
   style="stop-color:#aad051;stop-opacity:1"
   offset="0.4082" />
					<stop
   id="stop248"
   style="stop-color:#a6cf52;stop-opacity:1"
   offset="0.55519998" />
					<stop
   id="stop250"
   style="stop-color:#9ecc52;stop-opacity:1"
   offset="0.66000003" />
					<stop
   id="stop252"
   style="stop-color:#93c850;stop-opacity:1"
   offset="0.74479997" />
					<stop
   id="stop254"
   style="stop-color:#84c450;stop-opacity:1"
   offset="0.81739998" />
					<stop
   id="stop256"
   style="stop-color:#76c052;stop-opacity:1"
   offset="0.88169998" />
					<stop
   id="stop258"
   style="stop-color:#64bb52;stop-opacity:1"
   offset="0.93980002" />
					<stop
   id="stop260"
   style="stop-color:#58b953;stop-opacity:1"
   offset="0.99150002" />
					<stop
   id="stop262"
   style="stop-color:#58b953;stop-opacity:1"
   offset="1" />
				</radialGradient>
				<path
   d="M 46.254,218.397 C 46.254,212.063 54.055,206.926 63.672,206.926 C 73.291,206.926 81.19,212.064 81.088,218.397 C 81.067,219.704 80.067,220.954 79.19,221.479 C 79.19,221.479 66.873,217.588 62.608,221.479 C 60.247,223.633 62.608,229.676 62.608,229.676 C 54.516,228.687 46.254,224.013 46.254,218.397 z"
   id="path32439_1_"
   style="fill:url(#path32439_3_);stroke:#000000;stroke-miterlimit:3.86369991" />
				<g
   id="g265">
					<path
   d="M 60.078,215.311 L 57.469,215.311 L 57.469,217.74 L 60.387,217.74 L 60.387,218.469 L 56.589,218.469 L 56.589,211.733 L 60.237,211.733 L 60.237,212.462 L 57.468,212.462 L 57.468,214.591 L 60.077,214.591 L 60.077,215.311 L 60.078,215.311 z"
   id="path267" />
					<path
   d="M 61.209,218.469 L 61.209,217.929 L 61.898,217.26 C 63.557,215.681 64.317,214.841 64.317,213.862 C 64.317,213.202 64.007,212.592 63.038,212.592 C 62.448,212.592 61.958,212.892 61.659,213.142 L 61.379,212.523 C 61.819,212.153 62.468,211.863 63.218,211.863 C 64.607,211.863 65.197,212.823 65.197,213.752 C 65.197,214.952 64.327,215.921 62.958,217.24 L 62.448,217.719 L 62.448,217.74 L 65.357,217.74 L 65.357,218.469 L 61.209,218.469 L 61.209,218.469 z"
   id="path269" />
					<path
   d="M 66.639,211.732 L 70.267,211.732 L 70.267,212.461 L 67.518,212.461 L 67.518,214.7 L 70.057,214.7 L 70.057,215.42 L 67.518,215.42 L 67.518,218.468 L 66.639,218.468 L 66.639,211.732 z"
   id="path271" />
				</g>
			</g>
			<g
   id="g273">
				
					<radialGradient
   cx="65.097702"
   cy="-328.75781"
   r="16.185801"
   id="path16609_6_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
					<stop
   id="stop276"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
					<stop
   id="stop278"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
					<stop
   id="stop280"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
					<stop
   id="stop282"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
					<stop
   id="stop284"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
					<stop
   id="stop286"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
					<stop
   id="stop288"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
					<stop
   id="stop290"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
					<stop
   id="stop292"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
					<stop
   id="stop294"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
				</radialGradient>
				<path
   d="M 103.409,228.787 C 103.409,234.573 92.071,239.265 78.094,239.265 C 64.113,239.265 52.779,234.576 52.779,228.787 C 52.779,222.998 64.112,218.311 78.094,218.311 C 92.071,218.313 103.409,223 103.409,228.787 z"
   id="path16609"
   style="fill:url(#path16609_6_);stroke:#000000" />
				<g
   id="g297">
					<path
   d="M 69.076,228.4 C 69.076,227.656 69.052,227.057 69.028,226.505 L 69.975,226.505 L 70.023,227.5 L 70.047,227.5 C 70.479,226.792 71.162,226.373 72.11,226.373 C 73.513,226.373 74.569,227.56 74.569,229.323 C 74.569,231.41 73.298,232.441 71.93,232.441 C 71.162,232.441 70.491,232.105 70.143,231.529 L 70.12,231.529 L 70.12,234.683 L 69.077,234.683 L 69.077,228.4 L 69.076,228.4 z M 70.12,229.947 C 70.12,230.103 70.144,230.247 70.168,230.379 C 70.36,231.111 70.996,231.614 71.751,231.614 C 72.866,231.614 73.514,230.703 73.514,229.371 C 73.514,228.208 72.903,227.212 71.787,227.212 C 71.067,227.212 70.396,227.728 70.192,228.519 C 70.156,228.651 70.12,228.807 70.12,228.951 L 70.12,229.947 z"
   id="path299" />
					<path
   d="M 75.94,224.334 C 76.468,224.226 77.223,224.166 77.943,224.166 C 79.058,224.166 79.778,224.37 80.281,224.826 C 80.689,225.186 80.917,225.738 80.917,226.361 C 80.917,227.428 80.246,228.136 79.394,228.424 L 79.394,228.46 C 80.018,228.676 80.389,229.252 80.581,230.091 C 80.845,231.218 81.037,231.998 81.205,232.31 L 80.125,232.31 C 79.993,232.07 79.813,231.387 79.585,230.379 C 79.345,229.264 78.913,228.844 77.966,228.808 L 76.983,228.808 L 76.983,232.31 L 75.94,232.31 L 75.94,224.334 z M 76.983,228.017 L 78.05,228.017 C 79.165,228.017 79.873,227.405 79.873,226.482 C 79.873,225.439 79.118,224.982 78.014,224.971 C 77.51,224.971 77.151,225.019 76.983,225.067 L 76.983,228.017 L 76.983,228.017 z"
   id="path301" />
					<path
   d="M 82.396,224.334 C 82.852,224.238 83.571,224.166 84.303,224.166 C 85.346,224.166 86.018,224.346 86.522,224.754 C 86.942,225.066 87.194,225.546 87.194,226.181 C 87.194,226.96 86.678,227.644 85.827,227.956 L 85.827,227.98 C 86.595,228.172 87.494,228.808 87.494,230.007 C 87.494,230.703 87.218,231.23 86.81,231.626 C 86.246,232.142 85.335,232.381 84.016,232.381 C 83.296,232.381 82.745,232.333 82.397,232.285 L 82.397,224.334 L 82.396,224.334 z M 83.439,227.645 L 84.386,227.645 C 85.49,227.645 86.137,227.069 86.137,226.29 C 86.137,225.342 85.417,224.971 84.362,224.971 C 83.882,224.971 83.607,225.007 83.439,225.043 L 83.439,227.645 z M 83.439,231.519 C 83.643,231.555 83.942,231.567 84.314,231.567 C 85.393,231.567 86.389,231.171 86.389,229.996 C 86.389,228.893 85.442,228.437 84.302,228.437 L 83.439,228.437 L 83.439,231.519 z"
   id="path303" />
				</g>
			</g>
		</g>
		<g
   id="E2F">
			
				<radialGradient
   cx="-88.351097"
   cy="467.12299"
   r="14.7098"
   id="path32439_4_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,330.6191,695.2441)">
				<stop
   id="stop307"
   style="stop-color:#add153;stop-opacity:1"
   offset="0" />
				<stop
   id="stop309"
   style="stop-color:#aad051;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop311"
   style="stop-color:#a6cf52;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop313"
   style="stop-color:#9ecc52;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop315"
   style="stop-color:#93c850;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop317"
   style="stop-color:#84c450;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop319"
   style="stop-color:#76c052;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop321"
   style="stop-color:#64bb52;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop323"
   style="stop-color:#58b953;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop325"
   style="stop-color:#58b953;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 224.851,228.216 C 224.851,221.882 232.652,216.745 242.269,216.745 C 251.888,216.745 259.787,221.883 259.685,228.216 C 259.664,229.523 258.664,230.773 257.787,231.298 C 257.787,231.298 245.47,227.407 241.205,231.298 C 238.844,233.452 241.205,239.495 241.205,239.495 C 233.112,238.505 224.851,233.832 224.851,228.216 z"
   id="path32439_2_"
   style="fill:url(#path32439_4_);stroke:#000000;stroke-miterlimit:3.86369991" />
			<g
   id="g328">
				<path
   d="M 238.675,225.129 L 236.066,225.129 L 236.066,227.558 L 238.984,227.558 L 238.984,228.287 L 235.187,228.287 L 235.187,221.551 L 238.834,221.551 L 238.834,222.28 L 236.065,222.28 L 236.065,224.409 L 238.674,224.409 L 238.674,225.129 L 238.675,225.129 z"
   id="path330" />
				<path
   d="M 239.806,228.288 L 239.806,227.748 L 240.495,227.079 C 242.155,225.5 242.915,224.66 242.915,223.681 C 242.915,223.021 242.604,222.411 241.636,222.411 C 241.046,222.411 240.556,222.711 240.256,222.961 L 239.976,222.342 C 240.416,221.972 241.066,221.682 241.816,221.682 C 243.205,221.682 243.795,222.642 243.795,223.571 C 243.795,224.771 242.926,225.74 241.557,227.059 L 241.047,227.538 L 241.047,227.559 L 243.955,227.559 L 243.955,228.288 L 239.806,228.288 L 239.806,228.288 z"
   id="path332" />
				<path
   d="M 245.235,221.551 L 248.864,221.551 L 248.864,222.28 L 246.115,222.28 L 246.115,224.519 L 248.653,224.519 L 248.653,225.239 L 246.115,225.239 L 246.115,228.287 L 245.235,228.287 L 245.235,221.551 z"
   id="path334" />
			</g>
		</g>
		<g
   id="g336">
			<g
   id="g338">
				<path
   d="M 75.734,207.113 C 121.432,154.476 193.098,154.228 238.318,207.113"
   id="path340"
   style="fill:none;stroke:#000000" />
				<polygon
   points="233.679,207.385 237.516,206.173 239.309,202.571 242.197,211.649 233.679,207.385 "
   id="polygon342" />
			</g>
		</g>
	</g>
	<g
   id="g344">
		<g
   id="g346">
			<path
   d="M 241.318,245.042 C 195.62,294.354 123.954,294.586 78.734,245.042"
   id="path348"
   style="fill:none;stroke:#000000" />
			<polygon
   points="83.363,244.62 79.567,245.954 77.892,249.613 74.71,240.633 83.363,244.62 "
   id="polygon350" />
		</g>
	</g>
</g>
<g
   id="pRB">
	
		<radialGradient
   cx="121.8066"
   cy="-289.83109"
   r="11.9373"
   id="path16609_10_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
		<stop
   id="stop355"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop357"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop359"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop361"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop363"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop365"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop367"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop369"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop371"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop373"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 187.118,253.537 C 187.118,257.805 178.756,261.265 168.447,261.265 C 158.136,261.265 149.778,257.807 149.778,253.537 C 149.778,249.268 158.136,245.811 168.447,245.811 C 178.756,245.813 187.118,249.27 187.118,253.537 z"
   id="path16609_1_"
   style="fill:url(#path16609_10_);stroke:#000000" />
	<g
   id="g376">
		<path
   d="M 161.799,253.251 C 161.799,252.703 161.781,252.26 161.764,251.853 L 162.463,251.853 L 162.498,252.587 L 162.516,252.587 C 162.835,252.065 163.339,251.755 164.038,251.755 C 165.073,251.755 165.852,252.631 165.852,253.932 C 165.852,255.472 164.914,256.233 163.905,256.233 C 163.339,256.233 162.843,255.985 162.586,255.561 L 162.568,255.561 L 162.568,257.889 L 161.798,257.889 L 161.798,253.251 L 161.799,253.251 z M 162.569,254.393 C 162.569,254.508 162.587,254.614 162.605,254.712 C 162.747,255.252 163.215,255.624 163.773,255.624 C 164.596,255.624 165.074,254.951 165.074,253.969 C 165.074,253.111 164.623,252.376 163.8,252.376 C 163.269,252.376 162.774,252.756 162.623,253.34 C 162.596,253.438 162.57,253.553 162.57,253.659 L 162.57,254.393 L 162.569,254.393 z"
   id="path378" />
		<path
   d="M 166.861,250.251 C 167.25,250.171 167.808,250.127 168.339,250.127 C 169.162,250.127 169.693,250.277 170.065,250.614 C 170.366,250.88 170.534,251.287 170.534,251.747 C 170.534,252.535 170.038,253.057 169.41,253.269 L 169.41,253.295 C 169.87,253.454 170.144,253.879 170.286,254.499 C 170.48,255.331 170.622,255.906 170.746,256.136 L 169.95,256.136 C 169.853,255.959 169.72,255.454 169.552,254.711 C 169.375,253.888 169.056,253.578 168.357,253.552 L 167.631,253.552 L 167.631,256.136 L 166.861,256.136 L 166.861,250.251 L 166.861,250.251 z M 167.631,252.968 L 168.419,252.968 C 169.242,252.968 169.764,252.517 169.764,251.835 C 169.764,251.065 169.207,250.729 168.392,250.72 C 168.02,250.72 167.755,250.755 167.631,250.79 L 167.631,252.968 z"
   id="path380" />
		<path
   d="M 171.622,250.251 C 171.958,250.18 172.489,250.127 173.029,250.127 C 173.799,250.127 174.295,250.26 174.666,250.561 C 174.976,250.791 175.162,251.145 175.162,251.614 C 175.162,252.189 174.781,252.694 174.153,252.924 L 174.153,252.942 C 174.719,253.084 175.382,253.553 175.382,254.438 C 175.382,254.951 175.179,255.341 174.878,255.633 C 174.462,256.013 173.789,256.191 172.815,256.191 C 172.284,256.191 171.877,256.155 171.621,256.12 L 171.621,250.251 L 171.622,250.251 z M 172.392,252.694 L 173.091,252.694 C 173.905,252.694 174.383,252.269 174.383,251.694 C 174.383,250.995 173.852,250.721 173.073,250.721 C 172.719,250.721 172.515,250.747 172.391,250.774 L 172.391,252.694 L 172.392,252.694 z M 172.392,255.553 C 172.542,255.579 172.764,255.588 173.038,255.588 C 173.834,255.588 174.569,255.296 174.569,254.429 C 174.569,253.615 173.87,253.279 173.029,253.279 L 172.391,253.279 L 172.391,255.553 L 172.392,255.553 z"
   id="path382" />
	</g>
</g>
<g
   id="pRB_P">
	<g
   id="g386">
		
			<radialGradient
   cx="128.08299"
   cy="-372.14209"
   r="11.9373"
   id="path16609_13_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
			<stop
   id="stop389"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop391"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop393"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop395"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop397"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop399"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop401"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop403"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop405"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop407"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 197.119,201.204 C 197.119,205.472 188.757,208.932 178.448,208.932 C 168.137,208.932 159.779,205.474 159.779,201.204 C 159.779,196.935 168.138,193.478 178.448,193.478 C 188.757,193.479 197.119,196.936 197.119,201.204 z"
   id="path16609_2_"
   style="fill:url(#path16609_13_);stroke:#000000" />
		<g
   id="g410">
			<path
   d="M 171.8,200.918 C 171.8,200.37 171.782,199.927 171.765,199.52 L 172.464,199.52 L 172.499,200.254 L 172.517,200.254 C 172.836,199.732 173.34,199.422 174.039,199.422 C 175.074,199.422 175.853,200.298 175.853,201.599 C 175.853,203.139 174.915,203.9 173.906,203.9 C 173.34,203.9 172.844,203.652 172.587,203.228 L 172.569,203.228 L 172.569,205.556 L 171.799,205.556 L 171.799,200.918 L 171.8,200.918 z M 172.57,202.06 C 172.57,202.175 172.588,202.281 172.606,202.379 C 172.748,202.919 173.216,203.291 173.774,203.291 C 174.597,203.291 175.075,202.618 175.075,201.636 C 175.075,200.778 174.624,200.043 173.801,200.043 C 173.271,200.043 172.775,200.423 172.624,201.007 C 172.597,201.105 172.571,201.22 172.571,201.326 L 172.571,202.06 L 172.57,202.06 z"
   id="path412" />
			<path
   d="M 176.862,197.918 C 177.252,197.838 177.809,197.794 178.34,197.794 C 179.163,197.794 179.694,197.944 180.067,198.281 C 180.368,198.547 180.536,198.954 180.536,199.414 C 180.536,200.202 180.04,200.724 179.412,200.936 L 179.412,200.962 C 179.872,201.121 180.146,201.546 180.288,202.166 C 180.482,202.998 180.624,203.573 180.748,203.803 L 179.952,203.803 C 179.854,203.626 179.722,203.121 179.554,202.378 C 179.377,201.555 179.058,201.245 178.36,201.219 L 177.633,201.219 L 177.633,203.803 L 176.863,203.803 L 176.863,197.918 L 176.862,197.918 z M 177.632,200.635 L 178.42,200.635 C 179.243,200.635 179.765,200.184 179.765,199.502 C 179.765,198.732 179.208,198.396 178.394,198.387 C 178.022,198.387 177.756,198.422 177.632,198.457 L 177.632,200.635 z"
   id="path414" />
			<path
   d="M 181.623,197.918 C 181.959,197.847 182.49,197.794 183.03,197.794 C 183.8,197.794 184.296,197.927 184.667,198.228 C 184.977,198.458 185.163,198.812 185.163,199.281 C 185.163,199.856 184.782,200.361 184.154,200.591 L 184.154,200.609 C 184.72,200.751 185.383,201.22 185.383,202.105 C 185.383,202.618 185.18,203.008 184.879,203.3 C 184.463,203.68 183.79,203.858 182.816,203.858 C 182.285,203.858 181.878,203.822 181.622,203.787 L 181.622,197.918 L 181.623,197.918 z M 182.393,200.36 L 183.092,200.36 C 183.906,200.36 184.384,199.935 184.384,199.36 C 184.384,198.661 183.853,198.387 183.074,198.387 C 182.72,198.387 182.516,198.413 182.392,198.44 L 182.392,200.36 L 182.393,200.36 z M 182.393,203.219 C 182.543,203.245 182.765,203.254 183.039,203.254 C 183.835,203.254 184.57,202.962 184.57,202.095 C 184.57,201.281 183.871,200.945 183.03,200.945 L 182.392,200.945 L 182.392,203.219 L 182.393,203.219 z"
   id="path416" />
		</g>
	</g>
	<g
   id="g418">
		<path
   d="M 203.943,201.717 C 203.943,204.398 201.846,206.571 199.262,206.571 C 196.677,206.571 194.582,204.398 194.582,201.717 C 194.582,199.037 196.677,196.864 199.262,196.864 C 201.847,196.864 203.943,199.037 203.943,201.717 z"
   id="path19818"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g421">
			<path
   d="M 197.809,198.771 C 198.13,198.708 198.552,198.66 199.088,198.66 C 199.747,198.66 200.23,198.819 200.536,199.104 C 200.819,199.358 200.995,199.747 200.995,200.223 C 200.995,200.706 200.857,201.087 200.589,201.366 C 200.237,201.755 199.663,201.953 199.011,201.953 C 198.812,201.953 198.628,201.945 198.476,201.905 L 198.476,204.048 L 197.809,204.048 L 197.809,198.771 z M 198.476,201.341 C 198.621,201.381 198.812,201.397 199.027,201.397 C 199.84,201.397 200.322,200.985 200.322,200.262 C 200.322,199.548 199.84,199.207 199.103,199.207 C 198.812,199.207 198.59,199.238 198.476,199.263 L 198.476,201.341 L 198.476,201.341 z"
   id="path423"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="g425">
	<g
   id="g427">
		<line
   fill="none"
   stroke="#000000"
   x1="179.283"
   y1="209.448"
   x2="175.617"
   y2="239.78101"
   id="line429"
   style="fill:none;stroke:#000000" />
		<polygon
   points="172.278,236.548 175.766,238.554 179.632,237.437 174.901,245.707 172.278,236.548 "
   id="polygon431" />
	</g>
</g>
<g
   id="g433">
	<g
   id="g435">
		<line
   fill="none"
   stroke="#000000"
   x1="158.95"
   y1="222.78101"
   x2="158.95"
   y2="241.11501"
   id="line437"
   style="fill:none;stroke:#000000" />
		<polygon
   points="155.247,238.306 158.95,239.879 162.654,238.306 158.95,247.084 155.247,238.306 "
   id="polygon439" />
	</g>
</g>
<g
   id="g441">
	<path
   d="M 154.739,221.448 L 154.739,220.962 L 155.36,220.359 C 156.855,218.937 157.529,218.18 157.539,217.298 C 157.539,216.704 157.251,216.155 156.377,216.155 C 155.846,216.155 155.405,216.425 155.135,216.65 L 154.883,216.092 C 155.288,215.75 155.864,215.498 156.539,215.498 C 157.799,215.498 158.331,216.362 158.331,217.199 C 158.331,218.28 157.548,219.153 156.314,220.341 L 155.846,220.773 L 155.846,220.791 L 158.475,220.791 L 158.475,221.448 L 154.739,221.448 z"
   id="path443" />
	<path
   d="M 162.695,216.155 C 162.533,216.146 162.326,216.155 162.101,216.191 C 160.859,216.398 160.202,217.307 160.066,218.271 L 160.093,218.271 C 160.372,217.902 160.858,217.596 161.506,217.596 C 162.542,217.596 163.271,218.343 163.271,219.487 C 163.271,220.558 162.542,221.549 161.327,221.549 C 160.076,221.549 159.256,220.577 159.256,219.055 C 159.256,217.903 159.67,216.993 160.246,216.417 C 160.732,215.94 161.38,215.643 162.119,215.553 C 162.353,215.517 162.551,215.508 162.695,215.508 L 162.695,216.155 z M 161.336,220.935 C 162.011,220.935 162.47,220.368 162.47,219.531 C 162.47,218.694 161.993,218.19 161.263,218.19 C 160.786,218.19 160.345,218.487 160.129,218.91 C 160.075,219 160.039,219.117 160.039,219.261 C 160.057,220.224 160.498,220.935 161.327,220.935 L 161.336,220.935 z"
   id="path445" />
</g>
<g
   id="g447">
	<path
   d="M 179.739,226.448 L 179.739,225.962 L 180.36,225.359 C 181.854,223.937 182.529,223.18 182.538,222.298 C 182.538,221.704 182.251,221.155 181.377,221.155 C 180.846,221.155 180.405,221.425 180.135,221.65 L 179.883,221.092 C 180.288,220.75 180.864,220.498 181.539,220.498 C 182.8,220.498 183.331,221.362 183.331,222.199 C 183.331,223.28 182.548,224.153 181.313,225.341 L 180.845,225.773 L 180.845,225.791 L 183.474,225.791 L 183.474,226.448 L 179.739,226.448 z"
   id="path449" />
	<path
   d="M 184.814,225.89 C 184.985,225.908 185.183,225.89 185.454,225.863 C 185.913,225.8 186.345,225.611 186.679,225.296 C 187.066,224.945 187.345,224.432 187.452,223.738 L 187.425,223.738 C 187.101,224.134 186.633,224.368 186.048,224.368 C 184.995,224.368 184.319,223.576 184.319,222.576 C 184.319,221.469 185.12,220.496 186.317,220.496 C 187.514,220.496 188.253,221.468 188.253,222.963 C 188.253,224.25 187.821,225.151 187.245,225.709 C 186.795,226.15 186.174,226.42 185.544,226.492 C 185.255,226.537 185.003,226.546 184.815,226.537 L 184.815,225.89 L 184.814,225.89 z M 186.246,221.101 C 185.579,221.101 185.102,221.695 185.102,222.523 C 185.102,223.252 185.543,223.766 186.227,223.766 C 186.758,223.766 187.172,223.505 187.379,223.154 C 187.424,223.082 187.451,222.992 187.451,222.866 C 187.451,221.866 187.082,221.101 186.254,221.101 L 186.246,221.101 z"
   id="path451" />
</g>
<g
   id="g453">
	<g
   id="g455">
		<line
   fill="none"
   stroke="#000000"
   x1="211.95"
   y1="251.11501"
   x2="191.95"
   y2="251.11501"
   id="line457"
   style="fill:none;stroke:#000000" />
		<polygon
   points="194.759,247.412 193.187,251.115 194.759,254.819 185.981,251.115 194.759,247.412 "
   id="polygon459" />
	</g>
</g>
<g
   id="g461">
	<g
   id="g463">
		<line
   fill="none"
   stroke="#000000"
   x1="185.95"
   y1="256.448"
   x2="206.617"
   y2="256.448"
   id="line465"
   style="fill:none;stroke:#000000" />
		<polygon
   points="203.809,260.151 205.382,256.448 203.809,252.744 212.587,256.448 203.809,260.151 "
   id="polygon467" />
	</g>
</g>
<g
   id="g469">
	<path
   d="M 199.405,248.115 L 199.405,247.629 L 200.026,247.026 C 201.52,245.604 202.195,244.847 202.204,243.965 C 202.204,243.371 201.917,242.822 201.043,242.822 C 200.512,242.822 200.071,243.092 199.801,243.317 L 199.549,242.759 C 199.954,242.417 200.53,242.165 201.205,242.165 C 202.466,242.165 202.997,243.029 202.997,243.866 C 202.997,244.947 202.214,245.82 200.979,247.008 L 200.511,247.44 L 200.511,247.458 L 203.14,247.458 L 203.14,248.115 L 199.405,248.115 z"
   id="path471" />
	<path
   d="M 207.82,242.263 L 207.82,242.785 L 205.272,248.115 L 204.454,248.115 L 206.992,242.938 L 206.992,242.92 L 204.13,242.92 L 204.13,242.263 L 207.82,242.263 z"
   id="path473" />
</g>
<g
   id="g475">
	<path
   d="M 190.071,265.781 L 190.071,265.295 L 190.692,264.692 C 192.187,263.27 192.862,262.513 192.872,261.631 C 192.872,261.037 192.583,260.488 191.71,260.488 C 191.179,260.488 190.737,260.758 190.468,260.983 L 190.216,260.425 C 190.62,260.083 191.196,259.831 191.872,259.831 C 193.132,259.831 193.663,260.695 193.663,261.532 C 193.663,262.613 192.88,263.486 191.647,264.674 L 191.178,265.106 L 191.178,265.124 L 193.807,265.124 L 193.807,265.781 L 190.071,265.781 L 190.071,265.781 z"
   id="path477" />
	<path
   d="M 195.769,262.702 C 195.121,262.396 194.841,261.892 194.841,261.388 C 194.841,260.46 195.624,259.83 196.652,259.83 C 197.786,259.83 198.353,260.541 198.353,261.27 C 198.353,261.765 198.11,262.296 197.39,262.638 L 197.39,262.665 C 198.119,262.953 198.569,263.466 198.569,264.177 C 198.569,265.195 197.696,265.879 196.58,265.879 C 195.355,265.879 194.617,265.15 194.617,264.295 C 194.617,263.557 195.058,263.035 195.779,262.729 L 195.769,262.702 z M 197.767,264.26 C 197.767,263.549 197.273,263.207 196.48,262.982 C 195.796,263.18 195.427,263.63 195.427,264.189 C 195.4,264.783 195.85,265.305 196.597,265.305 C 197.308,265.304 197.767,264.854 197.767,264.26 z M 195.589,261.334 C 195.589,261.919 196.03,262.234 196.705,262.414 C 197.209,262.243 197.597,261.883 197.597,261.352 C 197.597,260.884 197.318,260.397 196.607,260.397 C 195.948,260.397 195.589,260.83 195.589,261.334 z"
   id="path479" />
</g>
<g
   id="g481">
	<g
   id="g483">
		<path
   d="M 147.617,168.115 C 156.026,167.565 176.26,164.505 179.275,186.451"
   id="path485"
   style="fill:none;stroke:#000000" />
		<polygon
   points="175.224,184.172 179.106,185.227 182.562,183.164 180.087,192.364 175.224,184.172 "
   id="polygon487" />
	</g>
</g>
<g
   id="g489">
	<path
   d="M 142.766,172.334 L 142.748,172.334 L 141.731,172.883 L 141.578,172.28 L 142.857,171.596 L 143.532,171.596 L 143.532,177.448 L 142.767,177.448 L 142.767,172.334 L 142.766,172.334 z"
   id="path491" />
</g>
<g
   id="g493">
	<path
   d="M 157.754,287.72 L 157.754,288.305 L 155.53,288.305 L 155.53,287.72 L 157.754,287.72 z"
   id="path495" />
	<path
   d="M 160.147,285.334 L 160.129,285.334 L 159.112,285.883 L 158.959,285.28 L 160.237,284.596 L 160.912,284.596 L 160.912,290.448 L 160.147,290.448 L 160.147,285.334 L 160.147,285.334 z"
   id="path497" />
</g>
<g
   id="g499">
	<g
   id="g501">
		<line
   fill="none"
   stroke="#000000"
   x1="260.617"
   y1="271.11499"
   x2="249.283"
   y2="245.11501"
   id="line503"
   style="fill:none;stroke:#000000" />
		<polygon
   points="253.8,246.209 249.777,246.248 247.01,249.169 246.897,239.643 253.8,246.209 "
   id="polygon505" />
	</g>
</g>
<g
   id="g507">
	<g
   id="g509">
		<line
   fill="none"
   stroke="#000000"
   x1="253.95"
   y1="238.448"
   x2="264.95001"
   y2="264.448"
   id="line511"
   style="fill:none;stroke:#000000" />
		<polygon
   points="260.445,263.304 264.469,263.31 267.268,260.418 267.276,269.945 260.445,263.304 "
   id="polygon513" />
	</g>
</g>
<g
   id="g515">
	<path
   d="M 251.162,264.448 L 251.162,262.855 L 248.443,262.855 L 248.443,262.333 L 251.054,258.597 L 251.908,258.597 L 251.908,262.234 L 252.727,262.234 L 252.727,262.856 L 251.908,262.856 L 251.908,264.449 L 251.162,264.449 L 251.162,264.448 z M 251.162,262.233 L 251.162,260.279 C 251.162,259.973 251.172,259.667 251.189,259.361 L 251.162,259.361 C 250.982,259.703 250.838,259.955 250.677,260.225 L 249.245,262.215 L 249.245,262.233 L 251.162,262.233 L 251.162,262.233 z"
   id="path517" />
</g>
<g
   id="g519">
	<path
   d="M 264.755,250.053 L 264.755,250.638 L 262.531,250.638 L 262.531,250.053 L 264.755,250.053 z"
   id="path521" />
	<path
   d="M 267.877,252.781 L 267.877,251.188 L 265.158,251.188 L 265.158,250.666 L 267.769,246.93 L 268.624,246.93 L 268.624,250.567 L 269.442,250.567 L 269.442,251.189 L 268.624,251.189 L 268.624,252.782 L 267.877,252.782 L 267.877,252.781 z M 267.877,250.566 L 267.877,248.612 C 267.877,248.306 267.887,248 267.904,247.694 L 267.877,247.694 C 267.697,248.036 267.553,248.288 267.392,248.558 L 265.96,250.548 L 265.96,250.566 L 267.877,250.566 z"
   id="path523" />
</g>
<g
   id="g525">
	<g
   id="p16">
		
			<radialGradient
   cx="52.976601"
   cy="-451.30661"
   r="11.937"
   id="path16609_15_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
			<stop
   id="stop530"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop532"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop534"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop536"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop538"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop540"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop542"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop544"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop546"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop548"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 77.452,150.871 C 77.452,155.139 69.09,158.599 58.781,158.599 C 48.47,158.599 40.112,155.141 40.112,150.871 C 40.112,146.602 48.471,143.145 58.781,143.145 C 69.089,143.146 77.452,146.603 77.452,150.871 z"
   id="path16609_3_"
   style="fill:url(#path16609_15_);stroke:#000000" />
		<g
   id="g551">
			<path
   d="M 52.372,150.585 C 52.372,150.037 52.354,149.594 52.337,149.187 L 53.036,149.187 L 53.071,149.921 L 53.089,149.921 C 53.408,149.399 53.912,149.089 54.611,149.089 C 55.646,149.089 56.425,149.965 56.425,151.266 C 56.425,152.806 55.487,153.567 54.478,153.567 C 53.912,153.567 53.416,153.319 53.159,152.895 L 53.141,152.895 L 53.141,155.223 L 52.371,155.223 L 52.371,150.585 L 52.372,150.585 z M 53.142,151.727 C 53.142,151.842 53.16,151.948 53.178,152.046 C 53.32,152.586 53.788,152.958 54.346,152.958 C 55.169,152.958 55.647,152.285 55.647,151.303 C 55.647,150.445 55.196,149.71 54.373,149.71 C 53.842,149.71 53.347,150.09 53.196,150.674 C 53.169,150.772 53.143,150.887 53.143,150.993 L 53.143,151.727 L 53.142,151.727 z"
   id="path553" />
			<path
   d="M 58.85,148.443 L 58.832,148.443 L 57.832,148.983 L 57.682,148.39 L 58.939,147.718 L 59.603,147.718 L 59.603,153.47 L 58.85,153.47 L 58.85,148.443 z"
   id="path555" />
			<path
   d="M 64.983,148.266 C 64.824,148.257 64.62,148.266 64.399,148.302 C 63.177,148.506 62.532,149.399 62.399,150.346 L 62.425,150.346 C 62.699,149.983 63.177,149.682 63.815,149.682 C 64.833,149.682 65.549,150.417 65.549,151.541 C 65.549,152.594 64.832,153.567 63.638,153.567 C 62.408,153.567 61.602,152.611 61.602,151.116 C 61.602,149.983 62.009,149.089 62.576,148.523 C 63.054,148.054 63.691,147.762 64.417,147.673 C 64.647,147.638 64.842,147.629 64.983,147.629 L 64.983,148.266 z M 63.647,152.966 C 64.31,152.966 64.761,152.408 64.761,151.585 C 64.761,150.762 64.292,150.267 63.575,150.267 C 63.106,150.267 62.673,150.559 62.46,150.975 C 62.407,151.063 62.372,151.179 62.372,151.32 C 62.39,152.267 62.823,152.966 63.638,152.966 L 63.647,152.966 L 63.647,152.966 z"
   id="path557" />
		</g>
	</g>
	<g
   id="g559">
		<g
   id="g561">
			<line
   fill="none"
   stroke="#000000"
   x1="11.283"
   y1="148.448"
   x2="33.950001"
   y2="148.448"
   id="line563"
   style="fill:none;stroke:#000000" />
			<polygon
   points="31.141,152.151 32.714,148.448 31.141,144.744 39.919,148.448 31.141,152.151 "
   id="polygon565" />
		</g>
	</g>
	<g
   id="g567">
		<g
   id="g569">
			<line
   fill="none"
   stroke="#000000"
   x1="39.616001"
   y1="153.44701"
   x2="16.950001"
   y2="153.44701"
   id="line571"
   style="fill:none;stroke:#000000" />
			<polygon
   points="19.758,149.744 18.186,153.447 19.758,157.151 10.98,153.447 19.758,149.744 "
   id="polygon573" />
		</g>
	</g>
	<g
   id="g575">
		<path
   d="M 0.405,150.115 L 0.405,149.629 L 1.026,149.026 C 2.521,147.604 3.195,146.847 3.205,145.965 C 3.205,145.371 2.917,144.822 2.043,144.822 C 1.512,144.822 1.071,145.092 0.801,145.317 L 0.549,144.759 C 0.954,144.417 1.53,144.165 2.205,144.165 C 3.465,144.165 3.997,145.029 3.997,145.867 C 3.997,146.947 3.214,147.82 1.98,149.009 L 1.512,149.441 L 1.512,149.459 L 4.141,149.459 L 4.141,150.116 L 0.405,150.116 L 0.405,150.115 z"
   id="path577" />
		<path
   d="M 5.211,149.206 C 5.436,149.35 5.958,149.575 6.507,149.575 C 7.524,149.575 7.84,148.927 7.83,148.441 C 7.821,147.622 7.083,147.271 6.318,147.271 L 5.877,147.271 L 5.877,146.677 L 6.318,146.677 C 6.894,146.677 7.623,146.38 7.623,145.687 C 7.623,145.219 7.326,144.805 6.597,144.805 C 6.129,144.805 5.679,145.012 5.427,145.192 L 5.22,144.616 C 5.526,144.391 6.12,144.166 6.751,144.166 C 7.903,144.166 8.425,144.85 8.425,145.562 C 8.425,146.165 8.065,146.678 7.345,146.939 L 7.345,146.957 C 8.065,147.101 8.65,147.642 8.65,148.461 C 8.65,149.397 7.921,150.216 6.516,150.216 C 5.859,150.216 5.283,150.009 4.995,149.82 L 5.211,149.206 z"
   id="path579" />
	</g>
	<g
   id="g581">
		<path
   d="M 0.405,158.115 L 0.405,157.629 L 1.026,157.026 C 2.521,155.604 3.195,154.847 3.205,153.965 C 3.205,153.371 2.917,152.822 2.043,152.822 C 1.512,152.822 1.071,153.092 0.801,153.317 L 0.549,152.759 C 0.954,152.417 1.53,152.165 2.205,152.165 C 3.465,152.165 3.997,153.029 3.997,153.867 C 3.997,154.947 3.214,155.82 1.98,157.009 L 1.512,157.441 L 1.512,157.459 L 4.141,157.459 L 4.141,158.116 L 0.405,158.116 L 0.405,158.115 z"
   id="path583" />
		<path
   d="M 7.471,158.115 L 7.471,156.522 L 4.752,156.522 L 4.752,156 L 7.362,152.264 L 8.217,152.264 L 8.217,155.901 L 9.036,155.901 L 9.036,156.523 L 8.218,156.523 L 8.218,158.116 L 7.471,158.116 L 7.471,158.115 z M 7.471,155.9 L 7.471,153.946 C 7.471,153.64 7.48,153.334 7.498,153.028 L 7.471,153.028 C 7.291,153.37 7.147,153.622 6.985,153.892 L 5.554,155.882 L 5.554,155.9 L 7.471,155.9 z"
   id="path585" />
	</g>
	<g
   id="g587">
		<g
   id="g589">
			<line
   fill="none"
   stroke="#000000"
   x1="36.949001"
   y1="187.78101"
   x2="48.949001"
   y2="164.78101"
   id="line591"
   style="fill:none;stroke:#000000" />
			<polygon
   points="50.933,168.984 48.377,165.877 44.366,165.558 51.71,159.489 50.933,168.984 "
   id="polygon593" />
		</g>
	</g>
	<g
   id="g595">
		<path
   d="M 27.739,196.115 L 27.739,195.629 L 28.36,195.026 C 29.855,193.604 30.529,192.847 30.539,191.965 C 30.539,191.371 30.251,190.822 29.377,190.822 C 28.846,190.822 28.405,191.092 28.135,191.317 L 27.883,190.759 C 28.288,190.417 28.864,190.165 29.539,190.165 C 30.799,190.165 31.331,191.029 31.331,191.867 C 31.331,192.947 30.548,193.82 29.314,195.009 L 28.846,195.441 L 28.846,195.459 L 31.475,195.459 L 31.475,196.116 L 27.739,196.116 L 27.739,196.115 z"
   id="path597" />
		<path
   d="M 35.848,190.93 L 33.616,190.93 L 33.391,192.433 C 33.526,192.415 33.652,192.397 33.868,192.397 C 34.318,192.397 34.768,192.496 35.128,192.712 C 35.587,192.973 35.965,193.477 35.965,194.215 C 35.965,195.358 35.056,196.214 33.786,196.214 C 33.147,196.214 32.607,196.034 32.328,195.854 L 32.526,195.251 C 32.769,195.395 33.246,195.575 33.777,195.575 C 34.524,195.575 35.163,195.089 35.163,194.305 C 35.154,193.549 34.65,193.009 33.479,193.009 C 33.146,193.009 32.885,193.045 32.669,193.072 L 33.047,190.263 L 35.847,190.263 L 35.847,190.93 L 35.848,190.93 z"
   id="path599" />
	</g>
</g>
<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="48.283001"
   y1="181.114"
   x2="150.617"
   y2="248.448"
   id="line601"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
<line
   fill="none"
   stroke="#000000"
   x1="49.762001"
   y1="177.11501"
   x2="45.805"
   y2="184.11501"
   id="line603"
   style="fill:none;stroke:#000000" />
<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="63.616001"
   y1="159.448"
   x2="150.283"
   y2="216.78101"
   id="line605"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
<line
   fill="none"
   stroke="#000000"
   x1="152.284"
   y1="213.44901"
   x2="148.326"
   y2="220.44901"
   id="line607"
   style="fill:none;stroke:#000000" />
<g
   id="g609">
	<g
   id="g611">
		<path
   d="M 233.283,196.115 C 228.934,180.353 240.986,173.172 252.187,173.902 C 264.688,174.717 273.616,191.448 262.283,199.448"
   id="path613"
   style="fill:none;stroke:#000000" />
		<polygon
   points="262.442,194.803 263.293,198.735 266.714,200.854 257.406,202.89 262.442,194.803 "
   id="polygon615" />
	</g>
</g>
<g
   id="g617">
	<path
   d="M 249.125,177.667 L 249.106,177.667 L 248.088,178.216 L 247.936,177.613 L 249.214,176.929 L 249.889,176.929 L 249.889,182.781 L 249.124,182.781 L 249.124,177.667 L 249.125,177.667 z"
   id="path619" />
	<path
   d="M 253.103,179.702 C 252.455,179.396 252.176,178.892 252.176,178.388 C 252.176,177.46 252.959,176.83 253.986,176.83 C 255.12,176.83 255.687,177.541 255.687,178.27 C 255.687,178.765 255.444,179.296 254.723,179.638 L 254.723,179.665 C 255.452,179.953 255.903,180.466 255.903,181.177 C 255.903,182.195 255.03,182.879 253.914,182.879 C 252.689,182.879 251.951,182.15 251.951,181.295 C 251.951,180.557 252.392,180.035 253.112,179.729 L 253.103,179.702 z M 255.102,181.26 C 255.102,180.549 254.607,180.207 253.814,179.982 C 253.13,180.18 252.761,180.63 252.761,181.189 C 252.734,181.783 253.184,182.305 253.931,182.305 C 254.643,182.304 255.102,181.854 255.102,181.26 z M 252.923,178.334 C 252.923,178.919 253.363,179.234 254.039,179.414 C 254.543,179.243 254.93,178.883 254.93,178.352 C 254.93,177.884 254.652,177.397 253.94,177.397 C 253.282,177.397 252.923,177.83 252.923,178.334 z"
   id="path621" />
</g>
<g
   id="g623">
	<g
   id="g625">
		<g
   id="g627">
			<path
   d="M 58.308,143.059 C 58.308,105.851 19.617,110.448 19.617,110.448"
   id="path629"
   style="fill:none;stroke:#000000" />
			<polygon
   points="21.969,106.439 20.844,110.302 22.843,113.795 13.689,111.152 21.969,106.439 "
   id="polygon631" />
		</g>
	</g>
	<g
   id="g633">
		<g
   id="g635">
			<path
   d="M 58.308,77.267 C 58.308,114.475 19.617,110.449 19.617,110.449"
   id="path637"
   style="fill:none;stroke:#000000" />
			<polygon
   points="22.794,107.056 20.846,110.576 22.027,114.423 13.68,109.831 22.794,107.056 "
   id="polygon639" />
		</g>
	</g>
</g>
<g
   id="CycD_Cdk4">
	<g
   id="g643">
		
			<radialGradient
   cx="42.725601"
   cy="-573.4624"
   r="11.9373"
   id="path16609_16_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
			<stop
   id="stop646"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop648"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop650"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop652"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop654"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop656"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop658"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop660"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop662"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop664"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 61.12,73.204 C 61.12,77.472 52.757,80.932 42.449,80.932 C 32.138,80.932 23.78,77.474 23.78,73.204 C 23.78,68.935 32.139,65.478 42.449,65.478 C 52.756,65.479 61.12,68.937 61.12,73.204 z"
   id="path16609_4_"
   style="fill:url(#path16609_16_);stroke:#000000" />
		<g
   id="g667">
			<path
   d="M 37.844,75.609 C 37.561,75.751 36.994,75.901 36.269,75.901 C 34.587,75.901 33.322,74.83 33.322,72.875 C 33.322,71.007 34.587,69.742 36.437,69.742 C 37.18,69.742 37.649,69.902 37.853,70.008 L 37.667,70.636 C 37.375,70.494 36.959,70.388 36.463,70.388 C 35.065,70.388 34.135,71.282 34.135,72.848 C 34.135,74.308 34.976,75.246 36.427,75.246 C 36.896,75.246 37.374,75.149 37.684,74.998 L 37.844,75.609 z"
   id="path669" />
			<path
   d="M 38.889,71.521 L 39.827,74.052 C 39.925,74.335 40.031,74.672 40.101,74.928 L 40.119,74.928 C 40.199,74.671 40.287,74.344 40.393,74.034 L 41.243,71.521 L 42.066,71.521 L 40.898,74.574 C 40.341,76.043 39.96,76.795 39.429,77.255 C 39.048,77.591 38.668,77.724 38.473,77.76 L 38.279,77.105 C 38.473,77.043 38.73,76.919 38.96,76.725 C 39.172,76.557 39.438,76.256 39.615,75.858 C 39.651,75.778 39.677,75.716 39.677,75.672 C 39.677,75.628 39.659,75.566 39.624,75.468 L 38.04,71.521 L 38.889,71.521 L 38.889,71.521 z"
   id="path671" />
			<path
   d="M 45.739,75.645 C 45.535,75.751 45.084,75.901 44.509,75.901 C 43.217,75.901 42.376,75.016 42.376,73.706 C 42.376,72.388 43.278,71.432 44.677,71.432 C 45.137,71.432 45.544,71.547 45.757,71.653 L 45.579,72.255 C 45.393,72.149 45.101,72.051 44.677,72.051 C 43.695,72.051 43.164,72.777 43.164,73.671 C 43.164,74.662 43.801,75.273 44.651,75.273 C 45.093,75.273 45.385,75.158 45.607,75.061 L 45.739,75.645 z"
   id="path673" />
			<path
   d="M 46.677,69.918 C 47.146,69.847 47.703,69.794 48.314,69.794 C 49.42,69.794 50.209,70.051 50.73,70.538 C 51.261,71.024 51.571,71.715 51.571,72.68 C 51.571,73.654 51.27,74.45 50.713,74.999 C 50.155,75.556 49.235,75.857 48.076,75.857 C 47.527,75.857 47.066,75.83 46.678,75.786 L 46.678,69.918 L 46.677,69.918 z M 47.446,75.193 C 47.641,75.229 47.925,75.237 48.225,75.237 C 49.871,75.237 50.765,74.317 50.765,72.706 C 50.774,71.299 49.977,70.405 48.349,70.405 C 47.951,70.405 47.65,70.44 47.446,70.485 L 47.446,75.193 L 47.446,75.193 z"
   id="path675" />
		</g>
	</g>
	<g
   id="g677">
		
			<radialGradient
   cx="-52.533699"
   cy="786.75"
   r="13.0519"
   id="path31151_6_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,858.6992)">
			<stop
   id="stop680"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
			<stop
   id="stop682"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
			<stop
   id="stop684"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
			<stop
   id="stop686"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
			<stop
   id="stop688"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
			<stop
   id="stop690"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
			<stop
   id="stop692"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
			<stop
   id="stop694"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
			<stop
   id="stop696"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
			<stop
   id="stop698"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
			<stop
   id="stop700"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 83.476,66.388 L 89.921,71.894 L 84.14,76.953 C 81.535,79.334 77.124,80.9 72.122,80.9 C 64.122,80.9 57.634,76.89 57.634,71.951 C 57.634,67.006 64.12,63.001 72.122,63.001 C 76.721,62.998 80.821,64.322 83.476,66.388 z"
   id="path31151_4_"
   style="fill:url(#path31151_6_);stroke:#000000" />
		<g
   id="g703">
			<path
   d="M 68.347,74.393 C 68.059,74.537 67.483,74.69 66.744,74.69 C 65.034,74.69 63.746,73.601 63.746,71.611 C 63.746,69.712 65.033,68.424 66.915,68.424 C 67.671,68.424 68.148,68.586 68.355,68.694 L 68.166,69.333 C 67.869,69.189 67.446,69.081 66.941,69.081 C 65.519,69.081 64.573,69.99 64.573,71.584 C 64.573,73.069 65.428,74.023 66.905,74.023 C 67.382,74.023 67.868,73.924 68.183,73.771 L 68.347,74.393 z"
   id="path705" />
			<path
   d="M 69.326,68.604 C 69.803,68.532 70.37,68.478 70.992,68.478 C 72.117,68.478 72.919,68.739 73.45,69.234 C 73.99,69.729 74.305,70.431 74.305,71.413 C 74.305,72.403 73.999,73.213 73.432,73.771 C 72.865,74.338 71.929,74.645 70.749,74.645 C 70.191,74.645 69.723,74.618 69.327,74.573 L 69.327,68.604 L 69.326,68.604 z M 70.109,73.97 C 70.307,74.006 70.595,74.015 70.901,74.015 C 72.575,74.015 73.484,73.078 73.484,71.44 C 73.493,70.008 72.683,69.099 71.026,69.099 C 70.621,69.099 70.315,69.135 70.108,69.18 L 70.108,73.97 L 70.109,73.97 z"
   id="path707" />
			<path
   d="M 75.32,68.523 L 76.103,68.523 L 76.103,71.449 L 76.13,71.449 C 76.292,71.215 76.454,70.999 76.607,70.801 L 78.461,68.523 L 79.433,68.523 L 77.236,71.098 L 79.604,74.591 L 78.676,74.591 L 76.677,71.611 L 76.101,72.278 L 76.101,74.591 L 75.32,74.591 L 75.32,68.523 z"
   id="path709" />
			<path
   d="M 82.368,74.591 L 82.368,72.998 L 79.649,72.998 L 79.649,72.476 L 82.259,68.74 L 83.114,68.74 L 83.114,72.377 L 83.933,72.377 L 83.933,72.999 L 83.114,72.999 L 83.114,74.592 L 82.368,74.592 L 82.368,74.591 z M 82.368,72.376 L 82.368,70.422 C 82.368,70.116 82.377,69.81 82.395,69.504 L 82.368,69.504 C 82.188,69.846 82.044,70.098 81.882,70.368 L 80.451,72.358 L 80.451,72.376 L 82.368,72.376 z"
   id="path711" />
		</g>
	</g>
</g>
<g
   id="g713">
	<path
   d="M 29.458,101.667 L 29.44,101.667 L 28.423,102.216 L 28.27,101.613 L 29.549,100.929 L 30.224,100.929 L 30.224,106.781 L 29.459,106.781 L 29.459,101.667 L 29.458,101.667 z"
   id="path715" />
	<path
   d="M 36.155,100.93 L 36.155,101.452 L 33.607,106.782 L 32.788,106.782 L 35.327,101.605 L 35.327,101.587 L 32.464,101.587 L 32.464,100.93 L 36.155,100.93 L 36.155,100.93 z"
   id="path717" />
</g>
<g
   id="g719">
	<g
   id="g721">
		<line
   fill="none"
   stroke="#000000"
   x1="49.951"
   y1="62.780998"
   x2="41.617001"
   y2="39.780998"
   id="line723"
   style="fill:none;stroke:#000000" />
		<polygon
   points="46.056,41.16 42.038,40.943 39.091,43.684 39.584,34.169 46.056,41.16 "
   id="polygon725" />
	</g>
</g>
<g
   id="g727">
	<g
   id="g729">
		<line
   fill="none"
   stroke="#000000"
   x1="48.951"
   y1="32.448002"
   x2="58.951"
   y2="57.780998"
   id="line731"
   style="fill:none;stroke:#000000" />
		<polygon
   points="54.475,56.528 58.497,56.632 61.365,53.809 61.143,63.333 54.475,56.528 "
   id="polygon733" />
	</g>
</g>
<g
   id="g735">
	<path
   d="M 38.088,54.387 L 38.088,54.972 L 35.864,54.972 L 35.864,54.387 L 38.088,54.387 z"
   id="path737" />
	<path
   d="M 42.102,51.821 C 41.94,51.812 41.733,51.821 41.508,51.857 C 40.266,52.064 39.609,52.973 39.473,53.937 L 39.5,53.937 C 39.779,53.568 40.265,53.262 40.913,53.262 C 41.949,53.262 42.678,54.009 42.678,55.153 C 42.678,56.224 41.949,57.215 40.734,57.215 C 39.483,57.215 38.663,56.243 38.663,54.721 C 38.663,53.569 39.077,52.659 39.653,52.083 C 40.139,51.606 40.787,51.309 41.526,51.219 C 41.76,51.183 41.958,51.174 42.102,51.174 L 42.102,51.821 z M 40.743,56.602 C 41.418,56.602 41.877,56.035 41.877,55.198 C 41.877,54.361 41.4,53.857 40.67,53.857 C 40.193,53.857 39.752,54.154 39.536,54.577 C 39.482,54.667 39.446,54.784 39.446,54.928 C 39.464,55.891 39.905,56.602 40.734,56.602 L 40.743,56.602 L 40.743,56.602 z"
   id="path739" />
</g>
<g
   id="g741">
	<path
   d="M 60.388,40.488 C 60.226,40.479 60.019,40.488 59.794,40.524 C 58.552,40.731 57.895,41.64 57.759,42.604 L 57.786,42.604 C 58.065,42.235 58.551,41.929 59.199,41.929 C 60.235,41.929 60.964,42.676 60.964,43.82 C 60.964,44.891 60.235,45.882 59.019,45.882 C 57.768,45.882 56.949,44.91 56.949,43.388 C 56.949,42.236 57.363,41.326 57.939,40.75 C 58.425,40.273 59.073,39.976 59.812,39.886 C 60.046,39.85 60.244,39.841 60.388,39.841 L 60.388,40.488 z M 59.028,45.268 C 59.703,45.268 60.162,44.701 60.162,43.864 C 60.162,43.027 59.685,42.523 58.955,42.523 C 58.478,42.523 58.037,42.82 57.821,43.243 C 57.767,43.333 57.731,43.45 57.731,43.594 C 57.749,44.557 58.19,45.268 59.018,45.268 L 59.028,45.268 z"
   id="path743" />
</g>
<g
   id="g745">
	<g
   id="g747">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="58.307999"
   y1="77.266998"
   x2="115.284"
   y2="170.11501"
   id="line749"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="110.659,169.658 114.637,169.062 116.972,165.784 118.406,175.203 110.659,169.658 "
   id="polygon751" />
	</g>
</g>
<g
   id="p27">
	
		<radialGradient
   cx="123.4805"
   cy="-573.4624"
   r="11.9373"
   id="path16609_17_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
		<stop
   id="stop756"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop758"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop760"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop762"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop764"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop766"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop768"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop770"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop772"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop774"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 189.786,73.204 C 189.786,77.472 181.423,80.932 171.114,80.932 C 160.803,80.932 152.444,77.474 152.444,73.204 C 152.444,68.935 160.803,65.478 171.114,65.478 C 181.423,65.479 189.786,68.937 189.786,73.204 z"
   id="path16609_9_"
   style="fill:url(#path16609_17_);stroke:#000000" />
	<g
   id="g777">
		<path
   d="M 164.705,72.918 C 164.705,72.37 164.687,71.927 164.67,71.52 L 165.369,71.52 L 165.404,72.254 L 165.422,72.254 C 165.741,71.732 166.245,71.422 166.944,71.422 C 167.979,71.422 168.758,72.298 168.758,73.599 C 168.758,75.139 167.82,75.9 166.811,75.9 C 166.245,75.9 165.749,75.652 165.492,75.228 L 165.474,75.228 L 165.474,77.556 L 164.704,77.556 L 164.704,72.918 L 164.705,72.918 z M 165.475,74.06 C 165.475,74.175 165.493,74.281 165.511,74.379 C 165.653,74.919 166.121,75.291 166.679,75.291 C 167.502,75.291 167.98,74.618 167.98,73.636 C 167.98,72.778 167.529,72.043 166.706,72.043 C 166.175,72.043 165.68,72.423 165.529,73.007 C 165.502,73.105 165.476,73.22 165.476,73.326 L 165.476,74.06 L 165.475,74.06 z"
   id="path779" />
		<path
   d="M 169.493,75.804 L 169.493,75.326 L 170.103,74.733 C 171.572,73.335 172.236,72.591 172.245,71.724 C 172.245,71.14 171.962,70.6 171.103,70.6 C 170.581,70.6 170.147,70.866 169.882,71.087 L 169.634,70.539 C 170.032,70.203 170.598,69.955 171.262,69.955 C 172.501,69.955 173.023,70.805 173.023,71.628 C 173.023,72.69 172.253,73.548 171.041,74.717 L 170.581,75.142 L 170.581,75.16 L 173.165,75.16 L 173.165,75.806 L 169.493,75.806 L 169.493,75.804 z"
   id="path781" />
		<path
   d="M 177.768,70.051 L 177.768,70.564 L 175.263,75.803 L 174.458,75.803 L 176.953,70.714 L 176.953,70.696 L 174.14,70.696 L 174.14,70.05 L 177.768,70.05 L 177.768,70.051 z"
   id="path783" />
	</g>
</g>
<g
   id="g785">
	<path
   d="M 129.458,41.668 L 129.44,41.668 L 128.423,42.217 L 128.27,41.614 L 129.548,40.93 L 130.223,40.93 L 130.223,46.782 L 129.458,46.782 L 129.458,41.668 L 129.458,41.668 z"
   id="path787" />
	<path
   d="M 132.815,46.223 C 132.986,46.241 133.184,46.223 133.454,46.196 C 133.913,46.133 134.345,45.944 134.679,45.629 C 135.066,45.278 135.345,44.765 135.453,44.071 L 135.426,44.071 C 135.102,44.467 134.634,44.701 134.049,44.701 C 132.996,44.701 132.32,43.909 132.32,42.909 C 132.32,41.802 133.121,40.829 134.319,40.829 C 135.517,40.829 136.255,41.801 136.255,43.296 C 136.255,44.583 135.823,45.484 135.247,46.042 C 134.797,46.483 134.176,46.753 133.545,46.825 C 133.257,46.87 133.005,46.879 132.816,46.87 L 132.816,46.223 L 132.815,46.223 z M 134.247,41.434 C 133.58,41.434 133.103,42.028 133.103,42.856 C 133.103,43.585 133.544,44.099 134.228,44.099 C 134.759,44.099 135.173,43.838 135.38,43.487 C 135.425,43.415 135.452,43.325 135.452,43.199 C 135.452,42.199 135.083,41.434 134.255,41.434 L 134.247,41.434 z"
   id="path789" />
</g>
<g
   id="g791">
	<g
   id="g793">
		<g
   id="g795">
			<path
   d="M 93.733,72.841 C 127.264,72.841 123.123,34.151 123.123,34.151"
   id="path797"
   style="fill:none;stroke:#000000" />
			<polygon
   points="127.104,36.549 123.254,35.38 119.738,37.338 122.487,28.215 127.104,36.549 "
   id="polygon799" />
		</g>
	</g>
	<g
   id="g801">
		<g
   id="g803">
			<path
   d="M 153.025,72.841 C 119.494,72.841 123.122,34.151 123.122,34.151"
   id="path805"
   style="fill:none;stroke:#000000" />
			<polygon
   points="126.546,37.293 123.006,35.381 119.171,36.602 123.679,28.208 126.546,37.293 "
   id="polygon807" />
		</g>
	</g>
</g>
<g
   id="g809">
	<g
   id="g811">
		<g
   id="g813">
			<path
   d="M 117.298,28.448 C 117.298,65.411 129.232,77.281 147.784,77.281"
   id="path815"
   style="fill:none;stroke:#000000" />
			<polygon
   points="144.976,80.984 146.548,77.281 144.976,73.577 153.753,77.281 144.976,80.984 "
   id="polygon817" />
		</g>
	</g>
	<g
   id="g819">
		<g
   id="g821">
			<path
   d="M 117.594,29.114 C 117.594,58.508 109.251,67.947 96.284,67.947"
   id="path823"
   style="fill:none;stroke:#000000" />
			<polygon
   points="99.093,64.244 97.52,67.947 99.093,71.651 90.315,67.947 99.093,64.244 "
   id="polygon825" />
		</g>
	</g>
</g>
<g
   id="g827">
	<path
   d="M 103.24,46.281 L 103.24,45.795 L 103.861,45.192 C 105.356,43.77 106.03,43.013 106.04,42.131 C 106.04,41.537 105.752,40.988 104.878,40.988 C 104.347,40.988 103.906,41.258 103.636,41.483 L 103.384,40.925 C 103.789,40.583 104.365,40.331 105.04,40.331 C 106.3,40.331 106.832,41.195 106.832,42.033 C 106.832,43.113 106.049,43.986 104.815,45.175 L 104.347,45.607 L 104.347,45.625 L 106.976,45.625 L 106.976,46.282 L 103.24,46.282 L 103.24,46.281 z"
   id="path829" />
	<path
   d="M 111.746,43.292 C 111.746,45.281 111.008,46.38 109.711,46.38 C 108.567,46.38 107.794,45.309 107.775,43.373 C 107.775,41.41 108.621,40.33 109.81,40.33 C 111.043,40.331 111.746,41.429 111.746,43.292 z M 108.567,43.382 C 108.567,44.903 109.035,45.768 109.755,45.768 C 110.565,45.768 110.952,44.823 110.952,43.328 C 110.952,41.888 110.583,40.943 109.764,40.943 C 109.072,40.943 108.567,41.789 108.567,43.382 z"
   id="path831" />
</g>
<g
   id="g833">
	<g
   id="g835">
		<line
   fill="none"
   stroke="#000000"
   x1="170.284"
   y1="35.115002"
   x2="170.284"
   y2="59.448002"
   id="line837"
   style="fill:none;stroke:#000000" />
		<polygon
   points="166.581,56.639 170.284,58.212 173.987,56.639 170.284,65.417 166.581,56.639 "
   id="polygon839" />
	</g>
</g>
<g
   id="g841">
	<path
   d="M 176.847,45.596 L 176.847,46.118 L 174.299,51.448 L 173.48,51.448 L 176.019,46.271 L 176.019,46.253 L 173.156,46.253 L 173.156,45.596 L 176.847,45.596 L 176.847,45.596 z"
   id="path843" />
</g>
<g
   id="g845">
	<g
   id="g847">
		<line
   fill="none"
   stroke="#000000"
   x1="169.95"
   y1="80.780998"
   x2="169.95"
   y2="102.781"
   id="line849"
   style="fill:none;stroke:#000000" />
		<polygon
   points="166.247,99.973 169.95,101.545 173.654,99.973 169.95,108.75 166.247,99.973 "
   id="polygon851" />
	</g>
</g>
<g
   id="g853">
	<path
   d="M 169.127,115.702 C 168.479,115.396 168.2,114.892 168.2,114.388 C 168.2,113.461 168.983,112.831 170.01,112.831 C 171.144,112.831 171.711,113.542 171.711,114.271 C 171.711,114.766 171.468,115.297 170.747,115.639 L 170.747,115.666 C 171.476,115.954 171.927,116.467 171.927,117.178 C 171.927,118.196 171.054,118.88 169.938,118.88 C 168.713,118.88 167.975,118.151 167.975,117.296 C 167.975,116.558 168.416,116.036 169.136,115.73 L 169.127,115.702 z M 171.126,117.26 C 171.126,116.549 170.631,116.207 169.838,115.982 C 169.154,116.18 168.785,116.63 168.785,117.189 C 168.758,117.783 169.208,118.305 169.955,118.305 C 170.666,118.304 171.126,117.854 171.126,117.26 z M 168.947,114.334 C 168.947,114.919 169.387,115.234 170.063,115.414 C 170.567,115.243 170.955,114.883 170.955,114.352 C 170.955,113.884 170.676,113.397 169.964,113.397 C 169.307,113.397 168.947,113.83 168.947,114.334 z"
   id="path855" />
</g>
<g
   id="g857">
	<g
   id="g859">
		<line
   fill="none"
   stroke="#000000"
   x1="162.617"
   y1="80.447998"
   x2="151.617"
   y2="102.115"
   id="line861"
   style="fill:none;stroke:#000000" />
		<polygon
   points="149.586,97.934 152.177,101.013 156.191,101.287 148.915,107.438 149.586,97.934 "
   id="polygon863" />
	</g>
</g>
<g
   id="g865">
	<path
   d="M 139.072,113.781 L 139.072,113.295 L 139.693,112.692 C 141.187,111.27 141.862,110.513 141.872,109.631 C 141.872,109.037 141.584,108.488 140.71,108.488 C 140.179,108.488 139.738,108.758 139.468,108.983 L 139.216,108.425 C 139.621,108.083 140.197,107.831 140.872,107.831 C 142.132,107.831 142.664,108.695 142.664,109.533 C 142.664,110.613 141.881,111.486 140.647,112.675 L 140.179,113.107 L 140.179,113.125 L 142.807,113.125 L 142.807,113.782 L 139.072,113.782 L 139.072,113.781 z"
   id="path867" />
	<path
   d="M 143.689,113.781 L 143.689,113.295 L 144.31,112.692 C 145.805,111.27 146.479,110.513 146.489,109.631 C 146.489,109.037 146.201,108.488 145.327,108.488 C 144.796,108.488 144.355,108.758 144.085,108.983 L 143.833,108.425 C 144.238,108.083 144.814,107.831 145.489,107.831 C 146.749,107.831 147.281,108.695 147.281,109.533 C 147.281,110.613 146.498,111.486 145.264,112.675 L 144.796,113.107 L 144.796,113.125 L 147.425,113.125 L 147.425,113.782 L 143.689,113.782 L 143.689,113.781 z"
   id="path869" />
</g>
<g
   id="g871">
	<g
   id="g873">
		<g
   id="g875">
			<g
   id="g877">
				<path
   d="M 190.066,74.175 C 215.304,74.175 212.186,35.485 212.186,35.485"
   id="path879"
   style="fill:none;stroke:#000000" />
				<polygon
   points="216.104,37.986 212.286,36.716 208.72,38.582 211.707,29.535 216.104,37.986 "
   id="polygon881" />
			</g>
		</g>
		<g
   id="g883">
			<g
   id="g885">
				<path
   d="M 234.692,74.175 C 209.455,74.175 212.186,35.485 212.186,35.485"
   id="path887"
   style="fill:none;stroke:#000000" />
				<polygon
   points="215.683,38.547 212.1,36.717 208.294,38.025 212.606,29.53 215.683,38.547 "
   id="polygon889" />
			</g>
		</g>
	</g>
	<g
   id="g891">
		<g
   id="g893">
			<g
   id="g895">
				<path
   d="M 208.592,29.781 C 208.592,66.745 217.266,78.614 230.748,78.614"
   id="path897"
   style="fill:none;stroke:#000000" />
				<polygon
   points="227.939,82.318 229.513,78.615 227.939,74.911 236.718,78.615 227.939,82.318 "
   id="polygon899" />
			</g>
		</g>
		<g
   id="g901">
			<g
   id="g903">
				<path
   d="M 208.808,30.448 C 208.808,59.842 202.744,69.281 193.321,69.281"
   id="path905"
   style="fill:none;stroke:#000000" />
				<polygon
   points="196.129,65.577 194.557,69.28 196.129,72.984 187.352,69.28 196.129,65.577 "
   id="polygon907" />
			</g>
		</g>
	</g>
</g>
<g
   id="g909">
	<path
   d="M 217.173,46.557 C 217.343,46.575 217.542,46.557 217.812,46.53 C 218.271,46.467 218.703,46.278 219.037,45.963 C 219.424,45.612 219.703,45.099 219.81,44.405 L 219.784,44.405 C 219.46,44.801 218.992,45.035 218.406,45.035 C 217.353,45.035 216.677,44.243 216.677,43.243 C 216.677,42.136 217.479,41.163 218.676,41.163 C 219.873,41.163 220.612,42.135 220.612,43.63 C 220.612,44.917 220.179,45.818 219.603,46.376 C 219.154,46.817 218.533,47.087 217.902,47.159 C 217.614,47.204 217.362,47.213 217.173,47.204 L 217.173,46.557 z M 218.604,41.767 C 217.937,41.767 217.459,42.361 217.459,43.189 C 217.459,43.918 217.9,44.432 218.585,44.432 C 219.116,44.432 219.53,44.171 219.737,43.82 C 219.782,43.748 219.808,43.658 219.808,43.532 C 219.808,42.532 219.439,41.767 218.611,41.767 L 218.604,41.767 z"
   id="path911" />
</g>
<g
   id="g913">
	<path
   d="M 198.292,42.001 L 198.274,42.001 L 197.256,42.55 L 197.103,41.947 L 198.381,41.263 L 199.057,41.263 L 199.057,47.115 L 198.291,47.115 L 198.291,42.001 L 198.292,42.001 z"
   id="path915" />
	<path
   d="M 205.079,44.126 C 205.079,46.115 204.341,47.214 203.044,47.214 C 201.9,47.214 201.126,46.143 201.108,44.207 C 201.108,42.244 201.954,41.164 203.143,41.164 C 204.376,41.164 205.079,42.262 205.079,44.126 z M 201.9,44.216 C 201.9,45.737 202.368,46.602 203.088,46.602 C 203.899,46.602 204.285,45.657 204.285,44.162 C 204.285,42.722 203.916,41.777 203.097,41.777 C 202.405,41.776 201.9,42.623 201.9,44.216 z"
   id="path917" />
</g>
<g
   id="a_CyclinE_Cdk2">
	<g
   id="g921">
		
			<radialGradient
   cx="175.1553"
   cy="-570.84082"
   r="11.9378"
   id="path16609_18_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
			<stop
   id="stop924"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop926"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop928"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop930"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop932"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop934"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop936"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop938"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop940"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop942"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 272.12,74.871 C 272.12,79.139 263.757,82.599 253.448,82.599 C 243.137,82.599 234.778,79.141 234.778,74.871 C 234.778,70.602 243.137,67.145 253.448,67.145 C 263.757,67.146 272.12,70.604 272.12,74.871 z"
   id="path16609_14_"
   style="fill:url(#path16609_18_);stroke:#000000" />
		<g
   id="g945">
			<path
   d="M 246.296,76.444 C 246.296,76.816 246.314,77.178 246.367,77.47 L 245.659,77.47 L 245.596,76.93 L 245.57,76.93 C 245.331,77.266 244.871,77.567 244.26,77.567 C 243.393,77.567 242.949,76.957 242.949,76.337 C 242.949,75.301 243.87,74.735 245.525,74.744 L 245.525,74.655 C 245.525,74.301 245.427,73.664 244.551,73.664 C 244.153,73.664 243.737,73.788 243.436,73.983 L 243.259,73.47 C 243.613,73.24 244.126,73.089 244.666,73.089 C 245.976,73.089 246.294,73.983 246.294,74.841 L 246.294,76.444 L 246.296,76.444 z M 245.544,75.285 C 244.694,75.267 243.73,75.418 243.73,76.25 C 243.73,76.754 244.066,76.993 244.464,76.993 C 245.022,76.993 245.376,76.639 245.499,76.276 C 245.526,76.196 245.544,76.108 245.544,76.028 L 245.544,75.285 z"
   id="path947" />
			<path
   d="M 251.747,77.276 C 251.464,77.418 250.897,77.568 250.172,77.568 C 248.49,77.568 247.225,76.497 247.225,74.542 C 247.225,72.674 248.491,71.409 250.34,71.409 C 251.084,71.409 251.553,71.569 251.756,71.675 L 251.57,72.303 C 251.278,72.161 250.862,72.055 250.367,72.055 C 248.969,72.055 248.039,72.949 248.039,74.515 C 248.039,75.975 248.88,76.913 250.331,76.913 C 250.801,76.913 251.278,76.816 251.588,76.665 L 251.747,77.276 z"
   id="path949" />
			<path
   d="M 252.792,73.188 L 253.73,75.719 C 253.828,76.002 253.934,76.339 254.004,76.595 L 254.022,76.595 C 254.102,76.338 254.191,76.011 254.296,75.701 L 255.146,73.188 L 255.969,73.188 L 254.801,76.241 C 254.243,77.71 253.863,78.462 253.332,78.922 C 252.951,79.258 252.57,79.391 252.376,79.427 L 252.181,78.772 C 252.376,78.71 252.633,78.586 252.863,78.392 C 253.076,78.224 253.342,77.923 253.518,77.525 C 253.553,77.445 253.58,77.383 253.58,77.339 C 253.58,77.295 253.562,77.233 253.527,77.135 L 251.943,73.188 L 252.792,73.188 L 252.792,73.188 z"
   id="path951" />
			<path
   d="M 259.642,77.312 C 259.439,77.418 258.988,77.568 258.412,77.568 C 257.12,77.568 256.279,76.683 256.279,75.373 C 256.279,74.055 257.182,73.099 258.581,73.099 C 259.041,73.099 259.448,73.214 259.66,73.32 L 259.483,73.922 C 259.297,73.816 259.005,73.718 258.581,73.718 C 257.599,73.718 257.067,74.444 257.067,75.338 C 257.067,76.329 257.704,76.94 258.553,76.94 C 258.996,76.94 259.288,76.825 259.509,76.728 L 259.642,77.312 z"
   id="path953" />
			<path
   d="M 263.669,74.674 L 261.35,74.674 L 261.35,76.825 L 263.934,76.825 L 263.934,77.471 L 260.58,77.471 L 260.58,71.506 L 263.802,71.506 L 263.802,72.152 L 261.35,72.152 L 261.35,74.037 L 263.669,74.037 L 263.669,74.674 z"
   id="path955" />
		</g>
	</g>
	<g
   id="g957">
		
			<radialGradient
   cx="156.46629"
   cy="783.25"
   r="13.0519"
   id="path31151_7_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,858.6992)">
			<stop
   id="stop960"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
			<stop
   id="stop962"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
			<stop
   id="stop964"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
			<stop
   id="stop966"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
			<stop
   id="stop968"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
			<stop
   id="stop970"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
			<stop
   id="stop972"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
			<stop
   id="stop974"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
			<stop
   id="stop976"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
			<stop
   id="stop978"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
			<stop
   id="stop980"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 292.476,69.888 L 298.921,75.394 L 293.14,80.453 C 290.535,82.834 286.124,84.4 281.122,84.4 C 273.122,84.4 266.634,80.39 266.634,75.451 C 266.634,70.506 273.12,66.501 281.122,66.501 C 285.721,66.498 289.821,67.822 292.476,69.888 z"
   id="path31151_2_"
   style="fill:url(#path31151_7_);stroke:#000000" />
		<g
   id="g983">
			<path
   d="M 277.347,77.893 C 277.059,78.037 276.483,78.19 275.744,78.19 C 274.034,78.19 272.747,77.101 272.747,75.111 C 272.747,73.212 274.034,71.924 275.915,71.924 C 276.671,71.924 277.149,72.086 277.356,72.194 L 277.167,72.833 C 276.87,72.689 276.446,72.581 275.942,72.581 C 274.52,72.581 273.575,73.49 273.575,75.084 C 273.575,76.569 274.43,77.523 275.906,77.523 C 276.384,77.523 276.87,77.424 277.184,77.271 L 277.347,77.893 z"
   id="path985" />
			<path
   d="M 278.326,72.104 C 278.804,72.032 279.37,71.978 279.991,71.978 C 281.117,71.978 281.919,72.239 282.45,72.734 C 282.989,73.229 283.304,73.931 283.304,74.913 C 283.304,75.903 282.998,76.713 282.431,77.271 C 281.864,77.838 280.928,78.145 279.748,78.145 C 279.189,78.145 278.721,78.118 278.325,78.073 L 278.325,72.104 L 278.326,72.104 z M 279.109,77.47 C 279.307,77.506 279.595,77.515 279.901,77.515 C 281.576,77.515 282.485,76.578 282.485,74.94 C 282.495,73.508 281.684,72.599 280.028,72.599 C 279.622,72.599 279.316,72.635 279.109,72.68 L 279.109,77.47 z"
   id="path987" />
			<path
   d="M 284.32,72.023 L 285.103,72.023 L 285.103,74.949 L 285.13,74.949 C 285.291,74.715 285.453,74.499 285.608,74.301 L 287.462,72.023 L 288.435,72.023 L 286.238,74.598 L 288.607,78.091 L 287.679,78.091 L 285.68,75.111 L 285.104,75.778 L 285.104,78.091 L 284.321,78.091 L 284.321,72.023 L 284.32,72.023 z"
   id="path989" />
			<path
   d="M 288.919,78.091 L 288.919,77.605 L 289.54,77.002 C 291.034,75.58 291.71,74.823 291.72,73.941 C 291.72,73.347 291.431,72.798 290.558,72.798 C 290.027,72.798 289.585,73.068 289.316,73.293 L 289.064,72.735 C 289.468,72.393 290.044,72.141 290.72,72.141 C 291.98,72.141 292.511,73.005 292.511,73.843 C 292.511,74.923 291.728,75.796 290.495,76.985 L 290.026,77.417 L 290.026,77.435 L 292.655,77.435 L 292.655,78.092 L 288.919,78.092 L 288.919,78.091 z"
   id="path991" />
		</g>
	</g>
</g>
<g
   id="g993">
	<g
   id="g995">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="249.95"
   y1="82.780998"
   x2="178.284"
   y2="93.447998"
   id="line997"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="180.517,89.372 179.507,93.266 181.607,96.698 172.38,94.327 180.517,89.372 "
   id="polygon999" />
	</g>
</g>
<g
   id="g1001">
	<g
   id="g1003">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="248.95"
   y1="82.780998"
   x2="160.95"
   y2="161.78101"
   id="line1005"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="160.566,157.149 161.87,160.956 165.515,162.661 156.508,165.769 160.566,157.149 "
   id="polygon1007" />
	</g>
</g>
<g
   id="g1009">
	<g
   id="g1011">
		<line
   fill="none"
   stroke="#000000"
   x1="257.28299"
   y1="67.114998"
   x2="274.78299"
   y2="32.448002"
   id="line1013"
   style="fill:none;stroke:#000000" />
		<polygon
   points="276.823,36.624 274.227,33.552 270.211,33.286 277.474,27.12 276.823,36.624 "
   id="polygon1015" />
	</g>
</g>
<g
   id="CycD_Cdk4_p27">
	<g
   id="g1019">
		<g
   id="g1021">
			
				<radialGradient
   cx="81.953102"
   cy="-672.5498"
   r="11.9373"
   id="path16609_19_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
				<stop
   id="stop1024"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop1026"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop1028"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop1030"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop1032"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop1034"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop1036"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop1038"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop1040"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop1042"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 123.62,10.205 C 123.62,14.473 115.257,17.933 104.949,17.933 C 94.638,17.933 86.28,14.475 86.28,10.205 C 86.28,5.936 94.639,2.479 104.949,2.479 C 115.256,2.48 123.62,5.937 123.62,10.205 z"
   id="path16609_7_"
   style="fill:url(#path16609_19_);stroke:#000000" />
			<g
   id="g1045">
				<path
   d="M 100.344,12.609 C 100.061,12.751 99.494,12.901 98.769,12.901 C 97.087,12.901 95.822,11.83 95.822,9.875 C 95.822,8.007 97.087,6.742 98.937,6.742 C 99.68,6.742 100.149,6.902 100.353,7.008 L 100.167,7.636 C 99.875,7.494 99.459,7.388 98.963,7.388 C 97.565,7.388 96.635,8.282 96.635,9.848 C 96.635,11.308 97.476,12.246 98.927,12.246 C 99.396,12.246 99.874,12.149 100.184,11.998 L 100.344,12.609 z"
   id="path1047" />
				<path
   d="M 101.389,8.521 L 102.327,11.052 C 102.425,11.335 102.531,11.672 102.601,11.928 L 102.619,11.928 C 102.699,11.671 102.787,11.344 102.893,11.034 L 103.743,8.521 L 104.566,8.521 L 103.398,11.574 C 102.841,13.043 102.46,13.795 101.929,14.255 C 101.548,14.591 101.168,14.724 100.973,14.76 L 100.779,14.105 C 100.973,14.043 101.23,13.919 101.46,13.725 C 101.672,13.557 101.938,13.256 102.115,12.858 C 102.151,12.778 102.177,12.716 102.177,12.672 C 102.177,12.628 102.159,12.566 102.124,12.468 L 100.54,8.521 L 101.389,8.521 z"
   id="path1049" />
				<path
   d="M 108.239,12.645 C 108.035,12.751 107.584,12.901 107.009,12.901 C 105.717,12.901 104.876,12.016 104.876,10.706 C 104.876,9.388 105.778,8.432 107.177,8.432 C 107.637,8.432 108.044,8.547 108.257,8.653 L 108.079,9.255 C 107.893,9.149 107.601,9.051 107.177,9.051 C 106.195,9.051 105.664,9.777 105.664,10.671 C 105.664,11.662 106.301,12.273 107.151,12.273 C 107.593,12.273 107.885,12.158 108.107,12.061 L 108.239,12.645 z"
   id="path1051" />
				<path
   d="M 109.177,6.919 C 109.646,6.848 110.203,6.795 110.814,6.795 C 111.92,6.795 112.709,7.052 113.23,7.539 C 113.761,8.025 114.071,8.716 114.071,9.681 C 114.071,10.655 113.77,11.451 113.213,12 C 112.655,12.557 111.735,12.858 110.576,12.858 C 110.027,12.858 109.566,12.831 109.178,12.787 L 109.178,6.919 L 109.177,6.919 z M 109.946,12.193 C 110.141,12.229 110.425,12.237 110.725,12.237 C 112.371,12.237 113.265,11.317 113.265,9.706 C 113.274,8.299 112.477,7.405 110.849,7.405 C 110.451,7.405 110.15,7.44 109.946,7.485 L 109.946,12.193 z"
   id="path1053" />
			</g>
		</g>
		<g
   id="g1055">
			
				<radialGradient
   cx="91.785202"
   cy="-655.24799"
   r="11.9373"
   id="path16609_20_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
				<stop
   id="stop1058"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop1060"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop1062"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop1064"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop1066"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop1068"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop1070"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop1072"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop1074"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop1076"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 139.286,21.205 C 139.286,25.473 130.923,28.933 120.615,28.933 C 110.303,28.933 101.945,25.475 101.945,21.205 C 101.945,16.936 110.303,13.479 120.615,13.479 C 130.923,13.48 139.286,16.937 139.286,21.205 z"
   id="path16609_8_"
   style="fill:url(#path16609_20_);stroke:#000000" />
			<g
   id="g1079">
				<path
   d="M 114.206,20.919 C 114.206,20.371 114.188,19.928 114.171,19.521 L 114.87,19.521 L 114.905,20.255 L 114.923,20.255 C 115.242,19.733 115.746,19.423 116.445,19.423 C 117.48,19.423 118.259,20.299 118.259,21.6 C 118.259,23.14 117.321,23.901 116.312,23.901 C 115.746,23.901 115.25,23.653 114.993,23.229 L 114.975,23.229 L 114.975,25.557 L 114.205,25.557 L 114.205,20.919 L 114.206,20.919 z M 114.976,22.061 C 114.976,22.176 114.994,22.282 115.012,22.38 C 115.154,22.92 115.622,23.292 116.18,23.292 C 117.003,23.292 117.481,22.619 117.481,21.637 C 117.481,20.779 117.03,20.044 116.207,20.044 C 115.676,20.044 115.181,20.424 115.03,21.008 C 115.003,21.106 114.977,21.221 114.977,21.327 L 114.977,22.061 L 114.976,22.061 z"
   id="path1081" />
				<path
   d="M 118.994,23.804 L 118.994,23.326 L 119.604,22.733 C 121.073,21.335 121.737,20.591 121.746,19.724 C 121.746,19.14 121.463,18.6 120.604,18.6 C 120.082,18.6 119.648,18.866 119.383,19.087 L 119.135,18.539 C 119.533,18.203 120.099,17.955 120.763,17.955 C 122.002,17.955 122.524,18.805 122.524,19.628 C 122.524,20.69 121.754,21.548 120.542,22.717 L 120.082,23.142 L 120.082,23.16 L 122.666,23.16 L 122.666,23.806 L 118.994,23.806 L 118.994,23.804 z"
   id="path1083" />
				<path
   d="M 127.268,18.052 L 127.268,18.565 L 124.763,23.804 L 123.958,23.804 L 126.453,18.715 L 126.453,18.697 L 123.64,18.697 L 123.64,18.051 L 127.268,18.051 L 127.268,18.052 z"
   id="path1085" />
			</g>
		</g>
	</g>
	<g
   id="g1087">
		
			<radialGradient
   cx="9.9658003"
   cy="849.25"
   r="13.0519"
   id="path31151_8_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,858.6992)">
			<stop
   id="stop1090"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
			<stop
   id="stop1092"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
			<stop
   id="stop1094"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
			<stop
   id="stop1096"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
			<stop
   id="stop1098"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
			<stop
   id="stop1100"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
			<stop
   id="stop1102"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
			<stop
   id="stop1104"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
			<stop
   id="stop1106"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
			<stop
   id="stop1108"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
			<stop
   id="stop1110"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 145.976,3.888 L 152.42,9.394 L 146.639,14.453 C 144.034,16.834 139.624,18.4 134.621,18.4 C 126.621,18.4 120.133,14.39 120.133,9.451 C 120.133,4.506 126.62,0.501 134.621,0.501 C 139.221,0.498 143.322,1.822 145.976,3.888 z"
   id="path31151_3_"
   style="fill:url(#path31151_8_);stroke:#000000" />
		<g
   id="g1113">
			<path
   d="M 130.847,11.893 C 130.559,12.037 129.983,12.19 129.244,12.19 C 127.534,12.19 126.246,11.101 126.246,9.111 C 126.246,7.212 127.533,5.924 129.415,5.924 C 130.171,5.924 130.648,6.086 130.855,6.194 L 130.666,6.833 C 130.369,6.689 129.946,6.581 129.441,6.581 C 128.019,6.581 127.073,7.49 127.073,9.084 C 127.073,10.569 127.928,11.523 129.405,11.523 C 129.882,11.523 130.368,11.424 130.683,11.271 L 130.847,11.893 z"
   id="path1115" />
			<path
   d="M 131.826,6.104 C 132.303,6.032 132.87,5.978 133.492,5.978 C 134.617,5.978 135.419,6.239 135.95,6.734 C 136.49,7.229 136.805,7.931 136.805,8.913 C 136.805,9.903 136.499,10.713 135.932,11.271 C 135.365,11.838 134.429,12.145 133.249,12.145 C 132.691,12.145 132.223,12.118 131.827,12.073 L 131.827,6.104 L 131.826,6.104 z M 132.609,11.47 C 132.807,11.506 133.095,11.515 133.401,11.515 C 135.075,11.515 135.984,10.578 135.984,8.94 C 135.993,7.508 135.183,6.599 133.526,6.599 C 133.121,6.599 132.815,6.635 132.608,6.68 L 132.608,11.47 L 132.609,11.47 z"
   id="path1117" />
			<path
   d="M 137.82,6.023 L 138.603,6.023 L 138.603,8.949 L 138.63,8.949 C 138.792,8.715 138.954,8.499 139.107,8.301 L 140.961,6.023 L 141.933,6.023 L 139.736,8.598 L 142.104,12.091 L 141.176,12.091 L 139.177,9.111 L 138.601,9.778 L 138.601,12.091 L 137.818,12.091 L 137.818,6.023 L 137.82,6.023 z"
   id="path1119" />
			<path
   d="M 144.868,12.091 L 144.868,10.498 L 142.149,10.498 L 142.149,9.975 L 144.759,6.239 L 145.614,6.239 L 145.614,9.876 L 146.433,9.876 L 146.433,10.498 L 145.614,10.498 L 145.614,12.091 L 144.868,12.091 z M 144.868,9.876 L 144.868,7.922 C 144.868,7.616 144.877,7.31 144.895,7.004 L 144.868,7.004 C 144.688,7.346 144.544,7.598 144.382,7.868 L 142.951,9.858 L 142.951,9.876 L 144.868,9.876 z"
   id="path1121" />
		</g>
	</g>
</g>
<g
   id="CycE_Cdk2_p27">
	<g
   id="g1125">
		<g
   id="g1127">
			
				<radialGradient
   cx="138.2314"
   cy="-671.50098"
   r="11.9373"
   id="path16609_21_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
				<stop
   id="stop1130"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop1132"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop1134"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop1136"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop1138"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop1140"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop1142"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop1144"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop1146"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop1148"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 213.289,10.871 C 213.289,15.139 204.926,18.599 194.617,18.599 C 184.306,18.599 175.948,15.141 175.948,10.871 C 175.948,6.602 184.306,3.145 194.617,3.145 C 204.926,3.146 213.289,6.604 213.289,10.871 z"
   id="path16609_12_"
   style="fill:url(#path16609_21_);stroke:#000000" />
			<g
   id="g1151">
				<path
   d="M 190.783,13.276 C 190.5,13.418 189.933,13.568 189.208,13.568 C 187.526,13.568 186.261,12.497 186.261,10.542 C 186.261,8.674 187.527,7.409 189.376,7.409 C 190.12,7.409 190.589,7.569 190.792,7.675 L 190.606,8.303 C 190.314,8.161 189.898,8.055 189.403,8.055 C 188.005,8.055 187.075,8.949 187.075,10.515 C 187.075,11.975 187.916,12.913 189.367,12.913 C 189.837,12.913 190.314,12.816 190.624,12.665 L 190.783,13.276 z"
   id="path1153" />
				<path
   d="M 191.828,9.188 L 192.766,11.719 C 192.864,12.002 192.97,12.339 193.04,12.595 L 193.058,12.595 C 193.138,12.338 193.227,12.011 193.332,11.701 L 194.182,9.188 L 195.005,9.188 L 193.837,12.241 C 193.279,13.71 192.899,14.462 192.368,14.922 C 191.987,15.258 191.606,15.391 191.412,15.427 L 191.217,14.772 C 191.412,14.71 191.669,14.586 191.899,14.392 C 192.112,14.224 192.378,13.923 192.554,13.525 C 192.589,13.445 192.616,13.383 192.616,13.339 C 192.616,13.295 192.598,13.233 192.563,13.135 L 190.979,9.188 L 191.828,9.188 L 191.828,9.188 z"
   id="path1155" />
				<path
   d="M 198.678,13.312 C 198.475,13.418 198.024,13.568 197.448,13.568 C 196.157,13.568 195.316,12.683 195.316,11.373 C 195.316,10.055 196.218,9.099 197.617,9.099 C 198.077,9.099 198.484,9.214 198.696,9.32 L 198.519,9.922 C 198.333,9.816 198.041,9.718 197.617,9.718 C 196.635,9.718 196.103,10.444 196.103,11.338 C 196.103,12.329 196.74,12.94 197.589,12.94 C 198.032,12.94 198.324,12.825 198.545,12.728 L 198.678,13.312 z"
   id="path1157" />
				<path
   d="M 202.705,10.674 L 200.386,10.674 L 200.386,12.825 L 202.97,12.825 L 202.97,13.471 L 199.616,13.471 L 199.616,7.506 L 202.838,7.506 L 202.838,8.152 L 200.386,8.152 L 200.386,10.037 L 202.705,10.037 L 202.705,10.674 z"
   id="path1159" />
			</g>
		</g>
		<g
   id="g1161">
			
				<radialGradient
   cx="148.0645"
   cy="-654.2002"
   r="11.9373"
   id="path16609_22_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
				<stop
   id="stop1164"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop1166"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop1168"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop1170"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop1172"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop1174"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop1176"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop1178"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop1180"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop1182"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 228.955,21.871 C 228.955,26.139 220.592,29.599 210.284,29.599 C 199.972,29.599 191.614,26.141 191.614,21.871 C 191.614,17.602 199.972,14.145 210.284,14.145 C 220.592,14.146 228.955,17.604 228.955,21.871 z"
   id="path16609_11_"
   style="fill:url(#path16609_22_);stroke:#000000" />
			<g
   id="g1185">
				<path
   d="M 203.875,21.585 C 203.875,21.037 203.857,20.594 203.84,20.187 L 204.539,20.187 L 204.574,20.921 L 204.592,20.921 C 204.91,20.399 205.415,20.089 206.114,20.089 C 207.149,20.089 207.927,20.965 207.927,22.266 C 207.927,23.806 206.989,24.567 205.981,24.567 C 205.415,24.567 204.918,24.319 204.662,23.895 L 204.644,23.895 L 204.644,26.223 L 203.874,26.223 L 203.874,21.585 L 203.875,21.585 z M 204.645,22.727 C 204.645,22.842 204.663,22.948 204.681,23.046 C 204.823,23.586 205.291,23.958 205.849,23.958 C 206.672,23.958 207.15,23.285 207.15,22.303 C 207.15,21.445 206.699,20.71 205.876,20.71 C 205.345,20.71 204.85,21.09 204.699,21.674 C 204.672,21.772 204.645,21.887 204.645,21.993 L 204.645,22.727 z"
   id="path1187" />
				<path
   d="M 208.663,24.471 L 208.663,23.993 L 209.273,23.4 C 210.742,22.002 211.406,21.258 211.415,20.391 C 211.415,19.807 211.132,19.267 210.273,19.267 C 209.751,19.267 209.317,19.533 209.051,19.754 L 208.804,19.206 C 209.201,18.87 209.768,18.622 210.432,18.622 C 211.671,18.622 212.194,19.472 212.194,20.295 C 212.194,21.357 211.423,22.215 210.212,23.384 L 209.751,23.809 L 209.751,23.827 L 212.336,23.827 L 212.336,24.473 L 208.663,24.473 L 208.663,24.471 z"
   id="path1189" />
				<path
   d="M 216.938,18.718 L 216.938,19.231 L 214.433,24.47 L 213.628,24.47 L 216.123,19.381 L 216.123,19.363 L 213.31,19.363 L 213.31,18.717 L 216.938,18.717 L 216.938,18.718 z"
   id="path1191" />
			</g>
		</g>
	</g>
	<g
   id="g1193">
		
			<radialGradient
   cx="97.466301"
   cy="849.25"
   r="13.0519"
   id="path31151_9_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,858.6992)">
			<stop
   id="stop1196"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
			<stop
   id="stop1198"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
			<stop
   id="stop1200"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
			<stop
   id="stop1202"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
			<stop
   id="stop1204"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
			<stop
   id="stop1206"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
			<stop
   id="stop1208"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
			<stop
   id="stop1210"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
			<stop
   id="stop1212"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
			<stop
   id="stop1214"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
			<stop
   id="stop1216"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 233.476,3.888 L 239.921,9.394 L 234.14,14.453 C 231.535,16.834 227.124,18.4 222.122,18.4 C 214.122,18.4 207.634,14.39 207.634,9.451 C 207.634,4.506 214.12,0.501 222.122,0.501 C 226.721,0.498 230.821,1.822 233.476,3.888 z"
   id="path31151_1_"
   style="fill:url(#path31151_9_);stroke:#000000" />
		<g
   id="g1219">
			<path
   d="M 218.347,11.893 C 218.059,12.037 217.483,12.19 216.744,12.19 C 215.034,12.19 213.747,11.101 213.747,9.111 C 213.747,7.212 215.034,5.924 216.915,5.924 C 217.671,5.924 218.149,6.086 218.356,6.194 L 218.167,6.833 C 217.87,6.689 217.446,6.581 216.942,6.581 C 215.52,6.581 214.575,7.49 214.575,9.084 C 214.575,10.569 215.43,11.523 216.906,11.523 C 217.384,11.523 217.87,11.424 218.184,11.271 L 218.347,11.893 z"
   id="path1221" />
			<path
   d="M 219.326,6.104 C 219.804,6.032 220.37,5.978 220.991,5.978 C 222.117,5.978 222.919,6.239 223.45,6.734 C 223.989,7.229 224.304,7.931 224.304,8.913 C 224.304,9.903 223.998,10.713 223.431,11.271 C 222.864,11.838 221.928,12.145 220.748,12.145 C 220.189,12.145 219.721,12.118 219.325,12.073 L 219.325,6.104 L 219.326,6.104 z M 220.109,11.47 C 220.307,11.506 220.595,11.515 220.901,11.515 C 222.576,11.515 223.485,10.578 223.485,8.94 C 223.495,7.508 222.684,6.599 221.028,6.599 C 220.622,6.599 220.316,6.635 220.109,6.68 L 220.109,11.47 z"
   id="path1223" />
			<path
   d="M 225.32,6.023 L 226.103,6.023 L 226.103,8.949 L 226.13,8.949 C 226.291,8.715 226.453,8.499 226.608,8.301 L 228.462,6.023 L 229.435,6.023 L 227.238,8.598 L 229.607,12.091 L 228.679,12.091 L 226.68,9.111 L 226.104,9.778 L 226.104,12.091 L 225.321,12.091 L 225.321,6.023 L 225.32,6.023 z"
   id="path1225" />
			<path
   d="M 229.919,12.091 L 229.919,11.605 L 230.54,11.002 C 232.034,9.58 232.71,8.823 232.72,7.941 C 232.72,7.347 232.431,6.798 231.558,6.798 C 231.027,6.798 230.585,7.068 230.316,7.293 L 230.064,6.735 C 230.468,6.393 231.044,6.141 231.72,6.141 C 232.98,6.141 233.511,7.005 233.511,7.843 C 233.511,8.923 232.728,9.796 231.495,10.985 L 231.026,11.417 L 231.026,11.435 L 233.655,11.435 L 233.655,12.092 L 229.919,12.092 L 229.919,12.091 z"
   id="path1227" />
		</g>
	</g>
</g>
<g
   id="g1229">
	<path
   d="M 274.738,24.781 L 274.738,24.295 L 275.359,23.692 C 276.853,22.27 277.529,21.513 277.538,20.631 C 277.538,20.037 277.25,19.488 276.377,19.488 C 275.846,19.488 275.404,19.758 275.134,19.983 L 274.882,19.425 C 275.287,19.083 275.863,18.831 276.539,18.831 C 277.799,18.831 278.33,19.695 278.33,20.533 C 278.33,21.613 277.547,22.486 276.313,23.675 L 275.845,24.107 L 275.845,24.125 L 278.474,24.125 L 278.474,24.782 L 274.738,24.782 L 274.738,24.781 z"
   id="path1231" />
	<path
   d="M 281.075,19.668 L 281.056,19.668 L 280.038,20.217 L 279.886,19.614 L 281.164,18.93 L 281.839,18.93 L 281.839,24.782 L 281.074,24.782 L 281.074,19.668 L 281.075,19.668 z"
   id="path1233" />
</g>
<g
   id="g1235">
	<g
   id="g1237">
		<path
   d="M 242.699,68.217 C 237.662,62.439 233.637,55.694 237.835,48.45 C 242.762,39.947 251.21,37.618 260.622,39.372"
   id="path1239"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="257.183,42.498 259.407,39.146 258.54,35.216 266.49,40.466 257.183,42.498 "
   id="polygon1241" />
	</g>
</g>
<g
   id="g1243">
	<g
   id="g1245">
		<path
   d="M 247.141,85.265 C 244.135,93.376 242.578,101.932 249.854,106.95 C 258.395,112.841 268.192,110.976 277.384,104.652"
   id="path1247"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="277.169,109.294 276.365,105.352 272.971,103.191 282.302,101.268 277.169,109.294 "
   id="polygon1249" />
	</g>
</g>
<g
   id="i_CyclinE_Cdk2">
	<g
   id="g1253">
		
			<radialGradient
   cx="226.62109"
   cy="-570.84082"
   r="11.9378"
   id="path16609_23_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-25.626,437.8124)">
			<stop
   id="stop1256"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop1258"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop1260"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop1262"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop1264"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop1266"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop1268"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop1270"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop1272"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop1274"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 354.12,74.871 C 354.12,79.139 345.757,82.599 335.448,82.599 C 325.137,82.599 316.778,79.141 316.778,74.871 C 316.778,70.602 325.137,67.145 335.448,67.145 C 345.757,67.146 354.12,70.604 354.12,74.871 z"
   id="path16609_5_"
   style="fill:url(#path16609_23_);stroke:#000000" />
		<g
   id="g1277">
			<path
   d="M 327.251,71.983 C 327.26,72.249 327.065,72.461 326.756,72.461 C 326.482,72.461 326.287,72.249 326.287,71.983 C 326.287,71.709 326.49,71.497 326.773,71.497 C 327.065,71.497 327.251,71.709 327.251,71.983 z M 326.384,77.471 L 326.384,73.188 L 327.163,73.188 L 327.163,77.471 L 326.384,77.471 z"
   id="path1279" />
			<path
   d="M 332.649,77.276 C 332.366,77.418 331.799,77.568 331.074,77.568 C 329.392,77.568 328.127,76.497 328.127,74.542 C 328.127,72.674 329.393,71.409 331.242,71.409 C 331.986,71.409 332.455,71.569 332.658,71.675 L 332.472,72.303 C 332.18,72.161 331.764,72.055 331.269,72.055 C 329.871,72.055 328.941,72.949 328.941,74.515 C 328.941,75.975 329.782,76.913 331.233,76.913 C 331.703,76.913 332.18,76.816 332.49,76.665 L 332.649,77.276 z"
   id="path1281" />
			<path
   d="M 333.694,73.188 L 334.632,75.719 C 334.73,76.002 334.836,76.339 334.906,76.595 L 334.924,76.595 C 335.004,76.338 335.093,76.011 335.198,75.701 L 336.048,73.188 L 336.871,73.188 L 335.703,76.241 C 335.145,77.71 334.765,78.462 334.234,78.922 C 333.853,79.258 333.472,79.391 333.278,79.427 L 333.083,78.772 C 333.278,78.71 333.535,78.586 333.765,78.392 C 333.978,78.224 334.244,77.923 334.42,77.525 C 334.455,77.445 334.482,77.383 334.482,77.339 C 334.482,77.295 334.464,77.233 334.429,77.135 L 332.845,73.188 L 333.694,73.188 L 333.694,73.188 z"
   id="path1283" />
			<path
   d="M 340.544,77.312 C 340.341,77.418 339.89,77.568 339.314,77.568 C 338.022,77.568 337.182,76.683 337.182,75.373 C 337.182,74.055 338.084,73.099 339.483,73.099 C 339.943,73.099 340.35,73.214 340.562,73.32 L 340.385,73.922 C 340.199,73.816 339.907,73.718 339.483,73.718 C 338.501,73.718 337.969,74.444 337.969,75.338 C 337.969,76.329 338.606,76.94 339.455,76.94 C 339.898,76.94 340.19,76.825 340.411,76.728 L 340.544,77.312 z"
   id="path1285" />
			<path
   d="M 344.571,74.674 L 342.252,74.674 L 342.252,76.825 L 344.836,76.825 L 344.836,77.471 L 341.482,77.471 L 341.482,71.506 L 344.704,71.506 L 344.704,72.152 L 342.252,72.152 L 342.252,74.037 L 344.571,74.037 L 344.571,74.674 z"
   id="path1287" />
		</g>
	</g>
	<g
   id="g1289">
		
			<radialGradient
   cx="238.4668"
   cy="783.25"
   r="13.0519"
   id="path31151_10_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,858.6992)">
			<stop
   id="stop1292"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
			<stop
   id="stop1294"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
			<stop
   id="stop1296"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
			<stop
   id="stop1298"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
			<stop
   id="stop1300"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
			<stop
   id="stop1302"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
			<stop
   id="stop1304"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
			<stop
   id="stop1306"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
			<stop
   id="stop1308"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
			<stop
   id="stop1310"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
			<stop
   id="stop1312"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 374.476,69.888 L 380.921,75.394 L 375.14,80.453 C 372.535,82.834 368.124,84.4 363.122,84.4 C 355.122,84.4 348.634,80.39 348.634,75.451 C 348.634,70.506 355.12,66.501 363.122,66.501 C 367.721,66.498 371.821,67.822 374.476,69.888 z"
   id="path31151_5_"
   style="fill:url(#path31151_10_);stroke:#000000" />
		<g
   id="g1315">
			<path
   d="M 359.347,77.893 C 359.059,78.037 358.483,78.19 357.744,78.19 C 356.034,78.19 354.747,77.101 354.747,75.111 C 354.747,73.212 356.034,71.924 357.915,71.924 C 358.671,71.924 359.149,72.086 359.356,72.194 L 359.167,72.833 C 358.87,72.689 358.446,72.581 357.942,72.581 C 356.52,72.581 355.575,73.49 355.575,75.084 C 355.575,76.569 356.43,77.523 357.906,77.523 C 358.384,77.523 358.87,77.424 359.184,77.271 L 359.347,77.893 z"
   id="path1317" />
			<path
   d="M 360.326,72.104 C 360.804,72.032 361.37,71.978 361.991,71.978 C 363.117,71.978 363.919,72.239 364.45,72.734 C 364.989,73.229 365.304,73.931 365.304,74.913 C 365.304,75.903 364.998,76.713 364.431,77.271 C 363.864,77.838 362.928,78.145 361.748,78.145 C 361.189,78.145 360.721,78.118 360.325,78.073 L 360.325,72.104 L 360.326,72.104 z M 361.109,77.47 C 361.307,77.506 361.595,77.515 361.901,77.515 C 363.576,77.515 364.485,76.578 364.485,74.94 C 364.495,73.508 363.684,72.599 362.028,72.599 C 361.622,72.599 361.316,72.635 361.109,72.68 L 361.109,77.47 z"
   id="path1319" />
			<path
   d="M 366.32,72.023 L 367.103,72.023 L 367.103,74.949 L 367.13,74.949 C 367.291,74.715 367.453,74.499 367.608,74.301 L 369.462,72.023 L 370.435,72.023 L 368.238,74.598 L 370.607,78.091 L 369.679,78.091 L 367.68,75.111 L 367.104,75.778 L 367.104,78.091 L 366.321,78.091 L 366.321,72.023 L 366.32,72.023 z"
   id="path1321" />
			<path
   d="M 370.919,78.091 L 370.919,77.605 L 371.54,77.002 C 373.034,75.58 373.71,74.823 373.72,73.941 C 373.72,73.347 373.431,72.798 372.558,72.798 C 372.027,72.798 371.585,73.068 371.316,73.293 L 371.064,72.735 C 371.468,72.393 372.044,72.141 372.72,72.141 C 373.98,72.141 374.511,73.005 374.511,73.843 C 374.511,74.923 373.728,75.796 372.495,76.985 L 372.026,77.417 L 372.026,77.435 L 374.655,77.435 L 374.655,78.092 L 370.919,78.092 L 370.919,78.091 z"
   id="path1323" />
		</g>
	</g>
</g>
<g
   id="g1325">
	<g
   id="g1327">
		<path
   d="M 261.45,67.781 C 284.941,39.087 325.072,35.784 348.318,64.613"
   id="path1329"
   style="fill:none;stroke:#000000" />
		<polygon
   points="343.673,64.751 347.543,63.651 349.438,60.102 352.065,69.26 343.673,64.751 "
   id="polygon1331" />
	</g>
</g>
<g
   id="g1333">
	<g
   id="g1335">
		<path
   d="M 354.817,83.059 C 331.191,111.753 290.829,115.056 267.449,86.227"
   id="path1337"
   style="fill:none;stroke:#000000" />
		<polygon
   points="272.095,86.076 268.228,87.187 266.342,90.742 263.689,81.591 272.095,86.076 "
   id="polygon1339" />
	</g>
</g>
<g
   id="g1341">
	<path
   d="M 305.755,49.553 L 305.755,50.138 L 303.531,50.138 L 303.531,49.553 L 305.755,49.553 z"
   id="path1343" />
	<path
   d="M 306.429,52.281 L 306.429,51.795 L 307.05,51.192 C 308.544,49.77 309.22,49.013 309.229,48.131 C 309.229,47.537 308.941,46.988 308.068,46.988 C 307.537,46.988 307.095,47.258 306.825,47.483 L 306.573,46.925 C 306.978,46.583 307.554,46.331 308.23,46.331 C 309.49,46.331 310.021,47.195 310.021,48.033 C 310.021,49.113 309.238,49.986 308.004,51.175 L 307.536,51.607 L 307.536,51.625 L 310.165,51.625 L 310.165,52.282 L 306.429,52.282 L 306.429,52.281 z"
   id="path1345" />
</g>
<g
   id="g1347">
	<path
   d="M 306.429,103.281 L 306.429,102.795 L 307.05,102.192 C 308.544,100.77 309.22,100.013 309.229,99.131 C 309.229,98.537 308.941,97.988 308.068,97.988 C 307.537,97.988 307.095,98.258 306.825,98.483 L 306.573,97.925 C 306.978,97.583 307.554,97.331 308.23,97.331 C 309.49,97.331 310.021,98.195 310.021,99.033 C 310.021,100.113 309.238,100.986 308.004,102.175 L 307.536,102.607 L 307.536,102.625 L 310.165,102.625 L 310.165,103.282 L 306.429,103.282 L 306.429,103.281 z"
   id="path1349" />
</g>
<g
   id="g2886">
	<g
   id="g8433_1_">
		
			<radialGradient
   cx="-37.036098"
   cy="47.195801"
   r="9.9070997"
   id="path8425_2_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(-1.5234,0,0,1.0309,196.9408,71.6367)">
			<stop
   id="stop1354"
   style="stop-color:#aedfe7;stop-opacity:1"
   offset="0" />
			<stop
   id="stop1356"
   style="stop-color:#addfe8;stop-opacity:1"
   offset="0.36520001" />
			<stop
   id="stop1358"
   style="stop-color:#abdeec;stop-opacity:1"
   offset="0.54439998" />
			<stop
   id="stop1360"
   style="stop-color:#a1dcf1;stop-opacity:1"
   offset="0.68330002" />
			<stop
   id="stop1362"
   style="stop-color:#9ad1f1;stop-opacity:1"
   offset="0.80129999" />
			<stop
   id="stop1364"
   style="stop-color:#95bae2;stop-opacity:1"
   offset="0.90499997" />
			<stop
   id="stop1366"
   style="stop-color:#9e9ccd;stop-opacity:1"
   offset="0.99910003" />
			<stop
   id="stop1368"
   style="stop-color:#8faeda;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 235.826,115.789 C 239.364,113.757 245.155,112.237 251.807,112.237 C 262.452,112.237 271.078,115.842 271.078,120.292 C 271.078,124.743 262.451,128.349 251.807,128.349 C 245.689,128.349 239.175,126.48 235.645,124.621 L 241.435,120.17 L 235.826,115.789 z"
   id="path8425_1_"
   style="fill:url(#path8425_2_);stroke:#000000" />
	</g>
	<g
   id="g1371">
		<path
   d="M 246.769,122.726 C 246.528,122.851 246.021,122.976 245.381,122.976 C 243.9,122.976 242.792,122.04 242.792,120.309 C 242.792,118.656 243.907,117.549 245.537,117.549 C 246.184,117.549 246.605,117.69 246.784,117.783 L 246.613,118.337 C 246.363,118.212 245.997,118.119 245.56,118.119 C 244.328,118.119 243.509,118.907 243.509,120.286 C 243.509,121.58 244.25,122.399 245.521,122.399 C 245.942,122.399 246.363,122.313 246.636,122.181 L 246.769,122.726 z"
   id="path1373" />
		<path
   d="M 250.858,117.354 L 250.858,121.916 C 250.858,122.251 250.866,122.633 250.889,122.891 L 250.274,122.891 L 250.243,122.236 L 250.227,122.236 C 250.016,122.657 249.564,122.977 248.948,122.977 C 248.036,122.977 247.326,122.205 247.326,121.059 C 247.318,119.796 248.106,119.032 249.018,119.032 C 249.603,119.032 249.993,119.305 250.157,119.601 L 250.173,119.601 L 250.173,117.355 L 250.858,117.355 L 250.858,117.354 z M 250.173,120.652 C 250.173,120.558 250.165,120.449 250.142,120.356 C 250.04,119.927 249.666,119.568 249.152,119.568 C 248.442,119.568 248.021,120.192 248.021,121.019 C 248.021,121.79 248.403,122.422 249.136,122.422 C 249.596,122.422 250.017,122.11 250.142,121.603 C 250.165,121.51 250.173,121.416 250.173,121.307 L 250.173,120.652 z"
   id="path1375" />
		<path
   d="M 254.683,122.757 C 254.504,122.842 254.107,122.975 253.6,122.975 C 252.461,122.975 251.72,122.203 251.72,121.041 C 251.72,119.879 252.516,119.029 253.747,119.029 C 254.153,119.029 254.512,119.131 254.698,119.232 L 254.543,119.754 C 254.379,119.668 254.122,119.574 253.747,119.574 C 252.882,119.574 252.414,120.221 252.414,121.009 C 252.414,121.882 252.976,122.42 253.724,122.42 C 254.115,122.42 254.371,122.326 254.567,122.241 L 254.683,122.757 z"
   id="path1377" />
		<path
   d="M 255.265,122.89 L 255.265,122.469 L 255.803,121.947 C 257.098,120.715 257.69,120.06 257.69,119.296 C 257.69,118.781 257.449,118.306 256.692,118.306 C 256.232,118.306 255.85,118.54 255.617,118.735 L 255.398,118.252 C 255.741,117.963 256.248,117.737 256.833,117.737 C 257.917,117.737 258.377,118.486 258.377,119.211 C 258.377,120.147 257.698,120.903 256.631,121.932 L 256.233,122.306 L 256.233,122.322 L 258.503,122.322 L 258.503,122.891 L 255.265,122.891 L 255.265,122.89 z"
   id="path1379" />
		<path
   d="M 262.287,118.398 L 260.353,118.398 L 260.159,119.685 C 260.275,119.669 260.385,119.654 260.572,119.654 C 260.969,119.654 261.351,119.74 261.663,119.927 C 262.061,120.145 262.389,120.59 262.389,121.245 C 262.389,122.235 261.602,122.976 260.502,122.976 C 259.948,122.976 259.488,122.82 259.238,122.664 L 259.41,122.142 C 259.621,122.267 260.034,122.423 260.502,122.423 C 261.142,122.423 261.702,122.002 261.694,121.316 C 261.694,120.646 261.25,120.186 260.244,120.186 C 259.948,120.186 259.722,120.209 259.535,120.241 L 259.862,117.824 L 262.287,117.824 L 262.287,118.398 z"
   id="path1381" />
		<path
   d="M 264.35,121.237 L 263.804,122.89 L 263.103,122.89 L 264.888,117.635 L 265.706,117.635 L 267.5,122.89 L 266.774,122.89 L 266.212,121.237 L 264.35,121.237 z M 266.073,120.707 L 265.551,119.194 C 265.442,118.851 265.363,118.539 265.285,118.235 L 265.262,118.235 C 265.192,118.539 265.107,118.866 265.005,119.186 L 264.49,120.707 L 266.073,120.707 L 266.073,120.707 z"
   id="path1383" />
	</g>
</g>
<g
   id="g1385">
	<g
   id="g1387">
		<line
   fill="none"
   stroke="#000000"
   x1="362.78299"
   y1="66.614998"
   x2="380.28299"
   y2="31.948"
   id="line1389"
   style="fill:none;stroke:#000000" />
		<polygon
   points="382.323,36.124 379.727,33.052 375.711,32.786 382.974,26.62 382.323,36.124 "
   id="polygon1391" />
	</g>
</g>
<g
   id="g1393">
	<path
   d="M 368.04,45.596 L 365.807,45.596 L 365.582,47.099 C 365.717,47.081 365.843,47.063 366.06,47.063 C 366.51,47.063 366.959,47.162 367.32,47.378 C 367.779,47.639 368.158,48.143 368.158,48.881 C 368.158,50.024 367.248,50.88 365.979,50.88 C 365.339,50.88 364.799,50.7 364.52,50.52 L 364.718,49.917 C 364.961,50.061 365.439,50.241 365.969,50.241 C 366.717,50.241 367.356,49.755 367.356,48.971 C 367.347,48.215 366.843,47.675 365.672,47.675 C 365.339,47.675 365.078,47.711 364.862,47.738 L 365.24,44.929 L 368.04,44.929 L 368.04,45.596 L 368.04,45.596 z"
   id="path1395" />
</g>
<g
   id="g1397">
	<g
   id="g1399">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="258.45001"
   y1="218.78101"
   x2="364.45001"
   y2="110.281"
   id="line1401"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="365.137,114.878 363.587,111.165 359.838,109.702 368.622,106.012 365.137,114.878 "
   id="polygon1403" />
	</g>
</g>
<g
   id="g1405">
	<g
   id="g1407">
		<line
   fill="none"
   stroke="#000000"
   x1="362.78299"
   y1="89.947998"
   x2="380.28299"
   y2="124.614"
   id="line1409"
   style="fill:none;stroke:#000000" />
		<polygon
   points="367.354,90.786 363.34,91.051 360.742,94.124 360.093,84.619 367.354,90.786 "
   id="polygon1411" />
	</g>
</g>
<g
   id="g1413">
	<path
   d="M 374.235,104.872 C 374.461,105.016 374.983,105.241 375.532,105.241 C 376.55,105.241 376.864,104.593 376.855,104.107 C 376.846,103.288 376.108,102.937 375.342,102.937 L 374.902,102.937 L 374.902,102.343 L 375.342,102.343 C 375.918,102.343 376.648,102.046 376.648,101.353 C 376.648,100.885 376.351,100.471 375.622,100.471 C 375.154,100.471 374.704,100.678 374.452,100.858 L 374.245,100.282 C 374.551,100.057 375.145,99.832 375.775,99.832 C 376.927,99.832 377.45,100.516 377.45,101.228 C 377.45,101.831 377.09,102.344 376.369,102.605 L 376.369,102.623 C 377.09,102.767 377.675,103.308 377.675,104.127 C 377.675,105.063 376.946,105.882 375.541,105.882 C 374.884,105.882 374.308,105.675 374.02,105.486 L 374.235,104.872 z"
   id="path1415" />
</g>
</svg>
</window>