Location: Novak, Pataki, Ciliberto, Tyson, 2001 @ 8dce5c2f9133 / novak_pataki_ciliberto_tyson_2001.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2010-07-05 14:20:27+12:00
Desc:
Tidied session file
Permanent Source URI:
http://models.cellml.org/workspace/novak_pataki_ciliberto_tyson_2001/rawfile/8dce5c2f9133d79ae0bf758dec001bebc0f47d1d/novak_pataki_ciliberto_tyson_2001.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 =
  {
			MPF: 

			{	id: "MPF",
				y: 'MPF/MPF', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				linestyle: 'none'
			},

			IEP: 

			{	id: "IEP",
				y: 'IEP/IEP', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				linestyle: 'none'
			},

			Slp1: 

			{	id: "Slp1",
				y: 'Slp1/Slp1', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				linestyle: 'none'
			},

			Ste9: 

			{	id: "Ste9",
				y: 'Ste9/Ste9', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				linestyle: 'none'
			},

			Rum1T: 

			{	id: "Rum1T",
				y: 'Rum1T/Rum1T', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				linestyle: 'none'
			},

			TF: 

			{	id: "TF",
				y: 'TF/TF', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				linestyle: 'none'
			},
			
			SK: 

			{	id: "SK",
				y: 'SK/SK', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				linestyle: 'none'
			},
			
			preMPF: 

			{	id: "preMPF",
				y: 'preMPF/preMPF', 
				x: 'environment/time', 
				graph: 'Graph of protein concentrations for the wild-type cell cycle', 
				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="novak_2001"
   width="536.66699"
   height="433.33301"
   overflow="visible"
   xml:space="preserve">

<metadata
   id="novak_2001">
<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="novak_2001" />
   
<!-- 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="536.66699"
   height="433.33301"
   viewBox="0 0 536.667 433.333"
   id="Layer_1"
   xml:space="preserve"><defs
   id="defs5375" /-->
<pattern
   overflow="visible"
   viewBox="2.125 -70.896 69 69"
   id="Polka_Dot_Pattern"
   patternUnits="userSpaceOnUse"
   height="69"
   width="69"
   y="746.333"
   x="-21">
	<g
   id="g3904">
		<polygon
   id="polygon3906"
   points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   "
   fill="none" />
		<polygon
   id="polygon3908"
   points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896   "
   fill="#F6BB60" />
		<g
   id="g3910">
			<path
   id="path3912"
   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="path3914"
   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="path3916"
   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="path3918"
   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="path3920"
   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="path3922"
   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="path3924"
   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="path3926"
   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="path3928"
   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="g3930">
			<path
   id="path3932"
   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="path3934"
   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="g3936">
			<g
   id="g3938">
				<path
   id="path3940"
   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="path3942"
   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="path3944"
   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="path3946"
   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="path3948"
   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="path3950"
   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="path3952"
   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="path3954"
   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="path3956"
   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="path3958"
   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="g3960">
				<path
   id="path3962"
   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="path3964"
   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="path3966"
   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="path3968"
   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="path3970"
   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="path3972"
   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="path3974"
   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="path3976"
   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="path3978"
   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="path3980"
   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="g3982">
				<path
   id="path3984"
   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="path3986"
   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="path3988"
   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="path3990"
   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="path3992"
   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="path3994"
   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="path3996"
   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="path3998"
   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="path4000"
   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="path4002"
   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="g4004">
				<path
   id="path4006"
   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="path4008"
   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="path4010"
   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="path4012"
   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="path4014"
   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="path4016"
   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="path4018"
   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="path4020"
   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="path4022"
   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="path4024"
   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="g4026">
				<path
   id="path4028"
   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="path4030"
   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="path4032"
   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="path4034"
   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="path4036"
   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="path4038"
   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="path4040"
   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="path4042"
   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="path4044"
   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="path4046"
   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="g4048">
				<path
   id="path4050"
   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="path4052"
   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="path4054"
   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="path4056"
   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="path4058"
   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="path4060"
   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="path4062"
   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="path4064"
   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="path4066"
   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="path4068"
   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="g4070">
				<path
   id="path4072"
   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="path4074"
   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="path4076"
   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="path4078"
   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="path4080"
   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="path4082"
   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="path4084"
   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="path4086"
   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="path4088"
   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="path4090"
   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="g4092">
				<path
   id="path4094"
   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="path4096"
   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="path4098"
   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="path4100"
   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="path4102"
   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="path4104"
   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="path4106"
   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="path4108"
   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="path4110"
   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="path4112"
   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="g4114">
			<path
   id="path4116"
   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="path4118"
   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="path4120"
   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="path4122"
   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="path4124"
   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="path4126"
   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="path4128"
   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="path4130"
   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="path4132"
   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="path4134"
   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="preMPF">
	<g
   id="g4138">
		<g
   id="g4140">
			
				<radialGradient
   cx="85.401901"
   cy="-437.272"
   r="16.185801"
   id="path16609_16_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
				<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 68.688,173.835 C 68.688,179.62 57.35,184.312 43.372,184.312 C 29.392,184.312 18.058,179.623 18.058,173.835 C 18.058,168.046 29.392,163.358 43.372,163.358 C 57.35,163.361 68.688,168.048 68.688,173.835 z"
   id="path16609_9_"
   style="fill:url(#path16609_16_);stroke:#000000" />
			<g
   id="g4164">
				<path
   d="M 35.805,176.55 C 35.486,176.71 34.846,176.88 34.026,176.88 C 32.128,176.88 30.698,175.67 30.698,173.461 C 30.698,171.353 32.128,169.923 34.217,169.923 C 35.057,169.923 35.586,170.104 35.816,170.223 L 35.607,170.933 C 35.277,170.773 34.807,170.654 34.248,170.654 C 32.669,170.654 31.619,171.663 31.619,173.432 C 31.619,175.08 32.568,176.14 34.208,176.14 C 34.737,176.14 35.277,176.031 35.627,175.861 L 35.805,176.55 z"
   id="path4166" />
				<path
   d="M 40.936,169.674 L 40.936,175.521 C 40.936,175.951 40.946,176.44 40.976,176.77 L 40.186,176.77 L 40.147,175.93 L 40.126,175.93 C 39.856,176.47 39.267,176.88 38.477,176.88 C 37.308,176.88 36.409,175.89 36.409,174.421 C 36.399,172.812 37.398,171.822 38.578,171.822 C 39.317,171.822 39.817,172.172 40.037,172.561 L 40.057,172.561 L 40.057,169.673 L 40.936,169.673 L 40.936,169.674 z M 40.056,173.902 C 40.056,173.792 40.046,173.642 40.017,173.532 C 39.886,172.972 39.407,172.512 38.747,172.512 C 37.837,172.512 37.298,173.312 37.298,174.381 C 37.298,175.36 37.777,176.17 38.727,176.17 C 39.317,176.17 39.857,175.78 40.017,175.12 C 40.046,175.001 40.056,174.881 40.056,174.74 L 40.056,173.902 z"
   id="path4168" />
				<path
   d="M 45.846,176.59 C 45.617,176.71 45.107,176.88 44.456,176.88 C 42.997,176.88 42.048,175.88 42.048,174.401 C 42.048,172.913 43.068,171.833 44.647,171.833 C 45.167,171.833 45.626,171.963 45.866,172.083 L 45.667,172.763 C 45.457,172.643 45.127,172.534 44.647,172.534 C 43.538,172.534 42.938,173.353 42.938,174.363 C 42.938,175.482 43.658,176.172 44.617,176.172 C 45.117,176.172 45.447,176.042 45.696,175.932 L 45.846,176.59 z"
   id="path4170" />
				<path
   d="M 48.506,171.093 L 48.486,171.093 L 47.356,171.702 L 47.186,171.032 L 48.606,170.273 L 49.355,170.273 L 49.355,176.769 L 48.505,176.769 L 48.505,171.093 L 48.506,171.093 z"
   id="path4172" />
				<path
   d="M 51.937,175.76 C 52.187,175.92 52.767,176.17 53.376,176.17 C 54.506,176.17 54.855,175.45 54.846,174.91 C 54.835,174.001 54.016,173.611 53.166,173.611 L 52.677,173.611 L 52.677,172.951 L 53.166,172.951 C 53.806,172.951 54.615,172.622 54.615,171.852 C 54.615,171.331 54.286,170.873 53.476,170.873 C 52.955,170.873 52.456,171.102 52.176,171.303 L 51.947,170.663 C 52.287,170.413 52.946,170.163 53.646,170.163 C 54.925,170.163 55.504,170.923 55.504,171.712 C 55.504,172.382 55.105,172.951 54.305,173.241 L 54.305,173.262 C 55.105,173.421 55.754,174.022 55.754,174.931 C 55.754,175.97 54.944,176.88 53.385,176.88 C 52.656,176.88 52.016,176.65 51.697,176.44 L 51.937,175.76 z"
   id="path4174" />
			</g>
		</g>
		<g
   id="g4176">
			
				<radialGradient
   cx="-82.938499"
   cy="780.61963"
   r="16.690001"
   id="path31151_5_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,935.8037)">
				<stop
   id="stop4179"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
				<stop
   id="stop4181"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
				<stop
   id="stop4183"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
				<stop
   id="stop4185"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
				<stop
   id="stop4187"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
				<stop
   id="stop4189"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
				<stop
   id="stop4191"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
				<stop
   id="stop4193"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
				<stop
   id="stop4195"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
				<stop
   id="stop4197"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
				<stop
   id="stop4199"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 55.775,148.072 L 64.015,155.113 L 56.622,161.582 C 53.29,164.627 47.651,166.629 41.255,166.629 C 31.025,166.629 22.728,161.502 22.728,155.186 C 22.728,148.862 31.023,143.741 41.255,143.741 C 47.137,143.738 52.381,145.431 55.775,148.072 z"
   id="path31151_4_"
   style="fill:url(#path31151_5_);stroke:#000000" />
			<g
   id="g4202">
				<path
   d="M 38.368,157.9 C 38.049,158.06 37.409,158.23 36.589,158.23 C 34.691,158.23 33.261,157.02 33.261,154.811 C 33.261,152.703 34.691,151.273 36.78,151.273 C 37.62,151.273 38.149,151.454 38.379,151.573 L 38.17,152.283 C 37.84,152.123 37.37,152.004 36.811,152.004 C 35.232,152.004 34.182,153.013 34.182,154.782 C 34.182,156.43 35.131,157.49 36.771,157.49 C 37.3,157.49 37.84,157.381 38.19,157.211 L 38.368,157.9 z"
   id="path4204" />
				<path
   d="M 43.499,151.024 L 43.499,156.871 C 43.499,157.301 43.509,157.79 43.539,158.12 L 42.75,158.12 L 42.71,157.28 L 42.689,157.28 C 42.419,157.82 41.83,158.23 41.04,158.23 C 39.871,158.23 38.972,157.24 38.972,155.771 C 38.962,154.162 39.961,153.172 41.141,153.172 C 41.88,153.172 42.38,153.522 42.6,153.911 L 42.62,153.911 L 42.62,151.023 L 43.499,151.023 L 43.499,151.024 z M 42.619,155.251 C 42.619,155.141 42.609,154.991 42.58,154.881 C 42.449,154.321 41.97,153.861 41.31,153.861 C 40.4,153.861 39.861,154.661 39.861,155.73 C 39.861,156.709 40.34,157.519 41.29,157.519 C 41.88,157.519 42.42,157.129 42.58,156.469 C 42.609,156.35 42.619,156.23 42.619,156.089 L 42.619,155.251 z"
   id="path4206" />
				<path
   d="M 48.409,157.94 C 48.18,158.06 47.67,158.23 47.019,158.23 C 45.56,158.23 44.611,157.23 44.611,155.751 C 44.611,154.263 45.631,153.183 47.21,153.183 C 47.73,153.183 48.189,153.313 48.429,153.433 L 48.23,154.113 C 48.02,153.993 47.69,153.884 47.21,153.884 C 46.101,153.884 45.501,154.703 45.501,155.713 C 45.501,156.832 46.221,157.522 47.18,157.522 C 47.68,157.522 48.01,157.392 48.259,157.282 L 48.409,157.94 z"
   id="path4208" />
				<path
   d="M 49.161,158.12 L 49.161,157.58 L 49.85,156.911 C 51.509,155.332 52.258,154.492 52.268,153.513 C 52.268,152.853 51.949,152.243 50.979,152.243 C 50.389,152.243 49.9,152.543 49.6,152.793 L 49.32,152.174 C 49.77,151.794 50.41,151.514 51.159,151.514 C 52.558,151.514 53.148,152.474 53.148,153.403 C 53.148,154.603 52.279,155.572 50.91,156.891 L 50.389,157.37 L 50.389,157.391 L 53.308,157.391 L 53.308,158.12 L 49.161,158.12 L 49.161,158.12 z"
   id="path4210" />
			</g>
		</g>
	</g>
	<g
   id="g4212">
		<path
   d="M 21.973,154.849 C 21.973,157.531 19.876,159.703 17.292,159.703 C 14.707,159.703 12.611,157.531 12.611,154.849 C 12.611,152.169 14.707,149.997 17.292,149.997 C 19.876,149.998 21.973,152.169 21.973,154.849 z"
   id="path19818"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g4215">
			<path
   d="M 15.838,151.904 C 16.16,151.841 16.581,151.793 17.117,151.793 C 17.776,151.793 18.259,151.952 18.565,152.237 C 18.848,152.491 19.024,152.88 19.024,153.356 C 19.024,153.839 18.886,154.22 18.618,154.499 C 18.265,154.888 17.691,155.086 17.04,155.086 C 16.841,155.086 16.657,155.078 16.504,155.038 L 16.504,157.181 L 15.837,157.181 L 15.837,151.904 L 15.838,151.904 z M 16.504,154.474 C 16.65,154.514 16.841,154.53 17.056,154.53 C 17.868,154.53 18.35,154.118 18.35,153.395 C 18.35,152.681 17.867,152.34 17.132,152.34 C 16.841,152.34 16.619,152.371 16.504,152.396 L 16.504,154.474 z"
   id="path4217"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="g4219">
	
		<radialGradient
   cx="366.87701"
   cy="771.77777"
   r="16.690599"
   id="path31151_8_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,935.8037)">
		<stop
   id="stop4222"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4224"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
		<stop
   id="stop4226"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
		<stop
   id="stop4228"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
		<stop
   id="stop4230"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
		<stop
   id="stop4232"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
		<stop
   id="stop4234"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
		<stop
   id="stop4236"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
		<stop
   id="stop4238"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
		<stop
   id="stop4240"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
		<stop
   id="stop4242"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 505.591,156.913 L 513.831,163.954 L 506.438,170.423 C 503.106,173.47 497.467,175.472 491.071,175.472 C 480.841,175.472 472.544,170.343 472.544,164.027 C 472.544,157.703 480.839,152.582 491.071,152.582 C 496.952,152.579 502.196,154.272 505.591,156.913 z"
   id="path31151_6_"
   style="fill:url(#path31151_8_);stroke:#000000" />
	<g
   id="g4245">
		<path
   d="M 488.184,166.741 C 487.865,166.901 487.225,167.071 486.405,167.071 C 484.507,167.071 483.077,165.861 483.077,163.652 C 483.077,161.544 484.507,160.114 486.596,160.114 C 487.436,160.114 487.965,160.295 488.195,160.414 L 487.986,161.124 C 487.656,160.964 487.186,160.845 486.627,160.845 C 485.048,160.845 483.998,161.854 483.998,163.623 C 483.998,165.271 484.947,166.331 486.587,166.331 C 487.116,166.331 487.656,166.222 488.006,166.052 L 488.184,166.741 z"
   id="path4247" />
		<path
   d="M 493.314,159.865 L 493.314,165.712 C 493.314,166.142 493.324,166.631 493.354,166.961 L 492.565,166.961 L 492.525,166.121 L 492.504,166.121 C 492.234,166.661 491.645,167.071 490.855,167.071 C 489.686,167.071 488.787,166.081 488.787,164.612 C 488.777,163.003 489.776,162.013 490.956,162.013 C 491.695,162.013 492.195,162.363 492.415,162.752 L 492.435,162.752 L 492.435,159.864 L 493.314,159.864 L 493.314,159.865 z M 492.435,164.093 C 492.435,163.983 492.425,163.833 492.396,163.723 C 492.265,163.163 491.786,162.703 491.126,162.703 C 490.216,162.703 489.677,163.503 489.677,164.572 C 489.677,165.551 490.156,166.361 491.106,166.361 C 491.696,166.361 492.236,165.971 492.396,165.311 C 492.425,165.192 492.435,165.072 492.435,164.931 L 492.435,164.093 z"
   id="path4249" />
		<path
   d="M 498.225,166.781 C 497.996,166.901 497.486,167.071 496.835,167.071 C 495.376,167.071 494.427,166.071 494.427,164.592 C 494.427,163.104 495.447,162.024 497.026,162.024 C 497.546,162.024 498.005,162.154 498.245,162.274 L 498.046,162.954 C 497.836,162.834 497.506,162.725 497.026,162.725 C 495.917,162.725 495.317,163.544 495.317,164.554 C 495.317,165.673 496.037,166.363 496.996,166.363 C 497.496,166.363 497.826,166.233 498.075,166.123 L 498.225,166.781 z"
   id="path4251" />
		<path
   d="M 498.977,166.961 L 498.977,166.421 L 499.666,165.752 C 501.325,164.173 502.074,163.333 502.084,162.354 C 502.084,161.694 501.765,161.084 500.795,161.084 C 500.205,161.084 499.716,161.384 499.416,161.634 L 499.136,161.015 C 499.586,160.635 500.226,160.355 500.975,160.355 C 502.374,160.355 502.964,161.315 502.964,162.244 C 502.964,163.444 502.095,164.413 500.726,165.732 L 500.205,166.211 L 500.205,166.232 L 503.124,166.232 L 503.124,166.961 L 498.977,166.961 L 498.977,166.961 z"
   id="path4253" />
	</g>
</g>
<g
   id="Slp1">
	
		<radialGradient
   cx="324.15631"
   cy="-677.53369"
   r="16.185801"
   id="path16609_19_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
		<stop
   id="stop4258"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4260"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4262"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4264"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4266"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4268"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4270"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4272"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4274"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4276"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 449.096,21.076 C 449.096,26.862 437.758,31.554 423.78,31.554 C 409.8,31.554 398.466,26.865 398.466,21.076 C 398.466,15.287 409.8,10.6 423.78,10.6 C 437.758,10.602 449.096,15.289 449.096,21.076 z"
   id="path16609_1_"
   style="fill:url(#path16609_19_);stroke:#000000" />
	<g
   id="g4279">
		<path
   d="M 415.365,22.953 C 415.756,23.193 416.326,23.392 416.926,23.392 C 417.815,23.392 418.334,22.922 418.334,22.244 C 418.334,21.614 417.975,21.254 417.064,20.904 C 415.964,20.514 415.285,19.945 415.285,18.995 C 415.285,17.946 416.156,17.166 417.465,17.166 C 418.154,17.166 418.654,17.326 418.953,17.496 L 418.715,18.206 C 418.494,18.086 418.045,17.886 417.436,17.886 C 416.516,17.886 416.166,18.436 416.166,18.896 C 416.166,19.526 416.574,19.835 417.504,20.195 C 418.645,20.635 419.223,21.185 419.223,22.174 C 419.223,23.213 418.453,24.123 416.866,24.123 C 416.216,24.123 415.507,23.923 415.147,23.683 L 415.365,22.953 z"
   id="path4281" />
		<path
   d="M 420.385,16.917 L 421.266,16.917 L 421.266,24.013 L 420.385,24.013 L 420.385,16.917 z"
   id="path4283" />
		<path
   d="M 422.746,20.754 C 422.746,20.134 422.726,19.634 422.705,19.175 L 423.496,19.175 L 423.535,20.004 L 423.555,20.004 C 423.916,19.414 424.485,19.065 425.274,19.065 C 426.444,19.065 427.323,20.054 427.323,21.524 C 427.323,23.262 426.264,24.123 425.126,24.123 C 424.485,24.123 423.927,23.843 423.636,23.363 L 423.616,23.363 L 423.616,25.991 L 422.747,25.991 L 422.747,20.754 L 422.746,20.754 z M 423.615,22.043 C 423.615,22.173 423.635,22.293 423.654,22.402 C 423.814,23.012 424.345,23.431 424.974,23.431 C 425.904,23.431 426.443,22.672 426.443,21.563 C 426.443,20.593 425.933,19.763 425.004,19.763 C 424.404,19.763 423.846,20.193 423.676,20.853 C 423.645,20.963 423.615,21.093 423.615,21.212 L 423.615,22.043 z"
   id="path4285" />
		<path
   d="M 430.064,18.335 L 430.044,18.335 L 428.913,18.944 L 428.743,18.274 L 430.163,17.515 L 430.913,17.515 L 430.913,24.011 L 430.063,24.011 L 430.063,18.335 L 430.064,18.335 z"
   id="path4287" />
	</g>
</g>
<g
   id="g4289">
	
		<radialGradient
   cx="325.1553"
   cy="-388.72711"
   r="16.186001"
   id="path16609_20_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
		<stop
   id="stop4292"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4294"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4296"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4298"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4300"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4302"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4304"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4306"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4308"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4310"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 450.688,204.7 C 450.688,210.486 439.35,215.178 425.372,215.178 C 411.392,215.178 400.058,210.489 400.058,204.7 C 400.058,198.911 411.392,194.224 425.372,194.224 C 439.35,194.225 450.688,198.913 450.688,204.7 z"
   id="path16609_2_"
   style="fill:url(#path16609_20_);stroke:#000000" />
	<g
   id="g4313">
		<path
   d="M 414.793,206.576 C 415.183,206.816 415.752,207.015 416.353,207.015 C 417.242,207.015 417.762,206.545 417.762,205.867 C 417.762,205.237 417.402,204.877 416.492,204.527 C 415.392,204.137 414.713,203.568 414.713,202.618 C 414.713,201.569 415.583,200.789 416.892,200.789 C 417.581,200.789 418.081,200.949 418.381,201.119 L 418.142,201.829 C 417.921,201.709 417.472,201.509 416.863,201.509 C 415.943,201.509 415.593,202.059 415.593,202.519 C 415.593,203.149 416.002,203.458 416.932,203.818 C 418.072,204.258 418.651,204.808 418.651,205.797 C 418.651,206.836 417.881,207.746 416.293,207.746 C 415.644,207.746 414.934,207.546 414.574,207.306 L 414.793,206.576 z"
   id="path4315" />
		<path
   d="M 420.843,201.638 L 420.843,202.798 L 422.102,202.798 L 422.102,203.467 L 420.843,203.467 L 420.843,206.075 C 420.843,206.676 421.013,207.014 421.502,207.014 C 421.742,207.014 421.882,206.994 422.012,206.954 L 422.052,207.614 C 421.882,207.683 421.613,207.744 421.273,207.744 C 420.863,207.744 420.534,207.603 420.324,207.364 C 420.074,207.104 419.984,206.675 419.984,206.104 L 419.984,203.465 L 419.234,203.465 L 419.234,202.796 L 419.984,202.796 L 419.984,201.906 L 420.843,201.638 z"
   id="path4317" />
		<path
   d="M 423.523,205.376 C 423.543,206.565 424.302,207.055 425.181,207.055 C 425.811,207.055 426.191,206.946 426.521,206.806 L 426.67,207.435 C 426.36,207.576 425.831,207.746 425.062,207.746 C 423.573,207.746 422.683,206.756 422.683,205.297 C 422.683,203.838 423.542,202.689 424.952,202.689 C 426.531,202.689 426.951,204.079 426.951,204.967 C 426.951,205.148 426.931,205.287 426.921,205.377 L 423.523,205.377 L 423.523,205.376 z M 426.102,204.747 C 426.112,204.187 425.873,203.318 424.882,203.318 C 423.993,203.318 423.603,204.137 423.533,204.747 L 426.102,204.747 z"
   id="path4319" />
		<path
   d="M 428.273,207.015 C 428.462,207.036 428.682,207.015 428.982,206.986 C 429.492,206.916 429.971,206.706 430.341,206.356 C 430.771,205.966 431.08,205.397 431.2,204.627 L 431.17,204.627 C 430.811,205.067 430.291,205.327 429.642,205.327 C 428.472,205.327 427.723,204.447 427.723,203.338 C 427.723,202.109 428.612,201.029 429.942,201.029 C 431.271,201.029 432.09,202.108 432.09,203.767 C 432.09,205.197 431.611,206.196 430.971,206.816 C 430.471,207.305 429.782,207.605 429.081,207.685 C 428.762,207.735 428.481,207.746 428.272,207.735 L 428.272,207.015 L 428.273,207.015 z M 429.862,201.699 C 429.122,201.699 428.592,202.358 428.592,203.278 C 428.592,204.088 429.081,204.657 429.841,204.657 C 430.431,204.657 430.891,204.367 431.12,203.977 C 431.17,203.897 431.2,203.797 431.2,203.658 C 431.2,202.549 430.791,201.699 429.871,201.699 L 429.862,201.699 z"
   id="path4321" />
		<path
   d="M 435.731,201.128 L 434.782,202.378 L 434.782,202.398 L 436.291,202.198 L 436.291,202.878 L 434.782,202.698 L 434.782,202.719 L 435.741,203.918 L 435.112,204.277 L 434.512,202.878 L 434.491,202.878 L 433.842,204.287 L 433.272,203.928 L 434.222,202.708 L 434.222,202.688 L 432.743,202.877 L 432.743,202.197 L 434.212,202.387 L 434.212,202.366 L 433.273,201.147 L 433.883,200.797 L 434.502,202.186 L 434.523,202.186 L 435.132,200.787 L 435.731,201.128 z"
   id="path4323" />
	</g>
</g>
<g
   id="g4325">
	
		<radialGradient
   cx="272.4346"
   cy="-607.54248"
   r="16.185801"
   id="path16609_21_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
		<stop
   id="stop4328"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4330"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4332"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4334"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4336"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4338"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4340"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4342"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4344"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4346"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 366.687,65.577 C 366.687,71.363 355.349,76.055 341.372,76.055 C 327.392,76.055 316.058,71.366 316.058,65.577 C 316.058,59.788 327.392,55.101 341.372,55.101 C 355.349,55.102 366.687,59.79 366.687,65.577 z"
   id="path16609_3_"
   style="fill:url(#path16609_21_);stroke:#000000" />
	<g
   id="g4349">
		<path
   d="M 339.346,61.776 L 339.346,68.512 L 338.477,68.512 L 338.477,61.776 L 339.346,61.776 z"
   id="path4351" />
		<path
   d="M 344.355,65.354 L 341.736,65.354 L 341.736,67.783 L 344.654,67.783 L 344.654,68.512 L 340.867,68.512 L 340.867,61.776 L 344.504,61.776 L 344.504,62.505 L 341.736,62.505 L 341.736,64.634 L 344.355,64.634 L 344.355,65.354 L 344.355,65.354 z"
   id="path4353" />
	</g>
</g>
<g
   id="TF">
	
		<radialGradient
   cx="154.4438"
   cy="-113.3354"
   r="16.185801"
   id="path16609_22_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
		<stop
   id="stop4358"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4360"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4362"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4364"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4366"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4368"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4370"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4372"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4374"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4376"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 178.692,379.793 C 178.692,385.579 167.354,390.271 153.376,390.271 C 139.396,390.271 128.062,385.582 128.062,379.793 C 128.062,374.004 139.396,369.317 153.376,369.317 C 167.354,369.319 178.692,374.006 178.692,379.793 z"
   id="path16609_5_"
   style="fill:url(#path16609_22_);stroke:#000000" />
	<g
   id="g4379">
		<path
   d="M 150.497,376.732 L 148.448,376.732 L 148.448,375.993 L 153.435,375.993 L 153.435,376.732 L 151.375,376.732 L 151.375,382.729 L 150.496,382.729 L 150.496,376.732 L 150.497,376.732 z"
   id="path4381" />
		<path
   d="M 154.188,375.993 L 157.816,375.993 L 157.816,376.722 L 155.057,376.722 L 155.057,378.961 L 157.606,378.961 L 157.606,379.681 L 155.057,379.681 L 155.057,382.729 L 154.188,382.729 L 154.188,375.993 z"
   id="path4383" />
	</g>
</g>
<g
   id="SK">
	
		<radialGradient
   cx="147.67039"
   cy="527.11279"
   r="16.6903"
   id="path31151_9_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,935.8037)">
		<stop
   id="stop4388"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4390"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
		<stop
   id="stop4392"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
		<stop
   id="stop4394"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
		<stop
   id="stop4396"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
		<stop
   id="stop4398"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
		<stop
   id="stop4400"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
		<stop
   id="stop4402"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
		<stop
   id="stop4404"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
		<stop
   id="stop4406"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
		<stop
   id="stop4408"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 286.385,401.579 L 294.625,408.62 L 287.232,415.089 C 283.9,418.134 278.261,420.136 271.865,420.136 C 261.635,420.136 253.338,415.009 253.338,408.693 C 253.338,402.369 261.633,397.248 271.865,397.248 C 277.746,397.245 282.99,398.938 286.385,401.579 z"
   id="path31151_1_"
   style="fill:url(#path31151_9_);stroke:#000000" />
	<g
   id="g4411">
		<path
   d="M 269.396,410.567 C 269.786,410.807 270.355,411.006 270.955,411.006 C 271.845,411.006 272.364,410.536 272.364,409.858 C 272.364,409.228 272.004,408.868 271.095,408.518 C 269.995,408.128 269.316,407.559 269.316,406.609 C 269.316,405.56 270.186,404.78 271.495,404.78 C 272.185,404.78 272.684,404.94 272.984,405.11 L 272.744,405.82 C 272.524,405.7 272.075,405.5 271.465,405.5 C 270.546,405.5 270.196,406.05 270.196,406.51 C 270.196,407.14 270.606,407.449 271.535,407.809 C 272.675,408.249 273.254,408.799 273.254,409.788 C 273.254,410.827 272.484,411.737 270.895,411.737 C 270.246,411.737 269.536,411.537 269.176,411.297 L 269.396,410.567 z"
   id="path4413" />
		<path
   d="M 274.447,404.89 L 275.316,404.89 L 275.316,408.138 L 275.346,408.138 C 275.526,407.878 275.706,407.638 275.876,407.418 L 277.935,404.89 L 279.015,404.89 L 276.576,407.748 L 279.205,411.626 L 278.175,411.626 L 275.956,408.317 L 275.316,409.057 L 275.316,411.625 L 274.447,411.625 L 274.447,404.89 z"
   id="path4415" />
	</g>
</g>
<g
   id="g4417">
	<g
   id="g4419">
		
			<radialGradient
   cx="-3.6522999"
   cy="905.73969"
   r="19.625099"
   id="path31151_12_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,935.8037)">
			<stop
   id="stop4422"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4424"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
			<stop
   id="stop4426"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
			<stop
   id="stop4428"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
			<stop
   id="stop4430"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
			<stop
   id="stop4432"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
			<stop
   id="stop4434"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
			<stop
   id="stop4436"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
			<stop
   id="stop4438"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
			<stop
   id="stop4440"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
			<stop
   id="stop4442"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 137.246,21.701 L 146.933,29.98 L 138.242,37.588 C 134.324,41.168 127.694,43.522 120.172,43.522 C 108.143,43.522 98.387,37.495 98.387,30.066 C 98.387,22.628 108.142,16.607 120.172,16.607 C 127.086,16.603 133.252,18.597 137.246,21.701 z"
   id="path31151_3_"
   style="fill:url(#path31151_12_);stroke:#000000" />
		<g
   id="g4445">
			<path
   d="M 112.878,26.998 L 111.169,20.262 L 112.088,20.262 L 112.888,23.67 C 113.088,24.51 113.268,25.349 113.388,25.999 L 113.408,25.999 C 113.518,25.329 113.728,24.529 113.958,23.66 L 114.857,20.262 L 115.766,20.262 L 116.586,23.68 C 116.775,24.48 116.955,25.28 117.056,25.989 L 117.076,25.989 C 117.216,25.25 117.406,24.5 117.616,23.661 L 118.506,20.263 L 119.395,20.263 L 117.487,26.999 L 116.577,26.999 L 115.727,23.491 C 115.517,22.632 115.377,21.971 115.288,21.292 L 115.268,21.292 C 115.148,21.962 114.997,22.621 114.747,23.491 L 113.788,26.999 L 112.878,26.999 L 112.878,26.998 z"
   id="path4447" />
			<path
   d="M 120.368,24.739 C 120.388,25.928 121.147,26.418 122.027,26.418 C 122.656,26.418 123.036,26.309 123.366,26.169 L 123.515,26.798 C 123.205,26.939 122.676,27.109 121.907,27.109 C 120.418,27.109 119.528,26.119 119.528,24.66 C 119.528,23.201 120.387,22.052 121.797,22.052 C 123.376,22.052 123.796,23.442 123.796,24.33 C 123.796,24.511 123.776,24.65 123.766,24.74 L 120.368,24.74 L 120.368,24.739 z M 122.946,24.109 C 122.956,23.549 122.717,22.68 121.726,22.68 C 120.837,22.68 120.447,23.499 120.377,24.109 L 122.946,24.109 z"
   id="path4449" />
			<path
   d="M 125.378,24.739 C 125.398,25.928 126.157,26.418 127.037,26.418 C 127.666,26.418 128.046,26.309 128.376,26.169 L 128.525,26.798 C 128.215,26.939 127.686,27.109 126.917,27.109 C 125.428,27.109 124.538,26.119 124.538,24.66 C 124.538,23.201 125.397,22.052 126.807,22.052 C 128.386,22.052 128.806,23.442 128.806,24.33 C 128.806,24.511 128.786,24.65 128.776,24.74 L 125.378,24.74 L 125.378,24.739 z M 127.956,24.109 C 127.966,23.549 127.727,22.68 126.736,22.68 C 125.847,22.68 125.457,23.499 125.387,24.109 L 127.956,24.109 z"
   id="path4451" />
			<path
   d="M 131.526,21.321 L 131.506,21.321 L 130.376,21.93 L 130.206,21.26 L 131.626,20.501 L 132.375,20.501 L 132.375,26.997 L 131.525,26.997 L 131.525,21.321 L 131.526,21.321 z"
   id="path4453" />
			<path
   d="M 118.935,36.04 C 118.885,35.101 118.825,33.971 118.835,33.131 L 118.805,33.131 C 118.575,33.921 118.295,34.771 117.955,35.69 L 116.766,38.959 L 116.107,38.959 L 115.017,35.751 C 114.698,34.802 114.427,33.932 114.238,33.132 L 114.217,33.132 C 114.197,33.972 114.148,35.102 114.087,36.111 L 113.907,39 L 113.078,39 L 113.548,32.264 L 114.657,32.264 L 115.806,35.522 C 116.085,36.352 116.316,37.091 116.486,37.792 L 116.515,37.792 C 116.685,37.112 116.925,36.372 117.225,35.522 L 118.424,32.264 L 119.533,32.264 L 119.953,39 L 119.103,39 L 118.935,36.04 z"
   id="path4455" />
			<path
   d="M 122.367,32.802 C 122.377,33.102 122.157,33.341 121.807,33.341 C 121.497,33.341 121.278,33.102 121.278,32.802 C 121.278,32.491 121.507,32.252 121.827,32.252 C 122.157,32.252 122.367,32.491 122.367,32.802 z M 121.388,38.998 L 121.388,34.161 L 122.268,34.161 L 122.268,38.998 L 121.388,38.998 L 121.388,38.998 z"
   id="path4457" />
			<path
   d="M 124.598,36.38 L 124.618,36.38 C 124.738,36.21 124.908,36 125.048,35.83 L 126.467,34.161 L 127.527,34.161 L 125.658,36.149 L 127.787,38.998 L 126.718,38.998 L 125.049,36.68 L 124.6,37.179 L 124.6,38.998 L 123.73,38.998 L 123.73,31.902 L 124.6,31.902 L 124.6,36.38 L 124.598,36.38 z"
   id="path4459" />
			<path
   d="M 130.046,33.321 L 130.026,33.321 L 128.896,33.93 L 128.726,33.26 L 130.146,32.501 L 130.895,32.501 L 130.895,38.997 L 130.045,38.997 L 130.045,33.321 L 130.046,33.321 z"
   id="path4461" />
		</g>
	</g>
	<g
   id="g4463">
		<path
   d="M 97.542,30.063 C 97.542,32.744 95.445,34.917 92.861,34.917 C 90.276,34.917 88.18,32.744 88.18,30.063 C 88.18,27.383 90.276,25.21 92.861,25.21 C 95.445,25.211 97.542,27.384 97.542,30.063 z"
   id="path19818_1_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g4466">
			<path
   d="M 91.407,27.118 C 91.729,27.055 92.15,27.007 92.686,27.007 C 93.345,27.007 93.828,27.166 94.134,27.451 C 94.417,27.705 94.593,28.094 94.593,28.57 C 94.593,29.053 94.455,29.434 94.187,29.713 C 93.834,30.102 93.26,30.3 92.609,30.3 C 92.41,30.3 92.226,30.292 92.073,30.252 L 92.073,32.395 L 91.406,32.395 L 91.406,27.118 L 91.407,27.118 z M 92.073,29.688 C 92.219,29.728 92.41,29.744 92.625,29.744 C 93.437,29.744 93.919,29.332 93.919,28.609 C 93.919,27.895 93.436,27.554 92.701,27.554 C 92.41,27.554 92.188,27.585 92.073,27.61 L 92.073,29.688 z"
   id="path4468"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="g4470">
	
		<radialGradient
   cx="-3.6522999"
   cy="815.86279"
   r="19.6255"
   id="path31151_13_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,935.8037)">
		<stop
   id="stop4473"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4475"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
		<stop
   id="stop4477"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
		<stop
   id="stop4479"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
		<stop
   id="stop4481"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
		<stop
   id="stop4483"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
		<stop
   id="stop4485"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
		<stop
   id="stop4487"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
		<stop
   id="stop4489"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
		<stop
   id="stop4491"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
		<stop
   id="stop4493"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 137.246,111.577 L 146.933,119.856 L 138.242,127.464 C 134.324,131.044 127.694,133.398 120.172,133.398 C 108.143,133.398 98.387,127.371 98.387,119.942 C 98.387,112.504 108.142,106.483 120.172,106.483 C 127.086,106.479 133.252,108.473 137.246,111.577 z"
   id="path31151_2_"
   style="fill:url(#path31151_13_);stroke:#000000" />
	<g
   id="g4496">
		<path
   d="M 112.878,116.874 L 111.169,110.138 L 112.088,110.138 L 112.888,113.546 C 113.088,114.386 113.268,115.225 113.388,115.875 L 113.408,115.875 C 113.518,115.205 113.728,114.405 113.958,113.536 L 114.857,110.138 L 115.766,110.138 L 116.586,113.556 C 116.775,114.356 116.955,115.156 117.056,115.865 L 117.076,115.865 C 117.216,115.126 117.406,114.376 117.616,113.537 L 118.506,110.139 L 119.395,110.139 L 117.487,116.875 L 116.577,116.875 L 115.727,113.367 C 115.517,112.508 115.377,111.847 115.288,111.168 L 115.268,111.168 C 115.148,111.838 114.997,112.497 114.747,113.367 L 113.788,116.875 L 112.878,116.875 L 112.878,116.874 z"
   id="path4498" />
		<path
   d="M 120.368,114.615 C 120.388,115.804 121.147,116.294 122.027,116.294 C 122.656,116.294 123.036,116.185 123.366,116.045 L 123.515,116.674 C 123.205,116.815 122.676,116.985 121.907,116.985 C 120.418,116.985 119.528,115.995 119.528,114.536 C 119.528,113.077 120.387,111.928 121.797,111.928 C 123.376,111.928 123.796,113.318 123.796,114.206 C 123.796,114.387 123.776,114.526 123.766,114.616 L 120.368,114.616 L 120.368,114.615 z M 122.946,113.985 C 122.956,113.425 122.717,112.556 121.726,112.556 C 120.837,112.556 120.447,113.375 120.377,113.985 L 122.946,113.985 z"
   id="path4500" />
		<path
   d="M 125.378,114.615 C 125.398,115.804 126.157,116.294 127.037,116.294 C 127.666,116.294 128.046,116.185 128.376,116.045 L 128.525,116.674 C 128.215,116.815 127.686,116.985 126.917,116.985 C 125.428,116.985 124.538,115.995 124.538,114.536 C 124.538,113.077 125.397,111.928 126.807,111.928 C 128.386,111.928 128.806,113.318 128.806,114.206 C 128.806,114.387 128.786,114.526 128.776,114.616 L 125.378,114.616 L 125.378,114.615 z M 127.956,113.985 C 127.966,113.425 127.727,112.556 126.736,112.556 C 125.847,112.556 125.457,113.375 125.387,113.985 L 127.956,113.985 z"
   id="path4502" />
		<path
   d="M 131.526,111.197 L 131.506,111.197 L 130.376,111.806 L 130.206,111.136 L 131.626,110.377 L 132.375,110.377 L 132.375,116.873 L 131.525,116.873 L 131.525,111.197 L 131.526,111.197 z"
   id="path4504" />
		<path
   d="M 118.935,125.916 C 118.885,124.977 118.825,123.847 118.835,123.007 L 118.805,123.007 C 118.575,123.797 118.295,124.647 117.955,125.566 L 116.766,128.835 L 116.107,128.835 L 115.017,125.627 C 114.698,124.678 114.427,123.808 114.238,123.008 L 114.217,123.008 C 114.197,123.848 114.148,124.978 114.087,125.987 L 113.907,128.876 L 113.078,128.876 L 113.548,122.14 L 114.657,122.14 L 115.806,125.398 C 116.085,126.228 116.316,126.967 116.486,127.668 L 116.515,127.668 C 116.685,126.988 116.925,126.248 117.225,125.398 L 118.424,122.14 L 119.533,122.14 L 119.953,128.876 L 119.103,128.876 L 118.935,125.916 z"
   id="path4506" />
		<path
   d="M 122.367,122.678 C 122.377,122.978 122.157,123.217 121.807,123.217 C 121.497,123.217 121.278,122.978 121.278,122.678 C 121.278,122.367 121.507,122.128 121.827,122.128 C 122.157,122.128 122.367,122.367 122.367,122.678 z M 121.388,128.874 L 121.388,124.037 L 122.268,124.037 L 122.268,128.874 L 121.388,128.874 z"
   id="path4508" />
		<path
   d="M 124.598,126.256 L 124.618,126.256 C 124.738,126.086 124.908,125.876 125.048,125.706 L 126.467,124.037 L 127.527,124.037 L 125.658,126.025 L 127.787,128.874 L 126.718,128.874 L 125.049,126.556 L 124.6,127.055 L 124.6,128.874 L 123.73,128.874 L 123.73,121.778 L 124.6,121.778 L 124.6,126.256 L 124.598,126.256 z"
   id="path4510" />
		<path
   d="M 130.046,123.197 L 130.026,123.197 L 128.896,123.806 L 128.726,123.136 L 130.146,122.377 L 130.895,122.377 L 130.895,128.873 L 130.045,128.873 L 130.045,123.197 L 130.046,123.197 z"
   id="path4512" />
	</g>
</g>
<g
   id="MPF">
	<g
   id="g4516">
		
			<radialGradient
   cx="199.3848"
   cy="-437.272"
   r="16.185801"
   id="path16609_23_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
			<stop
   id="stop4519"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4521"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4523"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4525"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4527"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4529"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4531"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4533"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4535"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4537"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 250.297,173.835 C 250.297,179.62 238.959,184.312 224.981,184.312 C 211.001,184.312 199.667,179.623 199.667,173.835 C 199.667,168.046 211.001,163.358 224.981,163.358 C 238.959,163.361 250.297,168.048 250.297,173.835 z"
   id="path16609_7_"
   style="fill:url(#path16609_23_);stroke:#000000" />
		<g
   id="g4540">
			<path
   d="M 217.415,176.55 C 217.096,176.71 216.456,176.88 215.636,176.88 C 213.738,176.88 212.308,175.67 212.308,173.461 C 212.308,171.353 213.738,169.923 215.827,169.923 C 216.667,169.923 217.196,170.104 217.426,170.223 L 217.217,170.933 C 216.887,170.773 216.417,170.654 215.858,170.654 C 214.279,170.654 213.229,171.663 213.229,173.432 C 213.229,175.08 214.178,176.14 215.818,176.14 C 216.347,176.14 216.887,176.031 217.237,175.861 L 217.415,176.55 z"
   id="path4542" />
			<path
   d="M 222.545,169.674 L 222.545,175.521 C 222.545,175.951 222.555,176.44 222.585,176.77 L 221.795,176.77 L 221.756,175.93 L 221.735,175.93 C 221.465,176.47 220.876,176.88 220.086,176.88 C 218.917,176.88 218.018,175.89 218.018,174.421 C 218.008,172.812 219.007,171.822 220.187,171.822 C 220.926,171.822 221.426,172.172 221.646,172.561 L 221.666,172.561 L 221.666,169.673 L 222.545,169.673 L 222.545,169.674 z M 221.666,173.902 C 221.666,173.792 221.656,173.642 221.627,173.532 C 221.496,172.972 221.017,172.512 220.357,172.512 C 219.447,172.512 218.908,173.312 218.908,174.381 C 218.908,175.36 219.387,176.17 220.337,176.17 C 220.927,176.17 221.467,175.78 221.627,175.12 C 221.656,175.001 221.666,174.881 221.666,174.74 L 221.666,173.902 L 221.666,173.902 z"
   id="path4544" />
			<path
   d="M 227.456,176.59 C 227.227,176.71 226.717,176.88 226.066,176.88 C 224.607,176.88 223.658,175.88 223.658,174.401 C 223.658,172.913 224.678,171.833 226.257,171.833 C 226.777,171.833 227.236,171.963 227.476,172.083 L 227.277,172.763 C 227.067,172.643 226.737,172.534 226.257,172.534 C 225.148,172.534 224.548,173.353 224.548,174.363 C 224.548,175.482 225.268,176.172 226.227,176.172 C 226.727,176.172 227.057,176.042 227.306,175.932 L 227.456,176.59 z"
   id="path4546" />
			<path
   d="M 230.116,171.093 L 230.096,171.093 L 228.966,171.702 L 228.796,171.032 L 230.216,170.273 L 230.965,170.273 L 230.965,176.769 L 230.115,176.769 L 230.115,171.093 L 230.116,171.093 z"
   id="path4548" />
			<path
   d="M 233.546,175.76 C 233.796,175.92 234.376,176.17 234.985,176.17 C 236.115,176.17 236.464,175.45 236.455,174.91 C 236.444,174.001 235.625,173.611 234.775,173.611 L 234.286,173.611 L 234.286,172.951 L 234.775,172.951 C 235.415,172.951 236.224,172.622 236.224,171.852 C 236.224,171.331 235.895,170.873 235.085,170.873 C 234.564,170.873 234.065,171.102 233.785,171.303 L 233.556,170.663 C 233.896,170.413 234.555,170.163 235.255,170.163 C 236.534,170.163 237.113,170.923 237.113,171.712 C 237.113,172.382 236.714,172.951 235.914,173.241 L 235.914,173.262 C 236.714,173.421 237.363,174.022 237.363,174.931 C 237.363,175.97 236.553,176.88 234.994,176.88 C 234.265,176.88 233.625,176.65 233.306,176.44 L 233.546,175.76 z"
   id="path4550" />
		</g>
	</g>
	<g
   id="g4552">
		
			<radialGradient
   cx="98.670898"
   cy="780.61963"
   r="16.690001"
   id="path31151_14_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1,0,0,-1,126.311,935.8037)">
			<stop
   id="stop4555"
   style="stop-color:#ffdd9e;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4557"
   style="stop-color:#ffda9c;stop-opacity:1"
   offset="0.29120001" />
			<stop
   id="stop4559"
   style="stop-color:#ffd297;stop-opacity:1"
   offset="0.43430001" />
			<stop
   id="stop4561"
   style="stop-color:#fcc58e;stop-opacity:1"
   offset="0.54500002" />
			<stop
   id="stop4563"
   style="stop-color:#f9b180;stop-opacity:1"
   offset="0.63919997" />
			<stop
   id="stop4565"
   style="stop-color:#f69971;stop-opacity:1"
   offset="0.72289997" />
			<stop
   id="stop4567"
   style="stop-color:#f37b5c;stop-opacity:1"
   offset="0.79900002" />
			<stop
   id="stop4569"
   style="stop-color:#f05b45;stop-opacity:1"
   offset="0.86949998" />
			<stop
   id="stop4571"
   style="stop-color:#ee392d;stop-opacity:1"
   offset="0.93480003" />
			<stop
   id="stop4573"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="0.99510002" />
			<stop
   id="stop4575"
   style="stop-color:#ec2224;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 237.385,148.072 L 245.625,155.113 L 238.232,161.582 C 234.9,164.627 229.261,166.629 222.865,166.629 C 212.635,166.629 204.338,161.502 204.338,155.186 C 204.338,148.862 212.633,143.741 222.865,143.741 C 228.746,143.738 233.99,145.431 237.385,148.072 z"
   id="path31151_7_"
   style="fill:url(#path31151_14_);stroke:#000000" />
		<g
   id="g4578">
			<path
   d="M 219.978,157.9 C 219.659,158.06 219.019,158.23 218.199,158.23 C 216.301,158.23 214.871,157.02 214.871,154.811 C 214.871,152.703 216.301,151.273 218.39,151.273 C 219.23,151.273 219.759,151.454 219.989,151.573 L 219.78,152.283 C 219.45,152.123 218.98,152.004 218.421,152.004 C 216.842,152.004 215.792,153.013 215.792,154.782 C 215.792,156.43 216.741,157.49 218.381,157.49 C 218.91,157.49 219.45,157.381 219.8,157.211 L 219.978,157.9 z"
   id="path4580" />
			<path
   d="M 225.109,151.024 L 225.109,156.871 C 225.109,157.301 225.119,157.79 225.149,158.12 L 224.36,158.12 L 224.32,157.28 L 224.299,157.28 C 224.029,157.82 223.44,158.23 222.65,158.23 C 221.481,158.23 220.582,157.24 220.582,155.771 C 220.572,154.162 221.571,153.172 222.751,153.172 C 223.49,153.172 223.99,153.522 224.21,153.911 L 224.23,153.911 L 224.23,151.023 L 225.109,151.023 L 225.109,151.024 z M 224.229,155.251 C 224.229,155.141 224.219,154.991 224.19,154.881 C 224.059,154.321 223.58,153.861 222.92,153.861 C 222.01,153.861 221.471,154.661 221.471,155.73 C 221.471,156.709 221.95,157.519 222.9,157.519 C 223.49,157.519 224.03,157.129 224.19,156.469 C 224.219,156.35 224.229,156.23 224.229,156.089 L 224.229,155.251 L 224.229,155.251 z"
   id="path4582" />
			<path
   d="M 230.019,157.94 C 229.79,158.06 229.28,158.23 228.629,158.23 C 227.17,158.23 226.221,157.23 226.221,155.751 C 226.221,154.263 227.241,153.183 228.82,153.183 C 229.34,153.183 229.799,153.313 230.039,153.433 L 229.84,154.113 C 229.63,153.993 229.3,153.884 228.82,153.884 C 227.711,153.884 227.111,154.703 227.111,155.713 C 227.111,156.832 227.831,157.522 228.79,157.522 C 229.29,157.522 229.62,157.392 229.869,157.282 L 230.019,157.94 z"
   id="path4584" />
			<path
   d="M 230.771,158.12 L 230.771,157.58 L 231.46,156.911 C 233.119,155.332 233.868,154.492 233.878,153.513 C 233.878,152.853 233.559,152.243 232.589,152.243 C 231.999,152.243 231.51,152.543 231.21,152.793 L 230.93,152.174 C 231.38,151.794 232.02,151.514 232.769,151.514 C 234.168,151.514 234.758,152.474 234.758,153.403 C 234.758,154.603 233.889,155.572 232.52,156.891 L 232,157.37 L 232,157.391 L 234.919,157.391 L 234.919,158.12 L 230.771,158.12 z"
   id="path4586" />
		</g>
	</g>
</g>
<g
   id="g4588">
	<g
   id="g4590">
		<g
   id="g2886_2_">
			<g
   id="g8433_3_">
				
					<radialGradient
   cx="234.1221"
   cy="124.8149"
   r="13.5288"
   id="path8425_2_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(-1.5879,0,0,1.1269,492.3406,63.0466)">
					<stop
   id="stop4595"
   style="stop-color:#aedfe7;stop-opacity:1"
   offset="0" />
					<stop
   id="stop4597"
   style="stop-color:#addfe8;stop-opacity:1"
   offset="0.36520001" />
					<stop
   id="stop4599"
   style="stop-color:#abdeec;stop-opacity:1"
   offset="0.54439998" />
					<stop
   id="stop4601"
   style="stop-color:#a1dcf1;stop-opacity:1"
   offset="0.68330002" />
					<stop
   id="stop4603"
   style="stop-color:#9ad1f1;stop-opacity:1"
   offset="0.80129999" />
					<stop
   id="stop4605"
   style="stop-color:#95bae2;stop-opacity:1"
   offset="0.90499997" />
					<stop
   id="stop4607"
   style="stop-color:#9e9ccd;stop-opacity:1"
   offset="0.99910003" />
					<stop
   id="stop4609"
   style="stop-color:#8faeda;stop-opacity:1"
   offset="1" />
				</radialGradient>
				<path
   d="M 95.618,196.977 C 100.653,193.946 108.895,191.676 118.364,191.676 C 133.514,191.676 145.794,197.059 145.794,203.699 C 145.794,210.342 133.515,215.724 118.364,215.724 C 109.655,215.724 100.385,212.933 95.36,210.16 L 103.601,203.517 L 95.618,196.977 z"
   id="path8425_3_"
   style="fill:url(#path8425_2_);stroke:#000000" />
			</g>
		</g>
		<g
   id="g4612">
			<path
   d="M 113.009,206.416 C 112.689,206.576 112.05,206.746 111.23,206.746 C 109.331,206.746 107.902,205.537 107.902,203.328 C 107.902,201.219 109.331,199.79 111.42,199.79 C 112.259,199.79 112.789,199.97 113.019,200.09 L 112.809,200.799 C 112.479,200.639 112.01,200.519 111.45,200.519 C 109.871,200.519 108.822,201.528 108.822,203.297 C 108.822,204.946 109.772,206.005 111.41,206.005 C 111.94,206.005 112.48,205.895 112.829,205.725 L 113.009,206.416 z"
   id="path4614" />
			<path
   d="M 118.139,199.539 L 118.139,205.386 C 118.139,205.816 118.149,206.306 118.179,206.636 L 117.389,206.636 L 117.349,205.797 L 117.329,205.797 C 117.059,206.337 116.47,206.746 115.68,206.746 C 114.511,206.746 113.611,205.757 113.611,204.288 C 113.601,202.679 114.6,201.689 115.78,201.689 C 116.519,201.689 117.019,202.039 117.239,202.429 L 117.259,202.429 L 117.259,199.54 L 118.139,199.54 L 118.139,199.539 z M 117.26,203.767 C 117.26,203.657 117.25,203.507 117.22,203.397 C 117.09,202.837 116.61,202.377 115.951,202.377 C 115.041,202.377 114.502,203.177 114.502,204.246 C 114.502,205.225 114.981,206.035 115.931,206.035 C 116.52,206.035 117.06,205.645 117.22,204.986 C 117.25,204.866 117.26,204.746 117.26,204.606 L 117.26,203.767 z"
   id="path4616" />
			<path
   d="M 123.05,206.456 C 122.82,206.576 122.31,206.746 121.661,206.746 C 120.202,206.746 119.252,205.746 119.252,204.267 C 119.252,202.778 120.272,201.698 121.851,201.698 C 122.371,201.698 122.83,201.828 123.07,201.948 L 122.87,202.628 C 122.661,202.508 122.33,202.398 121.851,202.398 C 120.742,202.398 120.142,203.218 120.142,204.227 C 120.142,205.347 120.861,206.036 121.821,206.036 C 122.321,206.036 122.651,205.906 122.901,205.796 L 123.05,206.456 z"
   id="path4618" />
			<path
   d="M 123.802,206.635 L 123.802,206.095 L 124.491,205.425 C 126.15,203.846 126.9,203.007 126.91,202.027 C 126.91,201.367 126.59,200.757 125.62,200.757 C 125.031,200.757 124.541,201.057 124.241,201.307 L 123.961,200.687 C 124.411,200.307 125.05,200.027 125.8,200.027 C 127.199,200.027 127.789,200.986 127.789,201.916 C 127.789,203.115 126.919,204.084 125.55,205.404 L 125.03,205.884 L 125.03,205.904 L 127.948,205.904 L 127.948,206.633 L 123.802,206.633 L 123.802,206.635 z"
   id="path4620" />
			<path
   d="M 132.81,200.878 L 130.331,200.878 L 130.081,202.547 C 130.231,202.527 130.371,202.507 130.611,202.507 C 131.111,202.507 131.611,202.617 132.01,202.857 C 132.52,203.147 132.94,203.707 132.94,204.526 C 132.94,205.796 131.931,206.745 130.522,206.745 C 129.812,206.745 129.212,206.545 128.903,206.345 L 129.123,205.676 C 129.393,205.836 129.923,206.036 130.512,206.036 C 131.342,206.036 132.051,205.496 132.051,204.627 C 132.041,203.787 131.482,203.188 130.182,203.188 C 129.812,203.188 129.522,203.228 129.283,203.258 L 129.702,200.139 L 132.81,200.139 L 132.81,200.878 z"
   id="path4622" />
		</g>
	</g>
	<g
   id="g4624">
		<path
   d="M 155.122,203.7 C 155.122,206.382 153.025,208.554 150.441,208.554 C 147.856,208.554 145.76,206.382 145.76,203.7 C 145.76,201.02 147.856,198.848 150.441,198.848 C 153.025,198.848 155.122,201.02 155.122,203.7 z"
   id="path19818_2_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g4627">
			<path
   d="M 148.987,200.755 C 149.309,200.692 149.73,200.644 150.266,200.644 C 150.925,200.644 151.408,200.803 151.714,201.088 C 151.997,201.342 152.173,201.731 152.173,202.207 C 152.173,202.69 152.035,203.071 151.767,203.35 C 151.414,203.739 150.84,203.937 150.189,203.937 C 149.99,203.937 149.806,203.929 149.653,203.889 L 149.653,206.032 L 148.986,206.032 L 148.986,200.755 L 148.987,200.755 z M 149.653,203.326 C 149.799,203.366 149.99,203.382 150.205,203.382 C 151.017,203.382 151.499,202.97 151.499,202.247 C 151.499,201.533 151.016,201.192 150.281,201.192 C 149.99,201.192 149.768,201.223 149.653,201.248 L 149.653,203.326 L 149.653,203.326 z"
   id="path4629"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="Rum1T">
	<g
   id="g4633">
		
			<radialGradient
   cx="290.23239"
   cy="-215.8804"
   r="15.1503"
   id="path16609_24_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-237.4445,466.4815)">
			<stop
   id="stop4636"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4638"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4640"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4642"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4644"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4646"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4648"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4650"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4652"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4654"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 207.135,338.259 C 202.464,336.331 199.666,333.589 199.666,330.562 C 199.666,324.773 211,320.085 224.981,320.085 C 238.959,320.087 250.297,324.774 250.297,330.562 C 250.297,333.661 247.044,336.446 241.874,338.364"
   id="path16609_14_"
   style="fill:url(#path16609_24_);stroke:#000000" />
		
			<radialGradient
   cx="289.53421"
   cy="-197.2119"
   r="0"
   id="path16609_25_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-237.4445,466.4815)">
			<stop
   id="stop4658"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4660"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4662"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4664"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4666"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4668"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4670"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4672"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4674"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4676"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   id="path16609_12_"
   style="fill:url(#path16609_25_);stroke:#000000" />
		<g
   id="g4679">
			<path
   d="M 206.702,338.261 C 208.622,332.482 212.145,329.094 215.452,329.094 C 219.329,329.094 223.557,331.537 225.369,339.094"
   id="path16609_11_"
   style="fill:#ffffff;stroke:#231f20" />
		</g>
		<g
   id="g4682">
			<path
   d="M 225.202,339.511 C 227.326,336.035 230.56,333.81 233.573,333.81 C 236.392,333.81 240.34,335.383 242.286,338.344"
   id="path31151_11_"
   style="fill:#ffffff;stroke:#231f20" />
		</g>
		<rect
   width="15.719"
   height="1.781"
   x="208.146"
   y="340.689"
   id="rect4685"
   style="fill:#ffffff" />
		<rect
   width="11.443"
   height="2.375"
   x="207.733"
   y="338.517"
   id="rect4687"
   style="fill:#ffffff" />
	</g>
	<g
   id="g4689">
		<path
   d="M 223.189,325.416 C 223.628,325.326 224.258,325.276 224.858,325.276 C 225.788,325.276 226.387,325.446 226.807,325.826 C 227.147,326.126 227.337,326.586 227.337,327.105 C 227.337,327.995 226.777,328.584 226.068,328.824 L 226.068,328.854 C 226.588,329.034 226.898,329.513 227.057,330.213 C 227.277,331.152 227.437,331.802 227.577,332.062 L 226.678,332.062 C 226.568,331.862 226.418,331.292 226.228,330.453 C 226.028,329.523 225.668,329.174 224.879,329.144 L 224.059,329.144 L 224.059,332.062 L 223.19,332.062 L 223.19,325.416 L 223.189,325.416 z M 224.058,328.484 L 224.948,328.484 C 225.878,328.484 226.467,327.974 226.467,327.205 C 226.467,326.336 225.838,325.956 224.918,325.946 C 224.498,325.946 224.198,325.986 224.058,326.025 L 224.058,328.484 L 224.058,328.484 z"
   id="path4691" />
		<path
   d="M 232.586,330.743 C 232.586,331.243 232.596,331.682 232.626,332.062 L 231.846,332.062 L 231.796,331.272 L 231.776,331.272 C 231.546,331.663 231.036,332.172 230.177,332.172 C 229.417,332.172 228.508,331.752 228.508,330.053 L 228.508,327.225 L 229.387,327.225 L 229.387,329.903 C 229.387,330.823 229.667,331.442 230.467,331.442 C 231.056,331.442 231.467,331.033 231.626,330.643 C 231.676,330.513 231.706,330.353 231.706,330.193 L 231.706,327.225 L 232.585,327.225 L 232.585,330.743 L 232.586,330.743 z"
   id="path4693" />
		<path
   d="M 234.048,328.534 C 234.048,328.035 234.038,327.625 234.008,327.225 L 234.778,327.225 L 234.818,328.004 L 234.848,328.004 C 235.118,327.544 235.567,327.114 236.367,327.114 C 237.027,327.114 237.526,327.513 237.736,328.084 L 237.756,328.084 C 237.906,327.813 238.096,327.604 238.296,327.454 C 238.586,327.234 238.906,327.114 239.366,327.114 C 240.006,327.114 240.955,327.534 240.955,329.213 L 240.955,332.062 L 240.096,332.062 L 240.096,329.324 C 240.096,328.394 239.756,327.835 239.047,327.835 C 238.547,327.835 238.157,328.205 238.007,328.635 C 237.967,328.754 237.937,328.914 237.937,329.074 L 237.937,332.062 L 237.077,332.062 L 237.077,329.164 C 237.077,328.394 236.737,327.835 236.068,327.835 C 235.518,327.835 235.118,328.274 234.979,328.714 C 234.929,328.845 234.909,328.994 234.909,329.145 L 234.909,332.063 L 234.049,332.063 L 234.049,328.534 L 234.048,328.534 z"
   id="path4695" />
		<path
   d="M 244.018,326.385 L 243.998,326.385 L 242.869,326.994 L 242.699,326.324 L 244.118,325.565 L 244.868,325.565 L 244.868,332.061 L 244.019,332.061 L 244.019,326.385 L 244.018,326.385 z"
   id="path4697" />
	</g>
</g>
<g
   id="g4699">
	<path
   d="M 138.849,332.094 L 138.149,334.213 L 137.25,334.213 L 139.539,327.477 L 140.588,327.477 L 142.887,334.213 L 141.957,334.213 L 141.238,332.094 L 138.849,332.094 z M 141.058,331.415 L 140.398,329.477 C 140.248,329.038 140.148,328.637 140.048,328.248 L 140.028,328.248 C 139.928,328.647 139.818,329.058 139.688,329.468 L 139.028,331.416 L 141.058,331.416 L 141.058,331.415 z"
   id="path4701" />
	<path
   d="M 144.969,332.094 L 144.269,334.213 L 143.37,334.213 L 145.659,327.477 L 146.708,327.477 L 149.007,334.213 L 148.077,334.213 L 147.358,332.094 L 144.969,332.094 z M 147.178,331.415 L 146.518,329.477 C 146.368,329.038 146.268,328.637 146.168,328.248 L 146.148,328.248 C 146.048,328.647 145.938,329.058 145.808,329.468 L 145.148,331.416 L 147.178,331.416 L 147.178,331.415 z"
   id="path4703" />
</g>
<g
   id="g4705">
	<g
   id="g4707">
		<g
   id="g4709">
			
				<radialGradient
   cx="358.05859"
   cy="-215.8804"
   r="15.1508"
   id="path16609_26_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-237.4445,466.4815)">
				<stop
   id="stop4712"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop4714"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop4716"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop4718"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop4720"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop4722"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop4724"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop4726"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop4728"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop4730"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 315.204,338.259 C 310.533,336.331 307.735,333.589 307.735,330.562 C 307.735,324.773 319.069,320.085 333.05,320.085 C 347.028,320.087 358.366,324.774 358.366,330.562 C 358.366,333.661 355.113,336.446 349.943,338.364"
   id="path16609_17_"
   style="fill:url(#path16609_26_);stroke:#000000" />
			
				<radialGradient
   cx="357.3613"
   cy="-197.2119"
   r="0"
   id="path16609_27_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-237.4445,466.4815)">
				<stop
   id="stop4734"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
				<stop
   id="stop4736"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
				<stop
   id="stop4738"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
				<stop
   id="stop4740"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
				<stop
   id="stop4742"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
				<stop
   id="stop4744"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
				<stop
   id="stop4746"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
				<stop
   id="stop4748"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
				<stop
   id="stop4750"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
				<stop
   id="stop4752"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   id="path16609_15_"
   style="fill:url(#path16609_27_);stroke:#000000" />
			<g
   id="g4755">
				<path
   d="M 314.771,338.261 C 316.691,332.482 320.214,329.094 323.521,329.094 C 327.398,329.094 331.626,331.537 333.438,339.094"
   id="path16609_8_"
   style="fill:#ffffff;stroke:#231f20" />
			</g>
			<g
   id="g4758">
				<path
   d="M 333.271,339.511 C 335.395,336.035 338.629,333.81 341.642,333.81 C 344.461,333.81 348.409,335.383 350.355,338.344"
   id="path31151_10_"
   style="fill:#ffffff;stroke:#231f20" />
			</g>
			<rect
   width="15.719"
   height="1.781"
   x="316.215"
   y="340.689"
   id="rect4761"
   style="fill:#ffffff" />
			<rect
   width="11.443"
   height="2.375"
   x="315.80301"
   y="338.517"
   id="rect4763"
   style="fill:#ffffff" />
		</g>
		<g
   id="g4765">
			<path
   d="M 331.258,325.416 C 331.697,325.326 332.328,325.276 332.928,325.276 C 333.858,325.276 334.457,325.446 334.876,325.826 C 335.216,326.126 335.406,326.586 335.406,327.105 C 335.406,327.995 334.845,328.584 334.136,328.824 L 334.136,328.854 C 334.656,329.034 334.966,329.513 335.125,330.213 C 335.345,331.152 335.505,331.802 335.645,332.062 L 334.746,332.062 C 334.637,331.862 334.486,331.292 334.297,330.453 C 334.097,329.523 333.736,329.174 332.947,329.144 L 332.127,329.144 L 332.127,332.062 L 331.258,332.062 L 331.258,325.416 L 331.258,325.416 z M 332.127,328.484 L 333.018,328.484 C 333.948,328.484 334.537,327.974 334.537,327.205 C 334.537,326.336 333.907,325.956 332.988,325.946 C 332.568,325.946 332.268,325.986 332.128,326.025 L 332.128,328.484 L 332.127,328.484 z"
   id="path4767" />
			<path
   d="M 340.656,330.743 C 340.656,331.243 340.666,331.682 340.695,332.062 L 339.916,332.062 L 339.866,331.272 L 339.845,331.272 C 339.616,331.663 339.106,332.172 338.246,332.172 C 337.486,332.172 336.577,331.752 336.577,330.053 L 336.577,327.225 L 337.456,327.225 L 337.456,329.903 C 337.456,330.823 337.736,331.442 338.536,331.442 C 339.126,331.442 339.536,331.033 339.695,330.643 C 339.745,330.513 339.775,330.353 339.775,330.193 L 339.775,327.225 L 340.655,327.225 L 340.655,330.743 L 340.656,330.743 z"
   id="path4769" />
			<path
   d="M 342.117,328.534 C 342.117,328.035 342.107,327.625 342.078,327.225 L 342.848,327.225 L 342.887,328.004 L 342.918,328.004 C 343.188,327.544 343.637,327.114 344.437,327.114 C 345.096,327.114 345.596,327.513 345.806,328.084 L 345.827,328.084 C 345.976,327.813 346.167,327.604 346.366,327.454 C 346.656,327.234 346.975,327.114 347.436,327.114 C 348.075,327.114 349.024,327.534 349.024,329.213 L 349.024,332.062 L 348.165,332.062 L 348.165,329.324 C 348.165,328.394 347.825,327.835 347.116,327.835 C 346.616,327.835 346.226,328.205 346.077,328.635 C 346.036,328.754 346.007,328.914 346.007,329.074 L 346.007,332.062 L 345.148,332.062 L 345.148,329.164 C 345.148,328.394 344.808,327.835 344.138,327.835 C 343.588,327.835 343.189,328.274 343.048,328.714 C 342.998,328.845 342.979,328.994 342.979,329.145 L 342.979,332.063 L 342.119,332.063 L 342.119,328.534 L 342.117,328.534 z"
   id="path4771" />
			<path
   d="M 352.088,326.385 L 352.067,326.385 L 350.937,326.994 L 350.767,326.324 L 352.187,325.565 L 352.936,325.565 L 352.936,332.061 L 352.087,332.061 L 352.087,326.385 L 352.088,326.385 z"
   id="path4773" />
		</g>
	</g>
	<g
   id="g4775">
		<path
   d="M 368.281,331.277 C 368.281,333.959 366.185,336.131 363.601,336.131 C 361.015,336.131 358.919,333.959 358.919,331.277 C 358.919,328.597 361.015,326.425 363.601,326.425 C 366.186,326.425 368.281,328.597 368.281,331.277 z"
   id="path19818_3_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g4778">
			<path
   d="M 362.146,328.333 C 362.468,328.27 362.889,328.222 363.425,328.222 C 364.083,328.222 364.567,328.381 364.872,328.666 C 365.155,328.92 365.332,329.309 365.332,329.785 C 365.332,330.268 365.194,330.649 364.927,330.928 C 364.573,331.317 363.999,331.515 363.349,331.515 C 363.15,331.515 362.966,331.507 362.812,331.467 L 362.812,333.61 L 362.146,333.61 L 362.146,328.333 L 362.146,328.333 z M 362.813,330.903 C 362.959,330.943 363.151,330.959 363.366,330.959 C 364.177,330.959 364.66,330.547 364.66,329.824 C 364.66,329.11 364.177,328.769 363.442,328.769 C 363.151,328.769 362.928,328.8 362.813,328.825 L 362.813,330.903 L 362.813,330.903 z"
   id="path4780"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="g4782">
	<g
   id="g4784">
		
			<radialGradient
   cx="84.777298"
   cy="-113.3354"
   r="16.185801"
   id="path16609_28_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
			<stop
   id="stop4787"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4789"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4791"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4793"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4795"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4797"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4799"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4801"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4803"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4805"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 67.692,379.793 C 67.692,385.579 56.354,390.271 42.376,390.271 C 28.396,390.271 17.062,385.582 17.062,379.793 C 17.062,374.004 28.396,369.317 42.376,369.317 C 56.354,369.319 67.692,374.006 67.692,379.793 z"
   id="path16609_18_"
   style="fill:url(#path16609_28_);stroke:#000000" />
		<g
   id="g4808">
			<path
   d="M 39.497,376.732 L 37.448,376.732 L 37.448,375.993 L 42.435,375.993 L 42.435,376.732 L 40.375,376.732 L 40.375,382.729 L 39.496,382.729 L 39.496,376.732 L 39.497,376.732 z"
   id="path4810" />
			<path
   d="M 43.188,375.993 L 46.816,375.993 L 46.816,376.722 L 44.057,376.722 L 44.057,378.961 L 46.606,378.961 L 46.606,379.681 L 44.057,379.681 L 44.057,382.729 L 43.188,382.729 L 43.188,375.993 z"
   id="path4812" />
		</g>
	</g>
	<g
   id="g4814">
		<path
   d="M 77.366,379.793 C 77.366,382.475 75.27,384.647 72.686,384.647 C 70.1,384.647 68.004,382.475 68.004,379.793 C 68.004,377.113 70.1,374.941 72.686,374.941 C 75.271,374.942 77.366,377.114 77.366,379.793 z"
   id="path19818_4_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g4817">
			<path
   d="M 71.231,376.849 C 71.553,376.786 71.974,376.738 72.51,376.738 C 73.169,376.738 73.652,376.897 73.958,377.182 C 74.241,377.436 74.417,377.825 74.417,378.301 C 74.417,378.784 74.279,379.165 74.011,379.444 C 73.658,379.833 73.084,380.031 72.433,380.031 C 72.234,380.031 72.05,380.023 71.897,379.983 L 71.897,382.126 L 71.23,382.126 L 71.23,376.849 L 71.231,376.849 z M 71.898,379.419 C 72.044,379.459 72.235,379.475 72.45,379.475 C 73.262,379.475 73.744,379.063 73.744,378.34 C 73.744,377.626 73.261,377.285 72.526,377.285 C 72.235,377.285 72.013,377.316 71.898,377.341 L 71.898,379.419 z"
   id="path4819"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="g4821">
	
		<radialGradient
   cx="324.15631"
   cy="-569.22308"
   r="16.185801"
   id="path16609_29_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
		<stop
   id="stop4824"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4826"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4828"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4830"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4832"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4834"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4836"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4838"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4840"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4842"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 449.096,89.94 C 449.096,95.726 437.758,100.418 423.78,100.418 C 409.8,100.418 398.466,95.729 398.466,89.94 C 398.466,84.151 409.8,79.464 423.78,79.464 C 437.758,79.465 449.096,84.153 449.096,89.94 z"
   id="path16609_4_"
   style="fill:url(#path16609_29_);stroke:#000000" />
	<g
   id="g4845">
		<path
   d="M 413.291,91.816 C 413.681,92.056 414.25,92.255 414.851,92.255 C 415.74,92.255 416.26,91.785 416.26,91.107 C 416.26,90.477 415.9,90.117 414.99,89.767 C 413.89,89.377 413.211,88.808 413.211,87.858 C 413.211,86.809 414.081,86.029 415.39,86.029 C 416.079,86.029 416.579,86.189 416.879,86.359 L 416.64,87.069 C 416.419,86.949 415.97,86.749 415.361,86.749 C 414.441,86.749 414.091,87.299 414.091,87.759 C 414.091,88.389 414.5,88.698 415.43,89.058 C 416.57,89.498 417.149,90.048 417.149,91.037 C 417.149,92.076 416.379,92.986 414.791,92.986 C 414.142,92.986 413.432,92.786 413.072,92.546 L 413.291,91.816 z"
   id="path4847" />
		<path
   d="M 418.311,85.78 L 419.191,85.78 L 419.191,92.876 L 418.311,92.876 L 418.311,85.78 z"
   id="path4849" />
		<path
   d="M 420.671,89.618 C 420.671,88.998 420.651,88.498 420.631,88.039 L 421.421,88.039 L 421.461,88.868 L 421.481,88.868 C 421.841,88.278 422.411,87.929 423.2,87.929 C 424.37,87.929 425.249,88.918 425.249,90.388 C 425.249,92.126 424.19,92.987 423.051,92.987 C 422.411,92.987 421.852,92.707 421.562,92.227 L 421.542,92.227 L 421.542,94.855 L 420.672,94.855 L 420.672,89.618 L 420.671,89.618 z M 421.541,90.907 C 421.541,91.037 421.561,91.157 421.58,91.266 C 421.74,91.876 422.27,92.295 422.899,92.295 C 423.829,92.295 424.369,91.536 424.369,90.427 C 424.369,89.457 423.859,88.627 422.93,88.627 C 422.33,88.627 421.771,89.057 421.601,89.717 C 421.571,89.827 421.541,89.957 421.541,90.076 L 421.541,90.907 z"
   id="path4851" />
		<path
   d="M 427.989,87.199 L 427.969,87.199 L 426.839,87.808 L 426.669,87.138 L 428.089,86.379 L 428.838,86.379 L 428.838,92.875 L 427.988,92.875 L 427.988,87.199 L 427.989,87.199 z"
   id="path4853" />
		<path
   d="M 434.049,86.369 L 433.1,87.619 L 433.1,87.639 L 434.609,87.439 L 434.609,88.119 L 433.1,87.939 L 433.1,87.96 L 434.059,89.159 L 433.43,89.518 L 432.83,88.119 L 432.809,88.119 L 432.16,89.528 L 431.59,89.169 L 432.54,87.949 L 432.54,87.929 L 431.061,88.118 L 431.061,87.438 L 432.53,87.628 L 432.53,87.607 L 431.591,86.388 L 432.201,86.038 L 432.82,87.427 L 432.841,87.427 L 433.45,86.028 L 434.049,86.369 z"
   id="path4855" />
	</g>
</g>
<g
   id="IEP">
	<g
   id="g4859">
		
			<radialGradient
   cx="272.4346"
   cy="-532.04742"
   r="16.186001"
   id="path16609_30_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
			<stop
   id="stop4862"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop4864"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop4866"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop4868"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop4870"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop4872"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop4874"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop4876"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop4878"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop4880"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 366.688,113.577 C 366.688,119.363 355.35,124.055 341.372,124.055 C 327.392,124.055 316.058,119.366 316.058,113.577 C 316.058,107.788 327.392,103.101 341.372,103.101 C 355.35,103.102 366.688,107.79 366.688,113.577 z"
   id="path16609_10_"
   style="fill:url(#path16609_30_);stroke:#000000" />
		<g
   id="g4883">
			<path
   d="M 339.348,109.775 L 339.348,116.511 L 338.479,116.511 L 338.479,109.775 L 339.348,109.775 z"
   id="path4885" />
			<path
   d="M 344.355,113.354 L 341.736,113.354 L 341.736,115.783 L 344.656,115.783 L 344.656,116.512 L 340.867,116.512 L 340.867,109.776 L 344.506,109.776 L 344.506,110.505 L 341.736,110.505 L 341.736,112.634 L 344.355,112.634 L 344.355,113.354 L 344.355,113.354 z"
   id="path4887" />
		</g>
	</g>
	<g
   id="g4889">
		<path
   d="M 376.367,113.577 C 376.367,116.259 374.271,118.431 371.687,118.431 C 369.101,118.431 367.005,116.259 367.005,113.577 C 367.005,110.897 369.101,108.725 371.687,108.725 C 374.271,108.725 376.367,110.897 376.367,113.577 z"
   id="path19818_5_"
   style="fill:#ffff00;stroke:#000000" />
		<g
   id="g4892">
			<path
   d="M 370.232,110.632 C 370.553,110.569 370.974,110.521 371.511,110.521 C 372.169,110.521 372.652,110.68 372.958,110.965 C 373.241,111.219 373.417,111.608 373.417,112.084 C 373.417,112.567 373.28,112.948 373.012,113.227 C 372.659,113.616 372.085,113.814 371.434,113.814 C 371.235,113.814 371.051,113.806 370.898,113.766 L 370.898,115.909 L 370.232,115.909 L 370.232,110.632 L 370.232,110.632 z M 370.898,113.202 C 371.044,113.242 371.235,113.258 371.45,113.258 C 372.262,113.258 372.744,112.846 372.744,112.123 C 372.744,111.409 372.262,111.068 371.526,111.068 C 371.235,111.068 371.013,111.099 370.898,111.124 L 370.898,113.202 z"
   id="path4894"
   style="fill:#ff3399" />
		</g>
	</g>
</g>
<g
   id="Ste9">
	
		<radialGradient
   cx="325.1553"
   cy="-272.5347"
   r="16.185801"
   id="path16609_31_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
		<stop
   id="stop4899"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
		<stop
   id="stop4901"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
		<stop
   id="stop4903"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
		<stop
   id="stop4905"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
		<stop
   id="stop4907"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
		<stop
   id="stop4909"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
		<stop
   id="stop4911"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
		<stop
   id="stop4913"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
		<stop
   id="stop4915"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
		<stop
   id="stop4917"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
	</radialGradient>
	<path
   d="M 450.688,278.575 C 450.688,284.361 439.35,289.053 425.372,289.053 C 411.392,289.053 400.058,284.364 400.058,278.575 C 400.058,272.786 411.392,268.099 425.372,268.099 C 439.35,268.1 450.688,272.788 450.688,278.575 z"
   id="path16609_13_"
   style="fill:url(#path16609_31_);stroke:#000000" />
	<g
   id="g4920">
		<path
   d="M 416.868,280.451 C 417.258,280.691 417.828,280.89 418.428,280.89 C 419.317,280.89 419.837,280.42 419.837,279.742 C 419.837,279.112 419.477,278.752 418.567,278.402 C 417.467,278.012 416.788,277.443 416.788,276.493 C 416.788,275.444 417.658,274.664 418.967,274.664 C 419.656,274.664 420.156,274.824 420.456,274.994 L 420.217,275.704 C 419.996,275.584 419.547,275.384 418.938,275.384 C 418.018,275.384 417.668,275.934 417.668,276.394 C 417.668,277.024 418.077,277.333 419.007,277.693 C 420.147,278.133 420.726,278.683 420.726,279.672 C 420.726,280.711 419.956,281.621 418.368,281.621 C 417.719,281.621 417.009,281.421 416.649,281.181 L 416.868,280.451 z"
   id="path4922" />
		<path
   d="M 422.918,275.513 L 422.918,276.673 L 424.177,276.673 L 424.177,277.342 L 422.918,277.342 L 422.918,279.95 C 422.918,280.551 423.088,280.889 423.577,280.889 C 423.817,280.889 423.957,280.869 424.087,280.829 L 424.127,281.489 C 423.957,281.558 423.688,281.619 423.348,281.619 C 422.938,281.619 422.609,281.478 422.399,281.239 C 422.149,280.979 422.059,280.55 422.059,279.979 L 422.059,277.34 L 421.309,277.34 L 421.309,276.671 L 422.059,276.671 L 422.059,275.781 L 422.918,275.513 z"
   id="path4924" />
		<path
   d="M 425.599,279.251 C 425.619,280.44 426.378,280.93 427.258,280.93 C 427.887,280.93 428.267,280.821 428.597,280.681 L 428.746,281.31 C 428.436,281.451 427.907,281.621 427.138,281.621 C 425.649,281.621 424.759,280.631 424.759,279.172 C 424.759,277.713 425.618,276.564 427.028,276.564 C 428.607,276.564 429.027,277.954 429.027,278.842 C 429.027,279.023 429.007,279.162 428.997,279.252 L 425.599,279.252 L 425.599,279.251 z M 428.177,278.622 C 428.187,278.062 427.948,277.193 426.957,277.193 C 426.068,277.193 425.678,278.012 425.608,278.622 L 428.177,278.622 z"
   id="path4926" />
		<path
   d="M 430.348,280.89 C 430.538,280.911 430.758,280.89 431.058,280.861 C 431.568,280.791 432.047,280.581 432.417,280.231 C 432.847,279.841 433.156,279.272 433.276,278.502 L 433.246,278.502 C 432.887,278.942 432.367,279.202 431.718,279.202 C 430.548,279.202 429.799,278.322 429.799,277.213 C 429.799,275.984 430.688,274.904 432.018,274.904 C 433.347,274.904 434.166,275.983 434.166,277.642 C 434.166,279.072 433.687,280.071 433.047,280.691 C 432.547,281.18 431.858,281.48 431.157,281.56 C 430.838,281.61 430.557,281.621 430.347,281.61 L 430.347,280.89 L 430.348,280.89 z M 431.938,275.574 C 431.198,275.574 430.668,276.233 430.668,277.153 C 430.668,277.963 431.157,278.532 431.917,278.532 C 432.507,278.532 432.967,278.242 433.196,277.852 C 433.246,277.772 433.276,277.672 433.276,277.533 C 433.276,276.424 432.867,275.574 431.947,275.574 L 431.938,275.574 z"
   id="path4928" />
	</g>
</g>
<g
   id="g4930">
	<path
   d="M 221.269,20.672 L 220.569,22.791 L 219.67,22.791 L 221.959,16.055 L 223.008,16.055 L 225.307,22.791 L 224.377,22.791 L 223.658,20.672 L 221.269,20.672 z M 223.477,19.993 L 222.817,18.055 C 222.667,17.616 222.567,17.215 222.467,16.826 L 222.447,16.826 C 222.347,17.225 222.237,17.636 222.107,18.046 L 221.447,19.994 L 223.477,19.994 L 223.477,19.993 z"
   id="path4932" />
	<path
   d="M 227.389,20.672 L 226.689,22.791 L 225.79,22.791 L 228.079,16.055 L 229.128,16.055 L 231.427,22.791 L 230.497,22.791 L 229.778,20.672 L 227.389,20.672 z M 229.597,19.993 L 228.937,18.055 C 228.787,17.616 228.687,17.215 228.587,16.826 L 228.567,16.826 C 228.467,17.225 228.357,17.636 228.227,18.046 L 227.567,19.994 L 229.597,19.994 L 229.597,19.993 z"
   id="path4934" />
</g>
<g
   id="g4936">
	<g
   id="g4938">
		<line
   x1="226.311"
   y1="28.333"
   x2="226.311"
   y2="134.83299"
   id="line4940" />
		<polygon
   points="222.607,132.025 226.311,133.597 230.015,132.025 226.311,140.802 222.607,132.025 "
   id="polygon4942" />
	</g>
	<g
   id="g4944">
		<line
   fill="none"
   stroke="#231F20"
   x1="226.311"
   y1="28.333"
   x2="226.311"
   y2="134.83299"
   id="line4946"
   style="fill:none;stroke:#231f20" />
		<polygon
   points="222.607,132.025 226.311,133.597 230.015,132.025 226.311,140.802 222.607,132.025 "
   id="polygon4948"
   style="fill:#231f20" />
	</g>
</g>
<g
   id="g4950">
	<g
   id="g4952">
		<line
   fill="none"
   stroke="#231F20"
   x1="76.5"
   y1="162.83299"
   x2="189"
   y2="162.83299"
   id="line4954"
   style="fill:none;stroke:#231f20" />
		<polygon
   points="186.191,166.537 187.764,162.833 186.191,159.129 194.969,162.833 186.191,166.537 "
   id="polygon4956"
   style="fill:#231f20" />
		<polygon
   points="79.309,159.13 77.736,162.833 79.309,166.538 70.531,162.833 79.309,159.13 "
   id="polygon4958"
   style="fill:#231f20" />
	</g>
</g>
<g
   id="g4960">
	<g
   id="g4962">
		<g
   id="g4964">
			<line
   fill="none"
   stroke="#000000"
   x1="117.371"
   y1="49.742001"
   x2="117.371"
   y2="97.074997"
   id="line4966"
   style="fill:none;stroke:#000000" />
			<polygon
   points="113.668,94.266 117.371,95.839 121.075,94.266 117.371,103.044 113.668,94.266 "
   id="polygon4968" />
		</g>
	</g>
	<g
   id="g4970">
		<g
   id="g4972">
			<line
   fill="none"
   stroke="#000000"
   x1="125.079"
   y1="55.511002"
   x2="125.079"
   y2="102.841"
   id="line4974"
   style="fill:none;stroke:#000000" />
			<polygon
   points="128.782,58.32 125.079,56.747 121.375,58.32 125.079,49.542 128.782,58.32 "
   id="polygon4976" />
		</g>
	</g>
</g>
<g
   id="g4978">
	<g
   id="g4980">
		<path
   d="M 210,140.833 C 206.5,105.833 169,73.333 137,67.333"
   id="path4982"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="140.443,64.211 138.215,67.561 139.078,71.492 131.133,66.233 140.443,64.211 "
   id="polygon4984" />
	</g>
</g>
<g
   id="g4986">
	<g
   id="g4988">
		<g
   id="g4990">
			<line
   fill="none"
   stroke="#000000"
   x1="345.078"
   y1="100.841"
   x2="345.078"
   y2="84.432999"
   id="line4992"
   style="fill:none;stroke:#000000" />
			<polygon
   points="348.781,87.242 345.078,85.669 341.374,87.242 345.078,78.464 348.781,87.242 "
   id="polygon4994" />
		</g>
	</g>
	<g
   id="g4996">
		<g
   id="g4998">
			<line
   fill="none"
   stroke="#000000"
   x1="337.37"
   y1="94.898003"
   x2="337.37"
   y2="78.490997"
   id="line5000"
   style="fill:none;stroke:#000000" />
			<polygon
   points="333.667,92.089 337.37,93.662 341.074,92.089 337.37,100.867 333.667,92.089 "
   id="polygon5002" />
		</g>
	</g>
</g>
<g
   id="g5004">
	<g
   id="g5006">
		<line
   x1="345.33301"
   y1="21.077"
   x2="387.22699"
   y2="21.077"
   id="line5008" />
		<polygon
   points="384.418,24.78 385.99,21.077 384.418,17.373 393.195,21.077 384.418,24.78 "
   id="polygon5010" />
	</g>
	<g
   id="g5012">
		<line
   fill="none"
   stroke="#231F20"
   x1="345.33301"
   y1="21.077"
   x2="387.22699"
   y2="21.077"
   id="line5014"
   style="fill:none;stroke:#231f20" />
		<polygon
   points="384.418,24.78 385.99,21.077 384.418,17.373 393.195,21.077 384.418,24.78 "
   id="polygon5016"
   style="fill:#231f20" />
	</g>
</g>
<g
   id="g5018">
	<g
   id="g5020">
		<line
   x1="454.33301"
   y1="21.077"
   x2="496.22699"
   y2="21.077"
   id="line5022" />
		<polygon
   points="493.418,24.78 494.99,21.077 493.418,17.373 502.195,21.077 493.418,24.78 "
   id="polygon5024" />
	</g>
	<g
   id="g5026">
		<line
   fill="none"
   stroke="#231F20"
   x1="454.33301"
   y1="21.077"
   x2="496.22699"
   y2="21.077"
   id="line5028"
   style="fill:none;stroke:#231f20" />
		<polygon
   points="493.418,24.78 494.99,21.077 493.418,17.373 502.195,21.077 493.418,24.78 "
   id="polygon5030"
   style="fill:#231f20" />
	</g>
</g>
<g
   id="g5032">
	<g
   id="g5034">
		<path
   d="M 236.25,138.083 C 236.25,48.75 357.75,62 357.75,30"
   id="path5036"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="361.453,32.809 357.75,31.236 354.046,32.809 357.75,24.031 361.453,32.809 "
   id="polygon5038" />
	</g>
</g>
<g
   id="g5040">
	<g
   id="g5042">
		<path
   d="M 244,139.833 C 248.454,114.291 294,91.333 328,91.667"
   id="path5044"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="325.155,95.343 326.765,91.655 325.228,87.936 333.969,91.726 325.155,95.343 "
   id="polygon5046" />
	</g>
</g>
<g
   id="g5048">
	<g
   id="g5050">
		<line
   fill="none"
   stroke="#000000"
   x1="256"
   y1="164.33299"
   x2="462.5"
   y2="164.33299"
   id="line5052"
   style="fill:none;stroke:#000000" />
		<polygon
   points="459.691,168.037 461.264,164.333 459.691,160.629 468.469,164.333 459.691,168.037 "
   id="polygon5054" />
	</g>
</g>
<g
   id="g5056">
	<g
   id="g5058">
		
			<radialGradient
   cx="261.1499"
   cy="-476.21829"
   r="16.186001"
   id="path16609_32_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(1.5933,0,0,0.6358,-92.6984,451.8531)">
			<stop
   id="stop5061"
   style="stop-color:#a2ff5f;stop-opacity:1"
   offset="0" />
			<stop
   id="stop5063"
   style="stop-color:#a0ff5f;stop-opacity:1"
   offset="0.4082" />
			<stop
   id="stop5065"
   style="stop-color:#99fd5f;stop-opacity:1"
   offset="0.55519998" />
			<stop
   id="stop5067"
   style="stop-color:#8efb5e;stop-opacity:1"
   offset="0.66000003" />
			<stop
   id="stop5069"
   style="stop-color:#7df85e;stop-opacity:1"
   offset="0.74479997" />
			<stop
   id="stop5071"
   style="stop-color:#67f35d;stop-opacity:1"
   offset="0.81739998" />
			<stop
   id="stop5073"
   style="stop-color:#4bee5c;stop-opacity:1"
   offset="0.88169998" />
			<stop
   id="stop5075"
   style="stop-color:#2be85b;stop-opacity:1"
   offset="0.93980002" />
			<stop
   id="stop5077"
   style="stop-color:#07e05a;stop-opacity:1"
   offset="0.99150002" />
			<stop
   id="stop5079"
   style="stop-color:#00df5a;stop-opacity:1"
   offset="1" />
		</radialGradient>
		<path
   d="M 348.707,149.073 C 348.707,154.859 337.369,159.551 323.391,159.551 C 309.411,159.551 298.077,154.862 298.077,149.073 C 298.077,143.284 309.411,138.597 323.391,138.597 C 337.369,138.598 348.707,143.286 348.707,149.073 z"
   id="path16609_6_"
   style="fill:url(#path16609_32_);stroke:#000000" />
		<g
   id="g5082">
			<path
   d="M 316.621,149.889 L 315.922,152.008 L 315.023,152.008 L 317.312,145.272 L 318.361,145.272 L 320.66,152.008 L 319.73,152.008 L 319.01,149.889 L 316.621,149.889 z M 318.83,149.209 L 318.171,147.271 C 318.021,146.832 317.921,146.431 317.82,146.042 L 317.8,146.042 C 317.7,146.441 317.59,146.852 317.46,147.262 L 316.801,149.21 L 318.83,149.21 L 318.83,149.209 z"
   id="path5084" />
			<path
   d="M 321.652,145.352 C 322.072,145.282 322.622,145.222 323.321,145.222 C 324.18,145.222 324.81,145.422 325.21,145.782 C 325.58,146.101 325.8,146.592 325.8,147.191 C 325.8,147.8 325.62,148.281 325.28,148.63 C 324.82,149.119 324.071,149.369 323.221,149.369 C 322.961,149.369 322.721,149.359 322.521,149.309 L 322.521,152.007 L 321.652,152.007 L 321.652,145.352 L 321.652,145.352 z M 322.521,148.6 C 322.711,148.65 322.951,148.67 323.241,148.67 C 324.291,148.67 324.93,148.16 324.93,147.231 C 324.93,146.341 324.3,145.912 323.34,145.912 C 322.961,145.912 322.671,145.942 322.521,145.982 L 322.521,148.6 L 322.521,148.6 z"
   id="path5086" />
			<path
   d="M 331.68,151.789 C 331.361,151.949 330.721,152.119 329.901,152.119 C 328.003,152.119 326.573,150.909 326.573,148.7 C 326.573,146.592 328.003,145.162 330.092,145.162 C 330.932,145.162 331.461,145.343 331.691,145.462 L 331.482,146.172 C 331.152,146.012 330.682,145.893 330.123,145.893 C 328.544,145.893 327.494,146.902 327.494,148.671 C 327.494,150.319 328.443,151.379 330.083,151.379 C 330.612,151.379 331.152,151.27 331.502,151.1 L 331.68,151.789 z"
   id="path5088" />
		</g>
	</g>
	<g
   id="g5090">
		<path
   d="M 290.622,145.73 L 290.622,149.022 L 293.788,149.022 L 293.788,149.863 L 290.622,149.863 L 290.622,153.182 L 289.726,153.182 L 289.726,149.863 L 286.561,149.863 L 286.561,149.022 L 289.726,149.022 L 289.726,145.73 L 290.622,145.73 z"
   id="path5092" />
	</g>
</g>
<g
   id="g5094">
	<g
   id="g5096">
		<line
   fill="none"
   stroke="#000000"
   x1="423.5"
   y1="39.083"
   x2="423.5"
   y2="72.583"
   id="line5098"
   style="fill:none;stroke:#000000" />
		<polygon
   points="419.797,69.775 423.5,71.348 427.204,69.775 423.5,78.553 419.797,69.775 "
   id="polygon5100" />
		<polygon
   points="427.203,41.892 423.5,40.319 419.796,41.892 423.5,33.114 427.203,41.892 "
   id="polygon5102" />
	</g>
</g>
<g
   id="g5104">
	<g
   id="g5106">
		<path
   d="M 382,164.333 C 398,164.333 410,157.833 410,142.833"
   id="path5108"
   style="fill:none;stroke:#000000" />
		<polygon
   points="413.703,145.642 410,144.07 406.296,145.642 410,136.865 413.703,145.642 "
   id="polygon5110" />
	</g>
</g>
<g
   id="g5112">
	<path
   d="M 384.065,126.687 C 384.594,126.607 385.224,126.547 385.914,126.547 C 387.163,126.547 388.053,126.837 388.643,127.387 C 389.243,127.936 389.592,128.716 389.592,129.805 C 389.592,130.905 389.252,131.804 388.623,132.424 C 387.993,133.053 386.954,133.393 385.644,133.393 C 385.024,133.393 384.504,133.364 384.065,133.314 L 384.065,126.687 z M 384.935,132.644 C 385.155,132.684 385.475,132.694 385.815,132.694 C 387.673,132.694 388.683,131.655 388.683,129.836 C 388.693,128.247 387.793,127.237 385.954,127.237 C 385.505,127.237 385.165,127.277 384.934,127.327 L 384.934,132.644 L 384.935,132.644 z"
   id="path5114" />
	<path
   d="M 391.226,131.075 C 391.246,132.264 392.005,132.754 392.885,132.754 C 393.514,132.754 393.894,132.645 394.224,132.505 L 394.373,133.134 C 394.063,133.275 393.534,133.445 392.765,133.445 C 391.276,133.445 390.386,132.455 390.386,130.996 C 390.386,129.537 391.245,128.388 392.655,128.388 C 394.234,128.388 394.654,129.778 394.654,130.666 C 394.654,130.847 394.634,130.986 394.624,131.076 L 391.226,131.076 L 391.226,131.075 z M 393.804,130.445 C 393.814,129.885 393.575,129.016 392.584,129.016 C 391.695,129.016 391.305,129.835 391.235,130.445 L 393.804,130.445 z"
   id="path5116" />
	<path
   d="M 399.873,132.634 C 399.873,133.743 399.653,134.423 399.184,134.842 C 398.714,135.282 398.035,135.422 397.424,135.422 C 396.845,135.422 396.205,135.282 395.816,135.023 L 396.036,134.353 C 396.355,134.553 396.855,134.733 397.455,134.733 C 398.354,134.733 399.015,134.263 399.015,133.044 L 399.015,132.505 L 398.994,132.505 C 398.724,132.954 398.205,133.315 397.455,133.315 C 396.256,133.315 395.396,132.295 395.396,130.956 C 395.396,129.317 396.465,128.388 397.575,128.388 C 398.415,128.388 398.874,128.827 399.084,129.228 L 399.105,129.228 L 399.145,128.499 L 399.915,128.499 C 399.894,128.849 399.875,129.238 399.875,129.828 L 399.875,132.634 L 399.873,132.634 z M 399.004,130.405 C 399.004,130.256 398.993,130.126 398.953,130.006 C 398.794,129.496 398.364,129.076 397.724,129.076 C 396.884,129.076 396.285,129.786 396.285,130.905 C 396.285,131.854 396.764,132.644 397.714,132.644 C 398.254,132.644 398.743,132.304 398.934,131.745 C 398.984,131.595 399.004,131.425 399.004,131.275 L 399.004,130.405 z"
   id="path5118" />
	<path
   d="M 401.274,130.005 C 401.274,129.436 401.264,128.945 401.234,128.496 L 402.004,128.496 L 402.034,129.445 L 402.074,129.445 C 402.294,128.796 402.823,128.385 403.413,128.385 C 403.514,128.385 403.583,128.395 403.663,128.415 L 403.663,129.244 C 403.573,129.224 403.483,129.214 403.363,129.214 C 402.744,129.214 402.303,129.684 402.183,130.344 C 402.163,130.464 402.144,130.604 402.144,130.754 L 402.144,133.332 L 401.274,133.332 L 401.274,130.005 L 401.274,130.005 z"
   id="path5120" />
	<path
   d="M 407.894,132.174 C 407.894,132.594 407.914,133.003 407.974,133.333 L 407.174,133.333 L 407.104,132.724 L 407.075,132.724 C 406.804,133.104 406.285,133.444 405.596,133.444 C 404.617,133.444 404.117,132.754 404.117,132.054 C 404.117,130.885 405.157,130.245 407.025,130.255 L 407.025,130.154 C 407.025,129.755 406.916,129.035 405.926,129.035 C 405.476,129.035 405.006,129.175 404.666,129.395 L 404.466,128.815 C 404.866,128.555 405.445,128.385 406.056,128.385 C 407.535,128.385 407.895,129.395 407.895,130.364 L 407.895,132.174 L 407.894,132.174 z M 407.044,130.865 C 406.084,130.845 404.995,131.015 404.995,131.955 C 404.995,132.524 405.375,132.794 405.824,132.794 C 406.454,132.794 406.853,132.395 406.994,131.984 C 407.023,131.894 407.044,131.795 407.044,131.705 L 407.044,130.865 L 407.044,130.865 z"
   id="path5122" />
	<path
   d="M 413.492,126.238 L 413.492,132.085 C 413.492,132.515 413.502,133.004 413.532,133.334 L 412.742,133.334 L 412.703,132.494 L 412.682,132.494 C 412.412,133.034 411.823,133.444 411.033,133.444 C 409.864,133.444 408.965,132.454 408.965,130.985 C 408.955,129.376 409.954,128.386 411.134,128.386 C 411.873,128.386 412.373,128.736 412.593,129.125 L 412.613,129.125 L 412.613,126.237 L 413.492,126.237 L 413.492,126.238 z M 412.612,130.465 C 412.612,130.355 412.602,130.205 412.573,130.095 C 412.442,129.535 411.963,129.075 411.303,129.075 C 410.393,129.075 409.854,129.875 409.854,130.944 C 409.854,131.923 410.333,132.733 411.283,132.733 C 411.873,132.733 412.413,132.343 412.573,131.683 C 412.602,131.564 412.612,131.444 412.612,131.303 L 412.612,130.465 z"
   id="path5124" />
	<path
   d="M 418.354,132.174 C 418.354,132.594 418.374,133.003 418.434,133.333 L 417.634,133.333 L 417.564,132.724 L 417.535,132.724 C 417.264,133.104 416.745,133.444 416.056,133.444 C 415.077,133.444 414.577,132.754 414.577,132.054 C 414.577,130.885 415.617,130.245 417.485,130.255 L 417.485,130.154 C 417.485,129.755 417.376,129.035 416.386,129.035 C 415.936,129.035 415.466,129.175 415.126,129.395 L 414.926,128.815 C 415.326,128.555 415.905,128.385 416.516,128.385 C 417.995,128.385 418.355,129.395 418.355,130.364 L 418.355,132.174 L 418.354,132.174 z M 417.504,130.865 C 416.544,130.845 415.455,131.015 415.455,131.955 C 415.455,132.524 415.835,132.794 416.284,132.794 C 416.914,132.794 417.313,132.395 417.454,131.984 C 417.483,131.894 417.504,131.795 417.504,131.705 L 417.504,130.865 L 417.504,130.865 z"
   id="path5126" />
	<path
   d="M 420.794,127.336 L 420.794,128.496 L 422.053,128.496 L 422.053,129.165 L 420.794,129.165 L 420.794,131.773 C 420.794,132.374 420.964,132.712 421.453,132.712 C 421.693,132.712 421.833,132.692 421.963,132.652 L 422.003,133.312 C 421.833,133.381 421.564,133.442 421.224,133.442 C 420.814,133.442 420.485,133.301 420.275,133.062 C 420.025,132.802 419.935,132.373 419.935,131.802 L 419.935,129.163 L 419.185,129.163 L 419.185,128.494 L 419.935,128.494 L 419.935,127.604 L 420.794,127.336 z"
   id="path5128" />
	<path
   d="M 424.024,127.137 C 424.034,127.437 423.814,127.676 423.464,127.676 C 423.154,127.676 422.935,127.437 422.935,127.137 C 422.935,126.826 423.164,126.587 423.484,126.587 C 423.814,126.587 424.024,126.827 424.024,127.137 z M 423.045,133.333 L 423.045,128.496 L 423.925,128.496 L 423.925,133.333 L 423.045,133.333 z"
   id="path5130" />
	<path
   d="M 429.763,130.875 C 429.763,132.664 428.524,133.444 427.354,133.444 C 426.045,133.444 425.036,132.484 425.036,130.955 C 425.036,129.336 426.096,128.387 427.434,128.387 C 428.823,128.386 429.763,129.396 429.763,130.875 z M 425.925,130.925 C 425.925,131.984 426.534,132.783 427.394,132.783 C 428.234,132.783 428.864,131.994 428.864,130.904 C 428.864,130.085 428.454,129.045 427.415,129.045 C 426.374,129.045 425.925,130.005 425.925,130.925 z"
   id="path5132" />
	<path
   d="M 430.875,129.805 C 430.875,129.306 430.865,128.896 430.835,128.496 L 431.614,128.496 L 431.665,129.295 L 431.685,129.295 C 431.925,128.836 432.485,128.386 433.285,128.386 C 433.954,128.386 434.994,128.785 434.994,130.445 L 434.994,133.334 L 434.114,133.334 L 434.114,130.546 C 434.114,129.766 433.824,129.116 432.995,129.116 C 432.415,129.116 431.966,129.526 431.815,130.015 C 431.775,130.125 431.755,130.275 431.755,130.425 L 431.755,133.333 L 430.875,133.333 L 430.875,129.805 L 430.875,129.805 z"
   id="path5134" />
</g>
<g
   id="g5136">
	<g
   id="g2886_1_">
		<g
   id="g8433_1_">
			
				<radialGradient
   cx="234.1221"
   cy="188.59621"
   r="13.5287"
   id="path8425_4_"
   gradientUnits="userSpaceOnUse"
   gradientTransform="matrix(-1.5879,0,0,1.1269,492.3406,63.0466)">
				<stop
   id="stop5141"
   style="stop-color:#aedfe7;stop-opacity:1"
   offset="0" />
				<stop
   id="stop5143"
   style="stop-color:#addfe8;stop-opacity:1"
   offset="0.36520001" />
				<stop
   id="stop5145"
   style="stop-color:#abdeec;stop-opacity:1"
   offset="0.54439998" />
				<stop
   id="stop5147"
   style="stop-color:#a1dcf1;stop-opacity:1"
   offset="0.68330002" />
				<stop
   id="stop5149"
   style="stop-color:#9ad1f1;stop-opacity:1"
   offset="0.80129999" />
				<stop
   id="stop5151"
   style="stop-color:#95bae2;stop-opacity:1"
   offset="0.90499997" />
				<stop
   id="stop5153"
   style="stop-color:#9e9ccd;stop-opacity:1"
   offset="0.99910003" />
				<stop
   id="stop5155"
   style="stop-color:#8faeda;stop-opacity:1"
   offset="1" />
			</radialGradient>
			<path
   d="M 95.618,268.852 C 100.653,265.821 108.895,263.551 118.364,263.551 C 133.514,263.551 145.794,268.934 145.794,275.574 C 145.794,282.217 133.515,287.599 118.364,287.599 C 109.655,287.599 100.385,284.808 95.36,282.035 L 103.601,275.392 L 95.618,268.852 z"
   id="path8425_1_"
   style="fill:url(#path8425_4_);stroke:#000000" />
		</g>
	</g>
	<g
   id="g5158">
		<path
   d="M 113.009,278.291 C 112.689,278.451 112.05,278.621 111.23,278.621 C 109.331,278.621 107.902,277.412 107.902,275.203 C 107.902,273.094 109.331,271.665 111.42,271.665 C 112.259,271.665 112.789,271.845 113.019,271.965 L 112.809,272.674 C 112.479,272.514 112.01,272.394 111.45,272.394 C 109.871,272.394 108.822,273.403 108.822,275.172 C 108.822,276.821 109.772,277.88 111.41,277.88 C 111.94,277.88 112.48,277.77 112.829,277.6 L 113.009,278.291 z"
   id="path5160" />
		<path
   d="M 118.139,271.414 L 118.139,277.261 C 118.139,277.691 118.149,278.181 118.179,278.511 L 117.389,278.511 L 117.349,277.672 L 117.329,277.672 C 117.059,278.212 116.47,278.621 115.68,278.621 C 114.511,278.621 113.611,277.632 113.611,276.163 C 113.601,274.554 114.6,273.564 115.78,273.564 C 116.519,273.564 117.019,273.914 117.239,274.304 L 117.259,274.304 L 117.259,271.415 L 118.139,271.415 L 118.139,271.414 z M 117.26,275.642 C 117.26,275.532 117.25,275.382 117.22,275.272 C 117.09,274.712 116.61,274.252 115.951,274.252 C 115.041,274.252 114.502,275.052 114.502,276.121 C 114.502,277.1 114.981,277.91 115.931,277.91 C 116.52,277.91 117.06,277.52 117.22,276.861 C 117.25,276.741 117.26,276.621 117.26,276.481 L 117.26,275.642 z"
   id="path5162" />
		<path
   d="M 123.05,278.331 C 122.82,278.451 122.31,278.621 121.661,278.621 C 120.202,278.621 119.252,277.621 119.252,276.142 C 119.252,274.653 120.272,273.573 121.851,273.573 C 122.371,273.573 122.83,273.703 123.07,273.823 L 122.87,274.503 C 122.661,274.383 122.33,274.273 121.851,274.273 C 120.742,274.273 120.142,275.093 120.142,276.102 C 120.142,277.222 120.861,277.911 121.821,277.911 C 122.321,277.911 122.651,277.781 122.901,277.671 L 123.05,278.331 z"
   id="path5164" />
		<path
   d="M 123.802,278.51 L 123.802,277.97 L 124.491,277.3 C 126.15,275.721 126.9,274.882 126.91,273.902 C 126.91,273.242 126.59,272.632 125.62,272.632 C 125.031,272.632 124.541,272.932 124.241,273.182 L 123.961,272.562 C 124.411,272.182 125.05,271.902 125.8,271.902 C 127.199,271.902 127.789,272.861 127.789,273.791 C 127.789,274.99 126.919,275.959 125.55,277.279 L 125.03,277.759 L 125.03,277.779 L 127.948,277.779 L 127.948,278.508 L 123.802,278.508 L 123.802,278.51 z"
   id="path5166" />
		<path
   d="M 132.81,272.753 L 130.331,272.753 L 130.081,274.422 C 130.231,274.402 130.371,274.382 130.611,274.382 C 131.111,274.382 131.611,274.492 132.01,274.732 C 132.52,275.022 132.94,275.582 132.94,276.401 C 132.94,277.671 131.931,278.62 130.522,278.62 C 129.812,278.62 129.212,278.42 128.903,278.22 L 129.123,277.551 C 129.393,277.711 129.923,277.911 130.512,277.911 C 131.342,277.911 132.051,277.371 132.051,276.502 C 132.041,275.662 131.482,275.063 130.182,275.063 C 129.812,275.063 129.522,275.103 129.283,275.133 L 129.702,272.014 L 132.81,272.014 L 132.81,272.753 z"
   id="path5168" />
	</g>
</g>
<g
   id="g5170">
	<g
   id="g5172">
		<g
   id="g5174">
			<line
   fill="none"
   stroke="#000000"
   x1="116.723"
   y1="221.25"
   x2="116.723"
   y2="254.767"
   id="line5176"
   style="fill:none;stroke:#000000" />
			<polygon
   points="113.02,251.958 116.723,253.531 120.427,251.958 116.723,260.737 113.02,251.958 "
   id="polygon5178" />
		</g>
	</g>
	<g
   id="g5180">
		<g
   id="g5182">
			<line
   fill="none"
   stroke="#000000"
   x1="124.431"
   y1="225.336"
   x2="124.431"
   y2="258.85001"
   id="line5184"
   style="fill:none;stroke:#000000" />
			<polygon
   points="128.134,228.145 124.431,226.572 120.727,228.145 124.431,219.367 128.134,228.145 "
   id="polygon5186" />
		</g>
	</g>
</g>
<g
   id="g5188">
	<g
   id="g5190">
		<path
   d="M 206,186 C 202.451,210.762 168.439,233.587 136,237.833"
   id="path5192"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="138.304,233.797 137.226,237.673 139.266,241.142 130.081,238.608 138.304,233.797 "
   id="polygon5194" />
	</g>
</g>
<g
   id="g5196">
	<g
   id="g5198">
		<g
   id="g5200">
			<line
   fill="none"
   stroke="#000000"
   x1="122.377"
   y1="375.94"
   x2="88.861"
   y2="375.94"
   id="line5202"
   style="fill:none;stroke:#000000" />
			<polygon
   points="91.669,372.237 90.097,375.94 91.669,379.644 82.892,375.94 91.669,372.237 "
   id="polygon5204" />
		</g>
	</g>
	<g
   id="g5206">
		<g
   id="g5208">
			<line
   fill="none"
   stroke="#000000"
   x1="118.292"
   y1="383.64801"
   x2="84.778"
   y2="383.64801"
   id="line5210"
   style="fill:none;stroke:#000000" />
			<polygon
   points="115.483,387.351 117.056,383.648 115.483,379.944 124.261,383.648 115.483,387.351 "
   id="polygon5212" />
		</g>
	</g>
</g>
<g
   id="g5214">
	<g
   id="g5216">
		<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="212"
   y1="188"
   x2="108"
   y2="365.33301"
   id="line5218"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="106.227,361.038 108.625,364.267 112.616,364.785 104.98,370.483 106.227,361.038 "
   id="polygon5220" />
	</g>
</g>
<g
   id="g5222">
	<g
   id="g5224">
		<line
   fill="none"
   stroke="#000000"
   x1="151.66701"
   y1="331.27802"
   x2="190.33299"
   y2="331.27802"
   id="line5226"
   style="fill:none;stroke:#000000" />
		<polygon
   points="187.525,334.981 189.098,331.278 187.525,327.574 196.303,331.278 187.525,334.981 "
   id="polygon5228" />
	</g>
</g>
<g
   id="g5230">
	<g
   id="g5232">
		<g
   id="g5234">
			<line
   fill="none"
   stroke="#000000"
   x1="255.008"
   y1="327.42401"
   x2="297.289"
   y2="327.42401"
   id="line5236"
   style="fill:none;stroke:#000000" />
			<polygon
   points="294.48,331.127 296.053,327.424 294.48,323.72 303.258,327.424 294.48,331.127 "
   id="polygon5238" />
		</g>
	</g>
	<g
   id="g5240">
		<g
   id="g5242">
			<line
   fill="none"
   stroke="#000000"
   x1="260.16101"
   y1="335.13199"
   x2="302.44"
   y2="335.13199"
   id="line5244"
   style="fill:none;stroke:#000000" />
			<polygon
   points="262.97,331.429 261.397,335.132 262.97,338.836 254.192,335.132 262.97,331.429 "
   id="polygon5246" />
		</g>
	</g>
</g>
<g
   id="g5248">
	<g
   id="g5250">
		<line
   fill="none"
   stroke="#000000"
   x1="372.508"
   y1="331.27802"
   x2="414.789"
   y2="331.27802"
   id="line5252"
   style="fill:none;stroke:#000000" />
		<polygon
   points="411.98,334.981 413.553,331.278 411.98,327.574 420.758,331.278 411.98,334.981 "
   id="polygon5254" />
	</g>
</g>
<g
   id="g5256">
	<path
   d="M 425.295,327.567 C 425.824,327.487 426.454,327.427 427.144,327.427 C 428.393,327.427 429.283,327.717 429.873,328.267 C 430.473,328.816 430.822,329.596 430.822,330.685 C 430.822,331.785 430.482,332.684 429.853,333.304 C 429.223,333.933 428.184,334.273 426.874,334.273 C 426.254,334.273 425.734,334.244 425.295,334.194 L 425.295,327.567 z M 426.164,333.524 C 426.384,333.564 426.704,333.574 427.044,333.574 C 428.902,333.574 429.912,332.535 429.912,330.716 C 429.922,329.127 429.022,328.117 427.183,328.117 C 426.734,328.117 426.394,328.157 426.163,328.207 L 426.163,333.524 L 426.164,333.524 z"
   id="path5258" />
	<path
   d="M 432.455,331.955 C 432.475,333.144 433.234,333.634 434.113,333.634 C 434.743,333.634 435.123,333.525 435.453,333.385 L 435.602,334.014 C 435.292,334.155 434.763,334.325 433.994,334.325 C 432.505,334.325 431.615,333.335 431.615,331.876 C 431.615,330.417 432.474,329.268 433.884,329.268 C 435.463,329.268 435.883,330.658 435.883,331.546 C 435.883,331.727 435.863,331.866 435.853,331.956 L 432.455,331.956 L 432.455,331.955 z M 435.033,331.325 C 435.043,330.765 434.804,329.896 433.813,329.896 C 432.924,329.896 432.534,330.715 432.464,331.325 L 435.033,331.325 z"
   id="path5260" />
	<path
   d="M 441.103,333.514 C 441.103,334.623 440.883,335.303 440.414,335.722 C 439.944,336.162 439.265,336.302 438.654,336.302 C 438.075,336.302 437.435,336.162 437.046,335.903 L 437.266,335.233 C 437.585,335.433 438.085,335.613 438.685,335.613 C 439.584,335.613 440.245,335.143 440.245,333.924 L 440.245,333.385 L 440.224,333.385 C 439.954,333.834 439.435,334.195 438.685,334.195 C 437.486,334.195 436.626,333.175 436.626,331.836 C 436.626,330.197 437.695,329.268 438.805,329.268 C 439.645,329.268 440.104,329.707 440.314,330.108 L 440.335,330.108 L 440.375,329.379 L 441.145,329.379 C 441.124,329.729 441.105,330.118 441.105,330.708 L 441.105,333.514 L 441.103,333.514 z M 440.233,331.285 C 440.233,331.136 440.222,331.006 440.182,330.886 C 440.023,330.376 439.593,329.956 438.953,329.956 C 438.113,329.956 437.514,330.666 437.514,331.785 C 437.514,332.734 437.993,333.524 438.943,333.524 C 439.483,333.524 439.972,333.184 440.163,332.625 C 440.213,332.475 440.233,332.305 440.233,332.155 L 440.233,331.285 z"
   id="path5262" />
	<path
   d="M 442.504,330.885 C 442.504,330.316 442.494,329.825 442.464,329.376 L 443.234,329.376 L 443.264,330.325 L 443.304,330.325 C 443.524,329.676 444.053,329.265 444.643,329.265 C 444.744,329.265 444.813,329.275 444.893,329.295 L 444.893,330.124 C 444.803,330.104 444.713,330.094 444.593,330.094 C 443.974,330.094 443.533,330.564 443.413,331.224 C 443.393,331.344 443.373,331.484 443.373,331.634 L 443.373,334.212 L 442.504,334.212 L 442.504,330.885 L 442.504,330.885 z"
   id="path5264" />
	<path
   d="M 449.123,333.054 C 449.123,333.474 449.143,333.883 449.203,334.213 L 448.403,334.213 L 448.333,333.604 L 448.304,333.604 C 448.033,333.984 447.514,334.324 446.825,334.324 C 445.846,334.324 445.346,333.634 445.346,332.934 C 445.346,331.765 446.386,331.125 448.254,331.135 L 448.254,331.034 C 448.254,330.635 448.145,329.915 447.155,329.915 C 446.705,329.915 446.235,330.055 445.895,330.275 L 445.695,329.695 C 446.095,329.435 446.674,329.265 447.285,329.265 C 448.764,329.265 449.124,330.275 449.124,331.244 L 449.124,333.054 L 449.123,333.054 z M 448.273,331.745 C 447.313,331.725 446.224,331.895 446.224,332.835 C 446.224,333.404 446.604,333.674 447.053,333.674 C 447.683,333.674 448.082,333.275 448.223,332.864 C 448.252,332.774 448.273,332.675 448.273,332.585 L 448.273,331.745 L 448.273,331.745 z"
   id="path5266" />
	<path
   d="M 451.563,328.216 L 451.563,329.376 L 452.822,329.376 L 452.822,330.045 L 451.563,330.045 L 451.563,332.653 C 451.563,333.254 451.733,333.592 452.222,333.592 C 452.462,333.592 452.602,333.572 452.732,333.532 L 452.772,334.192 C 452.602,334.261 452.333,334.322 451.993,334.322 C 451.583,334.322 451.254,334.181 451.044,333.942 C 450.794,333.682 450.704,333.253 450.704,332.682 L 450.704,330.043 L 449.954,330.043 L 449.954,329.374 L 450.704,329.374 L 450.704,328.484 L 451.563,328.216 z"
   id="path5268" />
	<path
   d="M 454.794,328.017 C 454.804,328.317 454.584,328.556 454.234,328.556 C 453.924,328.556 453.705,328.317 453.705,328.017 C 453.705,327.706 453.934,327.467 454.254,327.467 C 454.584,327.467 454.794,327.707 454.794,328.017 z M 453.814,334.213 L 453.814,329.376 L 454.694,329.376 L 454.694,334.213 L 453.814,334.213 z"
   id="path5270" />
	<path
   d="M 460.532,331.754 C 460.532,333.543 459.293,334.323 458.123,334.323 C 456.814,334.323 455.805,333.363 455.805,331.834 C 455.805,330.215 456.865,329.266 458.203,329.266 C 459.593,329.266 460.532,330.276 460.532,331.754 z M 456.694,331.805 C 456.694,332.864 457.303,333.663 458.163,333.663 C 459.003,333.663 459.633,332.874 459.633,331.784 C 459.633,330.965 459.223,329.925 458.184,329.925 C 457.144,329.925 456.694,330.885 456.694,331.805 z"
   id="path5272" />
	<path
   d="M 461.645,330.685 C 461.645,330.186 461.635,329.776 461.605,329.376 L 462.384,329.376 L 462.435,330.175 L 462.455,330.175 C 462.695,329.716 463.255,329.266 464.055,329.266 C 464.724,329.266 465.764,329.665 465.764,331.325 L 465.764,334.214 L 464.884,334.214 L 464.884,331.426 C 464.884,330.646 464.594,329.996 463.765,329.996 C 463.185,329.996 462.736,330.406 462.585,330.895 C 462.545,331.005 462.525,331.155 462.525,331.305 L 462.525,334.213 L 461.645,334.213 L 461.645,330.685 L 461.645,330.685 z"
   id="path5274" />
</g>
<g
   id="g5276">
	<g
   id="g5278">
		<path
   d="M 272.75,394.083 C 272.75,355.833 305,357.833 305,357.833 C 438.998,357.833 489.334,356 489.334,330 C 489.334,308.666 428.086,306 298.5,306 C 298.5,306 288.25,304.749 288.25,319.583"
   id="path5280"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="284.547,316.775 288.25,318.348 291.954,316.775 288.25,325.553 284.547,316.775 "
   id="polygon5282" />
	</g>
</g>
<line
   fill="none"
   stroke="#000000"
   stroke-dasharray="3,3"
   x1="224.834"
   y1="317.33301"
   x2="224.834"
   y2="189.66701"
   id="line5284"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
<line
   fill="none"
   stroke="#000000"
   x1="219.834"
   y1="189.66701"
   x2="229.834"
   y2="189.66701"
   id="line5286"
   style="fill:none;stroke:#000000" />
<g
   id="g5288">
	<g
   id="g5290">
		<g
   id="g5292">
			<line
   fill="none"
   stroke="#000000"
   x1="420.95999"
   y1="218.74899"
   x2="420.95999"
   y2="258.504"
   id="line5294"
   style="fill:none;stroke:#000000" />
			<polygon
   points="417.257,255.696 420.96,257.269 424.664,255.696 420.96,264.474 417.257,255.696 "
   id="polygon5296" />
		</g>
	</g>
	<g
   id="g5298">
		<g
   id="g5300">
			<line
   fill="none"
   stroke="#000000"
   x1="428.668"
   y1="224.595"
   x2="428.668"
   y2="264.34698"
   id="line5302"
   style="fill:none;stroke:#000000" />
			<polygon
   points="432.371,227.404 428.668,225.832 424.964,227.404 428.668,218.626 432.371,227.404 "
   id="polygon5304" />
		</g>
	</g>
</g>
<g
   id="g5306">
	<g
   id="g5308">
		<path
   d="M 375.5,306.833 C 375.5,270.998 392,252 413,252"
   id="path5310"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="410.191,255.704 411.764,252 410.191,248.296 418.969,252 410.191,255.704 "
   id="polygon5312" />
	</g>
</g>
<g
   id="g5314">
	<g
   id="g5316">
		<path
   d="M 253.5,181.333 C 273,186.833 278,296.333 278,319.333"
   id="path5318"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="274.297,316.525 278,318.098 281.704,316.525 278,325.303 274.297,316.525 "
   id="polygon5320" />
	</g>
</g>
<g
   id="g5322">
	<g
   id="g5324">
		<path
   d="M 265.5,201.833 C 273.333,239.333 388.953,245.823 412.667,240.667"
   id="path5326"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="410.709,244.882 411.459,240.93 409.136,237.645 418.5,239.399 410.709,244.882 "
   id="polygon5328" />
	</g>
</g>
<g
   id="g5330">
	<g
   id="g5332">
		<path
   d="M 454,88.333 C 545,88.333 550,246.333 446,246.333"
   id="path5334"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="448.809,242.63 447.236,246.333 448.809,250.038 440.031,246.333 448.809,242.63 "
   id="polygon5336" />
	</g>
</g>
<g
   id="g5338">
	<g
   id="g5340">
		<line
   x1="196.33299"
   y1="408.078"
   x2="238.22701"
   y2="408.078"
   id="line5342" />
		<polygon
   points="235.418,411.781 236.99,408.078 235.418,404.373 244.195,408.078 235.418,411.781 "
   id="polygon5344" />
	</g>
	<g
   id="g5346">
		<line
   fill="none"
   stroke="#231F20"
   x1="196.33299"
   y1="408.078"
   x2="238.22701"
   y2="408.078"
   id="line5348"
   style="fill:none;stroke:#231f20" />
		<polygon
   points="235.418,411.781 236.99,408.078 235.418,404.373 244.195,408.078 235.418,411.781 "
   id="polygon5350"
   style="fill:#231f20" />
	</g>
</g>
<g
   id="g5352">
	<g
   id="g5354">
		<line
   x1="305.33301"
   y1="408.078"
   x2="347.22699"
   y2="408.078"
   id="line5356" />
		<polygon
   points="344.418,411.781 345.99,408.078 344.418,404.373 353.195,408.078 344.418,411.781 "
   id="polygon5358" />
	</g>
	<g
   id="g5360">
		<line
   fill="none"
   stroke="#231F20"
   x1="305.33301"
   y1="408.078"
   x2="347.22699"
   y2="408.078"
   id="line5362"
   style="fill:none;stroke:#231f20" />
		<polygon
   points="344.418,411.781 345.99,408.078 344.418,404.373 353.195,408.078 344.418,411.781 "
   id="polygon5364"
   style="fill:#231f20" />
	</g>
</g>
<g
   id="g5366">
	<g
   id="g5368">
		<path
   d="M 181.5,378.667 C 205.136,378.667 217.666,386.661 217.666,396.834"
   id="path5370"
   style="fill:none;stroke:#000000;stroke-dasharray:3, 3" />
		<polygon
   points="213.963,394.026 217.666,395.599 221.37,394.026 217.666,402.804 213.963,394.026 "
   id="polygon5372" />
	</g>
</g>
</svg>
</window>