Location: Ciliberto, Petrus, Tyson, Sible, 2003 @ 7d6624ef9837 / ciliberto_petrus_tyson_sible_2003.xul

Author:
Mathieu Deneux <mathieu.deneux@gmail.com>
Date:
2016-08-01 11:06:11+12:00
Desc:
Added a SEDML file
Permanent Source URI:
https://models.physiomeproject.org/workspace/36d/rawfile/7d6624ef983720ec2234013821ec45e7def7492d/ciliberto_petrus_tyson_sible_2003.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 =
  {
			Wee1_a: 

			{	id: "Wee1_a",
				y: 'Wee1_a/Wee1_a', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations (with parameters used in figure 6 of the published paper)', 
				linestyle: 'none'
			},

			Kin_a: 

			{	id: "Kin_a",
				y: 'Kin_a/Kin_a', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations (with parameters used in figure 6 of the published paper)', 
				linestyle: 'none'
			},

			Cdk2_CycE: 

			{	id: "Cdk2_CycE",
				y: 'Cdk2_CycE/Cdk2_CycE', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations (with parameters used in figure 6 of the published paper)', 
				linestyle: 'none'
			},

			Cdk2_CycErem: 

			{	id: "Cdk2_CycErem",
				y: 'Cdk2_CycErem/Cdk2_CycErem', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations (with parameters used in figure 6 of the published paper)', 
				linestyle: 'none'
			},

			PCdk2_CycE: 

			{	id: "PCdk2_CycE",
				y: 'PCdk2_CycE/PCdk2_CycE', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations (with parameters used in figure 6 of the published paper)', 
				linestyle: 'none'
			},

			Deg_a: 

			{	id: "Deg_a",
				y: 'Deg_a/Deg_a', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations (with parameters used in figure 6 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="ciliberto_2003.xul"
   width="461"
   height="476"
   overflow="visible"
   xml:space="preserve">

<metadata
   id="ciliberto_2003.xul">
<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="ciliberto_2003.xul" />
   
<!-- 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="461"
   height="476"
   viewBox="0 0 461 476"
   id="Layer_1"
   xml:space="preserve"><defs
   id="defs4627" /-->
<pattern
   overflow="visible"
   viewBox="2.125 -70.896 69 69"
   id="Polka_Dot_Pattern"
   patternUnits="userSpaceOnUse"
   height="69"
   width="69"
   y="654"
   x="-154">
	<g
   id="g3530">
		<polygon
   id="polygon3532"
   points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   "
   fill="none" />
		<polygon
   id="polygon3534"
   points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   "
   fill="#E6BA66" />
		<g
   id="g3536">
			<path
   id="path3538"
   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="path3540"
   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="path3542"
   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="path3544"
   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="path3546"
   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="path3548"
   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="path3550"
   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="path3552"
   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="path3554"
   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="g3556">
			<path
   id="path3558"
   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="path3560"
   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="g3562">
			<g
   id="g3564">
				<path
   id="path3566"
   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="path3568"
   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="path3570"
   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="path3572"
   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="path3574"
   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="path3576"
   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="path3578"
   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="path3580"
   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="path3582"
   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="path3584"
   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="g3586">
				<path
   id="path3588"
   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="path3590"
   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="path3592"
   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="path3594"
   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="path3596"
   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="path3598"
   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="path3600"
   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="path3602"
   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="path3604"
   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="path3606"
   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="g3608">
				<path
   id="path3610"
   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="path3612"
   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="path3614"
   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="path3616"
   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="path3618"
   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="path3620"
   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="path3622"
   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="path3624"
   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="path3626"
   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="path3628"
   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="g3630">
				<path
   id="path3632"
   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="path3634"
   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="path3636"
   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="path3638"
   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="path3640"
   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="path3642"
   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="path3644"
   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="path3646"
   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="path3648"
   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="path3650"
   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="g3652">
				<path
   id="path3654"
   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="path3656"
   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="path3658"
   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="path3660"
   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="path3662"
   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="path3664"
   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="path3666"
   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="path3668"
   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="path3670"
   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="path3672"
   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="g3674">
				<path
   id="path3676"
   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="path3678"
   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="path3680"
   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="path3682"
   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="path3684"
   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="path3686"
   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="path3688"
   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="path3690"
   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="path3692"
   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="path3694"
   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="g3696">
				<path
   id="path3698"
   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="path3700"
   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="path3702"
   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="path3704"
   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="path3706"
   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="path3708"
   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="path3710"
   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="path3712"
   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="path3714"
   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="path3716"
   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="g3718">
				<path
   id="path3720"
   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="path3722"
   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="path3724"
   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="path3726"
   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="path3728"
   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="path3730"
   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="path3732"
   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="path3734"
   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="path3736"
   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="path3738"
   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="g3740">
			<path
   id="path3742"
   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="path3744"
   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="path3746"
   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="path3748"
   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="path3750"
   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="path3752"
   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="path3754"
   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="path3756"
   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="path3758"
   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="path3760"
   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="g3762">
	<g
   id="g3764">
		<g
   id="g3766">
			
				<radialGradient
   cx="151.0728"
   cy="-597.76172"
   r="16.185801"
   id="path16609_13_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
				<stop
   id="stop3769"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop3771"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop3773"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop3775"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop3777"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop3779"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop3781"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop3783"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop3785"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop3787"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 198.833,18.5 C 198.833,24.286 187.495,28.978 173.517,28.978 C 159.536,28.978 148.202,24.289 148.202,18.5 C 148.202,12.711 159.536,8.024 173.517,8.024 C 187.495,8.026 198.833,12.713 198.833,18.5 z"
   id="path16609"
   style="fill:url(#path16609_13_);stroke:#000000" />
			<g
   id="g3790">
				<path
   d="M 161.781,22.025 L 159.73,13.942 L 160.834,13.942 L 161.793,18.032 C 162.033,19.039 162.249,20.047 162.393,20.826 L 162.417,20.826 C 162.549,20.022 162.801,19.063 163.077,18.019 L 164.157,13.941 L 165.248,13.941 L 166.231,18.043 C 166.459,19.002 166.675,19.962 166.795,20.814 L 166.819,20.814 C 166.987,19.927 167.215,19.027 167.466,18.02 L 168.533,13.942 L 169.6,13.942 L 167.309,22.025 L 166.218,22.025 L 165.198,17.816 C 164.946,16.784 164.778,15.993 164.67,15.177 L 164.646,15.177 C 164.502,15.981 164.322,16.772 164.022,17.816 L 162.871,22.025 L 161.781,22.025 z"
   id="path3792" />
				<path
   d="M 170.769,19.314 C 170.793,20.741 171.704,21.329 172.76,21.329 C 173.515,21.329 173.971,21.197 174.367,21.029 L 174.547,21.785 C 174.175,21.953 173.54,22.157 172.616,22.157 C 170.829,22.157 169.762,20.97 169.762,19.219 C 169.762,17.468 170.794,16.089 172.485,16.089 C 174.38,16.089 174.884,17.756 174.884,18.823 C 174.884,19.039 174.86,19.207 174.848,19.315 L 170.769,19.315 L 170.769,19.314 z M 173.863,18.559 C 173.875,17.888 173.587,16.844 172.4,16.844 C 171.333,16.844 170.865,17.827 170.781,18.559 L 173.863,18.559 z"
   id="path3794" />
				<path
   d="M 176.781,19.314 C 176.805,20.741 177.717,21.329 178.772,21.329 C 179.527,21.329 179.983,21.197 180.379,21.029 L 180.559,21.785 C 180.187,21.953 179.552,22.157 178.628,22.157 C 176.841,22.157 175.774,20.97 175.774,19.219 C 175.774,17.468 176.806,16.089 178.497,16.089 C 180.392,16.089 180.896,17.756 180.896,18.823 C 180.896,19.039 180.872,19.207 180.86,19.315 L 176.781,19.315 L 176.781,19.314 z M 179.875,18.559 C 179.887,17.888 179.599,16.844 178.412,16.844 C 177.345,16.844 176.877,17.827 176.793,18.559 L 179.875,18.559 z"
   id="path3796" />
				<path
   d="M 184.16,15.213 L 184.136,15.213 L 182.781,15.944 L 182.577,15.14 L 184.28,14.228 L 185.18,14.228 L 185.18,22.024 L 184.16,22.024 L 184.16,15.213 z"
   id="path3798" />
			</g>
		</g>
		<g
   id="Wee1_a">
			
				<radialGradient
   cx="151.0728"
   cy="-465.64551"
   r="16.185801"
   id="path16609_14_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
				<stop
   id="stop3803"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop3805"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop3807"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop3809"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop3811"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop3813"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop3815"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop3817"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop3819"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop3821"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 198.833,102.501 C 198.833,108.286 187.495,112.978 173.517,112.978 C 159.536,112.978 148.202,108.289 148.202,102.501 C 148.202,96.712 159.536,92.025 173.517,92.025 C 187.495,92.026 198.833,96.713 198.833,102.501 z"
   id="path16609_3_"
   style="fill:url(#path16609_14_);stroke:#000000" />
			<g
   id="g3824">
				<path
   d="M 161.781,106.025 L 159.73,97.942 L 160.834,97.942 L 161.793,102.032 C 162.033,103.039 162.249,104.047 162.393,104.826 L 162.417,104.826 C 162.549,104.022 162.801,103.063 163.077,102.019 L 164.157,97.941 L 165.248,97.941 L 166.231,102.043 C 166.459,103.002 166.675,103.962 166.795,104.814 L 166.819,104.814 C 166.987,103.927 167.215,103.027 167.466,102.02 L 168.533,97.942 L 169.6,97.942 L 167.309,106.025 L 166.218,106.025 L 165.198,101.816 C 164.946,100.784 164.778,99.993 164.67,99.177 L 164.646,99.177 C 164.502,99.981 164.322,100.772 164.022,101.816 L 162.871,106.025 L 161.781,106.025 z"
   id="path3826" />
				<path
   d="M 170.769,103.314 C 170.793,104.741 171.704,105.329 172.76,105.329 C 173.515,105.329 173.971,105.197 174.367,105.029 L 174.547,105.785 C 174.175,105.953 173.54,106.157 172.616,106.157 C 170.829,106.157 169.762,104.97 169.762,103.219 C 169.762,101.468 170.794,100.089 172.485,100.089 C 174.38,100.089 174.884,101.756 174.884,102.823 C 174.884,103.039 174.86,103.207 174.848,103.315 L 170.769,103.315 L 170.769,103.314 z M 173.863,102.559 C 173.875,101.888 173.587,100.844 172.4,100.844 C 171.333,100.844 170.865,101.827 170.781,102.559 L 173.863,102.559 z"
   id="path3828" />
				<path
   d="M 176.781,103.314 C 176.805,104.741 177.717,105.329 178.772,105.329 C 179.527,105.329 179.983,105.197 180.379,105.029 L 180.559,105.785 C 180.187,105.953 179.552,106.157 178.628,106.157 C 176.841,106.157 175.774,104.97 175.774,103.219 C 175.774,101.468 176.806,100.089 178.497,100.089 C 180.392,100.089 180.896,101.756 180.896,102.823 C 180.896,103.039 180.872,103.207 180.86,103.315 L 176.781,103.315 L 176.781,103.314 z M 179.875,102.559 C 179.887,101.888 179.599,100.844 178.412,100.844 C 177.345,100.844 176.877,101.827 176.793,102.559 L 179.875,102.559 z"
   id="path3830" />
				<path
   d="M 184.16,99.213 L 184.136,99.213 L 182.781,99.944 L 182.577,99.14 L 184.28,98.228 L 185.18,98.228 L 185.18,106.024 L 184.16,106.024 L 184.16,99.213 z"
   id="path3832" />
			</g>
		</g>
		<g
   id="g3834">
			<g
   id="g3836">
				<line
   fill="none"
   stroke="#000000"
   x1="177.047"
   y1="35.5"
   x2="177.047"
   y2="91.822998"
   id="line3838"
   style="fill:none;stroke:#000000" />
				<polygon
   points="180.75,38.309 177.047,36.736 173.343,38.309 177.047,29.531 180.75,38.309 "
   id="polygon3840" />
			</g>
		</g>
		<g
   id="g3842">
			<g
   id="g3844">
				<line
   fill="none"
   stroke="#000000"
   x1="169.047"
   y1="29.323"
   x2="169.047"
   y2="86.5"
   id="line3846"
   style="fill:none;stroke:#000000" />
				<polygon
   points="165.344,83.691 169.047,85.264 172.751,83.691 169.047,92.469 165.344,83.691 "
   id="polygon3848" />
			</g>
		</g>
	</g>
	<g
   id="g3850">
		<path
   d="M 208.566,18.677 C 208.566,21.358 206.469,23.531 203.885,23.531 C 201.3,23.531 199.205,21.358 199.205,18.677 C 199.205,15.997 201.3,13.824 203.885,13.824 C 206.469,13.824 208.566,15.997 208.566,18.677 z"
   id="path19818_1_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g3853">
			<path
   d="M 202.431,15.731 C 202.753,15.668 203.174,15.62 203.71,15.62 C 204.369,15.62 204.851,15.779 205.158,16.064 C 205.441,16.318 205.617,16.707 205.617,17.183 C 205.617,17.666 205.479,18.047 205.211,18.326 C 204.858,18.715 204.284,18.913 203.633,18.913 C 203.434,18.913 203.25,18.905 203.097,18.865 L 203.097,21.008 L 202.43,21.008 L 202.43,15.731 L 202.431,15.731 z M 203.098,18.301 C 203.244,18.341 203.435,18.357 203.65,18.357 C 204.462,18.357 204.944,17.945 204.944,17.222 C 204.944,16.508 204.461,16.167 203.726,16.167 C 203.435,16.167 203.213,16.198 203.098,16.223 L 203.098,18.301 L 203.098,18.301 z"
   id="path3855"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="PCdk2_CycE">
	<g
   id="g3859">
		
			<radialGradient
   cx="64.151398"
   cy="-346.7334"
   r="16.185801"
   id="path16609_15_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
			<stop
   id="stop3862"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop3864"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop3866"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop3868"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop3870"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop3872"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop3874"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop3876"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop3878"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop3880"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 60.341,178.104 C 60.341,183.89 49.003,188.582 35.025,188.582 C 21.044,188.582 9.71,183.893 9.71,178.104 C 9.71,172.315 21.044,167.628 35.025,167.628 C 49.003,167.63 60.341,172.317 60.341,178.104 z"
   id="path16609_1_"
   style="fill:url(#path16609_15_);stroke:#000000" />
		<g
   id="g3883">
			<path
   d="M 28.896,181.364 C 28.512,181.556 27.745,181.76 26.761,181.76 C 24.482,181.76 22.767,180.309 22.767,177.658 C 22.767,175.127 24.482,173.412 26.989,173.412 C 27.997,173.412 28.632,173.628 28.908,173.772 L 28.656,174.623 C 28.26,174.432 27.697,174.288 27.025,174.288 C 25.13,174.288 23.871,175.499 23.871,177.622 C 23.871,179.601 25.01,180.872 26.977,180.872 C 27.613,180.872 28.26,180.74 28.68,180.536 L 28.896,181.364 z"
   id="path3885" />
			<path
   d="M 35.052,173.112 L 35.052,180.128 C 35.052,180.644 35.064,181.231 35.1,181.627 L 34.153,181.627 L 34.105,180.62 L 34.081,180.62 C 33.757,181.267 33.049,181.759 32.102,181.759 C 30.699,181.759 29.619,180.572 29.619,178.809 C 29.607,176.878 30.807,175.691 32.222,175.691 C 33.11,175.691 33.709,176.11 33.973,176.578 L 33.997,176.578 L 33.997,173.112 L 35.052,173.112 z M 33.997,178.186 C 33.997,178.054 33.985,177.874 33.949,177.742 C 33.793,177.07 33.218,176.518 32.426,176.518 C 31.335,176.518 30.687,177.477 30.687,178.761 C 30.687,179.936 31.263,180.907 32.402,180.907 C 33.11,180.907 33.757,180.439 33.949,179.648 C 33.985,179.504 33.997,179.36 33.997,179.192 L 33.997,178.186 L 33.997,178.186 z"
   id="path3887" />
			<path
   d="M 37.85,178.485 L 37.874,178.485 C 38.018,178.281 38.222,178.029 38.39,177.825 L 40.093,175.822 L 41.364,175.822 L 39.121,178.209 L 41.675,181.627 L 40.392,181.627 L 38.389,178.844 L 37.849,179.444 L 37.849,181.627 L 36.806,181.627 L 36.806,173.112 L 37.849,173.112 L 37.849,178.485 L 37.85,178.485 z"
   id="path3889" />
			<path
   d="M 42.099,181.627 L 42.099,180.98 L 42.927,180.176 C 44.918,178.281 45.818,177.274 45.829,176.098 C 45.829,175.306 45.445,174.575 44.282,174.575 C 43.574,174.575 42.987,174.935 42.627,175.235 L 42.291,174.491 C 42.831,174.035 43.599,173.699 44.498,173.699 C 46.177,173.699 46.885,174.85 46.885,175.966 C 46.885,177.405 45.842,178.569 44.198,180.152 L 43.574,180.728 L 43.574,180.752 L 47.076,180.752 L 47.076,181.627 L 42.099,181.627 z"
   id="path3891" />
		</g>
	</g>
	<g
   id="g3893">
		
			<radialGradient
   cx="63.966801"
   cy="-373.4238"
   r="16.186001"
   id="path16609_16_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
			<stop
   id="stop3896"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop3898"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop3900"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop3902"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop3904"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop3906"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop3908"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop3910"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop3912"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop3914"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 60.047,161.135 C 60.047,166.921 48.709,171.613 34.731,171.613 C 20.75,171.613 9.416,166.924 9.416,161.135 C 9.416,155.346 20.75,150.659 34.731,150.659 C 48.709,150.66 60.047,155.348 60.047,161.135 z"
   id="path16609_2_"
   style="fill:url(#path16609_16_);stroke:#000000" />
		<g
   id="g3917">
			<path
   d="M 27.271,164.442 C 26.995,164.586 26.383,164.79 25.604,164.79 C 23.853,164.79 22.713,163.591 22.713,161.816 C 22.713,160.029 23.937,158.733 25.832,158.733 C 26.456,158.733 27.007,158.889 27.295,159.033 L 27.055,159.848 C 26.803,159.704 26.408,159.573 25.832,159.573 C 24.5,159.573 23.781,160.556 23.781,161.767 C 23.781,163.11 24.645,163.938 25.796,163.938 C 26.396,163.938 26.792,163.782 27.091,163.65 L 27.271,164.442 z"
   id="path3919" />
			<path
   d="M 29.109,158.853 L 30.38,162.283 C 30.512,162.667 30.656,163.122 30.752,163.47 L 30.776,163.47 C 30.884,163.122 31.004,162.678 31.148,162.259 L 32.299,158.853 L 33.414,158.853 L 31.831,162.991 C 31.075,164.982 30.56,166.001 29.84,166.625 C 29.324,167.081 28.809,167.261 28.545,167.309 L 28.281,166.422 C 28.545,166.338 28.893,166.17 29.205,165.906 C 29.493,165.678 29.852,165.271 30.092,164.731 C 30.14,164.623 30.176,164.539 30.176,164.48 C 30.176,164.42 30.152,164.336 30.104,164.204 L 27.957,158.855 L 29.109,158.855 L 29.109,158.853 z"
   id="path3921" />
			<path
   d="M 38.395,164.442 C 38.119,164.586 37.507,164.79 36.728,164.79 C 34.977,164.79 33.837,163.591 33.837,161.816 C 33.837,160.029 35.061,158.733 36.956,158.733 C 37.58,158.733 38.131,158.889 38.419,159.033 L 38.179,159.848 C 37.927,159.704 37.532,159.573 36.956,159.573 C 35.624,159.573 34.905,160.556 34.905,161.767 C 34.905,163.11 35.769,163.938 36.92,163.938 C 37.52,163.938 37.916,163.782 38.215,163.65 L 38.395,164.442 z"
   id="path3923" />
			<path
   d="M 46.398,160.868 L 43.256,160.868 L 43.256,163.783 L 46.758,163.783 L 46.758,164.658 L 42.213,164.658 L 42.213,156.575 L 46.579,156.575 L 46.579,157.45 L 43.257,157.45 L 43.257,160.005 L 46.399,160.005 L 46.399,160.868 L 46.398,160.868 z"
   id="path3925" />
		</g>
	</g>
	<g
   id="g3927">
		<path
   d="M 13.736,169.935 C 13.736,172.616 11.639,174.789 9.055,174.789 C 6.47,174.789 4.375,172.616 4.375,169.935 C 4.375,167.255 6.47,165.082 9.055,165.082 C 11.64,165.082 13.736,167.255 13.736,169.935 z"
   id="path19818_2_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g3930">
			<path
   d="M 7.602,166.988 C 7.924,166.925 8.345,166.877 8.881,166.877 C 9.54,166.877 10.022,167.036 10.329,167.321 C 10.612,167.575 10.788,167.964 10.788,168.44 C 10.788,168.923 10.65,169.304 10.382,169.583 C 10.029,169.972 9.455,170.17 8.804,170.17 C 8.605,170.17 8.421,170.162 8.268,170.122 L 8.268,172.265 L 7.602,172.265 L 7.602,166.988 z M 8.268,169.559 C 8.414,169.599 8.605,169.615 8.82,169.615 C 9.632,169.615 10.114,169.203 10.114,168.48 C 10.114,167.766 9.631,167.425 8.896,167.425 C 8.605,167.425 8.383,167.456 8.268,167.481 L 8.268,169.559 z"
   id="path3932"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="g2886">
	<g
   id="g8433_1_">
		
			<radialGradient
   cx="129.93649"
   cy="129.02251"
   r="12.1803"
   id="path8425_2_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(-1.5879,0,0,1.1269,381.0609,81.6164)">
			<stop
   id="stop3937"
   style="stop-color:#aedfe7;stop-opacity:1"
   offset="0" />
			<stop
   id="stop3939"
   style="stop-color:#addfe8;stop-opacity:1"
   offset="0.36520001" />
			<stop
   id="stop3941"
   style="stop-color:#abdeec;stop-opacity:1"
   offset="0.54439998" />
			<stop
   id="stop3943"
   style="stop-color:#a1dcf1;stop-opacity:1"
   offset="0.68330002" />
			<stop
   id="stop3945"
   style="stop-color:#9ad1f1;stop-opacity:1"
   offset="0.80129999" />
			<stop
   id="stop3947"
   style="stop-color:#95bae2;stop-opacity:1"
   offset="0.90499997" />
			<stop
   id="stop3949"
   style="stop-color:#9e9ccd;stop-opacity:1"
   offset="0.99910003" />
			<stop
   id="stop3951"
   style="stop-color:#8faeda;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 152.263,220.96 C 156.797,218.231 164.217,216.187 172.741,216.187 C 186.383,216.187 197.438,221.033 197.438,227.012 C 197.438,232.992 186.383,237.838 172.741,237.838 C 164.901,237.838 156.554,235.326 152.031,232.83 L 159.451,226.848 L 152.263,220.96 z"
   id="path8425_1_"
   style="fill:url(#path8425_2_);stroke:#000000" />
	</g>
	<g
   id="g3954">
		<path
   d="M 166.007,231.085 C 165.666,231.261 164.951,231.437 164.049,231.437 C 161.959,231.437 160.397,230.117 160.397,227.674 C 160.397,225.342 161.97,223.779 164.27,223.779 C 165.183,223.779 165.777,223.977 166.03,224.109 L 165.788,224.89 C 165.436,224.714 164.919,224.582 164.303,224.582 C 162.565,224.582 161.409,225.693 161.409,227.641 C 161.409,229.467 162.454,230.622 164.247,230.622 C 164.841,230.622 165.435,230.501 165.82,230.313 L 166.007,231.085 z"
   id="path3956" />
		<path
   d="M 171.782,223.505 L 171.782,229.941 C 171.782,230.414 171.793,230.953 171.826,231.316 L 170.957,231.316 L 170.913,230.392 L 170.891,230.392 C 170.594,230.986 169.956,231.437 169.087,231.437 C 167.8,231.437 166.798,230.348 166.798,228.731 C 166.787,226.949 167.898,225.871 169.185,225.871 C 170.01,225.871 170.56,226.256 170.791,226.674 L 170.813,226.674 L 170.813,223.506 L 171.782,223.506 L 171.782,223.505 z M 170.813,228.158 C 170.813,228.026 170.802,227.872 170.769,227.74 C 170.626,227.135 170.098,226.629 169.372,226.629 C 168.371,226.629 167.776,227.509 167.776,228.675 C 167.776,229.765 168.315,230.655 169.349,230.655 C 169.998,230.655 170.592,230.216 170.768,229.5 C 170.801,229.368 170.812,229.236 170.812,229.082 L 170.812,228.158 L 170.813,228.158 z"
   id="path3958" />
		<path
   d="M 177.183,231.129 C 176.93,231.25 176.369,231.437 175.654,231.437 C 174.048,231.437 173.003,230.348 173.003,228.708 C 173.003,227.069 174.125,225.87 175.863,225.87 C 176.435,225.87 176.941,226.013 177.205,226.156 L 176.985,226.892 C 176.754,226.772 176.391,226.639 175.862,226.639 C 174.641,226.639 173.981,227.552 173.981,228.663 C 173.981,229.895 174.773,230.654 175.83,230.654 C 176.38,230.654 176.743,230.522 177.018,230.401 L 177.183,231.129 z"
   id="path3960" />
		<path
   d="M 178.007,231.315 L 178.007,230.721 L 178.766,229.984 C 180.592,228.246 181.428,227.322 181.428,226.244 C 181.428,225.517 181.087,224.847 180.02,224.847 C 179.371,224.847 178.832,225.177 178.502,225.452 L 178.194,224.769 C 178.678,224.362 179.393,224.043 180.218,224.043 C 181.747,224.043 182.396,225.099 182.396,226.122 C 182.396,227.442 181.439,228.51 179.932,229.962 L 179.371,230.489 L 179.371,230.511 L 182.572,230.511 L 182.572,231.314 L 178.007,231.314 L 178.007,231.315 z"
   id="path3962" />
		<path
   d="M 187.918,224.979 L 185.189,224.979 L 184.914,226.794 C 185.079,226.773 185.233,226.75 185.497,226.75 C 186.058,226.75 186.597,226.871 187.038,227.135 C 187.599,227.444 188.061,228.071 188.061,228.994 C 188.061,230.391 186.95,231.436 185.398,231.436 C 184.617,231.436 183.968,231.216 183.616,230.997 L 183.858,230.26 C 184.155,230.436 184.738,230.656 185.398,230.656 C 186.3,230.656 187.092,230.062 187.082,229.094 C 187.082,228.148 186.455,227.498 185.036,227.498 C 184.618,227.498 184.299,227.531 184.035,227.575 L 184.497,224.165 L 187.918,224.165 L 187.918,224.979 L 187.918,224.979 z"
   id="path3964" />
		<path
   d="M 190.833,228.983 L 190.063,231.315 L 189.073,231.315 L 191.593,223.9 L 192.748,223.9 L 195.278,231.315 L 194.255,231.315 L 193.463,228.983 L 190.833,228.983 z M 193.264,228.235 L 192.527,226.1 C 192.373,225.617 192.263,225.176 192.153,224.747 L 192.12,224.747 C 192.021,225.176 191.9,225.638 191.757,226.089 L 191.031,228.235 L 193.264,228.235 z"
   id="path3966" />
	</g>
</g>
<g
   id="Kin_a">
	
		<radialGradient
   cx="202.6055"
   cy="-532.17578"
   r="16.185801"
   id="path16609_17_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
		<stop
   id="stop3971"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop3973"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop3975"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop3977"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop3979"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop3981"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop3983"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop3985"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop3987"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop3989"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 280.94,60.2 C 280.94,65.986 269.602,70.678 255.625,70.678 C 241.644,70.678 230.31,65.989 230.31,60.2 C 230.31,54.411 241.644,49.724 255.625,49.724 C 269.603,49.726 280.94,54.413 280.94,60.2 z"
   id="path16609_4_"
   style="fill:url(#path16609_17_);stroke:#000000" />
	<g
   id="g3992">
		<path
   d="M 248.49,55.64 L 249.534,55.64 L 249.534,59.538 L 249.57,59.538 C 249.785,59.226 250.002,58.938 250.205,58.674 L 252.676,55.64 L 253.972,55.64 L 251.045,59.07 L 254.199,63.723 L 252.965,63.723 L 250.302,59.753 L 249.534,60.64 L 249.534,63.723 L 248.49,63.723 L 248.49,55.64 L 248.49,55.64 z"
   id="path3994" />
		<path
   d="M 256.254,56.287 C 256.266,56.647 256.002,56.935 255.582,56.935 C 255.211,56.935 254.947,56.647 254.947,56.287 C 254.947,55.915 255.222,55.627 255.606,55.627 C 256.002,55.627 256.254,55.916 256.254,56.287 z M 255.078,63.723 L 255.078,57.918 L 256.135,57.918 L 256.135,63.723 L 255.078,63.723 z"
   id="path3996" />
		<path
   d="M 257.887,59.489 C 257.887,58.889 257.875,58.398 257.838,57.918 L 258.774,57.918 L 258.835,58.877 L 258.858,58.877 C 259.146,58.325 259.818,57.786 260.778,57.786 C 261.581,57.786 262.829,58.265 262.829,60.256 L 262.829,63.722 L 261.772,63.722 L 261.772,60.376 C 261.772,59.44 261.424,58.661 260.429,58.661 C 259.734,58.661 259.194,59.153 259.014,59.74 C 258.966,59.872 258.942,60.052 258.942,60.232 L 258.942,63.722 L 257.887,63.722 L 257.887,59.489 L 257.887,59.489 z"
   id="path3998" />
	</g>
</g>
<g
   id="g4000">
	<g
   id="g4002">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="174.5"
   y1="112.5"
   x2="174.5"
   y2="155.5"
   id="line4004"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="170.797,152.691 174.5,154.264 178.204,152.691 174.5,161.469 170.797,152.691 "
   id="polygon4006" />
	</g>
</g>
<g
   id="g4008">
	<g
   id="g4010">
		<g
   id="g4012">
			<line
   fill="none"
   stroke="#000000"
   x1="273"
   y1="164.5"
   x2="74.733002"
   y2="164.5"
   id="line4014"
   style="fill:none;stroke:#000000" />
			<polygon
   points="77.542,160.797 75.969,164.5 77.542,168.204 68.764,164.5 77.542,160.797 "
   id="polygon4016" />
		</g>
	</g>
	<g
   id="g4018">
		<g
   id="g4020">
			<line
   fill="none"
   stroke="#000000"
   x1="71.667"
   y1="172"
   x2="270.483"
   y2="172"
   id="line4022"
   style="fill:none;stroke:#000000" />
			<polygon
   points="267.675,175.703 269.248,172 267.675,168.296 276.453,172 267.675,175.703 "
   id="polygon4024" />
		</g>
	</g>
</g>
<g
   id="Cdk2_CycE">
	<g
   id="g4028">
		
			<radialGradient
   cx="237.39259"
   cy="-346.5303"
   r="16.185801"
   id="path16609_18_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
			<stop
   id="stop4031"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4033"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4035"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4037"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4039"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4041"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4043"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4045"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4047"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4049"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 336.366,178.233 C 336.366,184.019 325.028,188.711 311.051,188.711 C 297.07,188.711 285.736,184.022 285.736,178.233 C 285.736,172.444 297.07,167.757 311.051,167.757 C 325.028,167.759 336.366,172.446 336.366,178.233 z"
   id="path16609_6_"
   style="fill:url(#path16609_18_);stroke:#000000" />
		<g
   id="g4052">
			<path
   d="M 304.922,181.493 C 304.537,181.685 303.77,181.889 302.787,181.889 C 300.508,181.889 298.793,180.438 298.793,177.787 C 298.793,175.256 300.508,173.541 303.014,173.541 C 304.022,173.541 304.658,173.757 304.934,173.901 L 304.682,174.752 C 304.286,174.561 303.722,174.417 303.051,174.417 C 301.155,174.417 299.897,175.628 299.897,177.751 C 299.897,179.73 301.036,181.001 303.002,181.001 C 303.639,181.001 304.285,180.869 304.705,180.665 L 304.922,181.493 z"
   id="path4054" />
			<path
   d="M 311.078,173.241 L 311.078,180.257 C 311.078,180.773 311.09,181.36 311.125,181.756 L 310.178,181.756 L 310.131,180.749 L 310.107,180.749 C 309.783,181.396 309.075,181.888 308.128,181.888 C 306.726,181.888 305.646,180.701 305.646,178.938 C 305.634,177.007 306.834,175.82 308.249,175.82 C 309.137,175.82 309.736,176.239 310,176.707 L 310.024,176.707 L 310.024,173.241 L 311.078,173.241 z M 310.022,178.314 C 310.022,178.182 310.009,178.002 309.974,177.87 C 309.818,177.198 309.242,176.646 308.451,176.646 C 307.359,176.646 306.712,177.605 306.712,178.889 C 306.712,180.064 307.287,181.035 308.428,181.035 C 309.135,181.035 309.782,180.567 309.975,179.776 C 310.01,179.632 310.023,179.488 310.023,179.32 L 310.023,178.314 L 310.022,178.314 z"
   id="path4056" />
			<path
   d="M 313.875,178.614 L 313.899,178.614 C 314.043,178.41 314.247,178.158 314.415,177.954 L 316.118,175.951 L 317.389,175.951 L 315.146,178.338 L 317.701,181.756 L 316.418,181.756 L 314.415,178.973 L 313.875,179.573 L 313.875,181.756 L 312.832,181.756 L 312.832,173.241 L 313.875,173.241 L 313.875,178.614 z"
   id="path4058" />
			<path
   d="M 318.124,181.756 L 318.124,181.109 L 318.951,180.305 C 320.943,178.41 321.842,177.403 321.853,176.227 C 321.853,175.435 321.47,174.704 320.306,174.704 C 319.599,174.704 319.011,175.064 318.652,175.364 L 318.316,174.62 C 318.855,174.164 319.623,173.828 320.523,173.828 C 322.202,173.828 322.91,174.979 322.91,176.095 C 322.91,177.534 321.866,178.698 320.222,180.281 L 319.599,180.857 L 319.599,180.881 L 323.101,180.881 L 323.101,181.756 L 318.124,181.756 z"
   id="path4060" />
		</g>
	</g>
	<g
   id="g4062">
		
			<radialGradient
   cx="237.20799"
   cy="-373.2207"
   r="16.185801"
   id="path16609_19_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
			<stop
   id="stop4065"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4067"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4069"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4071"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4073"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4075"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4077"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4079"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4081"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4083"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 336.072,161.264 C 336.072,167.05 324.734,171.742 310.756,171.742 C 296.776,171.742 285.442,167.053 285.442,161.264 C 285.442,155.475 296.776,150.788 310.756,150.788 C 324.734,150.789 336.072,155.477 336.072,161.264 z"
   id="path16609_5_"
   style="fill:url(#path16609_19_);stroke:#000000" />
		<g
   id="g4086">
			<path
   d="M 303.297,164.571 C 303.021,164.715 302.408,164.919 301.629,164.919 C 299.879,164.919 298.738,163.72 298.738,161.945 C 298.738,160.158 299.963,158.862 301.857,158.862 C 302.48,158.862 303.033,159.018 303.32,159.162 L 303.08,159.977 C 302.828,159.833 302.434,159.702 301.857,159.702 C 300.525,159.702 299.806,160.685 299.806,161.896 C 299.806,163.239 300.669,164.067 301.821,164.067 C 302.421,164.067 302.816,163.911 303.117,163.779 L 303.297,164.571 z"
   id="path4088" />
			<path
   d="M 305.135,158.982 L 306.406,162.412 C 306.537,162.796 306.681,163.251 306.777,163.599 L 306.8,163.599 C 306.908,163.251 307.029,162.807 307.173,162.388 L 308.323,158.982 L 309.438,158.982 L 307.856,163.12 C 307.1,165.111 306.585,166.13 305.864,166.754 C 305.348,167.21 304.833,167.39 304.569,167.438 L 304.305,166.551 C 304.569,166.467 304.916,166.299 305.229,166.035 C 305.516,165.807 305.876,165.4 306.116,164.86 C 306.165,164.752 306.2,164.668 306.2,164.609 C 306.2,164.549 306.177,164.465 306.129,164.333 L 303.982,158.984 L 305.135,158.984 L 305.135,158.982 z"
   id="path4090" />
			<path
   d="M 314.42,164.571 C 314.145,164.715 313.533,164.919 312.754,164.919 C 311.002,164.919 309.863,163.72 309.863,161.945 C 309.863,160.158 311.086,158.862 312.981,158.862 C 313.605,158.862 314.156,159.018 314.444,159.162 L 314.205,159.977 C 313.953,159.833 313.557,159.702 312.981,159.702 C 311.65,159.702 310.929,160.685 310.929,161.896 C 310.929,163.239 311.793,164.067 312.945,164.067 C 313.545,164.067 313.941,163.911 314.24,163.779 L 314.42,164.571 z"
   id="path4092" />
			<path
   d="M 322.424,160.997 L 319.281,160.997 L 319.281,163.912 L 322.783,163.912 L 322.783,164.787 L 318.238,164.787 L 318.238,156.704 L 322.603,156.704 L 322.603,157.579 L 319.281,157.579 L 319.281,160.134 L 322.424,160.134 L 322.424,160.997 z"
   id="path4094" />
		</g>
	</g>
</g>
<g
   id="g4096">
	<g
   id="g4098">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="174.733"
   y1="216"
   x2="174.733"
   y2="180"
   id="line4100"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="178.437,182.809 174.733,181.236 171.029,182.809 174.733,174.031 178.437,182.809 "
   id="polygon4102" />
	</g>
</g>
<g
   id="Cdk2_CycErem">
	<g
   id="g4106">
		
			<radialGradient
   cx="151.07761"
   cy="-143.0527"
   r="16.185801"
   id="path16609_20_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
			<stop
   id="stop4109"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4111"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4113"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4115"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4117"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4119"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4121"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4123"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4125"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4127"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 198.841,307.604 C 198.841,313.39 187.503,318.082 173.526,318.082 C 159.545,318.082 148.211,313.393 148.211,307.604 C 148.211,301.815 159.545,297.128 173.526,297.128 C 187.503,297.13 198.841,301.817 198.841,307.604 z"
   id="path16609_8_"
   style="fill:url(#path16609_20_);stroke:#000000" />
		<g
   id="g4130">
			<path
   d="M 167.396,310.863 C 167.012,311.055 166.245,311.259 165.261,311.259 C 162.982,311.259 161.267,309.808 161.267,307.157 C 161.267,304.626 162.982,302.911 165.489,302.911 C 166.497,302.911 167.132,303.127 167.408,303.27 L 167.156,304.122 C 166.76,303.931 166.197,303.786 165.525,303.786 C 163.63,303.786 162.371,304.998 162.371,307.12 C 162.371,309.099 163.51,310.371 165.477,310.371 C 166.113,310.371 166.76,310.239 167.18,310.035 L 167.396,310.863 z"
   id="path4132" />
			<path
   d="M 173.552,302.612 L 173.552,309.629 C 173.552,310.145 173.564,310.732 173.6,311.127 L 172.653,311.127 L 172.605,310.12 L 172.581,310.12 C 172.257,310.767 171.549,311.26 170.602,311.26 C 169.199,311.26 168.119,310.072 168.119,308.309 C 168.107,306.378 169.307,305.192 170.722,305.192 C 171.61,305.192 172.209,305.611 172.473,306.079 L 172.497,306.079 L 172.497,302.613 L 173.552,302.613 L 173.552,302.612 z M 172.497,307.686 C 172.497,307.553 172.485,307.373 172.449,307.243 C 172.293,306.571 171.718,306.018 170.926,306.018 C 169.835,306.018 169.187,306.978 169.187,308.262 C 169.187,309.437 169.763,310.408 170.902,310.408 C 171.61,310.408 172.257,309.939 172.449,309.148 C 172.485,309.003 172.497,308.861 172.497,308.693 L 172.497,307.686 z"
   id="path4134" />
			<path
   d="M 176.35,307.985 L 176.374,307.985 C 176.518,307.781 176.722,307.529 176.89,307.326 L 178.593,305.322 L 179.864,305.322 L 177.621,307.709 L 180.175,311.127 L 178.892,311.127 L 176.889,308.345 L 176.349,308.946 L 176.349,311.128 L 175.306,311.128 L 175.306,302.613 L 176.349,302.613 L 176.349,307.985 L 176.35,307.985 z"
   id="path4136" />
			<path
   d="M 180.599,311.127 L 180.599,310.481 L 181.427,309.676 C 183.418,307.781 184.318,306.774 184.329,305.599 C 184.329,304.807 183.945,304.076 182.782,304.076 C 182.074,304.076 181.487,304.436 181.127,304.735 L 180.791,303.992 C 181.331,303.536 182.099,303.2 182.998,303.2 C 184.677,303.2 185.385,304.352 185.385,305.468 C 185.385,306.907 184.342,308.071 182.698,309.654 L 182.074,310.23 L 182.074,310.253 L 185.576,310.253 L 185.576,311.128 L 180.599,311.128 L 180.599,311.127 z"
   id="path4138" />
		</g>
	</g>
	<g
   id="g4140">
		
			<radialGradient
   cx="150.8931"
   cy="-169.74319"
   r="16.185801"
   id="path16609_21_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
			<stop
   id="stop4143"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4145"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4147"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4149"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4151"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4153"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4155"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4157"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4159"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4161"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 198.547,290.635 C 198.547,296.421 187.209,301.113 173.231,301.113 C 159.251,301.113 147.917,296.424 147.917,290.635 C 147.917,284.846 159.251,280.159 173.231,280.159 C 187.209,280.16 198.547,284.848 198.547,290.635 z"
   id="path16609_7_"
   style="fill:url(#path16609_21_);stroke:#000000" />
		<g
   id="g4164">
			<path
   d="M 165.771,293.941 C 165.495,294.086 164.883,294.289 164.104,294.289 C 162.353,294.289 161.213,293.09 161.213,291.315 C 161.213,289.528 162.437,288.232 164.332,288.232 C 164.956,288.232 165.507,288.388 165.795,288.533 L 165.555,289.347 C 165.303,289.204 164.908,289.072 164.332,289.072 C 163,289.072 162.281,290.056 162.281,291.267 C 162.281,292.61 163.145,293.437 164.296,293.437 C 164.896,293.437 165.292,293.282 165.591,293.15 L 165.771,293.941 z"
   id="path4166" />
			<path
   d="M 167.609,288.354 L 168.88,291.784 C 169.012,292.168 169.156,292.624 169.252,292.972 L 169.276,292.972 C 169.384,292.624 169.504,292.18 169.648,291.761 L 170.799,288.355 L 171.914,288.355 L 170.331,292.492 C 169.575,294.483 169.06,295.503 168.34,296.127 C 167.824,296.582 167.309,296.762 167.045,296.811 L 166.781,295.923 C 167.045,295.839 167.393,295.671 167.705,295.406 C 167.993,295.179 168.352,294.771 168.592,294.231 C 168.64,294.123 168.676,294.039 168.676,293.98 C 168.676,293.919 168.652,293.835 168.604,293.704 L 166.457,288.355 L 167.609,288.355 L 167.609,288.354 z"
   id="path4168" />
			<path
   d="M 176.895,293.941 C 176.619,294.086 176.007,294.289 175.228,294.289 C 173.477,294.289 172.337,293.09 172.337,291.315 C 172.337,289.528 173.561,288.232 175.456,288.232 C 176.08,288.232 176.631,288.388 176.919,288.533 L 176.679,289.347 C 176.427,289.204 176.032,289.072 175.456,289.072 C 174.124,289.072 173.405,290.056 173.405,291.267 C 173.405,292.61 174.269,293.437 175.42,293.437 C 176.02,293.437 176.416,293.282 176.715,293.15 L 176.895,293.941 z"
   id="path4170" />
			<path
   d="M 184.898,290.367 L 181.756,290.367 L 181.756,293.282 L 185.258,293.282 L 185.258,294.158 L 180.713,294.158 L 180.713,286.074 L 185.079,286.074 L 185.079,286.949 L 181.757,286.949 L 181.757,289.504 L 184.899,289.504 L 184.899,290.367 L 184.898,290.367 z"
   id="path4172" />
		</g>
	</g>
</g>
<g
   id="g4174">
	<g
   id="g4176">
		<line
   fill="none"
   stroke="#000000"
   x1="35"
   y1="189"
   x2="134.5"
   y2="282"
   id="line4178"
   style="fill:none;stroke:#000000" />
		<polygon
   points="129.919,282.787 133.597,281.156 134.978,277.376 138.861,286.076 129.919,282.787 "
   id="polygon4180" />
	</g>
</g>
<g
   id="g4182">
	<g
   id="g4184">
		<line
   fill="none"
   stroke="#000000"
   x1="310"
   y1="188.5"
   x2="210.5"
   y2="281.5"
   id="line4186"
   style="fill:none;stroke:#000000" />
		<polygon
   points="210.023,276.877 211.403,280.656 215.081,282.288 206.139,285.576 210.023,276.877 "
   id="polygon4188" />
	</g>
</g>
<path
   d="M 207,314.945 C 207,321.878 201.505,327.5 194.728,327.5 L 151.773,327.5 C 144.995,327.5 139.5,321.878 139.5,314.945 L 139.5,283.554 C 139.5,276.621 144.995,270.999 151.773,270.999 L 194.728,270.999 C 201.506,270.999 207,276.621 207,283.554 L 207,314.945 z"
   id="path4190"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
<g
   id="g4192">
	<g
   id="g4194">
		<path
   d="M 114.5,240 C 144.5,231.5 155.5,266 155.5,271"
   id="path4196"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="116.193,235.672 115.689,239.663 118.212,242.798 108.757,241.627 116.193,235.672 "
   id="polygon4198" />
	</g>
</g>
<g
   id="g4200">
	<g
   id="g4202">
		<path
   d="M 232,240 C 202,231.5 191,266 191,271"
   id="path4204"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="228.288,242.797 230.811,239.663 230.308,235.671 237.743,241.627 228.288,242.797 "
   id="polygon4206" />
	</g>
</g>
<g
   id="g4208">
	<g
   id="g4210">
		<line
   fill="none"
   stroke="#000000"
   x1="173.66701"
   y1="327.33301"
   x2="173.66701"
   y2="423.00101"
   id="line4212"
   style="fill:none;stroke:#000000" />
		<polygon
   points="169.963,420.192 173.667,421.766 177.371,420.192 173.667,428.971 169.963,420.192 "
   id="polygon4214" />
	</g>
</g>
<g
   id="g4216">
	<g
   id="g4218">
		<path
   d="M 214.066,422.152 C 207.345,422.152 173.733,411.368 173.733,360.319"
   id="path4220"
   style="fill:none;stroke:#000000" />
		<polygon
   points="211.258,425.855 212.831,422.152 211.258,418.448 220.036,422.152 211.258,425.855 "
   id="polygon4222" />
	</g>
</g>
<g
   id="g4224">
	<g
   id="g4226">
		<path
   d="M 133.4,421.819 C 140.121,421.819 173.733,411.035 173.733,359.986"
   id="path4228"
   style="fill:none;stroke:#000000" />
		<polygon
   points="136.208,418.116 134.636,421.819 136.208,425.523 127.431,421.819 136.208,418.116 "
   id="polygon4230" />
	</g>
</g>
<path
   d="M 128,436.612 C 128,443.545 122.505,449.167 115.728,449.167 L 72.773,449.167 C 65.995,449.167 60.5,443.545 60.5,436.612 L 60.5,405.221 C 60.5,398.288 65.995,392.666 72.773,392.666 L 115.728,392.666 C 122.506,392.666 128,398.288 128,405.221 L 128,436.612 z"
   id="path4232"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
<g
   id="g4234">
	<radialGradient
   cx="165"
   cy="452"
   r="6.2919998"
   id="SVGID_1_"
   gradientUnits="userSpaceOnUse">
		<stop
   id="stop4237"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4239"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4241"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4243"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4245"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4247"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4249"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4251"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4253"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4255"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<circle
   cx="165"
   cy="452"
   r="6.2919998"
   id="circle4257"
   style="fill:url(#SVGID_1_);stroke:#000000" />
	<radialGradient
   cx="173.5645"
   cy="445.5332"
   r="6.1171999"
   id="SVGID_2_"
   gradientUnits="userSpaceOnUse">
		<stop
   id="stop4260"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4262"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4264"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4266"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4268"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4270"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4272"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4274"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4276"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4278"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<circle
   cx="173.564"
   cy="445.53299"
   r="6.1170001"
   id="circle4280"
   style="fill:url(#SVGID_2_);stroke:#000000" />
	<radialGradient
   cx="156.0864"
   cy="436.0947"
   r="3.6702001"
   id="SVGID_3_"
   gradientUnits="userSpaceOnUse">
		<stop
   id="stop4283"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4285"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4287"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4289"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4291"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4293"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4295"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4297"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4299"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4301"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<circle
   cx="156.086"
   cy="436.095"
   r="3.6700001"
   id="circle4303"
   style="fill:url(#SVGID_3_);stroke:#000000" />
	<radialGradient
   cx="190.1685"
   cy="435.2207"
   r="2.7966001"
   id="SVGID_4_"
   gradientUnits="userSpaceOnUse">
		<stop
   id="stop4306"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4308"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4310"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4312"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4314"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4316"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4318"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4320"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4322"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4324"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<circle
   cx="190.168"
   cy="435.22198"
   r="2.796"
   id="circle4326"
   style="fill:url(#SVGID_4_);stroke:#000000" />
	<radialGradient
   cx="183.5269"
   cy="455.8457"
   r="6.2916999"
   id="SVGID_5_"
   gradientUnits="userSpaceOnUse">
		<stop
   id="stop4329"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4331"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4333"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4335"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4337"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4339"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4341"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4343"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4345"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4347"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<circle
   cx="183.52699"
   cy="455.845"
   r="6.2919998"
   id="circle4349"
   style="fill:url(#SVGID_5_);stroke:#000000" />
	<radialGradient
   cx="164.8252"
   cy="466.85641"
   r="5.0683999"
   id="SVGID_6_"
   gradientUnits="userSpaceOnUse">
		<stop
   id="stop4352"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4354"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4356"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4358"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4360"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4362"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4364"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4366"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4368"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4370"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<circle
   cx="164.825"
   cy="466.85599"
   r="5.0679998"
   id="circle4372"
   style="fill:url(#SVGID_6_);stroke:#000000" />
	<radialGradient
   cx="171.81641"
   cy="456.71881"
   r="7.1659999"
   id="SVGID_7_"
   gradientUnits="userSpaceOnUse">
		<stop
   id="stop4375"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4377"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4379"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4381"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4383"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4385"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4387"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4389"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4391"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4393"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<circle
   cx="171.81599"
   cy="456.71899"
   r="7.1659999"
   id="circle4395"
   style="fill:url(#SVGID_7_);stroke:#000000" />
</g>
<g
   id="g4397">
	
		<radialGradient
   cx="196.05811"
   cy="36.774399"
   r="16.185801"
   id="path16609_22_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
		<stop
   id="stop4400"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4402"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4404"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4406"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4408"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4410"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4412"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4414"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4416"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4418"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 270.508,421.938 C 270.508,427.724 259.17,432.416 245.193,432.416 C 231.212,432.416 219.878,427.727 219.878,421.938 C 219.878,416.149 231.212,411.462 245.193,411.462 C 259.17,411.464 270.508,416.151 270.508,421.938 z"
   id="path16609_9_"
   style="fill:url(#path16609_22_);stroke:#000000" />
	<g
   id="g4421">
		<path
   d="M 239.063,425.197 C 238.679,425.389 237.912,425.593 236.928,425.593 C 234.649,425.593 232.934,424.142 232.934,421.491 C 232.934,418.96 234.649,417.245 237.156,417.245 C 238.164,417.245 238.799,417.461 239.075,417.604 L 238.823,418.456 C 238.427,418.265 237.864,418.12 237.192,418.12 C 235.297,418.12 234.038,419.332 234.038,421.454 C 234.038,423.433 235.177,424.705 237.144,424.705 C 237.78,424.705 238.427,424.573 238.847,424.369 L 239.063,425.197 z"
   id="path4423" />
		<path
   d="M 245.219,416.946 L 245.219,423.963 C 245.219,424.479 245.232,425.066 245.268,425.461 L 244.321,425.461 L 244.272,424.454 L 244.249,424.454 C 243.925,425.101 243.218,425.594 242.27,425.594 C 240.867,425.594 239.787,424.406 239.787,422.643 C 239.775,420.712 240.975,419.526 242.39,419.526 C 243.278,419.526 243.877,419.945 244.142,420.413 L 244.165,420.413 L 244.165,416.947 L 245.219,416.947 L 245.219,416.946 z M 244.164,422.02 C 244.164,421.887 244.152,421.707 244.115,421.577 C 243.96,420.905 243.385,420.352 242.593,420.352 C 241.502,420.352 240.854,421.312 240.854,422.596 C 240.854,423.771 241.43,424.742 242.569,424.742 C 243.277,424.742 243.924,424.273 244.115,423.482 C 244.152,423.337 244.164,423.195 244.164,423.027 L 244.164,422.02 z"
   id="path4425" />
		<path
   d="M 248.018,422.319 L 248.041,422.319 C 248.186,422.115 248.389,421.863 248.557,421.66 L 250.26,419.656 L 251.531,419.656 L 249.289,422.043 L 251.843,425.461 L 250.56,425.461 L 248.557,422.679 L 248.018,423.28 L 248.018,425.462 L 246.974,425.462 L 246.974,416.947 L 248.018,416.947 L 248.018,422.319 L 248.018,422.319 z"
   id="path4427" />
		<path
   d="M 252.266,425.461 L 252.266,424.815 L 253.094,424.01 C 255.084,422.115 255.985,421.108 255.996,419.933 C 255.996,419.141 255.611,418.41 254.449,418.41 C 253.74,418.41 253.153,418.77 252.793,419.069 L 252.457,418.326 C 252.998,417.87 253.766,417.534 254.664,417.534 C 256.344,417.534 257.051,418.686 257.051,419.802 C 257.051,421.241 256.008,422.405 254.365,423.988 L 253.74,424.564 L 253.74,424.587 L 257.243,424.587 L 257.243,425.462 L 252.266,425.462 L 252.266,425.461 z"
   id="path4429" />
	</g>
</g>
<g
   id="g4431">
	<path
   d="M 233.989,352.353 C 234.572,352.265 235.265,352.2 236.024,352.2 C 237.4,352.2 238.378,352.518 239.028,353.124 C 239.688,353.729 240.073,354.587 240.073,355.786 C 240.073,356.996 239.699,357.986 239.006,358.669 C 238.314,359.362 237.169,359.736 235.728,359.736 C 235.046,359.736 234.474,359.703 233.99,359.647 L 233.99,352.353 L 233.989,352.353 z M 234.946,358.91 C 235.188,358.954 235.541,358.965 235.915,358.965 C 237.961,358.965 239.072,357.82 239.072,355.819 C 239.083,354.07 238.093,352.959 236.068,352.959 C 235.573,352.959 235.199,353.003 234.946,353.058 L 234.946,358.91 z"
   id="path4433" />
	<path
   d="M 241.865,357.183 C 241.887,358.493 242.723,359.032 243.692,359.032 C 244.384,359.032 244.802,358.911 245.166,358.757 L 245.331,359.45 C 244.99,359.603 244.407,359.791 243.56,359.791 C 241.921,359.791 240.942,358.702 240.942,357.096 C 240.942,355.49 241.888,354.225 243.439,354.225 C 245.177,354.225 245.64,355.753 245.64,356.733 C 245.64,356.931 245.618,357.086 245.607,357.184 L 241.865,357.184 L 241.865,357.183 z M 244.704,356.489 C 244.715,355.873 244.451,354.916 243.362,354.916 C 242.383,354.916 241.954,355.818 241.877,356.489 L 244.704,356.489 z"
   id="path4435" />
	<path
   d="M 251.381,358.898 C 251.381,360.12 251.139,360.868 250.622,361.33 C 250.104,361.814 249.356,361.969 248.685,361.969 C 248.047,361.969 247.343,361.815 246.914,361.529 L 247.156,360.792 C 247.509,361.012 248.058,361.21 248.719,361.21 C 249.709,361.21 250.435,360.693 250.435,359.351 L 250.435,358.757 L 250.414,358.757 C 250.117,359.252 249.545,359.648 248.72,359.648 C 247.4,359.648 246.453,358.526 246.453,357.052 C 246.453,355.247 247.631,354.225 248.851,354.225 C 249.775,354.225 250.282,354.708 250.512,355.149 L 250.534,355.149 L 250.578,354.345 L 251.425,354.345 C 251.404,354.731 251.381,355.159 251.381,355.809 L 251.381,358.898 L 251.381,358.898 z M 250.424,356.445 C 250.424,356.28 250.413,356.137 250.369,356.006 C 250.192,355.444 249.72,354.983 249.015,354.983 C 248.091,354.983 247.431,355.764 247.431,356.996 C 247.431,358.042 247.958,358.911 249.004,358.911 C 249.598,358.911 250.137,358.537 250.346,357.921 C 250.401,357.756 250.423,357.568 250.423,357.403 L 250.423,356.445 L 250.424,356.445 z"
   id="path4437" />
</g>
<g
   id="Deg_a">
	<path
   d="M 319.322,352.353 C 319.905,352.265 320.598,352.2 321.357,352.2 C 322.733,352.2 323.711,352.518 324.361,353.124 C 325.021,353.729 325.406,354.587 325.406,355.786 C 325.406,356.996 325.032,357.986 324.339,358.669 C 323.647,359.362 322.502,359.736 321.061,359.736 C 320.379,359.736 319.807,359.703 319.323,359.647 L 319.323,352.353 L 319.322,352.353 z M 320.279,358.91 C 320.521,358.954 320.874,358.965 321.248,358.965 C 323.294,358.965 324.405,357.82 324.405,355.819 C 324.416,354.07 323.426,352.959 321.401,352.959 C 320.906,352.959 320.532,353.003 320.279,353.058 L 320.279,358.91 L 320.279,358.91 z"
   id="path4441" />
	<path
   d="M 327.198,357.183 C 327.22,358.493 328.056,359.032 329.025,359.032 C 329.717,359.032 330.135,358.911 330.499,358.757 L 330.664,359.45 C 330.323,359.603 329.74,359.791 328.893,359.791 C 327.254,359.791 326.275,358.702 326.275,357.096 C 326.275,355.49 327.221,354.225 328.772,354.225 C 330.51,354.225 330.973,355.753 330.973,356.733 C 330.973,356.931 330.951,357.086 330.94,357.184 L 327.198,357.184 L 327.198,357.183 z M 330.037,356.489 C 330.048,355.873 329.784,354.916 328.695,354.916 C 327.716,354.916 327.287,355.818 327.21,356.489 L 330.037,356.489 z"
   id="path4443" />
	<path
   d="M 336.714,358.898 C 336.714,360.12 336.472,360.868 335.955,361.33 C 335.437,361.814 334.689,361.969 334.018,361.969 C 333.38,361.969 332.676,361.815 332.247,361.529 L 332.489,360.792 C 332.842,361.012 333.391,361.21 334.052,361.21 C 335.042,361.21 335.768,360.693 335.768,359.351 L 335.768,358.757 L 335.747,358.757 C 335.45,359.252 334.878,359.648 334.053,359.648 C 332.733,359.648 331.786,358.526 331.786,357.052 C 331.786,355.247 332.964,354.225 334.184,354.225 C 335.108,354.225 335.615,354.708 335.845,355.149 L 335.867,355.149 L 335.911,354.345 L 336.758,354.345 C 336.737,354.731 336.714,355.159 336.714,355.809 L 336.714,358.898 L 336.714,358.898 z M 335.757,356.445 C 335.757,356.28 335.746,356.137 335.702,356.006 C 335.525,355.444 335.053,354.983 334.348,354.983 C 333.424,354.983 332.764,355.764 332.764,356.996 C 332.764,358.042 333.291,358.911 334.337,358.911 C 334.931,358.911 335.47,358.537 335.679,357.921 C 335.734,357.756 335.756,357.568 335.756,357.403 L 335.756,356.445 L 335.757,356.445 z"
   id="path4445" />
</g>
<g
   id="g4447">
	<g
   id="g4449">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="229.66701"
   y1="357"
   x2="179"
   y2="357"
   id="line4451"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="181.809,353.297 180.236,357 181.809,360.704 173.031,357 181.809,353.297 "
   id="polygon4453" />
	</g>
</g>
<g
   id="g4455">
	<g
   id="g4457">
		<line
   fill="none"
   stroke="#000000"
   x1="315.66699"
   y1="357"
   x2="259.99899"
   y2="357"
   id="line4459"
   style="fill:none;stroke:#000000" />
		<polygon
   points="262.808,353.297 261.235,357 262.808,360.704 254.03,357 262.808,353.297 "
   id="polygon4461" />
	</g>
</g>
<g
   id="g4463">
	<g
   id="g4465">
		<path
   d="M 207,300.667 C 237.333,300.667 286.666,296.667 288.333,348"
   id="path4467"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="284.541,345.313 288.293,346.765 291.944,345.072 288.526,353.966 284.541,345.313 "
   id="polygon4469" />
	</g>
</g>
<g
   id="g4471">
	<g
   id="g4473">
		
			<radialGradient
   cx="272.06351"
   cy="-532.17578"
   r="16.185801"
   id="path16609_23_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
			<stop
   id="stop4476"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4478"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4480"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4482"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4484"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4486"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4488"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4490"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4492"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4494"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 391.607,60.2 C 391.607,65.986 380.269,70.678 366.292,70.678 C 352.311,70.678 340.977,65.989 340.977,60.2 C 340.977,54.411 352.311,49.724 366.292,49.724 C 380.27,49.726 391.607,54.413 391.607,60.2 z"
   id="path16609_10_"
   style="fill:url(#path16609_23_);stroke:#000000" />
		<g
   id="g4497">
			<path
   d="M 359.158,55.639 L 360.201,55.639 L 360.201,59.537 L 360.236,59.537 C 360.453,59.225 360.669,58.937 360.873,58.673 L 363.344,55.639 L 364.639,55.639 L 361.713,59.069 L 364.867,63.722 L 363.631,63.722 L 360.969,59.752 L 360.201,60.639 L 360.201,63.722 L 359.158,63.722 L 359.158,55.639 L 359.158,55.639 z"
   id="path4499" />
			<path
   d="M 366.921,56.287 C 366.934,56.647 366.669,56.935 366.25,56.935 C 365.877,56.935 365.613,56.647 365.613,56.287 C 365.613,55.915 365.889,55.627 366.273,55.627 C 366.669,55.627 366.921,55.915 366.921,56.287 z M 365.746,63.723 L 365.746,57.918 L 366.801,57.918 L 366.801,63.723 L 365.746,63.723 z"
   id="path4501" />
			<path
   d="M 368.553,59.489 C 368.553,58.889 368.541,58.398 368.506,57.918 L 369.442,57.918 L 369.501,58.877 L 369.526,58.877 C 369.813,58.325 370.485,57.786 371.444,57.786 C 372.248,57.786 373.495,58.265 373.495,60.256 L 373.495,63.722 L 372.44,63.722 L 372.44,60.376 C 372.44,59.44 372.092,58.661 371.096,58.661 C 370.401,58.661 369.861,59.153 369.681,59.74 C 369.633,59.872 369.61,60.052 369.61,60.232 L 369.61,63.722 L 368.553,63.722 L 368.553,59.489 L 368.553,59.489 z"
   id="path4503" />
		</g>
	</g>
	<g
   id="g4505">
		<path
   d="M 400.403,60.268 C 400.403,62.949 398.306,65.122 395.722,65.122 C 393.137,65.122 391.042,62.949 391.042,60.268 C 391.042,57.588 393.137,55.415 395.722,55.415 C 398.307,55.416 400.403,57.588 400.403,60.268 z"
   id="path19818_3_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g4508">
			<path
   d="M 394.269,57.322 C 394.59,57.259 395.012,57.211 395.548,57.211 C 396.207,57.211 396.69,57.37 396.996,57.655 C 397.279,57.909 397.455,58.298 397.455,58.774 C 397.455,59.257 397.317,59.638 397.049,59.917 C 396.697,60.306 396.123,60.504 395.471,60.504 C 395.272,60.504 395.088,60.496 394.936,60.456 L 394.936,62.599 L 394.269,62.599 L 394.269,57.322 z M 394.936,59.892 C 395.081,59.932 395.272,59.948 395.487,59.948 C 396.3,59.948 396.782,59.536 396.782,58.813 C 396.782,58.099 396.3,57.758 395.563,57.758 C 395.272,57.758 395.05,57.789 394.936,57.814 L 394.936,59.892 z"
   id="path4510"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="g4512">
	<g
   id="g4514">
		<g
   id="g4516">
			<line
   fill="none"
   stroke="#000000"
   x1="337.35699"
   y1="55.833"
   x2="284.81299"
   y2="55.833"
   id="line4518"
   style="fill:none;stroke:#000000" />
			<polygon
   points="287.622,52.13 286.05,55.833 287.622,59.538 278.845,55.833 287.622,52.13 "
   id="polygon4520" />
		</g>
	</g>
	<g
   id="g4522">
		<g
   id="g4524">
			<line
   fill="none"
   stroke="#000000"
   x1="284"
   y1="63.333"
   x2="336.69"
   y2="63.333"
   id="line4526"
   style="fill:none;stroke:#000000" />
			<polygon
   points="333.882,67.037 335.455,63.333 333.882,59.629 342.66,63.333 333.882,67.037 "
   id="polygon4528" />
		</g>
	</g>
</g>
<g
   id="g4530">
	<g
   id="g4532">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="230.31"
   y1="60.200001"
   x2="185"
   y2="60.200001"
   id="line4534"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="187.809,56.497 186.236,60.2 187.809,63.904 179.031,60.2 187.809,56.497 "
   id="polygon4536" />
	</g>
</g>
<g
   id="g4538">
	<g
   id="g4540">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="310.75601"
   y1="150.78799"
   x2="310.75601"
   y2="73"
   id="line4542"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="314.459,75.809 310.756,74.236 307.052,75.809 310.756,67.031 314.459,75.809 "
   id="polygon4544" />
	</g>
</g>
<g
   id="g4546">
	<g
   id="g4548">
		<g
   id="g4550">
			<line
   fill="none"
   stroke="#000000"
   x1="407.035"
   y1="127.533"
   x2="341.45001"
   y2="155.743"
   id="line4552"
   style="fill:none;stroke:#000000" />
			<polygon
   points="342.567,151.231 342.586,155.255 345.494,158.036 335.967,158.102 342.567,151.231 "
   id="polygon4554" />
		</g>
	</g>
	<path
   d="M 365.004,145.695 C 369.716,143.668 395.44,138.556 405.666,162.333"
   id="path4556"
   style="fill:none;stroke:#000000" />
</g>
<g
   id="g4558">
	
		<radialGradient
   cx="313.36041"
   cy="-427.74609"
   r="16.186001"
   id="path16609_24_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
		<stop
   id="stop4561"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4563"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4565"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4567"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4569"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4571"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4573"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4575"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4577"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4579"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 457.406,126.597 C 457.406,132.383 446.068,137.075 432.09,137.075 C 418.11,137.075 406.776,132.386 406.776,126.597 C 406.776,120.808 418.11,116.121 432.09,116.121 C 446.068,116.122 457.406,120.81 457.406,126.597 z"
   id="path16609_11_"
   style="fill:url(#path16609_24_);stroke:#000000" />
	<g
   id="g4582">
		<path
   d="M 424.63,129.904 C 424.354,130.048 423.742,130.252 422.963,130.252 C 421.212,130.252 420.072,129.053 420.072,127.278 C 420.072,125.491 421.296,124.195 423.191,124.195 C 423.814,124.195 424.366,124.351 424.654,124.495 L 424.414,125.31 C 424.162,125.166 423.767,125.035 423.191,125.035 C 421.859,125.035 421.139,126.018 421.139,127.229 C 421.139,128.572 422.003,129.4 423.154,129.4 C 423.754,129.4 424.15,129.244 424.45,129.112 L 424.63,129.904 z"
   id="path4584" />
		<path
   d="M 426.468,124.315 L 427.739,127.745 C 427.871,128.129 428.015,128.584 428.111,128.932 L 428.134,128.932 C 428.241,128.584 428.363,128.14 428.506,127.721 L 429.657,124.315 L 430.772,124.315 L 429.189,128.453 C 428.433,130.444 427.918,131.463 427.198,132.087 C 426.682,132.543 426.167,132.723 425.903,132.771 L 425.639,131.884 C 425.903,131.8 426.25,131.632 426.563,131.368 C 426.85,131.14 427.209,130.733 427.45,130.193 C 427.498,130.085 427.534,130.001 427.534,129.942 C 427.534,129.882 427.511,129.798 427.462,129.666 L 425.316,124.317 L 426.468,124.317 L 426.468,124.315 z"
   id="path4586" />
		<path
   d="M 435.754,129.904 C 435.479,130.048 434.866,130.252 434.087,130.252 C 432.336,130.252 431.196,129.053 431.196,127.278 C 431.196,125.491 432.42,124.195 434.314,124.195 C 434.938,124.195 435.49,124.351 435.777,124.495 L 435.538,125.31 C 435.286,125.166 434.891,125.035 434.314,125.035 C 432.983,125.035 432.263,126.018 432.263,127.229 C 432.263,128.572 433.126,129.4 434.279,129.4 C 434.879,129.4 435.274,129.244 435.574,129.112 L 435.754,129.904 z"
   id="path4588" />
		<path
   d="M 443.758,126.33 L 440.615,126.33 L 440.615,129.245 L 444.117,129.245 L 444.117,130.12 L 439.572,130.12 L 439.572,122.037 L 443.937,122.037 L 443.937,122.912 L 440.615,122.912 L 440.615,125.467 L 443.758,125.467 L 443.758,126.33 z"
   id="path4590" />
	</g>
</g>
<g
   id="g4592">
	
		<radialGradient
   cx="297.64651"
   cy="-356.49219"
   r="16.186001"
   id="path16609_25_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-67.1866,398.5585)">
		<stop
   id="stop4595"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4597"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4599"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4601"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4603"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4605"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4607"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4609"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4611"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4613"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 432.368,171.9 C 432.368,177.686 421.03,182.378 407.052,182.378 C 393.072,182.378 381.738,177.689 381.738,171.9 C 381.738,166.111 393.072,161.424 407.052,161.424 C 421.03,161.425 432.368,166.113 432.368,171.9 z"
   id="path16609_12_"
   style="fill:url(#path16609_25_);stroke:#000000" />
	<g
   id="g4616">
		<path
   d="M 400.923,175.159 C 400.539,175.351 399.772,175.555 398.788,175.555 C 396.51,175.555 394.794,174.104 394.794,171.453 C 394.794,168.922 396.51,167.207 399.016,167.207 C 400.024,167.207 400.659,167.423 400.935,167.567 L 400.683,168.418 C 400.287,168.227 399.723,168.083 399.052,168.083 C 397.156,168.083 395.898,169.294 395.898,171.417 C 395.898,173.396 397.038,174.667 399.004,174.667 C 399.64,174.667 400.287,174.535 400.707,174.331 L 400.923,175.159 z"
   id="path4618" />
		<path
   d="M 407.079,166.908 L 407.079,173.924 C 407.079,174.44 407.092,175.027 407.127,175.423 L 406.18,175.423 L 406.132,174.416 L 406.108,174.416 C 405.784,175.063 405.077,175.555 404.129,175.555 C 402.726,175.555 401.647,174.368 401.647,172.605 C 401.635,170.674 402.835,169.487 404.249,169.487 C 405.138,169.487 405.737,169.906 406.001,170.374 L 406.024,170.374 L 406.024,166.908 L 407.079,166.908 z M 406.023,171.981 C 406.023,171.849 406.011,171.669 405.975,171.537 C 405.82,170.865 405.244,170.313 404.453,170.313 C 403.361,170.313 402.713,171.272 402.713,172.556 C 402.713,173.731 403.289,174.702 404.429,174.702 C 405.137,174.702 405.783,174.234 405.976,173.443 C 406.012,173.299 406.024,173.155 406.024,172.987 L 406.024,171.981 L 406.023,171.981 z"
   id="path4620" />
		<path
   d="M 409.877,172.281 L 409.9,172.281 C 410.045,172.077 410.248,171.825 410.416,171.621 L 412.119,169.618 L 413.39,169.618 L 411.148,172.005 L 413.703,175.423 L 412.42,175.423 L 410.416,172.64 L 409.877,173.24 L 409.877,175.423 L 408.834,175.423 L 408.834,166.908 L 409.877,166.908 L 409.877,172.281 z"
   id="path4622" />
		<path
   d="M 414.125,175.423 L 414.125,174.776 L 414.953,173.972 C 416.944,172.077 417.844,171.07 417.855,169.894 C 417.855,169.102 417.471,168.371 416.308,168.371 C 415.6,168.371 415.013,168.731 414.653,169.031 L 414.317,168.287 C 414.857,167.831 415.625,167.495 416.524,167.495 C 418.203,167.495 418.911,168.646 418.911,169.762 C 418.911,171.201 417.867,172.365 416.224,173.948 L 415.6,174.524 L 415.6,174.548 L 419.103,174.548 L 419.103,175.423 L 414.125,175.423 z"
   id="path4624" />
	</g>
</g>
</svg>
</window>