Improvements to kubernetes-basics/expose-intro.html (#3103)

* Massive updates to expose-intro.html

Updates to the non-interactive tutorial on exposing apps via services

* more updates to expose-intro

* fixed broken link

* fixed some wording

* removed extra space

* sub backticks for code and newline

* added small legend to fist svg

* fixed svg scaling

* removed extra div
This commit is contained in:
Murad Korejo
2017-04-10 18:40:52 -05:00
committed by Andrew Chen
parent 8aad74ec5b
commit 19305b4043
2 changed files with 325 additions and 511 deletions
@@ -15,30 +15,33 @@ title: Using a Service to Expose Your App
<main class="content"> <main class="content">
<div class="row"> <div class="row">
<div class="col-md-8"> <div class="col-md-8">
<h3>Objectives</h3> <h3>Objectives</h3>
<ul> <ul>
<li>Learn about Kubernetes Services.</li> <li>Learn about a Service in Kubernetes</li>
<li>Learn about Kubernetes Labels.</li> <li>Understand how labels and LabelSelector objects relate to a Service</li>
<li>Expose an application outside Kubernetes.</li> <li>Expose an application outside a Kubernetes cluster using a Service</li>
</ul> </ul>
</div> </div>
<div class="col-md-8"> <div class="col-md-8">
<h3>Kubernetes Services</h3> <h3>Overview of Kubernetes Services</h3>
<p>While Pods do have their own unique IP across the cluster, those IPs are not exposed outside Kubernetes. Taking into account that over time Pods may be terminated, deleted or replaced by other Pods, we need a way to let other Pods and applications automatically discover each other. Kubernetes addresses this by grouping Pods in Services. A Kubernetes <b>Service</b> is an abstraction layer which defines a logical set of Pods and enables external traffic exposure, load balancing and service discovery for those Pods.</p> <p>Kubernetes <a href="/docs/concepts/workloads/pods/pod-overview/">Pods</a> are mortal. Pods in fact have a <a href="/docs/concepts/workloads/pods/pod-lifecycle/">lifecycle</a>. When a worker node dies, the Pods running on the Node are also lost. A <a href="/docs/user-guide/replication-controller/#what-is-a-replicationcontroller">ReplicationController</a> might then dynamically drive the cluster back to desired state via creation of new Pods to keep your application running. As another example, consider an image-processing backend with 3 replicas. Those replicas are fungible; the front-end system should not care about backend replicas or even if a Pod is lost and recreated. That said, each Pod in a Kubernetes cluster has a unique IP address, even Pods on the same Node, so there needs to be a way of automatically reconciling changes among Pods so that your applications continue to function. Enter <i>Services</i>. A Service in Kubernetes is an abstraction which defines a logical set of Pods and a policy by which to access them. Services enable a loose coupling between dependent Pods. A Service is defined using YAML <a href="/docs/concepts/configuration/overview/#general-config-tips">(preferred)</a> or JSON, like all Kubernetes objects. The set of Pods targeted by a Service is usually determined by a <i>LabelSelector</i> (see below for why you might want a Service without including <code>selector</code> in the spec).</p>
<p>This abstraction will allow us to expose Pods to traffic originating from outside the cluster. Services have their own unique cluster-private IP address and expose a port to receive traffic. If you choose to expose the service outside the cluster, the options are:</p> <p>Although Pods each have a unique IP address, those IPs are not exposed outside the cluster without a Service. Services allow your applications to receive traffic. Services can be exposed in different ways by specifying a <code>type</code> in the ServiceSpec:</p>
<ul> <ul>
<li>LoadBalancer - provides a public IP address (what you would typically use when you run Kubernetes on GCP or AWS)</li> <li><i>ClusterIP</i> (default) - Exposes the Service on an internal IP in the cluster. This type makes the Service only reachable from within the cluster.</li>
<li>NodePort - exposes the Service on the same port on each Node of the cluster using NAT (available on all Kubernetes clusters, and in Minikube)</li> <li><i>NodePort</i> - Exposes the Service on the same port of each selected Node in the cluster using NAT. Makes a Service accessible from outside the cluster using <code><NodeIP>:<NodePort></code>. Superset of ClusterIP.</li>
<li><i>LoadBalancer</i> - Creates an external load balancer in the current cloud (if supported) and assigns a fixed, external IP to the Service. Superset of NodePort.</li>
<li><i>ExternalName</i> - Exposes the Service using an arbitrary name (specified by <code>externalName</code> in the spec) by returning a CNAME record with the name. No proxy is used. This type requires v1.7 or higher of <code>kube-dns</code>.</li>
</ul> </ul>
<p>More information about the different types of Services can be found in the <a href="/docs/tutorials/services/source-ip/">Using Source IP</a> tutorial. Also see <a href="/docs/concepts/services-networking/connect-applications-service">Connecting Applications with Services</a>.</p>
<p>Additionally, note that there are some use cases with Services that involve not defining <code>selector</code> in the spec. A Service created without <code>selector</code> will also not create the corresponding Endpoints object. This allows users to manually map a Service to specific endpoints. Another possibility why there may be no selector is you are strictly using <code>type: ExternalName</code>.</p>
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
<div class="content__box content__box_lined"> <div class="content__box content__box_lined">
<h3>Summary:</h3> <h3>Summary</h3>
<ul> <ul>
<li>Exposing Pods to external traffic</li> <li>Exposing Pods to external traffic</li>
<li>Load balancing traffic across multiple Pods</li> <li>Load balancing traffic across multiple Pods</li>
@@ -46,9 +49,7 @@ title: Using a Service to Expose Your App
</ul> </ul>
</div> </div>
<div class="content__box content__box_fill"> <div class="content__box content__box_fill">
<p><i> <p><i>A Kubernetes Service is an abstraction layer which defines a logical set of Pods and enables external traffic exposure, load balancing and service discovery for those Pods.</i></p>
A Kubernetes Service is an abstraction layer which defines a logical set of Pods and enables external traffic exposure, load balancing and service discovery for those Pods.
</i></p>
</div> </div>
</div> </div>
</div> </div>
@@ -56,57 +57,35 @@ title: Using a Service to Expose Your App
<div class="row"> <div class="row">
<div class="col-md-8"> <div class="col-md-8">
<h2 style="color: #3771e3;">Services overview</h2> <h3>Services and Labels</h3>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col-md-8"> <div class="col-md-8">
<p><img src="/docs/tutorials/kubernetes-basics/public/images/module_04_services.svg"></p> <p><img src="/docs/tutorials/kubernetes-basics/public/images/module_04_services.svg" width="150%" height="150%"></p>
</div> </div>
</div> </div>
<br>
<div class="row"> <div class="row">
<div class="col-md-8"> <div class="col-md-8">
<p>A Service routes traffic across a set of Pods. Services are the abstraction that allow pods to die and replicate in Kubernetes without impacting your application. Discovery and routing among dependent Pods (such as the frontend and backend components in an application) is handled by Kubernetes Services.</p>
<p>A Service provides load balancing of traffic across the contained set of Pods. This is useful when a service is created to group all Pods from a specific Deployment (our application will make use of this in the next module, when we'll have multiple instances running).</p> <p>Services match a set of Pods using <a href="/docs/concepts/overview/working-with-objects/labels">labels and selectors</a>, a grouping primitive that allows logical operation on objects in Kubernetes. Labels are key/value pairs attached to objects and can be used in any number of ways:</p>
<p>Services are also responsible for service-discovery within the cluster (covered in <a href="/docs/user-guide/connecting-applications/#accessing-the-service">Accessing the Service</a>). This will for example allow a frontend service (like a web server) to send traffic to a backend service (like a database) without worrying about Pods.</p>
<p>Services match a set of Pods using Label Selectors, a grouping primitive that allows logical operation on Labels.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> You can create a Service when you start a Deployment by adding --expose as a parameter for the kubectl run command </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p><b>Labels</b> are key/value pairs that are attached to objects, such as Pods and you can think of them as hashtags from social media. They are used to organize related objects in a way meaningful to the users like:</p>
<ul> <ul>
<li>Production environment (production, test, dev)</li> <li>Designate objects for development, test, and production</li>
<li>Application version (beta, v1.3)</li> <li>Embed version tags</li>
<li>Type of service/server (frontend, backend, database)</li> <li>Classify an object using tags</li>
</ul> </ul>
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
<div class="content__box content__box_fill"> <div class="content__box content__box_fill">
<p><i> Labels are key/value pairs that are attached to objects </i></p> <p><i>You can create a Service at the same time you create a Deployment by using<br><code>--expose</code> in kubectl.</i></p>
</div> </div>
</div> </div>
</div> </div>
<br> <br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Labels</h2>
</div>
</div>
<div class="row"> <div class="row">
<div class="col-md-8"> <div class="col-md-8">
@@ -116,11 +95,7 @@ title: Using a Service to Expose Your App
<br> <br>
<div class="row"> <div class="row">
<div class="col-md-8"> <div class="col-md-8">
<p>Labels can be attached to objects at creation time or later on. They can be modified at any time. Let's expose our application now using a Service and apply some labels.</p>
<p>Labels can be attached to objects at the creation time or later and can be modified at any time.
The kubectl run command sets some default Labels/Label Selectors on the new Pods/ Deployment. The link between Labels and Label Selectors defines the relationship between the Deployment and the Pods it creates.</p>
<p>Now let's expose our application with the help of a Service, and apply some new Labels.</p>
</div> </div>
</div> </div>
<br> <br>
@@ -129,9 +104,7 @@ title: Using a Service to Expose Your App
<a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/expose-interactive/" role="button">Start Interactive Tutorial<span class="btn__next"></span></a> <a class="btn btn-lg btn-success" href="/docs/tutorials/kubernetes-basics/expose-interactive/" role="button">Start Interactive Tutorial<span class="btn__next"></span></a>
</div> </div>
</div> </div>
</main> </main>
</div> </div>
</body> </body>
@@ -1,9 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg width="394" height="440.3999999999999" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <style type="text/css">.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
viewBox="0 0 394 440.4" style="enable-background:new 0 0 394 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;} .st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;} .st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
@@ -66,398 +63,242 @@
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;} .st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} .st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}</style>
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1"> <symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/> <polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 " id="svg_1"/>
<g id="Isolation_Mode_3_"> <g id="Isolation_Mode_3_"/>
</g>
</symbol> </symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1"> <symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808,0,0,1.0808,-0.00003292006,-0.00003749943) "/>
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/> <g id="svg_2">
<g> <polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 " id="svg_3"/>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/> <polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 " id="svg_4"/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g> </g>
</symbol> </symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202"> <symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/> <polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 " id="svg_5"/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/> <polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 " id="svg_6"/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/> <polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 " id="svg_7"/>
<text transform="matrix(0.866,-0.5,-0.5,-0.866,-33.9256,-70.7388) " class="st6" font-size="11.3632px" font-family="&#x27;RobotoSlab-Regular'" id="svg_8">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text> <text transform="matrix(0.866,-0.5,-0.5,-0.866,-76.0668,-46.4087) " class="st6" font-size="11.3632px" font-family="&#x27;RobotoSlab-Regular'" id="svg_9">Kubelt</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol> </symbol>
<g id="CLUSTER"> <g>
</g> <title>Layer 1</title>
<g id="CLUSTER"/>
<g id="master"> <g id="master">
<g id="master_x5F_level1"> <g id="master_x5F_level1"/>
</g> <polygon class="st12" points="130.9,265.9 106.7,235.6 115.3,197.8 150.2,181 185.1,197.8 193.8,235.6 169.6,265.9 " id="svg_10"/>
<polygon class="st12" points="130.9,265.9 106.7,235.6 115.3,197.8 150.2,181 185.1,197.8 193.8,235.6 169.6,265.9 "/>
</g> </g>
<g id="Node"> <g id="Node">
<g id="Node_x5F_level3_x5F_1"> <g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode"> <g id="Isolation_Mode"/>
</g> </g>
<g id="svg_11">
<polygon class="st17" points="214.87819382548332,179.8000030517578 156.7781877219677,146.1999969482422 156.7781877219677,79.0999984741211 214.87819382548332,45.599998474121094 272.9781083762646,79.0999984741211 272.9781083762646,146.1999969482422 " id="svg_12"/>
</g> </g>
<g> <g id="svg_13">
<polygon class="st17" points="213.8,179.8 155.7,146.2 155.7,79.1 213.8,45.6 271.9,79.1 271.9,146.2 "/> <polygon class="st17" points="87.67815110087395,179.6999969482422 29.67817398905754,146.10000610351562 29.67817398905754,79.0999984741211 87.67815110087395,45.5 145.7781877219677,79.0999984741211 145.7781877219677,146.10000610351562 " id="svg_14"/>
</g> </g>
<g> <g id="svg_15">
<polygon class="st17" points="86.6,179.7 28.6,146.1 28.6,79.1 86.6,45.5 144.7,79.1 144.7,146.1 "/> <polygon class="st17" points="87.67815110087395,401.3999938964844 29.67817398905754,367.8999938964844 29.67817398905754,300.79998779296875 87.67815110087395,267.20001220703125 145.7781877219677,300.79998779296875 145.7781877219677,367.8999938964844 " id="svg_16"/>
</g>
<g>
<polygon class="st17" points="86.6,401.4 28.6,367.9 28.6,300.8 86.6,267.2 144.7,300.8 144.7,367.9 "/>
</g> </g>
</g> </g>
<g id="service"> <g id="service">
<g> <g id="svg_17">
<g> <g id="svg_18">
<path class="st18" d="M85.4,154.7c0.4,0,0.8,0,1.2,0v0h1.2"/> <path class="st18" d="m86.47817,154.7c0.4,0 0.8,0 1.2,0l0,0l1.2,0" id="svg_19"/>
<line class="st19" x1="89.4" y1="154.7" x2="235.1" y2="154.7"/> <line class="st19" x1="90.47817" y1="154.7" x2="236.17817" y2="154.7" id="svg_20"/>
<path class="st18" d="M235.9,154.7h1.2v0c0.4,0,0.8,0,1.2,0"/> <path class="st18" d="m236.97817,154.7l1.2,0l0,0c0.4,0 0.8,0 1.2,0" id="svg_21"/>
<path class="st20" d="M239.9,154.7c24.1-1.5,43.3-21.5,43.3-46c0-25.4-20.7-46.1-46.1-46.1H86.6c-25.4,0-46.1,20.7-46.1,46.1 <path class="st20" d="m240.97817,154.7c24.1,-1.5 43.3,-21.5 43.3,-46c0,-25.4 -20.7,-46.1 -46.1,-46.1l-150.5,0c-25.4,0 -46.1,20.7 -46.1,46.1c0,24.8 19.6,45 44.1,46.1" id="svg_22"/>
c0,24.8,19.6,45,44.1,46.1"/>
</g> </g>
</g> </g>
<path class="st21" d="M86,384.5c-25.4,0-46.1-20.7-46.1-46.1c0-25.4,20.7-46.1,46.1-46.1s46.1,20.7,46.1,46.1 <path class="st21" d="m87.07817,384.5c-25.4,0 -46.1,-20.7 -46.1,-46.1c0,-25.4 20.7,-46.1 46.1,-46.1s46.1,20.7 46.1,46.1c0,25.4 -20.7,46.1 -46.1,46.1z" id="svg_23"/>
C132.1,363.8,111.4,384.5,86,384.5z"/>
</g> </g>
<g id="pods"> <g id="pods">
<circle class="st26" cx="86" cy="338.3" r="34.1"/> <circle class="st26" cx="87.07817" cy="338.3" r="34.1" id="svg_24"/>
<circle class="st22" cx="86" cy="338.3" r="34.1"/> <circle class="st22" cx="87.07817" cy="338.3" r="34.1" id="svg_25"/>
<circle class="st28" cx="190.6" cy="108.6" r="20.5"/> <circle class="st28" cx="191.67817" cy="108.6" r="20.5" id="svg_26"/>
<circle class="st28" cx="237.1" cy="108.6" r="20.5"/> <circle class="st28" cx="238.17817" cy="108.6" r="20.5" id="svg_27"/>
<circle class="st28" cx="86.6" cy="108.6" r="34.1"/> <circle class="st28" cx="87.67817" cy="108.6" r="34.1" id="svg_28"/>
<circle class="st18" cx="190.6" cy="108.6" r="20.5"/> <circle class="st18" cx="191.67817" cy="108.6" r="20.5" id="svg_29"/>
<circle class="st18" cx="237.1" cy="108.6" r="20.5"/> <circle class="st18" cx="238.17817" cy="108.6" r="20.5" id="svg_30"/>
<circle class="st18" cx="86.6" cy="108.6" r="34.1"/> <circle class="st18" cx="87.67817" cy="108.6" r="34.1" id="svg_31"/>
</g> </g>
<g id="IP"> <g id="IP">
<g> <g id="svg_32">
<path class="st42" d="M38.2,313.2l-0.4,0.9l-0.9-0.2c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.2-0.3,0.4-0.4,0.6c-0.2,0.3-0.2,0.6-0.2,0.9 <path class="st42" d="m39.27817,313.2l-0.4,0.9l-0.9,-0.2c-0.1,0.1 -0.3,0.2 -0.4,0.4c-0.1,0.2 -0.3,0.4 -0.4,0.6c-0.2,0.3 -0.2,0.6 -0.2,0.9s0.2,0.4 0.4,0.5c0.2,0.1 0.4,0.1 0.7,0c0.2,-0.1 0.5,-0.4 0.9,-0.8c0.5,-0.6 1,-1 1.5,-1.2s1,-0.2 1.5,0c0.5,0.2 0.8,0.7 1,1.2c0.1,0.6 0,1.2 -0.3,1.9c-0.2,0.5 -0.5,0.9 -0.9,1.2s-0.7,0.5 -1.1,0.7l-1.3,-0.6l0.5,-1l0.9,0.3c0.2,-0.1 0.3,-0.2 0.5,-0.4c0.2,-0.2 0.3,-0.4 0.4,-0.7c0.2,-0.3 0.2,-0.6 0.2,-0.9c-0.1,-0.2 -0.2,-0.4 -0.4,-0.5c-0.2,-0.1 -0.5,-0.1 -0.7,0c-0.2,0.1 -0.5,0.3 -0.8,0.7c-0.6,0.6 -1.1,1.1 -1.5,1.3c-0.5,0.2 -1,0.2 -1.5,0c-0.5,-0.2 -0.8,-0.6 -0.9,-1.2c-0.1,-0.6 0,-1.2 0.3,-1.8c0.2,-0.5 0.5,-0.9 0.8,-1.2c0.3,-0.3 0.7,-0.6 1,-0.7l1.1,0.6z" id="svg_33"/>
s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.1,0.7,0c0.2-0.1,0.5-0.4,0.9-0.8c0.5-0.6,1-1,1.5-1.2s1-0.2,1.5,0c0.5,0.2,0.8,0.7,1,1.2 <path class="st42" d="m45.07817,312.7c-0.4,0.6 -0.9,1 -1.5,1.1c-0.6,0.1 -1.2,0 -1.9,-0.4l-0.2,-0.1c-0.6,-0.4 -1.1,-0.9 -1.3,-1.5c-0.2,-0.6 -0.1,-1.2 0.2,-1.8c0.4,-0.6 0.8,-0.9 1.4,-1c0.5,-0.1 1.1,0 1.7,0.4l0.6,0.4l-1.6,2.6l0,0c0.3,0.2 0.6,0.2 0.9,0.1c0.3,-0.1 0.5,-0.2 0.7,-0.5c0.2,-0.3 0.3,-0.5 0.3,-0.7s0.1,-0.4 0.1,-0.7l0.9,0.1c0,0.3 0,0.6 -0.1,0.9c0.2,0.4 0,0.7 -0.2,1.1zm-3.7,-2.1c-0.1,0.2 -0.2,0.4 -0.1,0.7s0.3,0.4 0.5,0.6l0,0l0.9,-1.4l-0.1,-0.1c-0.2,-0.2 -0.5,-0.2 -0.7,-0.2s-0.3,0.2 -0.5,0.4z" id="svg_34"/>
c0.1,0.6,0,1.2-0.3,1.9c-0.2,0.5-0.5,0.9-0.9,1.2s-0.7,0.5-1.1,0.7l-1.3-0.6l0.5-1l0.9,0.3c0.2-0.1,0.3-0.2,0.5-0.4 <path class="st42" d="m45.77817,309.9l0.3,-0.6l-2.5,-1.9l-0.5,0.5l-0.7,-0.5l1.2,-1.6l0.6,0.4c-0.1,-0.3 -0.2,-0.5 -0.2,-0.7s0.1,-0.5 0.2,-0.7c0,-0.1 0.1,-0.1 0.1,-0.2c0.1,-0.1 0.1,-0.1 0.2,-0.1l0.9,0.9l-0.3,0.4c-0.1,0.2 -0.2,0.3 -0.2,0.5c0,0.2 0,0.3 0.1,0.4l2,1.5l0.5,-0.4l0.7,0.5l-1.6,2.2l-0.8,-0.6z" id="svg_35"/>
c0.2-0.2,0.3-0.4,0.4-0.7c0.2-0.3,0.2-0.6,0.2-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.5-0.1-0.7,0c-0.2,0.1-0.5,0.3-0.8,0.7 <path class="st42" d="m46.97817,302.8l-0.3,0.4l2.1,1l0.4,0.3l0,0l-0.3,-0.4l-1.2,-2l-0.4,0.3l-0.6,-0.6l1.5,-1.7l0.6,0.6l-0.2,0.4l2.1,3.9l-0.9,1l-4.1,-1.7l-0.3,0.3l-0.6,-0.6l1.5,-1.7l0.7,0.5z" id="svg_36"/>
c-0.6,0.6-1.1,1.1-1.5,1.3c-0.5,0.2-1,0.2-1.5,0c-0.5-0.2-0.8-0.6-0.9-1.2c-0.1-0.6,0-1.2,0.3-1.8c0.2-0.5,0.5-0.9,0.8-1.2 <path class="st42" d="m49.47817,297.4l-1,0.9l-0.7,-0.7l1,-0.9l0.7,0.7zm2.2,5.4l0.4,-0.6l-2.2,-2.3l-0.6,0.4l-0.6,-0.6l1.5,-1.4l2.8,3l0.6,-0.3l0.6,0.6l-2,1.8l-0.5,-0.6z" id="svg_37"/>
c0.3-0.3,0.7-0.6,1-0.7L38.2,313.2z"/> <path class="st42" d="m55.77817,299c0.2,-0.2 0.3,-0.3 0.3,-0.5c0,-0.2 0,-0.4 -0.2,-0.6l1,-0.8l0,0c0.3,0.4 0.5,0.8 0.4,1.4c-0.1,0.5 -0.4,1 -0.8,1.3c-0.6,0.5 -1.2,0.7 -1.8,0.5c-0.6,-0.1 -1.2,-0.5 -1.6,-1.1l-0.1,-0.1c-0.5,-0.6 -0.7,-1.2 -0.7,-1.8c0,-0.6 0.3,-1.2 0.9,-1.7c0.3,-0.3 0.6,-0.4 1,-0.5c0.3,-0.1 0.6,-0.1 1,-0.1l0.9,1l-0.9,0.7l-0.7,-0.5c-0.1,0 -0.2,0 -0.3,0s-0.2,0.1 -0.3,0.2c-0.3,0.2 -0.4,0.5 -0.4,0.8c0.1,0.3 0.2,0.7 0.5,1l0.1,0.1c0.3,0.4 0.6,0.6 0.9,0.7c0.2,0.3 0.5,0.3 0.8,0z" id="svg_38"/>
<path class="st42" d="M44,312.7c-0.4,0.6-0.9,1-1.5,1.1c-0.6,0.1-1.2,0-1.9-0.4l-0.2-0.1c-0.6-0.4-1.1-0.9-1.3-1.5 <path class="st42" d="m60.37817,297c-0.6,0.4 -1.2,0.5 -1.9,0.4c-0.6,-0.2 -1.1,-0.5 -1.5,-1.1l-0.1,-0.2c-0.4,-0.6 -0.6,-1.3 -0.5,-1.9s0.4,-1.1 1,-1.5c0.6,-0.4 1.1,-0.5 1.7,-0.4c0.5,0.1 1,0.5 1.4,1.1l0.4,0.6l-2.5,1.7l0,0c0.2,0.3 0.4,0.4 0.7,0.5c0.3,0.1 0.6,0 0.9,-0.2c0.3,-0.2 0.4,-0.3 0.6,-0.5c0.1,-0.2 0.3,-0.4 0.4,-0.6l0.8,0.5c-0.1,0.3 -0.2,0.5 -0.5,0.8c-0.3,0.3 -0.6,0.6 -0.9,0.8zm-2.4,-3.5c-0.2,0.1 -0.3,0.3 -0.3,0.6c0,0.2 0,0.5 0.2,0.8l0,0l1.4,-0.9l-0.1,-0.1c-0.2,-0.2 -0.3,-0.4 -0.6,-0.5c-0.2,-0.1 -0.4,0 -0.6,0.1z" id="svg_39"/>
c-0.2-0.6-0.1-1.2,0.2-1.8c0.4-0.6,0.8-0.9,1.4-1c0.5-0.1,1.1,0,1.7,0.4l0.6,0.4l-1.6,2.6l0,0c0.3,0.2,0.6,0.2,0.9,0.1 <path class="st42" d="m63.97817,293.7l0.4,-0.3l-0.5,-6.3l1.3,-0.6l4.3,4.6l0.5,-0.1l0.3,0.8l-2.1,0.9l-0.3,-0.8l0.4,-0.3l-0.7,-0.7l-2,0.9l0.1,1l0.5,-0.1l0.3,0.8l-2.1,0.9l-0.4,-0.7zm1.4,-2.8l1.4,-0.6l-1.7,-1.9l0,0l0.3,2.5z" id="svg_40"/>
c0.3-0.1,0.5-0.2,0.7-0.5c0.2-0.3,0.3-0.5,0.3-0.7s0.1-0.4,0.1-0.7l0.9,0.1c0,0.3,0,0.6-0.1,0.9C44.4,312,44.2,312.3,44,312.7z <path class="st42" d="m74.77817,289.7l1.1,-0.4l-1,-4.5l-1.1,0.2l-0.2,-0.8l2.4,-1l1.2,5.7l1.2,-0.1l0.2,0.8l-3.6,0.8l-0.2,-0.7z" id="svg_41"/>
M40.3,310.6c-0.1,0.2-0.2,0.4-0.1,0.7s0.3,0.4,0.5,0.6h0l0.9-1.4l-0.1-0.1c-0.2-0.2-0.5-0.2-0.7-0.2S40.5,310.4,40.3,310.6z"/> <path class="st42" d="m83.37817,286.4c0.1,0.9 0,1.6 -0.4,2.1c-0.4,0.5 -0.9,0.8 -1.6,0.9c-0.7,0.1 -1.3,-0.1 -1.8,-0.5c-0.5,-0.4 -0.8,-1.1 -0.9,-2l-0.2,-1.5c-0.1,-0.9 0,-1.6 0.4,-2.1s0.9,-0.8 1.6,-0.9c0.7,-0.1 1.3,0.1 1.8,0.5c0.5,0.4 0.8,1.1 0.9,2l0.2,1.5zm-1.5,-1.5c-0.1,-0.5 -0.2,-0.9 -0.4,-1.2c-0.2,-0.2 -0.4,-0.3 -0.7,-0.3c-0.3,0 -0.5,0.2 -0.7,0.5s-0.2,0.7 -0.1,1.2l0.2,1.8c0.1,0.5 0.2,0.9 0.4,1.2s0.4,0.3 0.7,0.3c0.3,0 0.5,-0.2 0.7,-0.5c0.1,-0.3 0.2,-0.7 0.1,-1.2l-0.2,-1.8z" id="svg_42"/>
<path class="st42" d="M44.7,309.9l0.3-0.6l-2.5-1.9l-0.5,0.5l-0.7-0.5l1.2-1.6l0.6,0.4c-0.1-0.3-0.2-0.5-0.2-0.7s0.1-0.5,0.2-0.7 <path class="st42" d="m85.97817,289l-1.4,0.1l0,-1.2l1.4,-0.1l0,1.2z" id="svg_43"/>
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1l0.9,0.9l-0.3,0.4c-0.1,0.2-0.2,0.3-0.2,0.5c0,0.2,0,0.3,0.1,0.4l2,1.5l0.5-0.4 <path class="st42" d="m86.67817,288.1l1.2,-0.1l0.1,-4.6l-1.2,0l0,-0.8l2.5,-0.4l-0.2,5.9l1.1,0.2l0,0.8l-3.7,-0.1l0.2,-0.9z" id="svg_44"/>
l0.7,0.5l-1.6,2.2L44.7,309.9z"/> <path class="st42" d="m95.77817,287c-0.1,0.9 -0.4,1.6 -0.9,2c-0.5,0.4 -1.1,0.6 -1.8,0.5c-0.7,-0.1 -1.2,-0.4 -1.6,-0.9s-0.5,-1.2 -0.4,-2.1l0.2,-1.5c0.1,-0.9 0.4,-1.5 0.9,-2c0.5,-0.4 1.1,-0.6 1.8,-0.5c0.7,0.1 1.2,0.4 1.6,0.9c0.4,0.5 0.5,1.2 0.4,2.1l-0.2,1.5zm-1.1,-1.8c0.1,-0.5 0,-0.9 -0.1,-1.2c-0.1,-0.3 -0.3,-0.4 -0.7,-0.5c-0.3,0 -0.6,0.1 -0.7,0.3c-0.2,0.2 -0.3,0.6 -0.4,1.2l-0.2,1.8c-0.1,0.5 0,1 0.1,1.2c0.1,0.3 0.3,0.4 0.7,0.5c0.3,0 0.5,-0.1 0.7,-0.3c0.2,-0.2 0.3,-0.6 0.4,-1.2l0.2,-1.8z" id="svg_45"/>
<path class="st42" d="M45.9,302.8l-0.3,0.4l2.1,1l0.4,0.3l0,0l-0.3-0.4l-1.2-2l-0.4,0.3l-0.6-0.6l1.5-1.7l0.6,0.6l-0.2,0.4 <path class="st42" d="m97.67817,290.1l-1.3,-0.3l0.2,-1.2l1.3,0.3l-0.2,1.2z" id="svg_46"/>
l2.1,3.9l-0.9,1l-4.1-1.7l-0.3,0.3l-0.6-0.6l1.5-1.7L45.9,302.8z"/> <path class="st42" d="m100.57817,289.9c0.4,0.1 0.7,0 1,-0.2c0.3,-0.2 0.5,-0.6 0.7,-1.1l0,-0.1c-0.2,0.1 -0.4,0.2 -0.7,0.3c-0.2,0 -0.5,0 -0.7,0c-0.6,-0.2 -1,-0.5 -1.3,-1c-0.2,-0.5 -0.3,-1.1 0,-1.8c0.2,-0.7 0.6,-1.2 1.1,-1.5c0.5,-0.3 1.1,-0.4 1.8,-0.2c0.7,0.2 1.1,0.6 1.4,1.2c0.3,0.6 0.3,1.3 0.1,2.1l-0.4,1.4c-0.2,0.9 -0.7,1.4 -1.3,1.8c-0.6,0.3 -1.3,0.4 -2,0.2c-0.2,-0.1 -0.5,-0.2 -0.7,-0.3c-0.2,-0.1 -0.4,-0.2 -0.6,-0.4l0.4,-0.9c0.2,0.1 0.4,0.2 0.5,0.3c0.2,0 0.4,0.1 0.7,0.2zm0.8,-2.1c0.2,0.1 0.4,0.1 0.6,0c0.2,0 0.3,-0.1 0.5,-0.2l0.2,-0.7c0.1,-0.5 0.2,-0.9 0.1,-1.2c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6c-0.3,-0.1 -0.5,0 -0.8,0.2c-0.2,0.2 -0.4,0.5 -0.5,0.9c-0.1,0.4 -0.1,0.7 0,1c0,0.4 0.2,0.6 0.5,0.6z" id="svg_47"/>
<path class="st42" d="M48.4,297.4l-1,0.9l-0.7-0.7l1-0.9L48.4,297.4z M50.6,302.8l0.4-0.6l-2.2-2.3l-0.6,0.4l-0.6-0.6l1.5-1.4 <path class="st42" d="m104.87817,292.3l-1.3,-0.5l0.4,-1.1l1.3,0.5l-0.4,1.1z" id="svg_48"/>
l2.8,3l0.6-0.3l0.6,0.6l-2,1.8L50.6,302.8z"/> <path class="st42" d="m105.87817,291.8l1.1,0.3l1.9,-4.2l-1.1,-0.5l0.3,-0.7l2.5,0.6l-2.4,5.4l1,0.6l-0.3,0.7l-3.3,-1.5l0.3,-0.7z" id="svg_49"/>
<path class="st42" d="M54.7,299c0.2-0.2,0.3-0.3,0.3-0.5c0-0.2,0-0.4-0.2-0.6l1-0.8l0,0c0.3,0.4,0.5,0.8,0.4,1.4
c-0.1,0.5-0.4,1-0.8,1.3c-0.6,0.5-1.2,0.7-1.8,0.5c-0.6-0.1-1.2-0.5-1.6-1.1l-0.1-0.1c-0.5-0.6-0.7-1.2-0.7-1.8
c0-0.6,0.3-1.2,0.9-1.7c0.3-0.3,0.6-0.4,1-0.5c0.3-0.1,0.6-0.1,1-0.1l0.9,1l-0.9,0.7l-0.7-0.5c-0.1,0-0.2,0-0.3,0
s-0.2,0.1-0.3,0.2c-0.3,0.2-0.4,0.5-0.4,0.8c0.1,0.3,0.2,0.7,0.5,1l0.1,0.1c0.3,0.4,0.6,0.6,0.9,0.7
C54.1,299.3,54.4,299.3,54.7,299z"/>
<path class="st42" d="M59.3,297c-0.6,0.4-1.2,0.5-1.9,0.4c-0.6-0.2-1.1-0.5-1.5-1.1l-0.1-0.2c-0.4-0.6-0.6-1.3-0.5-1.9
s0.4-1.1,1-1.5c0.6-0.4,1.1-0.5,1.7-0.4c0.5,0.1,1,0.5,1.4,1.1l0.4,0.6l-2.5,1.7l0,0c0.2,0.3,0.4,0.4,0.7,0.5
c0.3,0.1,0.6,0,0.9-0.2c0.3-0.2,0.4-0.3,0.6-0.5c0.1-0.2,0.3-0.4,0.4-0.6l0.8,0.5c-0.1,0.3-0.2,0.5-0.5,0.8
C59.9,296.5,59.6,296.8,59.3,297z M56.9,293.5c-0.2,0.1-0.3,0.3-0.3,0.6c0,0.2,0,0.5,0.2,0.8l0,0l1.4-0.9l-0.1-0.1
c-0.2-0.2-0.3-0.4-0.6-0.5C57.3,293.3,57.1,293.4,56.9,293.5z"/>
<path class="st42" d="M62.9,293.7l0.4-0.3l-0.5-6.3l1.3-0.6l4.3,4.6l0.5-0.1l0.3,0.8l-2.1,0.9l-0.3-0.8l0.4-0.3l-0.7-0.7l-2,0.9
l0.1,1l0.5-0.1l0.3,0.8l-2.1,0.9L62.9,293.7z M64.3,290.9l1.4-0.6l-1.7-1.9l0,0L64.3,290.9z"/>
<path class="st42" d="M73.7,289.7l1.1-0.4l-1-4.5l-1.1,0.2l-0.2-0.8l2.4-1l1.2,5.7l1.2-0.1l0.2,0.8l-3.6,0.8L73.7,289.7z"/>
<path class="st42" d="M82.3,286.4c0.1,0.9,0,1.6-0.4,2.1c-0.4,0.5-0.9,0.8-1.6,0.9c-0.7,0.1-1.3-0.1-1.8-0.5
c-0.5-0.4-0.8-1.1-0.9-2l-0.2-1.5c-0.1-0.9,0-1.6,0.4-2.1s0.9-0.8,1.6-0.9c0.7-0.1,1.3,0.1,1.8,0.5c0.5,0.4,0.8,1.1,0.9,2
L82.3,286.4z M80.8,284.9c-0.1-0.5-0.2-0.9-0.4-1.2c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.2-0.7,0.5s-0.2,0.7-0.1,1.2l0.2,1.8
c0.1,0.5,0.2,0.9,0.4,1.2s0.4,0.3,0.7,0.3c0.3,0,0.5-0.2,0.7-0.5c0.1-0.3,0.2-0.7,0.1-1.2L80.8,284.9z"/>
<path class="st42" d="M84.9,289l-1.4,0.1l0-1.2l1.4-0.1L84.9,289z"/>
<path class="st42" d="M85.6,288.1l1.2-0.1l0.1-4.6l-1.2,0l0-0.8l2.5-0.4l-0.2,5.9l1.1,0.2l0,0.8l-3.7-0.1L85.6,288.1z"/>
<path class="st42" d="M94.7,287c-0.1,0.9-0.4,1.6-0.9,2c-0.5,0.4-1.1,0.6-1.8,0.5c-0.7-0.1-1.2-0.4-1.6-0.9s-0.5-1.2-0.4-2.1
l0.2-1.5c0.1-0.9,0.4-1.5,0.9-2c0.5-0.4,1.1-0.6,1.8-0.5c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.5,1.2,0.4,2.1L94.7,287z M93.6,285.2
c0.1-0.5,0-0.9-0.1-1.2c-0.1-0.3-0.3-0.4-0.7-0.5c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.3,0.6-0.4,1.2l-0.2,1.8c-0.1,0.5,0,1,0.1,1.2
c0.1,0.3,0.3,0.4,0.7,0.5c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.6,0.4-1.2L93.6,285.2z"/>
<path class="st42" d="M96.6,290.1l-1.3-0.3l0.2-1.2l1.3,0.3L96.6,290.1z"/>
<path class="st42" d="M99.5,289.9c0.4,0.1,0.7,0,1-0.2c0.3-0.2,0.5-0.6,0.7-1.1l0-0.1c-0.2,0.1-0.4,0.2-0.7,0.3
c-0.2,0-0.5,0-0.7,0c-0.6-0.2-1-0.5-1.3-1c-0.2-0.5-0.3-1.1,0-1.8c0.2-0.7,0.6-1.2,1.1-1.5c0.5-0.3,1.1-0.4,1.8-0.2
c0.7,0.2,1.1,0.6,1.4,1.2c0.3,0.6,0.3,1.3,0.1,2.1l-0.4,1.4c-0.2,0.9-0.7,1.4-1.3,1.8c-0.6,0.3-1.3,0.4-2,0.2
c-0.2-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.2-0.6-0.4l0.4-0.9c0.2,0.1,0.4,0.2,0.5,0.3C99,289.7,99.2,289.8,99.5,289.9z
M100.3,287.8c0.2,0.1,0.4,0.1,0.6,0c0.2,0,0.3-0.1,0.5-0.2l0.2-0.7c0.1-0.5,0.2-0.9,0.1-1.2c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.3-0.1-0.5,0-0.8,0.2c-0.2,0.2-0.4,0.5-0.5,0.9c-0.1,0.4-0.1,0.7,0,1C99.8,287.6,100,287.8,100.3,287.8z"/>
<path class="st42" d="M103.8,292.3l-1.3-0.5l0.4-1.1l1.3,0.5L103.8,292.3z"/>
<path class="st42" d="M104.8,291.8l1.1,0.3l1.9-4.2l-1.1-0.5l0.3-0.7l2.5,0.6l-2.4,5.4l1,0.6l-0.3,0.7l-3.3-1.5L104.8,291.8z"/>
</g> </g>
<g> <g id="svg_50">
<path class="st42" d="M115,54.6h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2 <path class="st42" d="m116.07817,54.6l-1,0l-0.2,-0.9c-0.1,-0.1 -0.3,-0.1 -0.5,-0.2c-0.2,-0.1 -0.5,-0.1 -0.7,-0.1c-0.4,0 -0.7,0.1 -0.9,0.2c-0.2,0.2 -0.3,0.4 -0.3,0.6c0,0.2 0.1,0.4 0.3,0.6s0.6,0.3 1.1,0.5c0.8,0.2 1.3,0.5 1.7,0.8c0.4,0.3 0.6,0.8 0.6,1.4c0,0.6 -0.2,1 -0.7,1.4s-1.1,0.5 -1.8,0.5c-0.5,0 -1,-0.1 -1.5,-0.3s-0.8,-0.4 -1.1,-0.7l0,-1.4l1.1,0l0.1,1c0.1,0.1 0.3,0.2 0.6,0.3c0.2,0.1 0.5,0.1 0.8,0.1c0.4,0 0.7,-0.1 0.9,-0.2c0.2,-0.2 0.3,-0.4 0.3,-0.6c0,-0.3 -0.1,-0.5 -0.3,-0.6c-0.2,-0.2 -0.5,-0.3 -1,-0.5c-0.8,-0.2 -1.4,-0.5 -1.8,-0.8c-0.4,-0.3 -0.6,-0.8 -0.6,-1.3c0,-0.6 0.2,-1 0.7,-1.4s1.1,-0.5 1.8,-0.5c0.5,0 1,0.1 1.4,0.2s0.8,0.4 1.1,0.6l0,1.3l-0.1,0z" id="svg_51"/>
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4 <path class="st42" d="m119.17817,59.4c-0.7,0 -1.3,-0.2 -1.8,-0.7s-0.7,-1.1 -0.7,-1.8l0,-0.2c0,-0.8 0.2,-1.4 0.6,-1.9c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.7l0,0.7l-3,0l0,0c0,0.3 0.1,0.6 0.3,0.8c0.2,0.2 0.5,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1c0.2,-0.1 0.4,-0.2 0.7,-0.3l0.4,0.8c-0.2,0.2 -0.5,0.3 -0.8,0.4s-0.8,0.4 -1.2,0.4zm-0.1,-4.2c-0.3,0 -0.5,0.1 -0.6,0.3c-0.1,0.2 -0.2,0.4 -0.3,0.8l0,0l1.7,0l0,-0.1c0,-0.3 -0.1,-0.5 -0.2,-0.7c-0.1,-0.2 -0.3,-0.3 -0.6,-0.3z" id="svg_52"/>
c0,0.6-0.2,1-0.7,1.4s-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7V57h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3 <path class="st42" d="m121.97817,58.5l0.7,-0.1l0,-3.1l-0.7,-0.1l0,-0.8l2,0l0.1,0.7c0.1,-0.3 0.3,-0.5 0.5,-0.6s0.4,-0.2 0.7,-0.2c0.1,0 0.1,0 0.2,0c0.1,0 0.1,0 0.2,0l-0.1,1.2l-0.6,0c-0.2,0 -0.4,0 -0.5,0.1c-0.1,0.1 -0.2,0.2 -0.3,0.3l0,2.5l0.7,0.1l0,0.8l-2.7,0l0,-0.8l-0.2,0z" id="svg_53"/>
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.2,0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5 <path class="st42" d="m128.17817,55l-0.5,0.1l0.7,2.3l0.1,0.5l0,0l0.1,-0.5l0.7,-2.3l-0.5,-0.1l0,-0.8l2.3,0l0,0.8l-0.4,0.1l-1.5,4.2l-1.3,0l-1.5,-4.2l-0.4,-0.1l0,-0.8l2.3,0l0,0.8l-0.1,0z" id="svg_54"/>
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6 <path class="st42" d="m131.47817,58.5l0.7,-0.1l0,-3.1l-0.7,-0.1l0,-0.8l2.1,0l0,4.1l0.7,0.1l0,0.8l-2.7,0l0,-0.9l-0.1,0zm2,-5.5l-1.4,0l0,-1l1.4,0l0,1z" id="svg_55"/>
V54.6z"/> <path class="st42" d="m136.97817,58.3c0.2,0 0.4,-0.1 0.6,-0.2c0.1,-0.1 0.2,-0.3 0.2,-0.6l1.2,0l0,0c0,0.5 -0.2,0.9 -0.6,1.3c-0.4,0.3 -0.9,0.5 -1.5,0.5c-0.8,0 -1.3,-0.2 -1.7,-0.7c-0.4,-0.5 -0.6,-1.1 -0.6,-1.8l0,-0.1c0,-0.7 0.2,-1.4 0.6,-1.8c0.4,-0.5 1,-0.7 1.8,-0.7c0.4,0 0.8,0.1 1.1,0.2c0.3,0.1 0.6,0.3 0.8,0.5l0,1.4l-1.1,0l-0.2,-0.8c-0.1,-0.1 -0.2,-0.1 -0.3,-0.1c-0.1,0 -0.2,-0.1 -0.3,-0.1c-0.4,0 -0.7,0.1 -0.8,0.4s-0.2,0.6 -0.2,1.1l0,0.1c0,0.5 0.1,0.8 0.2,1.1c0.2,0.2 0.4,0.3 0.8,0.3z" id="svg_56"/>
<path class="st42" d="M118.1,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7 <path class="st42" d="m142.07817,59.4c-0.7,0 -1.3,-0.2 -1.8,-0.7s-0.7,-1.1 -0.7,-1.8l0,-0.2c0,-0.8 0.2,-1.4 0.6,-1.9c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.7l0,0.7l-3,0l0,0c0,0.3 0.1,0.6 0.3,0.8c0.2,0.2 0.5,0.3 0.8,0.3c0.3,0 0.6,0 0.8,-0.1c0.2,-0.1 0.4,-0.2 0.7,-0.3l0.4,0.8c-0.2,0.2 -0.5,0.3 -0.8,0.4s-0.8,0.4 -1.2,0.4zm-0.1,-4.2c-0.3,0 -0.5,0.1 -0.6,0.3c-0.1,0.2 -0.2,0.4 -0.3,0.8l0,0l1.7,0l0,-0.1c0,-0.3 -0.1,-0.5 -0.2,-0.7c-0.1,-0.2 -0.4,-0.3 -0.6,-0.3z" id="svg_57"/>
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1 <path class="st42" d="m150.07817,52.5c0.8,0 1.4,0.2 1.9,0.5s0.7,0.8 0.7,1.4c0,0.3 -0.1,0.6 -0.2,0.8c-0.2,0.2 -0.4,0.4 -0.7,0.6c0.4,0.1 0.7,0.3 0.9,0.6c0.2,0.3 0.3,0.6 0.3,1c0,0.7 -0.2,1.1 -0.6,1.5c-0.4,0.3 -1,0.5 -1.8,0.5l-3.5,0l0,-0.8l0.7,-0.1l0,-4.9l-0.7,-0.1l0,-0.8l0.7,0l2.3,0l0,-0.2zm-0.9,2.8l1,0c0.4,0 0.6,-0.1 0.8,-0.2c0.2,-0.2 0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.5 -0.3,-0.7s-0.5,-0.2 -0.9,-0.2l-0.9,0l0,1.8zm0,1l0,2l1.3,0c0.4,0 0.6,-0.1 0.8,-0.2s0.3,-0.4 0.3,-0.7c0,-0.3 -0.1,-0.6 -0.2,-0.8c-0.2,-0.2 -0.4,-0.3 -0.8,-0.3l-1.4,0z" id="svg_58"/>
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S118.5,59.4,118.1,59.4z M118,55.2c-0.3,0-0.5,0.1-0.6,0.3 <path class="st42" d="m155.87817,58.5l1.2,-0.1l0,-4.6l-1.2,0l0,-0.8l2.5,-0.5l0,5.9l1.2,0.1l0,0.8l-3.7,0l0,-0.8z" id="svg_59"/>
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C118.5,55.3,118.3,55.2,118,55.2z"/> <path class="st42" d="m164.87817,56.6c0,0.9 -0.2,1.6 -0.6,2.1c-0.4,0.5 -1,0.7 -1.7,0.7c-0.7,0 -1.3,-0.2 -1.7,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.1l0,-1.5c0,-0.9 0.2,-1.6 0.6,-2.1c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.3,0.2 1.7,0.7c0.4,0.5 0.6,1.2 0.6,2.1l0,1.5zm-1.4,-1.6c0,-0.5 -0.1,-0.9 -0.2,-1.2c-0.2,-0.3 -0.4,-0.4 -0.7,-0.4c-0.3,0 -0.5,0.1 -0.7,0.4s-0.2,0.6 -0.2,1.2l0,1.8c0,0.5 0.1,0.9 0.2,1.2c0.2,0.2 0.4,0.4 0.7,0.4c0.3,0 0.5,-0.1 0.7,-0.4s0.2,-0.6 0.2,-1.2l0,-1.8z" id="svg_60"/>
<path class="st42" d="M120.9,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2 <path class="st42" d="m167.17817,59.3l-1.4,0l0,-1.2l1.4,0l0,1.2z" id="svg_61"/>
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V58.5z <path class="st42" d="m167.97817,58.5l1.2,-0.1l0,-4.6l-1.2,0l0,-0.8l2.5,-0.5l0,5.9l1.2,0.1l0,0.8l-3.7,0l0,-0.8z" id="svg_62"/>
"/> <path class="st42" d="m176.97817,56.6c0,0.9 -0.2,1.6 -0.6,2.1c-0.4,0.5 -1,0.7 -1.7,0.7c-0.7,0 -1.3,-0.2 -1.7,-0.7c-0.4,-0.5 -0.6,-1.2 -0.6,-2.1l0,-1.5c0,-0.9 0.2,-1.6 0.6,-2.1c0.4,-0.5 1,-0.7 1.7,-0.7c0.7,0 1.3,0.2 1.7,0.7c0.4,0.5 0.6,1.2 0.6,2.1l0,1.5zm-1.3,-1.6c0,-0.5 -0.1,-0.9 -0.2,-1.2c-0.2,-0.3 -0.4,-0.4 -0.7,-0.4c-0.3,0 -0.5,0.1 -0.7,0.4s-0.2,0.6 -0.2,1.2l0,1.8c0,0.5 0.1,0.9 0.2,1.2c0.2,0.2 0.4,0.4 0.7,0.4c0.3,0 0.5,-0.1 0.7,-0.4s0.2,-0.6 0.2,-1.2l0,-1.8z" id="svg_63"/>
<path class="st42" d="M127.1,55l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3V55l-0.4,0.1l-1.5,4.2h-1.3 <path class="st42" d="m179.37817,59.3l-1.3,0l0,-1.2l1.4,0l0,1.2l-0.1,0z" id="svg_64"/>
l-1.5-4.2l-0.4-0.1v-0.8h2.3V55z"/> <path class="st42" d="m182.27817,58.3c0.4,0 0.7,-0.1 0.9,-0.4s0.3,-0.7 0.3,-1.3l0,-0.1c-0.2,0.2 -0.3,0.3 -0.5,0.4s-0.4,0.2 -0.7,0.2c-0.6,0 -1.1,-0.2 -1.5,-0.6c-0.4,-0.4 -0.5,-1 -0.5,-1.7c0,-0.7 0.2,-1.3 0.6,-1.7s1,-0.7 1.6,-0.7c0.7,0 1.3,0.2 1.7,0.7c0.4,0.5 0.7,1.2 0.7,2l0,1.5c0,0.9 -0.2,1.6 -0.7,2.1c-0.5,0.5 -1.1,0.7 -1.9,0.7c-0.2,0 -0.5,0 -0.7,-0.1c-0.3,0 -0.5,-0.1 -0.7,-0.2l0.2,-1c0.2,0.1 0.4,0.1 0.6,0.2c0.1,0 0.3,0 0.6,0zm0.2,-2.1c0.2,0 0.4,0 0.6,-0.1c0.2,-0.1 0.3,-0.2 0.4,-0.3l0,-0.8c0,-0.5 -0.1,-0.9 -0.3,-1.1c-0.2,-0.3 -0.4,-0.4 -0.7,-0.4c-0.3,0 -0.5,0.1 -0.7,0.4c-0.2,0.3 -0.3,0.6 -0.3,1c0,0.4 0.1,0.7 0.2,1c0.3,0.1 0.5,0.3 0.8,0.3z" id="svg_65"/>
<path class="st42" d="M130.4,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V58.5z M132.4,53H131v-1h1.4V53z"/> <path class="st42" d="m187.17817,59.3l-1.4,0l0,-1.2l1.4,0l0,1.2z" id="svg_66"/>
<path class="st42" d="M135.9,58.3c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3 <path class="st42" d="m187.97817,59.3l0,-0.9l2.2,-2.4c0.3,-0.4 0.5,-0.7 0.7,-0.9c0.1,-0.3 0.2,-0.5 0.2,-0.7c0,-0.3 -0.1,-0.5 -0.2,-0.7c-0.2,-0.2 -0.4,-0.3 -0.7,-0.3c-0.3,0 -0.6,0.1 -0.7,0.3c-0.2,0.2 -0.2,0.5 -0.2,0.9l-1.3,0l0,0c0,-0.6 0.2,-1.1 0.6,-1.6c0.4,-0.4 1,-0.6 1.7,-0.6c0.7,0 1.3,0.2 1.7,0.5s0.6,0.9 0.6,1.5c0,0.4 -0.1,0.8 -0.3,1.1c-0.2,0.3 -0.6,0.8 -1.1,1.4l-1.2,1.3l0,0l1.8,0l0.1,-0.7l1,0l0,1.7l-4.9,0l0,0.1z" id="svg_67"/>
c-0.4,0.3-0.9,0.5-1.5,0.5c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7
c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.4,0-0.7,0.1-0.8,0.4s-0.2,0.6-0.2,1.1v0.1c0,0.5,0.1,0.8,0.2,1.1C135.3,58.2,135.5,58.3,135.9,58.3z"/>
<path class="st42" d="M141,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S141.4,59.4,141,59.4z M140.9,55.2c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C141.4,55.3,141.1,55.2,140.9,55.2z"/>
<path class="st42" d="M149,52.5c0.8,0,1.4,0.2,1.9,0.5s0.7,0.8,0.7,1.4c0,0.3-0.1,0.6-0.2,0.8c-0.2,0.2-0.4,0.4-0.7,0.6
c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.8,0.5H146v-0.8l0.7-0.1v-4.9l-0.7-0.1
v-0.8h0.7H149z M148.1,55.3h1c0.4,0,0.6-0.1,0.8-0.2c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.2-0.9-0.2h-0.9V55.3z
M148.1,56.3v2h1.3c0.4,0,0.6-0.1,0.8-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.6-0.2-0.8c-0.2-0.2-0.4-0.3-0.8-0.3H148.1z"/>
<path class="st42" d="M154.8,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M163.8,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M162.4,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M166.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M166.9,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M175.9,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M174.6,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M178.3,59.3H177v-1.2h1.4V59.3z"/>
<path class="st42" d="M181.2,58.3c0.4,0,0.7-0.1,0.9-0.4s0.3-0.7,0.3-1.3v-0.1c-0.2,0.2-0.3,0.3-0.5,0.4s-0.4,0.2-0.7,0.2
c-0.6,0-1.1-0.2-1.5-0.6c-0.4-0.4-0.5-1-0.5-1.7c0-0.7,0.2-1.3,0.6-1.7s1-0.7,1.6-0.7c0.7,0,1.3,0.2,1.7,0.7
c0.4,0.5,0.7,1.2,0.7,2v1.5c0,0.9-0.2,1.6-0.7,2.1c-0.5,0.5-1.1,0.7-1.9,0.7c-0.2,0-0.5,0-0.7-0.1c-0.3,0-0.5-0.1-0.7-0.2l0.2-1
c0.2,0.1,0.4,0.1,0.6,0.2C180.7,58.3,180.9,58.3,181.2,58.3z M181.4,56.2c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.3-0.2,0.4-0.3V55
c0-0.5-0.1-0.9-0.3-1.1c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4c-0.2,0.3-0.3,0.6-0.3,1c0,0.4,0.1,0.7,0.2,1
C180.9,56,181.1,56.2,181.4,56.2z"/>
<path class="st42" d="M186.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M186.9,59.3v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H186.9z"/>
</g> </g>
<g> <g id="svg_68">
<path class="st42" d="M171.6,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L171.6,95.3z"/> <path class="st42" d="m172.67817,95.3l0.5,-0.8l-3.4,-2.6l-0.5,0.9l-0.2,-0.2l0.6,-1.3l3.8,2.9l0.6,-0.7l0.2,0.2l-1.4,1.8l-0.2,-0.2z" id="svg_69"/>
<path class="st42" d="M174.5,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8 <path class="st42" d="m175.57817,89.6c0.5,0.5 0.7,0.9 0.8,1.4c0,0.5 -0.1,0.8 -0.5,1.2c-0.4,0.3 -0.8,0.5 -1.2,0.4s-0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c0,-0.5 0.1,-0.9 0.5,-1.2c0.4,-0.3 0.8,-0.5 1.2,-0.4s0.9,0.3 1.4,0.8l0.8,0.8zm-1.2,-0.6c-0.4,-0.4 -0.7,-0.6 -1.1,-0.7c-0.3,-0.1 -0.6,0 -0.9,0.3c-0.3,0.3 -0.4,0.6 -0.3,0.9s0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.7c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9c-0.1,-0.3 -0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_70"/>
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L174.5,89.6z M173.3,89 <path class="st42" d="m177.97817,90.3l-0.4,0.3l-0.3,-0.5l0.4,-0.3l0.3,0.5z" id="svg_71"/>
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7 <path class="st42" d="m178.57817,89.4l0.8,-0.5l-2.3,-3.7l-0.8,0.7l-0.2,-0.3l1.1,-1l2.5,4.1l0.8,-0.4l0.2,0.3l-1.9,1.2l-0.2,-0.4z" id="svg_72"/>
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L173.3,89z"/> <path class="st42" d="m183.17817,85.2c0.3,0.6 0.3,1.1 0.2,1.6s-0.4,0.8 -0.9,1c-0.5,0.2 -0.9,0.2 -1.3,0s-0.7,-0.6 -1,-1.2l-0.5,-1c-0.3,-0.6 -0.3,-1.1 -0.2,-1.6c0.1,-0.4 0.4,-0.8 0.9,-1c0.5,-0.2 0.9,-0.2 1.3,0c0.4,0.2 0.7,0.6 1,1.2l0.5,1zm-0.8,-1c-0.2,-0.5 -0.5,-0.8 -0.8,-1c-0.3,-0.2 -0.6,-0.2 -1,0c-0.3,0.2 -0.6,0.4 -0.6,0.7c-0.1,0.3 0,0.7 0.2,1.2l0.5,1.2c0.2,0.5 0.5,0.8 0.8,1c0.3,0.2 0.6,0.2 1,0c0.3,-0.2 0.6,-0.4 0.6,-0.7c0.1,-0.3 0,-0.8 -0.2,-1.2l-0.5,-1.2z" id="svg_73"/>
<path class="st42" d="M176.9,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L176.9,90.3z"/> <path class="st42" d="m185.27817,86.6l-0.5,0.1l-0.2,-0.6l0.5,-0.1l0.2,0.6z" id="svg_74"/>
<path class="st42" d="M177.5,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L177.5,89.4z"/> <path class="st42" d="m186.07817,86.1l0.9,-0.2l-0.8,-4.2l-1,0.3l-0.1,-0.3l1.3,-0.6l0.9,4.7l0.9,-0.1l0.1,0.3l-2.2,0.4l0,-0.3z" id="svg_75"/>
<path class="st42" d="M182.1,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1 <path class="st42" d="m191.97817,83.7c0,0.7 -0.1,1.2 -0.3,1.5c-0.3,0.4 -0.6,0.6 -1.1,0.6c-0.5,0 -0.9,-0.1 -1.2,-0.5c-0.3,-0.3 -0.5,-0.8 -0.5,-1.5l-0.1,-1.1c0,-0.7 0.1,-1.2 0.3,-1.5c0.3,-0.4 0.6,-0.6 1.1,-0.6c0.5,0 0.9,0.1 1.2,0.5s0.5,0.8 0.5,1.5l0.1,1.1zm-0.5,-1.2c0,-0.5 -0.1,-0.9 -0.4,-1.2c-0.2,-0.3 -0.5,-0.4 -0.9,-0.4c-0.4,0 -0.7,0.2 -0.8,0.5c-0.2,0.3 -0.3,0.7 -0.2,1.2l0.1,1.3c0,0.5 0.1,0.9 0.4,1.2s0.5,0.4 0.9,0.4c0.4,0 0.7,-0.2 0.8,-0.5c0.2,-0.3 0.3,-0.7 0.2,-1.2l-0.1,-1.3z" id="svg_76"/>
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L182.1,85.2z M181.3,84.2 <path class="st42" d="m193.37817,85.8l-0.5,0l0,-0.6l0.5,0l0,0.6z" id="svg_77"/>
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1 <path class="st42" d="m197.17817,84.7l0.8,0.1l-0.1,0.3l-0.8,-0.1l-0.2,0.9l0.6,0.2l-0.1,0.3l-1.5,-0.3l0.1,-0.3l0.6,0.1l0.2,-0.9l-2.4,-0.4l0,-0.2l3,-3.1l0.5,0.1l-0.7,3.3zm-2.2,-0.4l1.9,0.4l0.5,-2.9l0,0l-0.2,0.3l-2.2,2.2z" id="svg_78"/>
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L181.3,84.2z"/>
<path class="st42" d="M184.2,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L184.2,86.6z"/>
<path class="st42" d="M185,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L185,86.1z"/>
<path class="st42" d="M190.9,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L190.9,83.7z M190.4,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L190.4,82.5z"/>
<path class="st42" d="M192.3,85.8l-0.5,0l0-0.6l0.5,0L192.3,85.8z"/>
<path class="st42" d="M196.1,84.7l0.8,0.1l-0.1,0.3l-0.8-0.1l-0.2,0.9l0.6,0.2l-0.1,0.3l-1.5-0.3l0.1-0.3l0.6,0.1l0.2-0.9
l-2.4-0.4l0-0.2l3-3.1l0.5,0.1L196.1,84.7z M193.9,84.3l1.9,0.4l0.5-2.9l0,0l-0.2,0.3L193.9,84.3z"/>
</g> </g>
<g> <g id="svg_79">
<path class="st42" d="M218.1,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L218.1,95.3z"/> <path class="st42" d="m219.17817,95.3l0.5,-0.8l-3.4,-2.6l-0.5,0.9l-0.2,-0.2l0.6,-1.3l3.8,2.9l0.6,-0.7l0.2,0.2l-1.4,1.8l-0.2,-0.2z" id="svg_80"/>
<path class="st42" d="M221,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8 <path class="st42" d="m222.07817,89.6c0.5,0.5 0.7,0.9 0.8,1.4c0,0.5 -0.1,0.8 -0.5,1.2c-0.4,0.3 -0.8,0.5 -1.2,0.4s-0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c0,-0.5 0.1,-0.9 0.5,-1.2c0.4,-0.3 0.8,-0.5 1.2,-0.4s0.9,0.3 1.4,0.8l0.8,0.8zm-1.2,-0.6c-0.4,-0.4 -0.7,-0.6 -1.1,-0.7c-0.3,-0.1 -0.6,0 -0.9,0.3c-0.3,0.3 -0.4,0.6 -0.3,0.9s0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.7c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9c-0.1,-0.3 -0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_81"/>
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L221,89.6z M219.8,89 <path class="st42" d="m224.47817,90.3l-0.4,0.3l-0.3,-0.5l0.4,-0.3l0.3,0.5z" id="svg_82"/>
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7 <path class="st42" d="m225.07817,89.4l0.8,-0.5l-2.3,-3.7l-0.8,0.7l-0.2,-0.3l1.1,-1l2.5,4.1l0.8,-0.4l0.2,0.3l-1.9,1.2l-0.2,-0.4z" id="svg_83"/>
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L219.8,89z"/> <path class="st42" d="m229.67817,85.2c0.3,0.6 0.3,1.1 0.2,1.6s-0.4,0.8 -0.9,1c-0.5,0.2 -0.9,0.2 -1.3,0s-0.7,-0.6 -1,-1.2l-0.5,-1c-0.3,-0.6 -0.3,-1.1 -0.2,-1.6c0.1,-0.4 0.4,-0.8 0.9,-1c0.5,-0.2 0.9,-0.2 1.3,0c0.4,0.2 0.7,0.6 1,1.2l0.5,1zm-0.8,-1c-0.2,-0.5 -0.5,-0.8 -0.8,-1c-0.3,-0.2 -0.6,-0.2 -1,0c-0.3,0.2 -0.6,0.4 -0.6,0.7c-0.1,0.3 0,0.7 0.2,1.2l0.5,1.2c0.2,0.5 0.5,0.8 0.8,1c0.3,0.2 0.6,0.2 1,0c0.3,-0.2 0.6,-0.4 0.6,-0.7c0.1,-0.3 0,-0.8 -0.2,-1.2l-0.5,-1.2z" id="svg_84"/>
<path class="st42" d="M223.4,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L223.4,90.3z"/> <path class="st42" d="m231.77817,86.6l-0.5,0.1l-0.2,-0.6l0.5,-0.1l0.2,0.6z" id="svg_85"/>
<path class="st42" d="M224,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L224,89.4z"/> <path class="st42" d="m232.67817,86.1l0.9,-0.2l-0.8,-4.2l-1,0.3l-0.1,-0.3l1.3,-0.6l0.9,4.7l0.9,-0.1l0.1,0.3l-2.2,0.4l0,-0.3z" id="svg_86"/>
<path class="st42" d="M228.6,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1 <path class="st42" d="m238.47817,83.7c0,0.7 -0.1,1.2 -0.3,1.5c-0.3,0.4 -0.6,0.6 -1.1,0.6c-0.5,0 -0.9,-0.1 -1.2,-0.5c-0.3,-0.3 -0.5,-0.8 -0.5,-1.5l-0.1,-1.1c0,-0.7 0.1,-1.2 0.3,-1.5c0.3,-0.4 0.6,-0.6 1.1,-0.6c0.5,0 0.9,0.1 1.2,0.5s0.5,0.8 0.5,1.5l0.1,1.1zm-0.5,-1.2c0,-0.5 -0.1,-0.9 -0.4,-1.2c-0.2,-0.3 -0.5,-0.4 -0.9,-0.4c-0.4,0 -0.7,0.2 -0.8,0.5c-0.2,0.3 -0.3,0.7 -0.2,1.2l0.1,1.3c0,0.5 0.1,0.9 0.4,1.2s0.5,0.4 0.9,0.4c0.4,0 0.7,-0.2 0.8,-0.5c0.2,-0.3 0.3,-0.7 0.2,-1.2l-0.1,-1.3z" id="svg_87"/>
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L228.6,85.2z M227.8,84.2 <path class="st42" d="m239.87817,85.8l-0.5,0l0,-0.6l0.5,0l0,0.6z" id="svg_88"/>
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1 <path class="st42" d="m242.17817,83.2l0.5,0.1c0.4,0.1 0.7,0 0.9,-0.1s0.4,-0.4 0.4,-0.7c0.1,-0.3 0,-0.6 -0.1,-0.8c-0.1,-0.2 -0.4,-0.4 -0.7,-0.4c-0.3,-0.1 -0.6,0 -0.8,0.1s-0.4,0.4 -0.4,0.7l-0.4,-0.1l0,0c0.1,-0.4 0.3,-0.7 0.6,-0.9c0.3,-0.2 0.7,-0.3 1.2,-0.2c0.4,0.1 0.8,0.3 1,0.6c0.2,0.3 0.3,0.7 0.2,1.1c0,0.2 -0.2,0.4 -0.3,0.6c-0.2,0.2 -0.4,0.3 -0.7,0.4c0.3,0.1 0.5,0.3 0.6,0.6c0.1,0.2 0.1,0.5 0.1,0.8c-0.1,0.4 -0.3,0.8 -0.6,1c-0.3,0.2 -0.7,0.3 -1.2,0.2c-0.4,-0.1 -0.8,-0.3 -1.1,-0.6c-0.3,-0.3 -0.4,-0.7 -0.3,-1.1l0,0l0.4,0.1c-0.1,0.3 0,0.6 0.2,0.8c0.2,0.2 0.5,0.4 0.8,0.5c0.4,0.1 0.7,0 0.9,-0.1c0.2,-0.1 0.4,-0.4 0.4,-0.7c0.1,-0.4 0,-0.6 -0.2,-0.8c-0.2,-0.2 -0.5,-0.3 -0.9,-0.4l-0.5,-0.1l0,-0.6z" id="svg_89"/>
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L227.8,84.2z"/>
<path class="st42" d="M230.7,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L230.7,86.6z"/>
<path class="st42" d="M231.6,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L231.6,86.1z"/>
<path class="st42" d="M237.4,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L237.4,83.7z M236.9,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L236.9,82.5z"/>
<path class="st42" d="M238.8,85.8l-0.5,0l0-0.6l0.5,0L238.8,85.8z"/>
<path class="st42" d="M241.1,83.2l0.5,0.1c0.4,0.1,0.7,0,0.9-0.1s0.4-0.4,0.4-0.7c0.1-0.3,0-0.6-0.1-0.8c-0.1-0.2-0.4-0.4-0.7-0.4
c-0.3-0.1-0.6,0-0.8,0.1s-0.4,0.4-0.4,0.7l-0.4-0.1l0,0c0.1-0.4,0.3-0.7,0.6-0.9c0.3-0.2,0.7-0.3,1.2-0.2c0.4,0.1,0.8,0.3,1,0.6
c0.2,0.3,0.3,0.7,0.2,1.1c0,0.2-0.2,0.4-0.3,0.6c-0.2,0.2-0.4,0.3-0.7,0.4c0.3,0.1,0.5,0.3,0.6,0.6c0.1,0.2,0.1,0.5,0.1,0.8
c-0.1,0.4-0.3,0.8-0.6,1c-0.3,0.2-0.7,0.3-1.2,0.2c-0.4-0.1-0.8-0.3-1.1-0.6c-0.3-0.3-0.4-0.7-0.3-1.1l0,0l0.4,0.1
c-0.1,0.3,0,0.6,0.2,0.8c0.2,0.2,0.5,0.4,0.8,0.5c0.4,0.1,0.7,0,0.9-0.1c0.2-0.1,0.4-0.4,0.4-0.7c0.1-0.4,0-0.6-0.2-0.8
c-0.2-0.2-0.5-0.3-0.9-0.4l-0.5-0.1L241.1,83.2z"/>
</g> </g>
<g> <g id="svg_90">
<path class="st42" d="M53.2,93.2l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L53.2,93.2z"/> <path class="st42" d="m54.27817,93.2l0.4,-0.8l-3.9,-1.9l-0.3,1l-0.3,-0.1l0.4,-1.4l4.3,2.1l0.5,-0.8l0.3,0.1l-1,2l-0.4,-0.2z" id="svg_91"/>
<path class="st42" d="M54.7,87c0.6,0.3,0.9,0.7,1.1,1.2c0.2,0.4,0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4 <path class="st42" d="m55.77817,87c0.6,0.3 0.9,0.7 1.1,1.2c0.2,0.4 0.1,0.9 -0.2,1.3c-0.3,0.4 -0.6,0.7 -1.1,0.7c-0.5,0.1 -1,-0.1 -1.5,-0.4l-1,-0.6c-0.6,-0.3 -0.9,-0.7 -1.1,-1.2c-0.2,-0.4 -0.1,-0.9 0.2,-1.3c0.3,-0.4 0.6,-0.7 1.1,-0.7c0.5,-0.1 1,0.1 1.5,0.4l1,0.6zm-1.2,-0.3c-0.4,-0.3 -0.8,-0.4 -1.2,-0.4c-0.3,0 -0.6,0.2 -0.8,0.5c-0.2,0.3 -0.2,0.6 -0.1,1c0.1,0.3 0.4,0.6 0.9,0.9l1.1,0.7c0.4,0.3 0.8,0.4 1.2,0.4c0.4,0 0.6,-0.2 0.8,-0.5c0.2,-0.3 0.2,-0.6 0.1,-1c-0.1,-0.3 -0.4,-0.6 -0.9,-0.9l-1.1,-0.7z" id="svg_92"/>
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.7,87z M53.5,86.7 <path class="st42" d="m58.27817,87l-0.3,0.4l-0.4,-0.4l0.3,-0.4l0.4,0.4z" id="svg_93"/>
c-0.4-0.3-0.8-0.4-1.2-0.4c-0.3,0-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7 <path class="st42" d="m58.67817,86l0.5,-0.7l-3.3,-2.7l-0.5,0.9l-0.3,-0.3l0.7,-1.3l3.7,3l0.6,-0.7l0.2,0.2l-1.4,1.7l-0.2,-0.1z" id="svg_94"/>
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1c-0.1-0.3-0.4-0.6-0.9-0.9L53.5,86.7z"/> <path class="st42" d="m61.57817,80.3c0.5,0.5 0.7,0.9 0.8,1.4c0.1,0.4 -0.1,0.9 -0.4,1.2c-0.3,0.4 -0.8,0.5 -1.2,0.5c-0.5,-0.1 -0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c-0.1,-0.5 0.1,-0.9 0.4,-1.2c0.4,-0.4 0.8,-0.5 1.2,-0.5c0.5,0.1 0.9,0.3 1.4,0.8l0.8,0.8zm-1.2,-0.5c-0.4,-0.4 -0.7,-0.6 -1.1,-0.6c-0.3,-0.1 -0.6,0.1 -0.9,0.3c-0.3,0.2 -0.4,0.5 -0.3,0.9c0.1,0.3 0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.6c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9c-0.1,-0.3 -0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_95"/>
<path class="st42" d="M57.2,87l-0.3,0.4L56.5,87l0.3-0.4L57.2,87z"/> <path class="st42" d="m63.97817,80.9l-0.4,0.3l-0.4,-0.4l0.4,-0.3l0.4,0.4z" id="svg_96"/>
<path class="st42" d="M57.6,86l0.5-0.7l-3.3-2.7l-0.5,0.9L54,83.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L57.6,86z"/> <path class="st42" d="m64.57817,80l0.7,-0.6l-2.7,-3.4l-0.7,0.7l-0.2,-0.2l0.9,-1.1l2.9,3.8l0.8,-0.5l0.2,0.2l-1.8,1.4l-0.1,-0.3z" id="svg_97"/>
<path class="st42" d="M60.5,80.3c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.4-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5 <path class="st42" d="m68.57817,75.1c0.4,0.6 0.5,1.1 0.5,1.5c0,0.5 -0.3,0.8 -0.7,1.1c-0.4,0.3 -0.8,0.3 -1.3,0.2c-0.4,-0.2 -0.8,-0.5 -1.2,-1.1l-0.6,-1c-0.4,-0.6 -0.5,-1.1 -0.5,-1.5s0.3,-0.8 0.7,-1.1c0.4,-0.3 0.8,-0.3 1.3,-0.2c0.4,0.2 0.8,0.5 1.2,1.1l0.6,1zm-1,-0.8c-0.3,-0.4 -0.6,-0.7 -0.9,-0.9c-0.3,-0.1 -0.6,-0.1 -1,0.1c-0.3,0.2 -0.5,0.5 -0.5,0.8c0,0.3 0.1,0.7 0.4,1.2l0.7,1.1c0.3,0.4 0.6,0.7 0.9,0.9c0.3,0.1 0.6,0.1 1,-0.1c0.3,-0.2 0.5,-0.5 0.5,-0.8c0,-0.3 -0.1,-0.7 -0.4,-1.2l-0.7,-1.1z" id="svg_98"/>
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5 <path class="st42" d="m70.87817,76.2l-0.4,0.2l-0.3,-0.5l0.4,-0.2l0.3,0.5z" id="svg_99"/>
c0.5,0.1,0.9,0.3,1.4,0.8L60.5,80.3z M59.3,79.8c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0.1-0.9,0.3C57,79.7,56.9,80,57,80.4 <path class="st42" d="m71.67817,75.7l-0.1,-0.3l0.8,-2.4c0.1,-0.4 0.2,-0.8 0.3,-1.1c0,-0.3 0,-0.5 -0.1,-0.7c-0.1,-0.3 -0.3,-0.5 -0.6,-0.6c-0.2,-0.1 -0.5,-0.1 -0.8,0c-0.4,0.2 -0.6,0.4 -0.7,0.7c-0.1,0.3 -0.1,0.6 0.1,0.9l-0.4,0.2l0,0c-0.2,-0.4 -0.2,-0.8 -0.1,-1.2c0.1,-0.4 0.4,-0.7 0.9,-0.9c0.4,-0.2 0.8,-0.2 1.1,-0.1s0.6,0.4 0.8,0.8c0.1,0.3 0.1,0.6 0.1,0.9c0,0.3 -0.1,0.7 -0.3,1.2l-0.7,2l0,0l2,-0.9l-0.3,-0.7l0.3,-0.1l0.4,1l-2.7,1.3z" id="svg_100"/>
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L59.3,79.8z"/>
<path class="st42" d="M62.9,80.9l-0.4,0.3l-0.4-0.4l0.4-0.3L62.9,80.9z"/>
<path class="st42" d="M63.5,80l0.7-0.6L61.5,76l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2l-1.8,1.4L63.5,80z"/>
<path class="st42" d="M67.5,75.1c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1c-0.4,0.3-0.8,0.3-1.3,0.2
c-0.4-0.2-0.8-0.5-1.2-1.1l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2c0.4,0.2,0.8,0.5,1.2,1.1
L67.5,75.1z M66.5,74.3c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L66.5,74.3z"/>
<path class="st42" d="M69.8,76.2l-0.4,0.2l-0.3-0.5l0.4-0.2L69.8,76.2z"/>
<path class="st42" d="M70.6,75.7l-0.1-0.3l0.8-2.4c0.1-0.4,0.2-0.8,0.3-1.1c0-0.3,0-0.5-0.1-0.7c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.2-0.6,0.4-0.7,0.7c-0.1,0.3-0.1,0.6,0.1,0.9l-0.4,0.2l0,0c-0.2-0.4-0.2-0.8-0.1-1.2
c0.1-0.4,0.4-0.7,0.9-0.9c0.4-0.2,0.8-0.2,1.1-0.1s0.6,0.4,0.8,0.8c0.1,0.3,0.1,0.6,0.1,0.9c0,0.3-0.1,0.7-0.3,1.2l-0.7,2l0,0
l2-0.9l-0.3-0.7l0.3-0.1l0.4,1L70.6,75.7z"/>
</g> </g>
<g> <g id="svg_101">
<path class="st42" d="M52.5,322.9l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L52.5,322.9z"/> <path class="st42" d="m53.57817,322.9l0.4,-0.8l-3.9,-1.9l-0.3,1l-0.3,-0.1l0.4,-1.4l4.3,2.1l0.5,-0.8l0.3,0.1l-1,2l-0.4,-0.2z" id="svg_102"/>
<path class="st42" d="M54.1,316.7c0.6,0.3,0.9,0.7,1.1,1.2s0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4 <path class="st42" d="m55.17817,316.7c0.6,0.3 0.9,0.7 1.1,1.2s0.1,0.9 -0.2,1.3c-0.3,0.4 -0.6,0.7 -1.1,0.7c-0.5,0.1 -1,-0.1 -1.5,-0.4l-1,-0.6c-0.6,-0.3 -0.9,-0.7 -1.1,-1.2c-0.2,-0.4 -0.1,-0.9 0.2,-1.3c0.3,-0.4 0.6,-0.7 1.1,-0.7c0.5,-0.1 1,0.1 1.5,0.4l1,0.6zm-1.3,-0.2c-0.4,-0.3 -0.8,-0.4 -1.2,-0.4c-0.3,0 -0.6,0.2 -0.8,0.5c-0.2,0.3 -0.2,0.6 -0.1,1c0.1,0.3 0.4,0.6 0.9,0.9l1.1,0.7c0.4,0.3 0.8,0.4 1.2,0.4c0.4,0 0.6,-0.2 0.8,-0.5c0.2,-0.3 0.2,-0.6 0.1,-1s-0.4,-0.6 -0.9,-0.9l-1.1,-0.7z" id="svg_103"/>
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.1,316.7z <path class="st42" d="m57.67817,316.7l-0.3,0.4l-0.5,-0.3l0.3,-0.4l0.5,0.3z" id="svg_104"/>
M52.8,316.5c-0.4-0.3-0.8-0.4-1.2-0.4c-0.3,0-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7 <path class="st42" d="m57.97817,315.7l0.5,-0.7l-3.3,-2.7l-0.5,0.9l-0.2,-0.2l0.7,-1.3l3.7,3l0.6,-0.7l0.2,0.2l-1.4,1.7l-0.3,-0.2z" id="svg_105"/>
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1s-0.4-0.6-0.9-0.9L52.8,316.5z"/> <path class="st42" d="m60.87817,310.1c0.5,0.5 0.7,0.9 0.8,1.4c0.1,0.4 -0.1,0.9 -0.4,1.2c-0.3,0.4 -0.8,0.5 -1.2,0.5c-0.5,-0.1 -0.9,-0.3 -1.4,-0.8l-0.8,-0.8c-0.5,-0.5 -0.7,-0.9 -0.8,-1.4c-0.1,-0.5 0.1,-0.9 0.4,-1.2c0.4,-0.4 0.8,-0.5 1.2,-0.5c0.5,0.1 0.9,0.3 1.4,0.8l0.8,0.8zm-1.1,-0.6c-0.4,-0.4 -0.7,-0.6 -1.1,-0.6c-0.3,-0.1 -0.6,0 -0.9,0.3c-0.3,0.3 -0.4,0.6 -0.3,0.9c0.1,0.3 0.3,0.7 0.6,1.1l0.9,0.9c0.4,0.4 0.7,0.6 1.1,0.6c0.3,0.1 0.7,0 0.9,-0.3c0.3,-0.3 0.4,-0.6 0.3,-0.9s-0.3,-0.7 -0.6,-1.1l-0.9,-0.9z" id="svg_106"/>
<path class="st42" d="M56.6,316.7l-0.3,0.4l-0.5-0.3l0.3-0.4L56.6,316.7z"/> <path class="st42" d="m63.37817,310.6l-0.4,0.3l-0.4,-0.4l0.4,-0.3l0.4,0.4z" id="svg_107"/>
<path class="st42" d="M56.9,315.7l0.5-0.7l-3.3-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L56.9,315.7z"/> <path class="st42" d="m63.87817,309.7l0.7,-0.6l-2.6,-3.4l-0.7,0.7l-0.2,-0.2l0.9,-1.1l2.9,3.8l0.8,-0.5l0.2,0.2l-1.8,1.4l-0.2,-0.3z" id="svg_108"/>
<path class="st42" d="M59.8,310.1c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.4-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5 <path class="st42" d="m67.97817,304.9c0.4,0.6 0.5,1.1 0.5,1.5c0,0.5 -0.3,0.8 -0.7,1.1c-0.4,0.3 -0.8,0.3 -1.3,0.2s-0.8,-0.5 -1.2,-1.1l-0.6,-1c-0.4,-0.6 -0.5,-1.1 -0.5,-1.5c0,-0.5 0.3,-0.8 0.7,-1.1c0.4,-0.3 0.8,-0.3 1.3,-0.2c0.4,0.2 0.8,0.5 1.2,1.1l0.6,1zm-1,-0.8c-0.3,-0.4 -0.6,-0.7 -0.9,-0.9c-0.3,-0.1 -0.6,-0.1 -1,0.1c-0.3,0.2 -0.5,0.5 -0.5,0.8c0,0.3 0.1,0.7 0.4,1.2l0.7,1.1c0.3,0.4 0.6,0.7 0.9,0.9s0.6,0.1 1,-0.1c0.3,-0.2 0.5,-0.5 0.5,-0.8c0,-0.3 -0.1,-0.7 -0.4,-1.2l-0.7,-1.1z" id="svg_109"/>
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5 <path class="st42" d="m70.27817,305.9l-0.4,0.2l-0.3,-0.5l0.4,-0.2l0.3,0.5z" id="svg_110"/>
c0.5,0.1,0.9,0.3,1.4,0.8L59.8,310.1z M58.7,309.5c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9 <path class="st42" d="m70.97817,305.2l0.8,-0.4l-1.8,-3.9l-0.9,0.5l-0.1,-0.3l1.2,-0.9l2,4.4l0.9,-0.3l0.1,0.3l-2.1,0.9l-0.1,-0.3z" id="svg_111"/>
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9s-0.3-0.7-0.6-1.1
L58.7,309.5z"/>
<path class="st42" d="M62.3,310.6l-0.4,0.3l-0.4-0.4l0.4-0.3L62.3,310.6z"/>
<path class="st42" d="M62.8,309.7l0.7-0.6l-2.6-3.4l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2L63,310L62.8,309.7z"/>
<path class="st42" d="M66.9,304.9c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1c-0.4,0.3-0.8,0.3-1.3,0.2s-0.8-0.5-1.2-1.1
l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5c0-0.5,0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2c0.4,0.2,0.8,0.5,1.2,1.1L66.9,304.9z
M65.9,304.1c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L65.9,304.1z"/>
<path class="st42" d="M69.2,305.9l-0.4,0.2l-0.3-0.5l0.4-0.2L69.2,305.9z"/>
<path class="st42" d="M69.9,305.2l0.8-0.4l-1.8-3.9l-0.9,0.5l-0.1-0.3l1.2-0.9l2,4.4l0.9-0.3l0.1,0.3l-2.1,0.9L69.9,305.2z"/>
</g> </g>
</g> </g>
<g id="deployments"> <g id="deployments">
<g> <g id="svg_112">
<g> <g id="svg_113">
<circle class="st45" cx="140.6" cy="241.8" r="14.1"/> <circle class="st45" cx="140.6" cy="241.8" r="14.1" id="svg_114"/>
<g> <g id="svg_115">
<g> <g id="svg_116">
<path class="st46" d="M145,233.5c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/> <path class="st46" d="m145,233.5c3,1.6 5,4.7 5,8.3c0,5.2 -4.2,9.4 -9.4,9.4s-9.4,-4.2 -9.4,-9.4c0,-4.1 2.6,-7.6 6.3,-8.9" id="svg_117"/>
<g> <g id="svg_118">
<polygon class="st6" points="146.4,236.4 145.4,233.7 148,232.6 146.5,231.9 143.8,233 144.8,235.6 "/> <polygon class="st6" points="146.4,236.4 145.4,233.7 148,232.6 146.5,231.9 143.8,233 144.8,235.6 " id="svg_119"/>
</g> </g>
</g> </g>
</g> </g>
<g> <g id="svg_120">
<path class="st6" d="M135.4,245.5l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1 <path class="st6" d="m135.4,245.5l0.8,-0.1l3.3,-9.5l2.2,0l3.3,9.5l0.8,0.1l0,1.3l-3.7,0l0,-1.3l0.8,-0.1l-0.5,-1.5l-3.5,0l-0.5,1.5l0.8,0.1l0,1.3l-3.7,0l0,-1.3l-0.1,0zm4,-3.2l2.5,0l-1.2,-3.8l0,0l-1.3,3.8z" id="svg_121"/>
v1.3h-3.7V245.5z M139.4,242.3h2.5l-1.2-3.8h0L139.4,242.3z"/>
</g> </g>
</g> </g>
<g> <g id="svg_122">
<circle class="st49" cx="159.9" cy="211.5" r="14.1"/> <circle class="st49" cx="159.9" cy="211.5" r="14.1" id="svg_123"/>
<g> <g id="svg_124">
<g> <g id="svg_125">
<path class="st46" d="M164.3,203.2c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/> <path class="st46" d="m164.3,203.2c3,1.6 5,4.7 5,8.3c0,5.2 -4.2,9.4 -9.4,9.4s-9.4,-4.2 -9.4,-9.4c0,-4.1 2.6,-7.6 6.3,-8.9" id="svg_126"/>
<g> <g id="svg_127">
<polygon class="st6" points="165.7,206.1 164.6,203.4 167.3,202.4 165.7,201.7 163,202.7 164.1,205.4 "/> <polygon class="st6" points="165.7,206.1 164.6,203.4 167.3,202.4 165.7,201.7 163,202.7 164.1,205.4 " id="svg_128"/>
</g> </g>
</g> </g>
</g> </g>
<g> <g id="svg_129">
<path class="st6" d="M160.1,205.8c1.3,0,2.3,0.2,3,0.7s1.1,1.2,1.1,2.2c0,0.5-0.1,1-0.4,1.3c-0.3,0.4-0.7,0.7-1.2,0.9 <path class="st6" d="m160.1,205.8c1.3,0 2.3,0.2 3,0.7s1.1,1.2 1.1,2.2c0,0.5 -0.1,1 -0.4,1.3c-0.3,0.4 -0.7,0.7 -1.2,0.9c0.7,0.1 1.1,0.4 1.5,0.9c0.3,0.5 0.5,1 0.5,1.6c0,1 -0.3,1.8 -1,2.4c-0.7,0.5 -1.7,0.8 -2.9,0.8l-5.3,0l0,-1.3l1.2,-0.2l0,-7.8l-1.2,-0.2l0,-1.3l1.2,0l3.5,0zm-1.5,4.5l1.6,0c0.6,0 1,-0.1 1.3,-0.4c0.3,-0.2 0.5,-0.6 0.5,-1c0,-0.5 -0.2,-0.9 -0.5,-1.1c-0.3,-0.2 -0.8,-0.4 -1.4,-0.4l-1.5,0l0,2.9zm0,1.5l0,3.1l2,0c0.6,0 1,-0.1 1.3,-0.4c0.3,-0.3 0.5,-0.6 0.5,-1.1c0,-0.5 -0.1,-0.9 -0.4,-1.2c-0.3,-0.3 -0.7,-0.4 -1.2,-0.4l-2.2,0z" id="svg_130"/>
c0.7,0.1,1.1,0.4,1.5,0.9c0.3,0.5,0.5,1,0.5,1.6c0,1-0.3,1.8-1,2.4c-0.7,0.5-1.7,0.8-2.9,0.8h-5.3v-1.3l1.2-0.2v-7.8l-1.2-0.2
v-1.3h1.2H160.1z M158.6,210.3h1.6c0.6,0,1-0.1,1.3-0.4c0.3-0.2,0.5-0.6,0.5-1c0-0.5-0.2-0.9-0.5-1.1c-0.3-0.2-0.8-0.4-1.4-0.4
h-1.5V210.3z M158.6,211.8v3.1h2c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.6,0.5-1.1c0-0.5-0.1-0.9-0.4-1.2c-0.3-0.3-0.7-0.4-1.2-0.4
H158.6z"/>
</g> </g>
</g> </g>
</g> </g>
</g> </g>
<g id="containers_x2F_volumes"> <g id="containers_x2F_volumes">
<g> <g id="svg_131">
<polygon class="st51" points="74.8,101.8 86.6,94.9 98.5,101.8 86.6,108.6 "/> <polygon class="st51" points="75.87815567851067,101.80000305175781 87.67815110087395,94.9000015258789 99.57815262675285,101.80000305175781 87.67815110087395,108.5999984741211 " id="svg_132"/>
<polygon class="st51" points="74.8,115.4 74.8,101.8 86.6,108.6 86.6,122.3 "/> <polygon class="st51" points="75.87815567851067,115.4000015258789 75.87815567851067,101.80000305175781 87.67815110087395,108.5999984741211 87.67815110087395,122.30000305175781 " id="svg_133"/>
<polygon class="st51" points="86.6,122.3 86.6,108.6 98.5,101.8 98.5,115.4 "/> <polygon class="st51" points="87.67815110087395,122.30000305175781 87.67815110087395,108.5999984741211 99.57815262675285,101.80000305175781 99.57815262675285,115.4000015258789 " id="svg_134"/>
</g> </g>
<g> <g id="svg_135">
<polygon class="st51" points="74.2,331.5 86,324.6 97.9,331.5 86,338.3 "/> <polygon class="st51" points="75.27814957499504,331.5 87.07815262675285,324.6000061035156 98.97815415263176,331.5 87.07815262675285,338.29998779296875 " id="svg_136"/>
<polygon class="st51" points="74.2,345.2 74.2,331.5 86,338.3 86,352 "/> <polygon class="st51" points="75.27814957499504,345.20001220703125 75.27814957499504,331.5 87.07815262675285,338.29998779296875 87.07815262675285,352 " id="svg_137"/>
<polygon class="st51" points="86,352 86,338.3 97.9,331.5 97.9,345.2 "/> <polygon class="st51" points="87.07815262675285,352 87.07815262675285,338.29998779296875 98.97815415263176,331.5 98.97815415263176,345.20001220703125 " id="svg_138"/>
</g> </g>
<g> <g id="svg_139">
<polygon class="st51" points="178.7,101.7 190.6,94.9 202.4,101.7 190.6,108.6 "/> <polygon class="st51" points="179.7781877219677,101.69999694824219 191.67819687724113,94.9000015258789 203.47818467020988,101.69999694824219 191.67819687724113,108.5999984741211 " id="svg_140"/>
<polygon class="st51" points="178.7,115.4 178.7,101.7 190.6,108.6 190.6,122.3 "/> <polygon class="st51" points="179.7781877219677,115.4000015258789 179.7781877219677,101.69999694824219 191.67819687724113,108.5999984741211 191.67819687724113,122.30000305175781 " id="svg_141"/>
<polygon class="st51" points="190.6,122.3 190.6,108.6 202.4,101.7 202.4,115.4 "/> <polygon class="st51" points="191.67819687724113,122.30000305175781 191.67819687724113,108.5999984741211 203.47818467020988,101.69999694824219 203.47818467020988,115.4000015258789 " id="svg_142"/>
</g> </g>
<g> <g id="svg_143">
<polygon class="st51" points="225.2,101.7 237.1,94.9 248.9,101.7 237.1,108.6 "/> <polygon class="st51" points="226.2781877219677,101.69999694824219 238.17819687724113,94.9000015258789 249.97818467020988,101.69999694824219 238.17819687724113,108.5999984741211 " id="svg_144"/>
<polygon class="st51" points="225.2,115.4 225.2,101.7 237.1,108.6 237.1,122.3 "/> <polygon class="st51" points="226.2781877219677,115.4000015258789 226.2781877219677,101.69999694824219 238.17819687724113,108.5999984741211 238.17819687724113,122.30000305175781 " id="svg_145"/>
<polygon class="st51" points="237.1,122.3 237.1,108.6 248.9,101.7 248.9,115.4 "/> <polygon class="st51" points="238.17819687724113,122.30000305175781 238.17819687724113,108.5999984741211 249.97818467020988,101.69999694824219 249.97818467020988,115.4000015258789 " id="svg_146"/>
</g> </g>
</g> </g>
<g id="labels_x2F_selectors"> <g id="labels_x2F_selectors"/>
</g>
<g id="description"> <g id="description">
<g> <g id="svg_147">
<path class="st42" d="M315.9,138.6h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1 <path class="st42" d="m315.9,138.6l-0.9,0l-0.2,-1.2c-0.2,-0.1 -0.4,-0.3 -0.7,-0.4s-0.6,-0.1 -1,-0.1c-0.6,0 -1.1,0.1 -1.4,0.4s-0.5,0.6 -0.5,1c0,0.4 0.2,0.7 0.5,0.9s0.9,0.5 1.6,0.7c0.9,0.2 1.6,0.6 2,1s0.7,1 0.7,1.6c0,0.7 -0.3,1.2 -0.8,1.7s-1.3,0.6 -2.2,0.6c-0.7,0 -1.2,-0.1 -1.7,-0.3s-0.9,-0.5 -1.2,-0.8l0,-1.7l0.9,0l0.2,1.2c0.2,0.2 0.5,0.3 0.8,0.5s0.7,0.2 1.1,0.2c0.6,0 1,-0.1 1.4,-0.4s0.5,-0.6 0.5,-1c0,-0.4 -0.1,-0.7 -0.4,-1s-0.8,-0.5 -1.6,-0.7c-0.9,-0.2 -1.6,-0.5 -2.1,-0.9s-0.8,-0.9 -0.8,-1.6c0,-0.7 0.3,-1.2 0.8,-1.7s1.3,-0.7 2.2,-0.7c0.6,0 1.1,0.1 1.6,0.3s0.9,0.5 1.2,0.7l0,1.7z" id="svg_148"/>
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6 <path class="st42" d="m320.1,144.7c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_149"/>
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8V142h0.9l0.2,1.2c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4 <path class="st42" d="m323.6,139l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.4,-0.6 0.7,-0.8s0.6,-0.3 0.9,-0.3c0.1,0 0.2,0 0.3,0s0.2,0 0.2,0l-0.2,1.1l-0.7,0c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.3 -0.5,0.6l0,3.6l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-4.5l-0.9,-0.1z" id="svg_150"/>
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7 <path class="st42" d="m330.9,139l-0.8,0.1l1.3,3.6l0.1,0.5l0,0l0.1,-0.5l1.3,-3.6l-0.8,-0.1l0,-0.7l2.4,0l0,0.7l-0.5,0.1l-2.1,5.5l-0.9,0l-2.2,-5.5l-0.5,-0.1l0,-0.7l2.4,0l0,0.7l0.2,0z" id="svg_151"/>
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V138.6z"/> <path class="st42" d="m335.4,143.8l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2.1,0l0,5.4l1,0.2l0,0.7l-3.1,0l0,-0.7zm2.1,-7.2l-1.2,0l0,-1.2l1.2,0l0,1.2z" id="svg_152"/>
<path class="st42" d="M320.1,144.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9 <path class="st42" d="m342.2,143.8c0.4,0 0.7,-0.1 1,-0.4s0.4,-0.5 0.4,-0.9l1,0l0,0c0,0.5 -0.2,1 -0.7,1.5s-1.1,0.6 -1.8,0.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.7,-1.4 -0.7,-2.3l0,-0.2c0,-0.9 0.2,-1.7 0.7,-2.3s1.2,-0.9 2.1,-0.9c0.5,0 1,0.1 1.4,0.3s0.7,0.4 1,0.7l0.1,1.4l-0.9,0l-0.3,-1c-0.1,-0.1 -0.3,-0.2 -0.5,-0.3s-0.5,-0.1 -0.7,-0.1c-0.6,0 -1,0.2 -1.3,0.7s-0.4,1 -0.4,1.6l0,0.2c0,0.6 0.1,1.2 0.4,1.6s0.7,0.7 1.3,0.7z" id="svg_153"/>
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5 <path class="st42" d="m348.7,144.7c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_154"/>
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S320.6,144.7,320.1,144.7z M319.9,139c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S320.4,139,319.9,139z"/>
<path class="st42" d="M323.6,139v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L323.6,139z"/>
<path class="st42" d="M330.9,139l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1v-0.7h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1v-0.7h2.4V139z"/>
<path class="st42" d="M335.4,143.8l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V143.8z M337.5,136.6h-1.2v-1.2h1.2V136.6z"/>
<path class="st42" d="M342.2,143.8c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S341.6,143.8,342.2,143.8z"/>
<path class="st42" d="M348.7,144.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7H347l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S349.2,144.7,348.7,144.7z M348.5,139c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S349,139,348.5,139z"/>
</g> </g>
<line class="st62" x1="307.3" y1="142.2" x2="249.9" y2="142.2"/> <line class="st62" x1="307.3" y1="142.2" x2="249.9" y2="142.2" id="svg_155"/>
<g> <g id="svg_156">
<path class="st42" d="M313.3,235c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7l-1-0.2 <path class="st42" d="m313.3,235c1.1,0 2,0.3 2.7,1s1,1.6 1,2.7l0,1.2c0,1.1 -0.3,2 -1,2.7s-1.6,1 -2.7,1l-3.6,0l0,-0.7l1,-0.2l0,-6.7l-1,-0.2l0,-0.8l1,0l2.6,0zm-1.4,0.9l0,6.7l1.5,0c0.8,0 1.4,-0.3 1.9,-0.8s0.7,-1.2 0.7,-2l0,-1.2c0,-0.8 -0.2,-1.5 -0.7,-2s-1.1,-0.8 -1.9,-0.8l-1.5,0l0,0.1z" id="svg_157"/>
V235h1H313.3z M311.9,235.9v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H311.9z"/> <path class="st42" d="m321.1,243.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_158"/>
<path class="st42" d="M321.1,243.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9 <path class="st42" d="m324.5,245.2l1,-0.2l0,-7l-1,-0.2l0,-0.7l1.9,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2c0.8,0 1.4,0.3 1.8,0.9s0.7,1.4 0.7,2.5l0,0.1c0,0.9 -0.2,1.7 -0.7,2.2s-1,0.8 -1.8,0.8c-0.4,0 -0.7,-0.1 -1,-0.2s-0.5,-0.3 -0.8,-0.6l0,2.2l1,0.2l0,0.7l-3.1,0l0,-0.6zm5.2,-4.8c0,-0.7 -0.1,-1.3 -0.4,-1.8s-0.7,-0.7 -1.3,-0.7c-0.3,0 -0.6,0.1 -0.8,0.2s-0.4,0.4 -0.6,0.6l0,3.1c0.1,0.3 0.3,0.5 0.6,0.6s0.5,0.2 0.9,0.2c0.5,0 1,-0.2 1.2,-0.6s0.4,-0.9 0.4,-1.6l0,0z" id="svg_159"/>
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5 <path class="st42" d="m331.7,235.1l0,-0.7l2.1,0l0,8.2l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-7.3l-1,-0.2z" id="svg_160"/>
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S321.6,243.6,321.1,243.6z M320.9,237.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2 <path class="st42" d="m335.5,240.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 2.1,-0.9c0.9,0 1.6,0.3 2.1,0.9s0.8,1.4 0.8,2.3l0,0.1c0,0.9 -0.3,1.7 -0.8,2.3s-1.2,0.9 -2.1,0.9c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.1zm1.1,0.1c0,0.7 0.1,1.2 0.4,1.7s0.7,0.7 1.3,0.7c0.5,0 1,-0.2 1.2,-0.7s0.4,-1 0.4,-1.7l0,-0.1c0,-0.7 -0.1,-1.2 -0.4,-1.7s-0.7,-0.7 -1.3,-0.7s-1,0.2 -1.3,0.7s-0.4,1 -0.4,1.7l0,0.1l0.1,0z" id="svg_161"/>
c0-0.5-0.1-0.8-0.4-1.1S321.4,237.9,320.9,237.9z"/> <path class="st42" d="m348.2,237.9l-0.6,0.1l-2.4,6.5c-0.2,0.4 -0.4,0.8 -0.7,1.1s-0.7,0.5 -1.2,0.5c-0.1,0 -0.2,0 -0.4,0s-0.3,0 -0.3,-0.1l0.1,-0.9c0,0 0,0 0.2,0s0.3,0 0.3,0c0.2,0 0.4,-0.1 0.6,-0.3s0.3,-0.5 0.4,-0.7l0.3,-0.7l-2.1,-5.4l-0.6,-0.1l0,-0.7l2.6,0l0,0.7l-0.7,0.1l1.1,3.1l0.2,0.8l0,0l1.3,-3.9l-0.7,-0.1l0,-0.7l2.6,0l0,0.7z" id="svg_162"/>
<path class="st42" d="M324.5,245.2l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2 <path class="st42" d="m348.7,242.8l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.8c0.2,-0.3 0.5,-0.5 0.8,-0.7s0.7,-0.2 1.1,-0.2s0.8,0.1 1.1,0.3s0.5,0.5 0.7,0.9c0.2,-0.4 0.5,-0.6 0.8,-0.9s0.7,-0.3 1.1,-0.3c0.6,0 1.2,0.2 1.5,0.7s0.6,1.1 0.6,2l0,2.9l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.9c0,-0.6 -0.1,-1.1 -0.3,-1.3s-0.5,-0.4 -1,-0.4c-0.4,0 -0.7,0.1 -1,0.4s-0.4,0.6 -0.4,1.1l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-2.9c0,-0.6 -0.1,-1 -0.3,-1.3s-0.5,-0.4 -1,-0.4c-0.4,0 -0.6,0.1 -0.9,0.2s-0.4,0.3 -0.5,0.6l0,3.8l1,0.2l0,0.7l-3.1,0l0,-0.8l-0.1,0z" id="svg_163"/>
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2 <path class="st42" d="m363.1,243.6c-0.9,0 -1.6,-0.3 -2.1,-0.9s-0.8,-1.4 -0.8,-2.3l0,-0.3c0,-0.9 0.3,-1.7 0.8,-2.3s1.2,-0.9 1.9,-0.9c0.9,0 1.5,0.3 1.9,0.8s0.7,1.2 0.7,2.1l0,0.7l-4.1,0l0,0c0,0.6 0.2,1.1 0.5,1.5s0.7,0.6 1.2,0.6c0.4,0 0.7,-0.1 1,-0.2s0.5,-0.3 0.8,-0.5l0.5,0.8c-0.2,0.2 -0.5,0.4 -0.9,0.6s-0.9,0.3 -1.4,0.3zm-0.2,-5.7c-0.4,0 -0.7,0.2 -1,0.5s-0.4,0.7 -0.5,1.2l0,0l2.9,0l0,-0.2c0,-0.5 -0.1,-0.8 -0.4,-1.1s-0.5,-0.4 -1,-0.4z" id="svg_164"/>
l1,0.2v0.7h-3.1V245.2z M329.7,240.4c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1 <path class="st42" d="m366.5,242.8l1,-0.2l0,-4.5l-1,-0.2l0,-0.7l2,0l0.1,0.9c0.2,-0.3 0.5,-0.6 0.8,-0.8s0.7,-0.3 1.1,-0.3c0.7,0 1.2,0.2 1.6,0.6s0.6,1 0.6,1.9l0,3.1l1,0.2l0,0.7l-3.1,0l0,-0.7l1,-0.2l0,-3.1c0,-0.6 -0.1,-1 -0.3,-1.2s-0.6,-0.4 -1,-0.4c-0.3,0 -0.6,0.1 -0.9,0.2s-0.5,0.4 -0.6,0.7l0,3.7l1,0.2l0,0.7l-3.1,0l0,-0.6l-0.2,0z" id="svg_165"/>
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V240.4z"/> <path class="st42" d="m376.4,235.6l0,1.5l1.2,0l0,0.9l-1.2,0l0,3.8c0,0.3 0.1,0.5 0.2,0.6s0.3,0.2 0.5,0.2c0.1,0 0.2,0 0.3,0s0.2,0 0.3,-0.1l0.2,0.8c-0.1,0.1 -0.3,0.1 -0.5,0.2s-0.4,0.1 -0.6,0.1c-0.5,0 -0.8,-0.1 -1.1,-0.4s-0.4,-0.7 -0.4,-1.3l0,-3.9l-1,0l0,-0.9l1,0l0,-1.5l1.1,0z" id="svg_166"/>
<path class="st42" d="M331.7,235.1v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L331.7,235.1z"/>
<path class="st42" d="M335.5,240.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V240.3z M336.6,240.4c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V240.4z"/>
<path class="st42" d="M348.2,237.9l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1v-0.7h2.6
v0.7l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1v-0.7h2.6V237.9z"/>
<path class="st42" d="M348.7,242.8l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V242.8z"/>
<path class="st42" d="M363.1,243.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S363.6,243.6,363.1,243.6z M362.9,237.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S363.4,237.9,362.9,237.9z"/>
<path class="st42" d="M366.5,242.8l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V242.8z"/>
<path class="st42" d="M376.4,235.6v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3V238h-1v-0.9h1v-1.5H376.4z"/>
</g> </g>
<line class="st62" x1="307.3" y1="241.1" x2="145" y2="241.1"/> <line class="st62" x1="307.3" y1="241.1" x2="145" y2="241.1" id="svg_167"/>
</g> </g>
<g id="Layer_14"> <g id="Layer_14"/>
<text stroke="#000000" transform="matrix(0.6019026637077332,0,0,0.5714285969734192,103.95938721019775,129.68302798457444) " xml:space="preserve" text-anchor="middle" font-family="Sans-serif" font-size="24" id="svg_172" y="319.35001" x="344.41771" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="0" fill="#000000">Pod</text>
<path stroke="#000000" fill="#7f00ff" d="m267.48872,307.31483l4.9558,-10.19507l13.21547,0l4.9558,10.19507l-4.9558,10.19507l-13.21547,0l-4.9558,-10.19507z" id="svg_168" transform="rotate(90 279.0518798828125,307.31481933593756) "/>
<path id="svg_175" stroke="#007fff" fill="#ffffff" d="m267.49716,339.46163l4.9558,-10.19507l13.21547,0l4.9558,10.19507l-4.9558,10.19507l-13.21547,0l-4.9558,-10.19507z" transform="rotate(90 279.0607604980469,339.4615783691407) "/>
<text id="svg_176" stroke="#000000" transform="matrix(0.6019026637077332,0,0,0.5714285969734192,103.95938721019775,129.68302798457444) " xml:space="preserve" text-anchor="middle" font-family="Sans-serif" font-size="24" y="377.46771" x="351.56023" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="0" fill="#000000">Node</text>
<line id="svg_169" y2="305.88526" x2="279.00771" y1="301.20473" x1="269.05229" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke="#000000" fill="none"/>
<line id="svg_171" y2="305.8914" x2="278.78483" y1="300.61651" x1="289.03743" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke="#000000" fill="none"/>
<line id="svg_170" y2="306.03385" x2="278.92224" y1="318.66387" x1="279.07083" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke="#000000" fill="none"/>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 42 KiB