docs: expand network segments documentation

Includes a brief overview with images, descriptions of server and client
configuration with examples, and how to join an agent to a segment.
This commit is contained in:
Jared Kirschner 2021-07-26 21:09:03 -04:00
parent 6e6cf1c043
commit 702df44f9b
5 changed files with 1647 additions and 9 deletions

View File

@ -11,19 +11,33 @@ description: |-
<EnterpriseAlert>
This feature requires{' '}
<a href="https://www.hashicorp.com/products/consul/">Consul Enterprise</a>{' '}
with the Global Visibility, Routing, and Scale module.
version 0.9.3+ with the Global Visibility, Routing, and Scale module.
</EnterpriseAlert>
Consul Network Segments enables operators to create separate LAN gossip segments
in one Consul cluster. Agents in a segment are only able to join and communicate
with other agents in its network segment. This functionality is useful for
clusters that have multiple tenants that should not be able to communicate
with each other.
Consul requires full connectivity between all agents (servers and clients) in a
[datacenter](/docs/agent/options#_datacenter) within a given
LAN gossip pool. By default, all Consul agents will be a part of one shared Serf LAN
gossip pool known as the `<default>` network segment, thus requiring full mesh
connectivity within the datacenter.
To get started with network segments you can review the tutorial on HashiCorp Learn for
[Network Segments](https://learn.hashicorp.com/tutorials/consul/network-partition-datacenters).
![Consul datacenter default agent connectivity: one network segment](/img/network-segments/consul-network-segments-single.png)
~> **Note:** Prior to Consul 1.7.3, a Consul agent configured with too many network segments may not be able to start due to [limitations](https://learn.hashicorp.com/tutorials/consul/network-partition-datacenters#network-segments-limitations) in Serf.
In some environments, full connectivity between all agents is not possible—known as a
"segmented network". This is usually the result of business policies enforced through
network rules or firewalls. To use Consul in a segmented network, you must break up
the LAN gossip pool along network communication boundaries into separate "network
segments". Network segments are isolated LAN gossip pools that only require full
connectivity between agent members on the same segment.
![Consul datacenter agent connectivity with network segments](/img/network-segments/consul-network-segments-multiple.png)
To get started with network segments you can review the tutorial on HashiCorp
Learn for [Network Segments](https://learn.hashicorp.com/tutorials/consul/network-partition-datacenters).
-> **Info:** Network segments enable you to operate a Consul datacenter without full
mesh (LAN) connectivity between agents. To federate multiple Consul datacenters
without full mesh (WAN) connectivity between all server agents in all datacenters,
use [Network Areas (Enterprise)](/docs/enterprise/federation).
# Consul Networking Models
@ -52,3 +66,171 @@ among themselves, and use Serf to maintain a shared view of the members of the
pool for different purposes, like finding a Consul server in a local cluster,
or finding servers in a remote cluster. A **segmented** LAN Gossip Pool limits a
group of agents to only connect with the agents in its segment.
# Network Segments Configuration
## Server Configuration
Server agents are members of all segments. The datacenter includes a `<default>`
segment, as well as additional segments defined in the
[`segments`](/docs/agent/options#segments) server agent configuration option.
Each additional segment is defined by:
- a non-empty name
- a unique port
- optionally, a custom bind and advertise address for the additional segment's
Serf LAN listener on the server
~> **Note:** Prior to Consul 1.7.3, a Consul server agent configured with too
many network segments may not be able to start due to [limitations](https://learn.hashicorp.com/tutorials/consul/network-partition-datacenters#network-segments-limitations)
in Serf.
### Example Server Configuration
The following server agent configuration will create two user-defined network
segments: `alpha` and `beta`.
<CodeTabs heading="Example network segments configuration for server agents">
```hcl
segments = [
{
name = "alpha"
bind = "{{GetPrivateIP}}"
advertise = "{{GetPrivateIP}}"
port = 8303
},
{
name = "beta"
bind = "{{GetPrivateIP}}"
advertise = "{{GetPrivateIP}}"
port = 8304
}
]
```
```json
{
"segments": [
{
"name": "alpha",
"bind": "{{GetPrivateIP}}",
"advertise": "{{GetPrivateIP}}",
"port": 8303
},
{
"name": "beta",
"bind": "{{GetPrivateIP}}",
"advertise": "{{GetPrivateIP}}",
"port": 8304
}
]
}
```
</CodeTabs>
The server [agent configuration](/docs/agent/options) options relevant to network
segments are:
- [`ports.serf_lan`](/docs/agent/options#serf_lan_port): The Serf LAN port on this server
for the `<default>` network segment's gossip pool.
- [`segments`](/docs/agent/options#segments): A list of user-defined network segments
on this server, including their names and Serf LAN ports.
## Client Configuration
Each client agent can only be a member of one segment at a time. This will be the
`<default>` segment unless otherwise specified in the agent's
[`segment`](/docs/agent/options.html#_segment) agent configuration option.
### Join a Client to a Segment ((#join_a_client_to_a_segment))
For a client agent to [join](/commands/join) the Consul
datacenter, it must connect to another agent (client or server) within its
configured segment.
<Tabs>
<Tab heading="Join via another client">
Clients A and B specify the same segment S. Client B is already joined to the segment S
LAN gossip pool. Client A wants to join via Client B. In order to do so, Client A
must connect to Client B's configured [Serf LAN port](/docs/agent/options#serf_lan_port).
</Tab>
<Tab heading="Join via a server">
Client A specifies segment S and wants to join the segment S gossip pool via Server 1.
In order to do so, Client A must connect to Server 1's configured [Serf LAN port
for segment S](/docs/agent/options#segment_port).
</Tab>
</Tabs>
There are several methods to specify the port used by the join operation, listed in order
of precedence:
1. **Specify an explicit port in the join address**. This can be done at the CLI when starting
the agent (e.g., `consul agent -retry-join "client-b-address:8303"`), or in the agent's
configuration using the [retry-join option](/docs/agent/options#retry_join). This method
is not compatible with [cloud auto-join](/docs/install/cloud-auto-join#auto-join-with-network-segments).
2. **Specify an alternate Serf LAN port for the agent**. This can be done at the CLI when starting
the agent (e.g., `consul agent -retry-join "client-b-address" -serf-lan-port 8303`), or in
the agent's configuration using the [serf_lan](/docs/agent/options#serf_lan_port) option.
When a Serf LAN port is not explicitly specified in the join address, the agent will attempt to
join the target host at the Serf LAN port specified in CLI or agent configuration.
3. **Use the default Serf LAN port (8301)**. The agent will attempt to join the target host
on port 8301.
-> Agents within a segment can use different port numbers for their Serf LAN port.
For example, on the `<default>` segment, Server S can use port 8301, Client A
can use 8303, and Client B can use 8304. However, if an agent wishes to join a
segment via an agent that uses a different port number, the target agent's Serf LAN
port must be specified in the join address (method 1 above).
### Example Client Configuration
The following client agent configuration will cause the agent to:
- Open a Serf LAN listener port on 8303.
- Attempt to join the cluster via servers on port 8303 (since an alternate port is not
specified in the `retry_join` addresses).
<CodeTabs heading="Example network segment configuration for client agents">
```hcl
node_name = "consul-client1"
retry_join = ["consul-server1", "consul-server2", "consul-server3"]
segment = "alpha"
ports = {
serf_lan = 8303
}
```
```json
{
"node_name": "consul-client1",
"retry_join": ["consul-server1", "consul-server2", "consul-server3"],
"segment": "alpha",
"ports": {
"serf_lan": 8303
}
}
```
</CodeTabs>
The client [agent configuration](/docs/agent/options) options relevant to network
segments are:
- [`segment`](/docs/agent/options#segment-2): The name of the network segment this
client agent belongs to.
- [`ports.serf_lan`](/docs/agent/options#serf_lan_port):
Serf LAN port for the above segment on this client. This is not required
to match the configured Serf LAN port for other agents on this segment.
- [`retry_join`](/docs/agent/options#retry_join) or
[`start_join`](/docs/agent/options#start_join): A list of agent addresses to join
when starting. Ensure the correct Serf LAN port for this segment is used when joining
the LAN gossip pool using one of the [available configuration methods](#join_a_client_to_a_segment).

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

View File

@ -0,0 +1,783 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="280.90906mm"
height="186.34019mm"
viewBox="0 0 280.90906 186.34019"
version="1.1"
id="svg88127"
sodipodi:docname="consul-network-segments-multiple.svg"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview140"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.78514107"
inkscape:cx="311.40901"
inkscape:cy="430.49589"
inkscape:window-width="1920"
inkscape:window-height="986"
inkscape:window-x="-11"
inkscape:window-y="1066"
inkscape:window-maximized="1"
inkscape:current-layer="svg88127" />
<defs
id="defs88124" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#d2d4db;stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="rect79523-0"
width="279.90906"
height="185.34019"
x="0.50000042"
y="0.5"
rx="0.75959074"
ry="0.75959074" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 194.76786,47.305395 c -50.54431,45.34622 -77.75005,4.57881 -88.50161,-0.6547"
id="path2951-8-2-4-5-6-5-5" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 204.97298,46.768285 c -11.40091,18.81636 -61.96028,16.58689 -89.8412,-0.40284"
id="path2951-8-2-4-5-6-5-6-9" />
<g
id="g77638"
transform="translate(-271.24368,-366.15677)">
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-4-1-4"
width="31.143223"
height="30.383631"
x="379.2648"
y="517.2453"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-2-7-8"
cx="386.64767"
cy="539.23132"
r="2.551281" />
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-4-4-2-4"
width="31.143223"
height="30.383631"
x="432.97595"
y="517.2453"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-2-5-6-7"
cx="440.35886"
cy="539.23132"
r="2.551281" />
</g>
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 84.916047,102.20382 96.869967,46.902565"
id="path2951-2-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 84.916047,119.39197 96.869967,46.902565"
id="path2951-87-9-6" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 84.916047,102.20382 141.82869,35.409955"
id="path2951-8-90-3" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 84.916047,102.20382 186.71117,47.305395"
id="path2951-8-9-3-2" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 84.916047,119.39197 186.71117,47.305395"
id="path2951-8-9-6-6-7" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 106.26625,46.650695 161.73227,151.08853"
id="path2951-8-9-0-2-7-5-8-6" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 150.42248,35.409955 161.73227,151.08853"
id="path2951-8-9-0-2-7-5-7-3-8" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 194.76786,47.305395 161.73227,151.08853"
id="path2951-8-9-0-2-7-5-7-8-5-7" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 106.26625,46.650695 139.16434,151.08853"
id="path2951-8-9-0-2-7-2-7-1-7" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 150.42248,35.409955 139.16434,151.08853"
id="path2951-8-9-0-2-7-2-7-9-5-29" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 150.42248,35.409955 c -11.73908,19.40908 -27.77893,19.30419 -44.15623,11.24074"
id="path2951-8-9-0-2-7-2-7-9-5-2-0" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 150.7459,35.393265 c 11.73908,19.40908 27.64466,19.97558 44.02196,11.91213"
id="path2951-8-9-0-2-7-2-7-9-5-2-8-5" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 160.89616,35.007125 c 13.93242,16.39323 28.11752,19.24986 44.07682,11.76116"
id="path2951-8-9-0-2-7-2-7-9-5-2-8-7-5" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 160.89616,35.007125 c -11.73908,19.40908 -28.71569,20.09316 -45.09299,12.02971"
id="path2951-8-9-0-2-7-2-7-9-5-2-8-7-8-4" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 194.76786,47.305395 139.16434,151.08853"
id="path2951-8-9-0-2-7-2-7-9-4-74-8" />
<path
style="fill:none;stroke:#ffc05b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 161.73227,151.08853 H 139.16434"
id="path2951-8-9-0-2-7-2-7-9-4-7-3-5-2" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 215.26261,102.40417 204.97298,46.768285"
id="path2951-7-1-4" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 215.44348,119.39196 204.97298,46.768285"
id="path2951-7-1-0-91" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 160.89616,35.007125 54.54732,84.384835"
id="path2951-7-1-0-9-4" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 215.44348,119.39197 V 102.20382"
id="path2951-7-4-4-3" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 215.44348,119.39196 115.80317,47.036835"
id="path2951-8-2-6-7" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 186.71117,47.305395 c -29.99232,15.40662 -65.55301,18.27741 -89.841203,-0.40283"
id="path2951-8-2-4-5-6-9" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 96.869967,46.902565 c 19.494283,5.78072 28.945213,4.43732 44.958723,-11.49261"
id="path2951-8-2-4-2-7-9" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 186.71117,47.305395 c -19.64434,6.15586 -30.07885,7.27142 -44.95872,-11.49261"
id="path2951-8-2-4-2-7-8-1" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 215.26261,102.40417 115.80317,47.036835"
id="path2951-8-9-9-3-0" />
<path
style="fill:none;stroke:#7a95ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 215.44348,102.20382 160.89616,35.007125"
id="path2951-8-9-9-3-5-3" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 84.916047,102.20382 v 17.18815"
id="path2951-8-9-0-2-7-2-6-6-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 141.82869,35.409955 84.916047,119.39197"
id="path2951-8-9-0-2-7-2-6-7-6-5" />
<rect
style="opacity:0.75;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.800685;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect64860-4-0"
width="27.802698"
height="13.036117"
x="87.290443"
y="87.505371" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#464851;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="101.0126"
y="92.637543"
id="text13642-47-9-7"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#464851;fill-opacity:1;stroke-width:0.109038"
x="101.0126"
y="92.637543"
id="tspan3647-47-8-4">&lt;DEFAULT&gt;</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#464851;fill-opacity:1;stroke-width:0.109038"
x="101.0126"
y="98.089417"
id="tspan59522-5-4">SEGMENT</tspan></text>
<rect
style="opacity:0.75;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.800685;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect64860-4-2-4"
width="27.802698"
height="13.036117"
x="135.84164"
y="104.40628" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#ad6a00;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="149.56381"
y="110.06134"
id="text13642-47-9-8-7"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#ad6a00;fill-opacity:1;stroke-width:0.109038"
x="149.56381"
y="110.06134"
id="tspan3647-47-8-0-6">ALPHA</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#ad6a00;fill-opacity:1;stroke-width:0.109038"
x="149.56381"
y="115.51321"
id="tspan59522-5-9-19">SEGMENT</tspan></text>
<rect
style="opacity:0.75;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.800685;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect64860-4-2-1-8"
width="27.802698"
height="13.036117"
x="183.88577"
y="87.505371" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#0026bc;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="197.60794"
y="93.160431"
id="text13642-47-9-8-6-5"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#0026bc;fill-opacity:1;stroke-width:0.109038"
x="197.60794"
y="93.160431"
id="tspan3647-47-8-0-5-8">BETA</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#0026bc;fill-opacity:1;stroke-width:0.109038"
x="197.60794"
y="98.612305"
id="tspan59522-5-9-1-2">SEGMENT</tspan></text>
<path
style="opacity:0.5;fill:none;stroke:#ca2171;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1"
d="M 0.469407,57.554075 H 280.18871"
id="path12070-8-3" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#eb88b7;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="12.758301"
y="53.198151"
id="text13642-2-4"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#eb88b7;fill-opacity:1;stroke-width:0.109038"
x="12.758301"
y="53.198151"
id="tspan3647-1-9">SERVER AGENTS</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#b6b8c2;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="15.013611"
y="11.064087"
id="text13642-2-8-5"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#b6b8c2;fill-opacity:1;stroke-width:0.109038"
x="15.013611"
y="11.064087"
id="tspan3647-1-2-8">DATACENTER 1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#eb88b7;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="12.867432"
y="65.039307"
id="text13642-6-9-3"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#eb88b7;fill-opacity:1;stroke-width:0.109038"
x="12.867432"
y="65.039307"
id="tspan3647-3-8-6">CLIENT AGENTS</tspan></text>
<g
style="fill:none"
id="g80108-6"
transform="matrix(0.26458333,0,0,0.26458333,2.637777,7.6231848)">
<path
d="m 36.335395,-0.44087498 -8.3684,-4.25171002 c -0.4336,-0.218042 -0.9109,-0.33148 -1.3947,-0.33148 -0.4838,0 -0.9611,0.113438 -1.3947,0.33148 l -8.36839,4.25171002 c -0.5215,0.2636 -0.960296,0.66974 -1.267112,1.17282 C 15.235276,1.235035 15.072672,1.815115 15.072448,2.406975 v 10.10786 c -0.0075,0.5953 0.150256,1.1807 0.455109,1.6891 0.304852,0.5084 0.744508,0.9192 1.268558,1.1855 l 8.36828,4.2517 c 0.4354,0.2202 0.915,0.3348 1.4013,0.3348 0.4863,0 0.966,-0.1146 1.4013,-0.3348 l 8.3684,-4.2517 c 0.5215,-0.2636 0.9603,-0.6698 1.2671,-1.1729 0.3068,-0.503 0.4695,-1.0831 0.4697,-1.675 V 2.406975 c -2e-4,-0.59186 -0.1629,-1.17194 -0.4697,-1.67502998 -0.3068,-0.50308 -0.7456,-0.90922 -1.2671,-1.17282 z M 26.098595,-2.740555 c 0.1412,-0.0784 0.2996,-0.11951 0.4606,-0.11951 0.1609,0 0.3192,0.04111 0.4604,0.11951 l 7.6447,3.87735 -2.8816,1.47072 -8.1051,-4.11799 z m 0.4606,8.02209 -8.10527,-4.11798 2.88155,-1.47071998 8.11842,4.13137998 z m -8.82893,8.2762 c -0.17618,-0.0885 -0.32405,-0.2258 -0.42652,-0.3962 -0.10247,-0.1704 -0.15534,-0.3668 -0.15243,-0.5665 v -9.70675 l 8.36838,4.23835 v 10.3886 z m 17.65773,0 -7.7894,3.9442 v -10.3753 l 8.3683,-4.23835 v 9.72015 c -0.0127,0.1855 -0.0727,0.3645 -0.1742,0.5192 -0.1015,0.1548 -0.241,0.28 -0.4047,0.3632 z"
fill="#b3b6c3"
id="path80099-8" />
</g>
<rect
style="fill:#ca2171;fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583"
id="rect53-2-3-2-3"
width="31.143223"
height="30.383631"
x="91.37381"
y="16.653198"
rx="0.94948852"
ry="0.94948852" />
<g
id="g51357-7"
transform="matrix(0.75411024,0,0,0.75411024,-122.58066,-1.3109452)">
<g
id="g10468-1-54"
transform="translate(255.49561,0.52274421)">
<path
opacity="0.7"
fill-rule="evenodd"
clip-rule="evenodd"
d="m 60.894465,32.634214 c -0.210334,7.14e-4 -0.416158,-0.06114 -0.591257,-0.17769 -0.1751,-0.116554 -0.311616,-0.282544 -0.392087,-0.476891 -0.08047,-0.194346 -0.101371,-0.408253 -0.05993,-0.614478 0.0414,-0.206225 0.143215,-0.395481 0.292503,-0.543697 0.149287,-0.148216 0.339302,-0.24865 0.545796,-0.288573 0.206538,-0.03992 0.42031,-0.0175 0.614032,0.0644 0.193766,0.0819 0.358773,0.219623 0.474077,0.395571 0.115259,0.175948 0.175591,0.382218 0.173313,0.592552 5.36e-4,0.13924 -0.02639,0.277185 -0.07922,0.40602 -0.05283,0.128835 -0.130488,0.246014 -0.228599,0.34484 -0.09811,0.09878 -0.21471,0.177332 -0.343143,0.231055 -0.128478,0.05377 -0.266244,0.08168 -0.405484,0.08217"
fill="#ffffff"
id="path1013-1-9-2-0"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 62.957478,32.063678 c -0.0974,-4.5e-5 -0.192561,-0.02907 -0.27339,-0.08342 -0.08078,-0.05439 -0.143571,-0.131604 -0.180279,-0.221766 -0.03671,-0.09021 -0.04573,-0.189301 -0.02586,-0.284643 0.01983,-0.09534 0.06766,-0.182602 0.13732,-0.250659 0.06967,-0.06801 0.158041,-0.113786 0.25383,-0.131336 0.09579,-0.0176 0.194659,-0.0063 0.283928,0.0326 0.08931,0.03885 0.165007,0.103426 0.217434,0.185505 0.05243,0.08208 0.07922,0.177913 0.07694,0.275265 0,0.129951 -0.05162,0.254544 -0.143482,0.346448 -0.0919,0.09186 -0.216541,0.143482 -0.346448,0.143482"
fill="#ffffff"
id="path1015-4-5-7-1"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.744511,32.523241 c -0.005,0.118028 -0.05604,0.229403 -0.142187,0.310232 -0.08614,0.08083 -0.200509,0.124682 -0.318627,0.122181 -0.118117,-0.0025 -0.230563,-0.05118 -0.313178,-0.135578 -0.08266,-0.0844 -0.128925,-0.19783 -0.128925,-0.315992 0,-0.118118 0.04626,-0.231546 0.128925,-0.315992 0.08261,-0.0844 0.195061,-0.133078 0.313178,-0.135579 0.118118,-0.0025 0.232484,0.04135 0.318627,0.122226 0.08614,0.08083 0.137186,0.192203 0.142187,0.310231 0.0012,0.01273 0.0012,0.02554 0,0.03827 z"
fill="#ffffff"
id="path1017-9-5-43-8"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.40043,31.263918 c -0.09449,0.01867 -0.192381,0.0091 -0.281427,-0.0276 -0.08905,-0.03666 -0.16532,-0.09874 -0.21931,-0.178494 -0.05395,-0.07976 -0.08324,-0.173625 -0.08413,-0.269906 -9.37e-4,-0.09632 0.02657,-0.190729 0.079,-0.271513 0.05247,-0.08074 0.12754,-0.144287 0.215872,-0.182602 0.08833,-0.03836 0.185995,-0.04979 0.280847,-0.03296 0.09481,0.01688 0.182557,0.06131 0.252222,0.127719 0.06971,0.06645 0.118296,0.151967 0.139686,0.24588 0.01143,0.06328 0.01143,0.128076 0,0.191355 -0.01666,0.09543 -0.06234,0.183406 -0.130844,0.251909 -0.0685,0.0685 -0.156478,0.114233 -0.25191,0.13089"
fill="#ffffff"
id="path1019-7-1-0-1"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 66.138699,32.470278 c -0.02233,0.127406 -0.09436,0.240745 -0.200242,0.31501 -0.105881,0.07431 -0.236949,0.103514 -0.364355,0.08119 -0.127406,-0.02233 -0.240701,-0.09436 -0.31501,-0.200241 -0.07431,-0.105882 -0.103514,-0.23695 -0.08114,-0.364356 0.01192,-0.06243 0.03604,-0.121824 0.071,-0.174876 0.03497,-0.05305 0.08003,-0.09869 0.132676,-0.134239 0.05265,-0.03559 0.111776,-0.06038 0.174072,-0.07301 0.06225,-0.01264 0.126379,-0.01286 0.18872,-6.7e-4 0.12035,0.02063 0.228643,0.08543 0.303667,0.181708 0.07507,0.09633 0.111463,0.217167 0.102085,0.338857 -0.0022,0.01527 -0.0022,0.03072 0,0.04595"
fill="#ffffff"
id="path1021-1-7-8-7"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.744334,31.241232 c -0.09485,0.01916 -0.19323,0.0096 -0.282589,-0.02746 -0.08936,-0.03707 -0.165632,-0.09999 -0.219042,-0.180637 -0.05345,-0.0807 -0.08154,-0.175457 -0.08078,-0.272183 7.59e-4,-0.09677 0.03037,-0.191087 0.08503,-0.270889 0.05466,-0.07985 0.131916,-0.141518 0.221855,-0.177198 0.08994,-0.03568 0.188452,-0.04368 0.282991,-0.02304 0.09449,0.02068 0.180726,0.06908 0.247577,0.138972 0.06685,0.06993 0.11133,0.158264 0.127719,0.253606 0.0039,0.04202 0.0039,0.08427 0,0.12629 -0.01041,0.106774 -0.05587,0.207074 -0.129282,0.285312 -0.07337,0.07824 -0.170589,0.129997 -0.276426,0.147234"
fill="#ffffff"
id="path1023-5-7-9-9"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.399672,34.161657 c -0.05926,0.105301 -0.155406,0.185013 -0.269906,0.223775 -0.1145,0.03872 -0.239271,0.03381 -0.350378,-0.01389 -0.111061,-0.04769 -0.200554,-0.134774 -0.251328,-0.244496 -0.05078,-0.109677 -0.05917,-0.23427 -0.02362,-0.349797 0.03555,-0.115528 0.112535,-0.213862 0.216184,-0.276069 0.103649,-0.06216 0.226634,-0.08387 0.345331,-0.06087 0.118654,0.023 0.224625,0.08904 0.297549,0.18546 0.07292,0.09641 0.107623,0.216362 0.09744,0.336846 -0.0017,0.07069 -0.02286,0.139598 -0.06127,0.199036 z"
fill="#ffffff"
id="path1025-5-86-6-78"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.22301,29.671454 c -0.112804,0.06355 -0.246149,0.07994 -0.37092,0.0455 -0.124816,-0.03443 -0.230876,-0.116822 -0.295137,-0.229223 -0.03166,-0.05609 -0.05198,-0.117805 -0.0598,-0.181709 -0.0078,-0.0639 -0.0029,-0.128701 0.01429,-0.190729 0.01724,-0.06203 0.04653,-0.120038 0.08619,-0.170768 0.03965,-0.05069 0.08891,-0.09311 0.145001,-0.124772 0.05604,-0.03166 0.11776,-0.05198 0.181664,-0.0598 0.0639,-0.0078 0.128701,-0.0029 0.190729,0.01429 0.06203,0.01724 0.120038,0.04653 0.170768,0.08619 0.05069,0.03965 0.09311,0.08891 0.124771,0.144956 0.04966,0.08565 0.07109,0.184745 0.06123,0.283259 -0.0073,0.07922 -0.03376,0.15545 -0.07708,0.222167 -0.04336,0.06667 -0.102309,0.121824 -0.171705,0.160631 z"
fill="#ffffff"
id="path1027-5-2-34-94"
style="stroke-width:0.446569" />
<path
d="m 60.913533,36.500917 c -0.782745,0.0037 -1.555041,-0.179565 -2.252626,-0.534632 -0.697585,-0.355022 -1.300274,-0.871523 -1.757917,-1.506543 -0.457644,-0.634976 -0.757023,-1.370118 -0.873176,-2.1442 -0.116152,-0.774037 -0.04577,-1.564642 0.205332,-2.306035 0.251106,-0.741349 0.675614,-1.412006 1.23829,-1.956194 0.562632,-0.544144 1.247088,-0.946056 1.99643,-1.172243 0.749342,-0.226232 1.541868,-0.270174 2.311618,-0.12821 0.76975,0.14192 1.494486,0.465682 2.113833,0.94427 l -0.597107,0.765552 c -0.582326,-0.445765 -1.277723,-0.719734 -2.00755,-0.790962 -0.729871,-0.07127 -1.465147,0.06305 -2.12263,0.3878 -0.657527,0.324745 -1.211094,0.826911 -1.598179,1.449785 -0.387086,0.622829 -0.592195,1.341537 -0.592195,2.074892 0,0.73331 0.205109,1.452062 0.592195,2.074892 0.387085,0.622874 0.940652,1.12504 1.598179,1.449785 0.657483,0.3247 1.392759,0.459028 2.12263,0.3878 0.729827,-0.07123 1.425224,-0.345198 2.00755,-0.790962 l 0.597107,0.784665 c -0.854018,0.658823 -1.903187,1.014381 -2.981784,1.01054 z"
fill="#ffffff"
id="path1029-6-6-2-0"
style="stroke-width:0.446569" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="45.360958"
y="94.897339"
id="text13642-4-5-7-8"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="45.360958"
y="94.897339"
id="tspan3647-7-9-8-0">8301</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#ffefd6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="53.128521"
y="100.98047"
id="text13642-4-5-7-6-0-8"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#ffefd6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="53.128521"
y="100.98047"
id="tspan3647-7-9-8-0-3-7">8303</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#bccaff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="59.677105"
y="107.08105"
id="text13642-4-5-7-6-0-2-61"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#bccaff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="59.677105"
y="107.08105"
id="tspan3647-7-9-8-0-3-6-4">8304</tspan></text>
<rect
style="fill:#ca2171;fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583"
id="rect53-2-5-1"
width="31.143223"
height="30.383631"
x="135.28271"
y="5.0115356"
rx="0.94948852"
ry="0.94948852" />
<g
style="fill:none"
id="g10621-7-4"
transform="matrix(0.26458333,0,0,0.26458333,139.9985,17.880375)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 9.99992,0.833252 2.83248,5.738338 6.3342,0.92583 -4.5833,4.46418 1.0816,6.3067 -5.66498,-2.9792 -5.665,2.9792 L 5.41659,11.9616 0.833252,7.49742 7.16742,6.57159 Z"
fill="#ffffff"
id="path10612-9-2" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.91279px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0978204"
x="146.39545"
y="21.809692"
id="text13642-0-6-2"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#ffffff;fill-opacity:1;stroke-width:0.0978204"
x="146.39545"
y="21.809692"
id="tspan3647-4-8-6">LEADER</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="86.593102"
y="113.20019"
id="text13642-4-5-7-6-9"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="86.593102"
y="113.20019"
id="tspan3647-7-9-8-1-9">8301</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#ffefd6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="94.360672"
y="119.28332"
id="text13642-4-5-7-6-0-27-2"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#ffefd6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="94.360672"
y="119.28332"
id="tspan3647-7-9-8-0-3-0-9">8303</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#bccaff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="100.90926"
y="125.3839"
id="text13642-4-5-7-6-0-2-7-0"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#bccaff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="100.90926"
y="125.3839"
id="tspan3647-7-9-8-0-3-6-6-7">8304</tspan></text>
<g
id="g51357-1-1"
transform="matrix(0.75411024,0,0,0.75411024,-78.023773,-13.412435)">
<g
id="g10468-1-1-8"
transform="translate(255.49561,0.52274421)">
<path
opacity="0.7"
fill-rule="evenodd"
clip-rule="evenodd"
d="m 60.894465,32.634214 c -0.210334,7.14e-4 -0.416158,-0.06114 -0.591257,-0.17769 -0.1751,-0.116554 -0.311616,-0.282544 -0.392087,-0.476891 -0.08047,-0.194346 -0.101371,-0.408253 -0.05993,-0.614478 0.0414,-0.206225 0.143215,-0.395481 0.292503,-0.543697 0.149287,-0.148216 0.339302,-0.24865 0.545796,-0.288573 0.206538,-0.03992 0.42031,-0.0175 0.614032,0.0644 0.193766,0.0819 0.358773,0.219623 0.474077,0.395571 0.115259,0.175948 0.175591,0.382218 0.173313,0.592552 5.36e-4,0.13924 -0.02639,0.277185 -0.07922,0.40602 -0.05283,0.128835 -0.130488,0.246014 -0.228599,0.34484 -0.09811,0.09878 -0.21471,0.177332 -0.343143,0.231055 -0.128478,0.05377 -0.266244,0.08168 -0.405484,0.08217"
fill="#ffffff"
id="path1013-1-9-2-7-9"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 62.957478,32.063678 c -0.0974,-4.5e-5 -0.192561,-0.02907 -0.27339,-0.08342 -0.08078,-0.05439 -0.143571,-0.131604 -0.180279,-0.221766 -0.03671,-0.09021 -0.04573,-0.189301 -0.02586,-0.284643 0.01983,-0.09534 0.06766,-0.182602 0.13732,-0.250659 0.06967,-0.06801 0.158041,-0.113786 0.25383,-0.131336 0.09579,-0.0176 0.194659,-0.0063 0.283928,0.0326 0.08931,0.03885 0.165007,0.103426 0.217434,0.185505 0.05243,0.08208 0.07922,0.177913 0.07694,0.275265 0,0.129951 -0.05162,0.254544 -0.143482,0.346448 -0.0919,0.09186 -0.216541,0.143482 -0.346448,0.143482"
fill="#ffffff"
id="path1015-4-5-7-6-9"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.744511,32.523241 c -0.005,0.118028 -0.05604,0.229403 -0.142187,0.310232 -0.08614,0.08083 -0.200509,0.124682 -0.318627,0.122181 -0.118117,-0.0025 -0.230563,-0.05118 -0.313178,-0.135578 -0.08266,-0.0844 -0.128925,-0.19783 -0.128925,-0.315992 0,-0.118118 0.04626,-0.231546 0.128925,-0.315992 0.08261,-0.0844 0.195061,-0.133078 0.313178,-0.135579 0.118118,-0.0025 0.232484,0.04135 0.318627,0.122226 0.08614,0.08083 0.137186,0.192203 0.142187,0.310231 0.0012,0.01273 0.0012,0.02554 0,0.03827 z"
fill="#ffffff"
id="path1017-9-5-43-3-6"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.40043,31.263918 c -0.09449,0.01867 -0.192381,0.0091 -0.281427,-0.0276 -0.08905,-0.03666 -0.16532,-0.09874 -0.21931,-0.178494 -0.05395,-0.07976 -0.08324,-0.173625 -0.08413,-0.269906 -9.37e-4,-0.09632 0.02657,-0.190729 0.079,-0.271513 0.05247,-0.08074 0.12754,-0.144287 0.215872,-0.182602 0.08833,-0.03836 0.185995,-0.04979 0.280847,-0.03296 0.09481,0.01688 0.182557,0.06131 0.252222,0.127719 0.06971,0.06645 0.118296,0.151967 0.139686,0.24588 0.01143,0.06328 0.01143,0.128076 0,0.191355 -0.01666,0.09543 -0.06234,0.183406 -0.130844,0.251909 -0.0685,0.0685 -0.156478,0.114233 -0.25191,0.13089"
fill="#ffffff"
id="path1019-7-1-0-4-0"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 66.138699,32.470278 c -0.02233,0.127406 -0.09436,0.240745 -0.200242,0.31501 -0.105881,0.07431 -0.236949,0.103514 -0.364355,0.08119 -0.127406,-0.02233 -0.240701,-0.09436 -0.31501,-0.200241 -0.07431,-0.105882 -0.103514,-0.23695 -0.08114,-0.364356 0.01192,-0.06243 0.03604,-0.121824 0.071,-0.174876 0.03497,-0.05305 0.08003,-0.09869 0.132676,-0.134239 0.05265,-0.03559 0.111776,-0.06038 0.174072,-0.07301 0.06225,-0.01264 0.126379,-0.01286 0.18872,-6.7e-4 0.12035,0.02063 0.228643,0.08543 0.303667,0.181708 0.07507,0.09633 0.111463,0.217167 0.102085,0.338857 -0.0022,0.01527 -0.0022,0.03072 0,0.04595"
fill="#ffffff"
id="path1021-1-7-8-9-6"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.744334,31.241232 c -0.09485,0.01916 -0.19323,0.0096 -0.282589,-0.02746 -0.08936,-0.03707 -0.165632,-0.09999 -0.219042,-0.180637 -0.05345,-0.0807 -0.08154,-0.175457 -0.08078,-0.272183 7.59e-4,-0.09677 0.03037,-0.191087 0.08503,-0.270889 0.05466,-0.07985 0.131916,-0.141518 0.221855,-0.177198 0.08994,-0.03568 0.188452,-0.04368 0.282991,-0.02304 0.09449,0.02068 0.180726,0.06908 0.247577,0.138972 0.06685,0.06993 0.11133,0.158264 0.127719,0.253606 0.0039,0.04202 0.0039,0.08427 0,0.12629 -0.01041,0.106774 -0.05587,0.207074 -0.129282,0.285312 -0.07337,0.07824 -0.170589,0.129997 -0.276426,0.147234"
fill="#ffffff"
id="path1023-5-7-9-4-2"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.399672,34.161657 c -0.05926,0.105301 -0.155406,0.185013 -0.269906,0.223775 -0.1145,0.03872 -0.239271,0.03381 -0.350378,-0.01389 -0.111061,-0.04769 -0.200554,-0.134774 -0.251328,-0.244496 -0.05078,-0.109677 -0.05917,-0.23427 -0.02362,-0.349797 0.03555,-0.115528 0.112535,-0.213862 0.216184,-0.276069 0.103649,-0.06216 0.226634,-0.08387 0.345331,-0.06087 0.118654,0.023 0.224625,0.08904 0.297549,0.18546 0.07292,0.09641 0.107623,0.216362 0.09744,0.336846 -0.0017,0.07069 -0.02286,0.139598 -0.06127,0.199036 z"
fill="#ffffff"
id="path1025-5-86-6-7-1"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.22301,29.671454 c -0.112804,0.06355 -0.246149,0.07994 -0.37092,0.0455 -0.124816,-0.03443 -0.230876,-0.116822 -0.295137,-0.229223 -0.03166,-0.05609 -0.05198,-0.117805 -0.0598,-0.181709 -0.0078,-0.0639 -0.0029,-0.128701 0.01429,-0.190729 0.01724,-0.06203 0.04653,-0.120038 0.08619,-0.170768 0.03965,-0.05069 0.08891,-0.09311 0.145001,-0.124772 0.05604,-0.03166 0.11776,-0.05198 0.181664,-0.0598 0.0639,-0.0078 0.128701,-0.0029 0.190729,0.01429 0.06203,0.01724 0.120038,0.04653 0.170768,0.08619 0.05069,0.03965 0.09311,0.08891 0.124771,0.144956 0.04966,0.08565 0.07109,0.184745 0.06123,0.283259 -0.0073,0.07922 -0.03376,0.15545 -0.07708,0.222167 -0.04336,0.06667 -0.102309,0.121824 -0.171705,0.160631 z"
fill="#ffffff"
id="path1027-5-2-34-9-15"
style="stroke-width:0.446569" />
<path
d="m 60.913533,36.500917 c -0.782745,0.0037 -1.555041,-0.179565 -2.252626,-0.534632 -0.697585,-0.355022 -1.300274,-0.871523 -1.757917,-1.506543 -0.457644,-0.634976 -0.757023,-1.370118 -0.873176,-2.1442 -0.116152,-0.774037 -0.04577,-1.564642 0.205332,-2.306035 0.251106,-0.741349 0.675614,-1.412006 1.23829,-1.956194 0.562632,-0.544144 1.247088,-0.946056 1.99643,-1.172243 0.749342,-0.226232 1.541868,-0.270174 2.311618,-0.12821 0.76975,0.14192 1.494486,0.465682 2.113833,0.94427 l -0.597107,0.765552 c -0.582326,-0.445765 -1.277723,-0.719734 -2.00755,-0.790962 -0.729871,-0.07127 -1.465147,0.06305 -2.12263,0.3878 -0.657527,0.324745 -1.211094,0.826911 -1.598179,1.449785 -0.387086,0.622829 -0.592195,1.341537 -0.592195,2.074892 0,0.73331 0.205109,1.452062 0.592195,2.074892 0.387085,0.622874 0.940652,1.12504 1.598179,1.449785 0.657483,0.3247 1.392759,0.459028 2.12263,0.3878 0.729827,-0.07123 1.425224,-0.345198 2.00755,-0.790962 l 0.597107,0.784665 c -0.854018,0.658823 -1.903187,1.014381 -2.981784,1.01054 z"
fill="#ffffff"
id="path1029-6-6-2-6-4"
style="stroke-width:0.446569" />
</g>
</g>
<rect
style="fill:#ca2171;fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583"
id="rect53-2-9-7-3"
width="31.143223"
height="30.383631"
x="179.19159"
y="16.653198"
rx="0.94948852"
ry="0.94948852" />
<g
id="g51357-1-5-0"
transform="matrix(0.75411024,0,0,0.75411024,-34.517713,-1.7302552)">
<g
id="g10468-1-1-3-0"
transform="translate(255.49561,0.52274421)">
<path
opacity="0.7"
fill-rule="evenodd"
clip-rule="evenodd"
d="m 60.894465,32.634214 c -0.210334,7.14e-4 -0.416158,-0.06114 -0.591257,-0.17769 -0.1751,-0.116554 -0.311616,-0.282544 -0.392087,-0.476891 -0.08047,-0.194346 -0.101371,-0.408253 -0.05993,-0.614478 0.0414,-0.206225 0.143215,-0.395481 0.292503,-0.543697 0.149287,-0.148216 0.339302,-0.24865 0.545796,-0.288573 0.206538,-0.03992 0.42031,-0.0175 0.614032,0.0644 0.193766,0.0819 0.358773,0.219623 0.474077,0.395571 0.115259,0.175948 0.175591,0.382218 0.173313,0.592552 5.36e-4,0.13924 -0.02639,0.277185 -0.07922,0.40602 -0.05283,0.128835 -0.130488,0.246014 -0.228599,0.34484 -0.09811,0.09878 -0.21471,0.177332 -0.343143,0.231055 -0.128478,0.05377 -0.266244,0.08168 -0.405484,0.08217"
fill="#ffffff"
id="path1013-1-9-2-7-4-6"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 62.957478,32.063678 c -0.0974,-4.5e-5 -0.192561,-0.02907 -0.27339,-0.08342 -0.08078,-0.05439 -0.143571,-0.131604 -0.180279,-0.221766 -0.03671,-0.09021 -0.04573,-0.189301 -0.02586,-0.284643 0.01983,-0.09534 0.06766,-0.182602 0.13732,-0.250659 0.06967,-0.06801 0.158041,-0.113786 0.25383,-0.131336 0.09579,-0.0176 0.194659,-0.0063 0.283928,0.0326 0.08931,0.03885 0.165007,0.103426 0.217434,0.185505 0.05243,0.08208 0.07922,0.177913 0.07694,0.275265 0,0.129951 -0.05162,0.254544 -0.143482,0.346448 -0.0919,0.09186 -0.216541,0.143482 -0.346448,0.143482"
fill="#ffffff"
id="path1015-4-5-7-6-6-7"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.744511,32.523241 c -0.005,0.118028 -0.05604,0.229403 -0.142187,0.310232 -0.08614,0.08083 -0.200509,0.124682 -0.318627,0.122181 -0.118117,-0.0025 -0.230563,-0.05118 -0.313178,-0.135578 -0.08266,-0.0844 -0.128925,-0.19783 -0.128925,-0.315992 0,-0.118118 0.04626,-0.231546 0.128925,-0.315992 0.08261,-0.0844 0.195061,-0.133078 0.313178,-0.135579 0.118118,-0.0025 0.232484,0.04135 0.318627,0.122226 0.08614,0.08083 0.137186,0.192203 0.142187,0.310231 0.0012,0.01273 0.0012,0.02554 0,0.03827 z"
fill="#ffffff"
id="path1017-9-5-43-3-9-6"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.40043,31.263918 c -0.09449,0.01867 -0.192381,0.0091 -0.281427,-0.0276 -0.08905,-0.03666 -0.16532,-0.09874 -0.21931,-0.178494 -0.05395,-0.07976 -0.08324,-0.173625 -0.08413,-0.269906 -9.37e-4,-0.09632 0.02657,-0.190729 0.079,-0.271513 0.05247,-0.08074 0.12754,-0.144287 0.215872,-0.182602 0.08833,-0.03836 0.185995,-0.04979 0.280847,-0.03296 0.09481,0.01688 0.182557,0.06131 0.252222,0.127719 0.06971,0.06645 0.118296,0.151967 0.139686,0.24588 0.01143,0.06328 0.01143,0.128076 0,0.191355 -0.01666,0.09543 -0.06234,0.183406 -0.130844,0.251909 -0.0685,0.0685 -0.156478,0.114233 -0.25191,0.13089"
fill="#ffffff"
id="path1019-7-1-0-4-6-0"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 66.138699,32.470278 c -0.02233,0.127406 -0.09436,0.240745 -0.200242,0.31501 -0.105881,0.07431 -0.236949,0.103514 -0.364355,0.08119 -0.127406,-0.02233 -0.240701,-0.09436 -0.31501,-0.200241 -0.07431,-0.105882 -0.103514,-0.23695 -0.08114,-0.364356 0.01192,-0.06243 0.03604,-0.121824 0.071,-0.174876 0.03497,-0.05305 0.08003,-0.09869 0.132676,-0.134239 0.05265,-0.03559 0.111776,-0.06038 0.174072,-0.07301 0.06225,-0.01264 0.126379,-0.01286 0.18872,-6.7e-4 0.12035,0.02063 0.228643,0.08543 0.303667,0.181708 0.07507,0.09633 0.111463,0.217167 0.102085,0.338857 -0.0022,0.01527 -0.0022,0.03072 0,0.04595"
fill="#ffffff"
id="path1021-1-7-8-9-8-4"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.744334,31.241232 c -0.09485,0.01916 -0.19323,0.0096 -0.282589,-0.02746 -0.08936,-0.03707 -0.165632,-0.09999 -0.219042,-0.180637 -0.05345,-0.0807 -0.08154,-0.175457 -0.08078,-0.272183 7.59e-4,-0.09677 0.03037,-0.191087 0.08503,-0.270889 0.05466,-0.07985 0.131916,-0.141518 0.221855,-0.177198 0.08994,-0.03568 0.188452,-0.04368 0.282991,-0.02304 0.09449,0.02068 0.180726,0.06908 0.247577,0.138972 0.06685,0.06993 0.11133,0.158264 0.127719,0.253606 0.0039,0.04202 0.0039,0.08427 0,0.12629 -0.01041,0.106774 -0.05587,0.207074 -0.129282,0.285312 -0.07337,0.07824 -0.170589,0.129997 -0.276426,0.147234"
fill="#ffffff"
id="path1023-5-7-9-4-5-3"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.399672,34.161657 c -0.05926,0.105301 -0.155406,0.185013 -0.269906,0.223775 -0.1145,0.03872 -0.239271,0.03381 -0.350378,-0.01389 -0.111061,-0.04769 -0.200554,-0.134774 -0.251328,-0.244496 -0.05078,-0.109677 -0.05917,-0.23427 -0.02362,-0.349797 0.03555,-0.115528 0.112535,-0.213862 0.216184,-0.276069 0.103649,-0.06216 0.226634,-0.08387 0.345331,-0.06087 0.118654,0.023 0.224625,0.08904 0.297549,0.18546 0.07292,0.09641 0.107623,0.216362 0.09744,0.336846 -0.0017,0.07069 -0.02286,0.139598 -0.06127,0.199036 z"
fill="#ffffff"
id="path1025-5-86-6-7-4-8"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.22301,29.671454 c -0.112804,0.06355 -0.246149,0.07994 -0.37092,0.0455 -0.124816,-0.03443 -0.230876,-0.116822 -0.295137,-0.229223 -0.03166,-0.05609 -0.05198,-0.117805 -0.0598,-0.181709 -0.0078,-0.0639 -0.0029,-0.128701 0.01429,-0.190729 0.01724,-0.06203 0.04653,-0.120038 0.08619,-0.170768 0.03965,-0.05069 0.08891,-0.09311 0.145001,-0.124772 0.05604,-0.03166 0.11776,-0.05198 0.181664,-0.0598 0.0639,-0.0078 0.128701,-0.0029 0.190729,0.01429 0.06203,0.01724 0.120038,0.04653 0.170768,0.08619 0.05069,0.03965 0.09311,0.08891 0.124771,0.144956 0.04966,0.08565 0.07109,0.184745 0.06123,0.283259 -0.0073,0.07922 -0.03376,0.15545 -0.07708,0.222167 -0.04336,0.06667 -0.102309,0.121824 -0.171705,0.160631 z"
fill="#ffffff"
id="path1027-5-2-34-9-1-4"
style="stroke-width:0.446569" />
<path
d="m 60.913533,36.500917 c -0.782745,0.0037 -1.555041,-0.179565 -2.252626,-0.534632 -0.697585,-0.355022 -1.300274,-0.871523 -1.757917,-1.506543 -0.457644,-0.634976 -0.757023,-1.370118 -0.873176,-2.1442 -0.116152,-0.774037 -0.04577,-1.564642 0.205332,-2.306035 0.251106,-0.741349 0.675614,-1.412006 1.23829,-1.956194 0.562632,-0.544144 1.247088,-0.946056 1.99643,-1.172243 0.749342,-0.226232 1.541868,-0.270174 2.311618,-0.12821 0.76975,0.14192 1.494486,0.465682 2.113833,0.94427 l -0.597107,0.765552 c -0.582326,-0.445765 -1.277723,-0.719734 -2.00755,-0.790962 -0.729871,-0.07127 -1.465147,0.06305 -2.12263,0.3878 -0.657527,0.324745 -1.211094,0.826911 -1.598179,1.449785 -0.387086,0.622829 -0.592195,1.341537 -0.592195,2.074892 0,0.73331 0.205109,1.452062 0.592195,2.074892 0.387085,0.622874 0.940652,1.12504 1.598179,1.449785 0.657483,0.3247 1.392759,0.459028 2.12263,0.3878 0.729827,-0.07123 1.425224,-0.345198 2.00755,-0.790962 l 0.597107,0.784665 c -0.854018,0.658823 -1.903187,1.014381 -2.981784,1.01054 z"
fill="#ffffff"
id="path1029-6-6-2-6-7-2"
style="stroke-width:0.446569" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="113.62766"
y="149.61034"
id="text13642-4-5-7-2-1"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="113.62766"
y="149.61034"
id="tspan3647-7-9-8-6-4">8301</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#ffefd6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="121.3952"
y="155.69353"
id="text13642-4-5-7-6-0-1-2"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#ffefd6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="121.3952"
y="155.69353"
id="tspan3647-7-9-8-0-3-8-7">8303</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#bccaff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="127.94379"
y="161.79411"
id="text13642-4-5-7-6-0-2-6-2"
transform="rotate(-38.712751)"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#bccaff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="127.94379"
y="161.79411"
id="tspan3647-7-9-8-0-3-6-2-9">8304</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-4-6-5"
width="31.143223"
height="30.383631"
x="215.44345"
y="71.82019"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-87-2-2"
cx="222.82635"
cy="93.806183"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#7a95ff;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="217.08047"
y="100.77832"
id="text13642-4-8-6-8-3-7-4-7"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#7a95ff;fill-opacity:1;stroke-width:0.109038"
x="217.08047"
y="100.77832"
id="tspan3647-7-99-1-2-8-1-5-7">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-4-4-0-2-5"
width="31.143223"
height="30.383631"
x="215.44345"
y="119.39196"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-2-5-1-9-1"
cx="222.82635"
cy="141.37796"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#7a95ff;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="217.08047"
y="124.5455"
id="text13642-4-8-6-8-3-1-2"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#7a95ff;fill-opacity:1;stroke-width:0.109038"
x="217.08047"
y="124.5455"
id="tspan3647-7-99-1-2-8-4-4">8301</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#ffc05b;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="163.50357"
y="155.80975"
id="text13642-4-8-6-8-0-6"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#ffc05b;fill-opacity:1;stroke-width:0.109038"
x="163.50357"
y="155.80975"
id="tspan3647-7-99-1-2-3-4">8301</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#ffc05b;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="128.0542"
y="156.20465"
id="text13642-4-8-6-2-1"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#ffc05b;fill-opacity:1;stroke-width:0.109038"
x="128.0542"
y="156.20465"
id="tspan3647-7-99-1-4-0">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-42-9"
width="31.143223"
height="30.383631"
x="53.772823"
y="119.39196"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-1-7"
cx="61.155697"
cy="141.37796"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="73.671631"
y="124.5455"
id="text13642-4-8-9-2"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="73.671631"
y="124.5455"
id="tspan3647-7-99-3-7">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-2-2"
width="31.143223"
height="30.383631"
x="53.772823"
y="71.82019"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-4-8"
cx="61.155697"
cy="93.806183"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="73.143982"
y="100.30142"
id="text13642-4-0-6"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="73.143982"
y="100.30142"
id="tspan3647-7-3-7">8301</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

View File

@ -0,0 +1,673 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="280.90906mm"
height="186.34019mm"
viewBox="0 0 280.90906 186.34019"
version="1.1"
id="svg86623"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs86620" />
<g
id="layer1"
transform="translate(2.5887995,11.893881)">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#d2d4db;stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
id="rect79523"
width="279.90906"
height="185.34019"
x="-2.0887995"
y="-11.393881"
rx="0.75959074"
ry="0.75959074" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 81.74137,89.78079 119.34239,34.61381"
id="path2951-75" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 81.74137,106.96894 119.34239,34.61381"
id="path2951-87-7" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 81.74137,89.78079 147.2478,22.98692"
id="path2951-8-7" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 81.74137,89.78079 176.01693,34.61381"
id="path2951-8-9-02" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 81.74137,106.96894 176.01693,34.61381"
id="path2951-8-9-6-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 81.74137,89.78079 H 212.2688"
id="path2951-8-9-0-0" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 81.74137,89.78079 129.99032,17.18815"
id="path2951-8-9-0-2-5" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 81.74137,89.78079 76.81624,48.88482"
id="path2951-8-9-0-2-7-0" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.34239,34.61381 39.21522,104.0518"
id="path2951-8-9-0-2-7-5-3" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 147.2478,22.98692 11.30981,115.67869"
id="path2951-8-9-0-2-7-5-7-85" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 176.01693,34.61381 -17.45932,104.0518"
id="path2951-8-9-0-2-7-5-7-8-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 211.73169,106.96894 -53.17408,31.69657"
id="path2951-8-9-0-2-7-5-7-8-0-7" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 81.74137,89.78079 54.2483,48.88482"
id="path2951-8-9-0-2-7-2-66" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.34239,34.61381 16.64727,104.0517"
id="path2951-8-9-0-2-7-2-7-3" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 147.2478,22.98692 135.98966,138.66551"
id="path2951-8-9-0-2-7-2-7-9-55" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 176.01693,34.61381 -40.02727,104.0517"
id="path2951-8-9-0-2-7-2-7-9-4-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 211.73169,106.96894 -75.74203,31.69657"
id="path2951-8-9-0-2-7-2-7-9-4-7-6" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 158.55761,138.66561 H 135.98967"
id="path2951-8-9-0-2-7-2-7-9-4-7-3-9" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 212.08793,89.98114 -36.071,-55.36733"
id="path2951-7-18" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.2688,106.96894 V 89.78079"
id="path2951-7-4-7" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.08793,89.98114 147.2478,22.98692"
id="path2951-8-2-8" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 147.2478,22.98692 119.34239,34.61381"
id="path2951-8-2-4-1" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 176.01693,34.61381 H 119.34239"
id="path2951-8-2-4-5-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 176.01693,34.61381 147.2478,22.98692"
id="path2951-8-2-4-2-77" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.08793,89.98114 119.34239,34.61381"
id="path2951-8-9-9-30" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.2688,106.96894 176.01693,34.61381"
id="path2951-8-9-9-37-2" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.2688,106.96894 147.2478,22.98692"
id="path2951-8-9-9-37-8-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.2688,106.96894 119.34239,34.61381"
id="path2951-8-9-9-37-8-8-7" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.08793,89.98114 81.74137,106.96894"
id="path2951-8-9-0-2-2-4" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 212.2688,106.96894 H 81.741372"
id="path2951-8-9-0-2-2-6-9" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 158.55761,138.66561 81.74137,106.96894"
id="path2951-8-9-0-2-2-6-6-2" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 135.98966,138.66551 81.741372,106.96894"
id="path2951-8-9-0-2-2-6-6-8-7" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 212.08793,89.98114 -76.09827,48.68437"
id="path2951-8-9-0-2-7-8-0" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 212.08793,89.98114 -53.53032,48.68437"
id="path2951-8-9-0-2-7-2-64-3" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 81.74137,89.78079 v 17.18815"
id="path2951-8-9-0-2-7-2-6-66" />
<path
style="fill:none;stroke:#9194a0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 147.2478,22.98692 81.74137,106.96894"
id="path2951-8-9-0-2-7-2-6-7-69" />
<path
style="opacity:0.5;fill:none;stroke:#ca2171;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1"
d="M -2.119385,45.66021 H 277.59992"
id="path12070-8" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#eb88b7;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="10.169486"
y="41.304272"
id="text13642-2"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#eb88b7;fill-opacity:1;stroke-width:0.109038"
x="10.169486"
y="41.304272"
id="tspan3647-1">SERVER AGENTS</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#b6b8c2;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="12.424808"
y="-0.82979363"
id="text13642-2-8"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#b6b8c2;fill-opacity:1;stroke-width:0.109038"
x="12.424808"
y="-0.82979363"
id="tspan3647-1-2">DATACENTER 1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#eb88b7;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="10.278636"
y="53.145428"
id="text13642-6-9"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#eb88b7;fill-opacity:1;stroke-width:0.109038"
x="10.278636"
y="53.145428"
id="tspan3647-3-8">CLIENT AGENTS</tspan></text>
<rect
style="opacity:0.85;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.877;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect64860-9"
width="33.355167"
height="13.036117"
x="129.60806"
y="91.852638" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#464851;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="146.19716"
y="97.507668"
id="text13642-47-6"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#464851;fill-opacity:1;stroke-width:0.109038"
x="146.19716"
y="97.507668"
id="tspan3647-47-7">&lt;DEFAULT&gt;</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:center;text-anchor:middle;fill:#464851;fill-opacity:1;stroke-width:0.109038"
x="146.19716"
y="102.95954"
id="tspan59522-6">SEGMENT</tspan></text>
<g
style="fill:none"
id="g80108"
transform="matrix(0.26458333,0,0,0.26458333,0.048985,-4.27068)">
<path
d="m 36.335395,-0.44087498 -8.3684,-4.25171002 c -0.4336,-0.218042 -0.9109,-0.33148 -1.3947,-0.33148 -0.4838,0 -0.9611,0.113438 -1.3947,0.33148 l -8.36839,4.25171002 c -0.5215,0.2636 -0.960296,0.66974 -1.267112,1.17282 C 15.235276,1.235035 15.072672,1.815115 15.072448,2.406975 v 10.10786 c -0.0075,0.5953 0.150256,1.1807 0.455109,1.6891 0.304852,0.5084 0.744508,0.9192 1.268558,1.1855 l 8.36828,4.2517 c 0.4354,0.2202 0.915,0.3348 1.4013,0.3348 0.4863,0 0.966,-0.1146 1.4013,-0.3348 l 8.3684,-4.2517 c 0.5215,-0.2636 0.9603,-0.6698 1.2671,-1.1729 0.3068,-0.503 0.4695,-1.0831 0.4697,-1.675 V 2.406975 c -2e-4,-0.59186 -0.1629,-1.17194 -0.4697,-1.67502998 -0.3068,-0.50308 -0.7456,-0.90922 -1.2671,-1.17282 z M 26.098595,-2.740555 c 0.1412,-0.0784 0.2996,-0.11951 0.4606,-0.11951 0.1609,0 0.3192,0.04111 0.4604,0.11951 l 7.6447,3.87735 -2.8816,1.47072 -8.1051,-4.11799 z m 0.4606,8.02209 -8.10527,-4.11798 2.88155,-1.47071998 8.11842,4.13137998 z m -8.82893,8.2762 c -0.17618,-0.0885 -0.32405,-0.2258 -0.42652,-0.3962 -0.10247,-0.1704 -0.15534,-0.3668 -0.15243,-0.5665 v -9.70675 l 8.36838,4.23835 v 10.3886 z m 17.65773,0 -7.7894,3.9442 v -10.3753 l 8.3683,-4.23835 v 9.72015 c -0.0127,0.1855 -0.0727,0.3645 -0.1742,0.5192 -0.1015,0.1548 -0.241,0.28 -0.4047,0.3632 z"
fill="#b3b6c3"
id="path80099" />
</g>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-4-1"
width="31.143223"
height="30.383631"
x="212.26878"
y="59.397167"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-87-1"
cx="219.65167"
cy="81.383156"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="213.86339"
y="88.31266"
id="text13642-4-8-6-8-3-7-3"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="213.86339"
y="88.31266"
id="tspan3647-7-99-1-2-8-1-8">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-4-4-0-6"
width="31.143223"
height="30.383631"
x="212.26878"
y="106.96897"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-2-5-1-7"
cx="219.65167"
cy="128.95494"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="213.86339"
y="112.07981"
id="text13642-4-8-6-8-3-3"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="213.86339"
y="112.07981"
id="tspan3647-7-99-1-2-8-6">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-4-4-4"
width="31.143223"
height="30.383631"
x="158.5576"
y="138.66551"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-2-5-8"
cx="165.94046"
cy="160.65144"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="160.2865"
y="143.3441"
id="text13642-4-8-6-8-2"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="160.2865"
y="143.3441"
id="tspan3647-7-99-1-2-4">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-4-7"
width="31.143223"
height="30.383631"
x="104.84644"
y="138.66551"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-2-9"
cx="112.22933"
cy="160.65144"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="124.83712"
y="143.739"
id="text13642-4-8-6-3"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="124.83712"
y="143.739"
id="tspan3647-7-99-1-3">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-8-6"
width="31.143223"
height="30.383631"
x="50.598148"
y="106.96897"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-8-20"
cx="57.981041"
cy="128.95494"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="70.454552"
y="112.07981"
id="text13642-4-8-7"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="70.454552"
y="112.07981"
id="tspan3647-7-99-5">8301</tspan></text>
<rect
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ca2171;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect53-8-1"
width="31.143223"
height="30.383631"
x="50.598148"
y="59.397167"
rx="0.94948852"
ry="0.94948852" />
<circle
style="fill:#ca2171;fill-opacity:1;stroke:none;stroke-width:0.826087;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1524-2"
cx="57.981041"
cy="81.383156"
r="2.551281" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#9194a0;fill-opacity:1;stroke:none;stroke-width:0.109038"
x="69.926926"
y="87.835732"
id="text13642-4-4"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#9194a0;fill-opacity:1;stroke-width:0.109038"
x="69.926926"
y="87.835732"
id="tspan3647-7-1">8301</tspan></text>
<rect
style="fill:#ca2171;fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583"
id="rect53-2-3-24"
width="31.143223"
height="30.383631"
x="88.199158"
y="4.2302041"
rx="0.94948852"
ry="0.94948852" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="108.05689"
y="32.638592"
id="text13642-4-5-1"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="108.05689"
y="32.638592"
id="tspan3647-7-9-53">8301</tspan></text>
<g
id="g51357-6-0"
transform="matrix(0.75411024,0,0,0.75411024,-125.21777,-13.87572)">
<g
id="g10468-1-5-02"
transform="translate(255.49561,0.52274421)">
<path
opacity="0.7"
fill-rule="evenodd"
clip-rule="evenodd"
d="m 60.894465,32.634214 c -0.210334,7.14e-4 -0.416158,-0.06114 -0.591257,-0.17769 -0.1751,-0.116554 -0.311616,-0.282544 -0.392087,-0.476891 -0.08047,-0.194346 -0.101371,-0.408253 -0.05993,-0.614478 0.0414,-0.206225 0.143215,-0.395481 0.292503,-0.543697 0.149287,-0.148216 0.339302,-0.24865 0.545796,-0.288573 0.206538,-0.03992 0.42031,-0.0175 0.614032,0.0644 0.193766,0.0819 0.358773,0.219623 0.474077,0.395571 0.115259,0.175948 0.175591,0.382218 0.173313,0.592552 5.36e-4,0.13924 -0.02639,0.277185 -0.07922,0.40602 -0.05283,0.128835 -0.130488,0.246014 -0.228599,0.34484 -0.09811,0.09878 -0.21471,0.177332 -0.343143,0.231055 -0.128478,0.05377 -0.266244,0.08168 -0.405484,0.08217"
fill="#ffffff"
id="path1013-1-9-2-6-0"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 62.957478,32.063678 c -0.0974,-4.5e-5 -0.192561,-0.02907 -0.27339,-0.08342 -0.08078,-0.05439 -0.143571,-0.131604 -0.180279,-0.221766 -0.03671,-0.09021 -0.04573,-0.189301 -0.02586,-0.284643 0.01983,-0.09534 0.06766,-0.182602 0.13732,-0.250659 0.06967,-0.06801 0.158041,-0.113786 0.25383,-0.131336 0.09579,-0.0176 0.194659,-0.0063 0.283928,0.0326 0.08931,0.03885 0.165007,0.103426 0.217434,0.185505 0.05243,0.08208 0.07922,0.177913 0.07694,0.275265 0,0.129951 -0.05162,0.254544 -0.143482,0.346448 -0.0919,0.09186 -0.216541,0.143482 -0.346448,0.143482"
fill="#ffffff"
id="path1015-4-5-7-8-7"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.744511,32.523241 c -0.005,0.118028 -0.05604,0.229403 -0.142187,0.310232 -0.08614,0.08083 -0.200509,0.124682 -0.318627,0.122181 -0.118117,-0.0025 -0.230563,-0.05118 -0.313178,-0.135578 -0.08266,-0.0844 -0.128925,-0.19783 -0.128925,-0.315992 0,-0.118118 0.04626,-0.231546 0.128925,-0.315992 0.08261,-0.0844 0.195061,-0.133078 0.313178,-0.135579 0.118118,-0.0025 0.232484,0.04135 0.318627,0.122226 0.08614,0.08083 0.137186,0.192203 0.142187,0.310231 0.0012,0.01273 0.0012,0.02554 0,0.03827 z"
fill="#ffffff"
id="path1017-9-5-43-5-5"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.40043,31.263918 c -0.09449,0.01867 -0.192381,0.0091 -0.281427,-0.0276 -0.08905,-0.03666 -0.16532,-0.09874 -0.21931,-0.178494 -0.05395,-0.07976 -0.08324,-0.173625 -0.08413,-0.269906 -9.37e-4,-0.09632 0.02657,-0.190729 0.079,-0.271513 0.05247,-0.08074 0.12754,-0.144287 0.215872,-0.182602 0.08833,-0.03836 0.185995,-0.04979 0.280847,-0.03296 0.09481,0.01688 0.182557,0.06131 0.252222,0.127719 0.06971,0.06645 0.118296,0.151967 0.139686,0.24588 0.01143,0.06328 0.01143,0.128076 0,0.191355 -0.01666,0.09543 -0.06234,0.183406 -0.130844,0.251909 -0.0685,0.0685 -0.156478,0.114233 -0.25191,0.13089"
fill="#ffffff"
id="path1019-7-1-0-5-6"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 66.138699,32.470278 c -0.02233,0.127406 -0.09436,0.240745 -0.200242,0.31501 -0.105881,0.07431 -0.236949,0.103514 -0.364355,0.08119 -0.127406,-0.02233 -0.240701,-0.09436 -0.31501,-0.200241 -0.07431,-0.105882 -0.103514,-0.23695 -0.08114,-0.364356 0.01192,-0.06243 0.03604,-0.121824 0.071,-0.174876 0.03497,-0.05305 0.08003,-0.09869 0.132676,-0.134239 0.05265,-0.03559 0.111776,-0.06038 0.174072,-0.07301 0.06225,-0.01264 0.126379,-0.01286 0.18872,-6.7e-4 0.12035,0.02063 0.228643,0.08543 0.303667,0.181708 0.07507,0.09633 0.111463,0.217167 0.102085,0.338857 -0.0022,0.01527 -0.0022,0.03072 0,0.04595"
fill="#ffffff"
id="path1021-1-7-8-0-3"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.744334,31.241232 c -0.09485,0.01916 -0.19323,0.0096 -0.282589,-0.02746 -0.08936,-0.03707 -0.165632,-0.09999 -0.219042,-0.180637 -0.05345,-0.0807 -0.08154,-0.175457 -0.08078,-0.272183 7.59e-4,-0.09677 0.03037,-0.191087 0.08503,-0.270889 0.05466,-0.07985 0.131916,-0.141518 0.221855,-0.177198 0.08994,-0.03568 0.188452,-0.04368 0.282991,-0.02304 0.09449,0.02068 0.180726,0.06908 0.247577,0.138972 0.06685,0.06993 0.11133,0.158264 0.127719,0.253606 0.0039,0.04202 0.0039,0.08427 0,0.12629 -0.01041,0.106774 -0.05587,0.207074 -0.129282,0.285312 -0.07337,0.07824 -0.170589,0.129997 -0.276426,0.147234"
fill="#ffffff"
id="path1023-5-7-9-46-55"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.399672,34.161657 c -0.05926,0.105301 -0.155406,0.185013 -0.269906,0.223775 -0.1145,0.03872 -0.239271,0.03381 -0.350378,-0.01389 -0.111061,-0.04769 -0.200554,-0.134774 -0.251328,-0.244496 -0.05078,-0.109677 -0.05917,-0.23427 -0.02362,-0.349797 0.03555,-0.115528 0.112535,-0.213862 0.216184,-0.276069 0.103649,-0.06216 0.226634,-0.08387 0.345331,-0.06087 0.118654,0.023 0.224625,0.08904 0.297549,0.18546 0.07292,0.09641 0.107623,0.216362 0.09744,0.336846 -0.0017,0.07069 -0.02286,0.139598 -0.06127,0.199036 z"
fill="#ffffff"
id="path1025-5-86-6-8-3"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.22301,29.671454 c -0.112804,0.06355 -0.246149,0.07994 -0.37092,0.0455 -0.124816,-0.03443 -0.230876,-0.116822 -0.295137,-0.229223 -0.03166,-0.05609 -0.05198,-0.117805 -0.0598,-0.181709 -0.0078,-0.0639 -0.0029,-0.128701 0.01429,-0.190729 0.01724,-0.06203 0.04653,-0.120038 0.08619,-0.170768 0.03965,-0.05069 0.08891,-0.09311 0.145001,-0.124772 0.05604,-0.03166 0.11776,-0.05198 0.181664,-0.0598 0.0639,-0.0078 0.128701,-0.0029 0.190729,0.01429 0.06203,0.01724 0.120038,0.04653 0.170768,0.08619 0.05069,0.03965 0.09311,0.08891 0.124771,0.144956 0.04966,0.08565 0.07109,0.184745 0.06123,0.283259 -0.0073,0.07922 -0.03376,0.15545 -0.07708,0.222167 -0.04336,0.06667 -0.102309,0.121824 -0.171705,0.160631 z"
fill="#ffffff"
id="path1027-5-2-34-5-95"
style="stroke-width:0.446569" />
<path
d="m 60.913533,36.500917 c -0.782745,0.0037 -1.555041,-0.179565 -2.252626,-0.534632 -0.697585,-0.355022 -1.300274,-0.871523 -1.757917,-1.506543 -0.457644,-0.634976 -0.757023,-1.370118 -0.873176,-2.1442 -0.116152,-0.774037 -0.04577,-1.564642 0.205332,-2.306035 0.251106,-0.741349 0.675614,-1.412006 1.23829,-1.956194 0.562632,-0.544144 1.247088,-0.946056 1.99643,-1.172243 0.749342,-0.226232 1.541868,-0.270174 2.311618,-0.12821 0.76975,0.14192 1.494486,0.465682 2.113833,0.94427 l -0.597107,0.765552 c -0.582326,-0.445765 -1.277723,-0.719734 -2.00755,-0.790962 -0.729871,-0.07127 -1.465147,0.06305 -2.12263,0.3878 -0.657527,0.324745 -1.211094,0.826911 -1.598179,1.449785 -0.387086,0.622829 -0.592195,1.341537 -0.592195,2.074892 0,0.73331 0.205109,1.452062 0.592195,2.074892 0.387085,0.622874 0.940652,1.12504 1.598179,1.449785 0.657483,0.3247 1.392759,0.459028 2.12263,0.3878 0.729827,-0.07123 1.425224,-0.345198 2.00755,-0.790962 l 0.597107,0.784665 c -0.854018,0.658823 -1.903187,1.014381 -2.981784,1.01054 z"
fill="#ffffff"
id="path1029-6-6-2-4-4"
style="stroke-width:0.446569" />
</g>
</g>
<rect
style="fill:#ca2171;fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583"
id="rect53-2-2"
width="31.143223"
height="30.383631"
x="132.10803"
y="-7.411489"
rx="0.94948852"
ry="0.94948852" />
<g
style="fill:none"
id="g10621-1"
transform="matrix(0.26458333,0,0,0.26458333,136.82381,5.98651)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 9.99992,0.833252 2.83248,5.738338 6.3342,0.92583 -4.5833,4.46418 1.0816,6.3067 -5.66498,-2.9792 -5.665,2.9792 L 5.41659,11.9616 0.833252,7.49742 7.16742,6.57159 Z"
fill="#ffffff"
id="path10612-0" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="142.42754"
y="21.173655"
id="text13642-4-5-2-3"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="142.42754"
y="21.173655"
id="tspan3647-7-9-5-5">8301</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.91279px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0978204"
x="143.22075"
y="9.9158421"
id="text13642-0-68"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#ffffff;fill-opacity:1;stroke-width:0.0978204"
x="143.22075"
y="9.9158421"
id="tspan3647-4-5">LEADER</tspan></text>
<g
id="g51357-6-3-9"
transform="matrix(0.75411024,0,0,0.75411024,-81.308881,-25.51739)">
<g
id="g10468-1-5-0-69"
transform="translate(255.49561,0.52274421)">
<path
opacity="0.7"
fill-rule="evenodd"
clip-rule="evenodd"
d="m 60.894465,32.634214 c -0.210334,7.14e-4 -0.416158,-0.06114 -0.591257,-0.17769 -0.1751,-0.116554 -0.311616,-0.282544 -0.392087,-0.476891 -0.08047,-0.194346 -0.101371,-0.408253 -0.05993,-0.614478 0.0414,-0.206225 0.143215,-0.395481 0.292503,-0.543697 0.149287,-0.148216 0.339302,-0.24865 0.545796,-0.288573 0.206538,-0.03992 0.42031,-0.0175 0.614032,0.0644 0.193766,0.0819 0.358773,0.219623 0.474077,0.395571 0.115259,0.175948 0.175591,0.382218 0.173313,0.592552 5.36e-4,0.13924 -0.02639,0.277185 -0.07922,0.40602 -0.05283,0.128835 -0.130488,0.246014 -0.228599,0.34484 -0.09811,0.09878 -0.21471,0.177332 -0.343143,0.231055 -0.128478,0.05377 -0.266244,0.08168 -0.405484,0.08217"
fill="#ffffff"
id="path1013-1-9-2-6-2-64"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 62.957478,32.063678 c -0.0974,-4.5e-5 -0.192561,-0.02907 -0.27339,-0.08342 -0.08078,-0.05439 -0.143571,-0.131604 -0.180279,-0.221766 -0.03671,-0.09021 -0.04573,-0.189301 -0.02586,-0.284643 0.01983,-0.09534 0.06766,-0.182602 0.13732,-0.250659 0.06967,-0.06801 0.158041,-0.113786 0.25383,-0.131336 0.09579,-0.0176 0.194659,-0.0063 0.283928,0.0326 0.08931,0.03885 0.165007,0.103426 0.217434,0.185505 0.05243,0.08208 0.07922,0.177913 0.07694,0.275265 0,0.129951 -0.05162,0.254544 -0.143482,0.346448 -0.0919,0.09186 -0.216541,0.143482 -0.346448,0.143482"
fill="#ffffff"
id="path1015-4-5-7-8-4-5"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.744511,32.523241 c -0.005,0.118028 -0.05604,0.229403 -0.142187,0.310232 -0.08614,0.08083 -0.200509,0.124682 -0.318627,0.122181 -0.118117,-0.0025 -0.230563,-0.05118 -0.313178,-0.135578 -0.08266,-0.0844 -0.128925,-0.19783 -0.128925,-0.315992 0,-0.118118 0.04626,-0.231546 0.128925,-0.315992 0.08261,-0.0844 0.195061,-0.133078 0.313178,-0.135579 0.118118,-0.0025 0.232484,0.04135 0.318627,0.122226 0.08614,0.08083 0.137186,0.192203 0.142187,0.310231 0.0012,0.01273 0.0012,0.02554 0,0.03827 z"
fill="#ffffff"
id="path1017-9-5-43-5-8-3"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.40043,31.263918 c -0.09449,0.01867 -0.192381,0.0091 -0.281427,-0.0276 -0.08905,-0.03666 -0.16532,-0.09874 -0.21931,-0.178494 -0.05395,-0.07976 -0.08324,-0.173625 -0.08413,-0.269906 -9.37e-4,-0.09632 0.02657,-0.190729 0.079,-0.271513 0.05247,-0.08074 0.12754,-0.144287 0.215872,-0.182602 0.08833,-0.03836 0.185995,-0.04979 0.280847,-0.03296 0.09481,0.01688 0.182557,0.06131 0.252222,0.127719 0.06971,0.06645 0.118296,0.151967 0.139686,0.24588 0.01143,0.06328 0.01143,0.128076 0,0.191355 -0.01666,0.09543 -0.06234,0.183406 -0.130844,0.251909 -0.0685,0.0685 -0.156478,0.114233 -0.25191,0.13089"
fill="#ffffff"
id="path1019-7-1-0-5-8-3"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 66.138699,32.470278 c -0.02233,0.127406 -0.09436,0.240745 -0.200242,0.31501 -0.105881,0.07431 -0.236949,0.103514 -0.364355,0.08119 -0.127406,-0.02233 -0.240701,-0.09436 -0.31501,-0.200241 -0.07431,-0.105882 -0.103514,-0.23695 -0.08114,-0.364356 0.01192,-0.06243 0.03604,-0.121824 0.071,-0.174876 0.03497,-0.05305 0.08003,-0.09869 0.132676,-0.134239 0.05265,-0.03559 0.111776,-0.06038 0.174072,-0.07301 0.06225,-0.01264 0.126379,-0.01286 0.18872,-6.7e-4 0.12035,0.02063 0.228643,0.08543 0.303667,0.181708 0.07507,0.09633 0.111463,0.217167 0.102085,0.338857 -0.0022,0.01527 -0.0022,0.03072 0,0.04595"
fill="#ffffff"
id="path1021-1-7-8-0-5-75"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.744334,31.241232 c -0.09485,0.01916 -0.19323,0.0096 -0.282589,-0.02746 -0.08936,-0.03707 -0.165632,-0.09999 -0.219042,-0.180637 -0.05345,-0.0807 -0.08154,-0.175457 -0.08078,-0.272183 7.59e-4,-0.09677 0.03037,-0.191087 0.08503,-0.270889 0.05466,-0.07985 0.131916,-0.141518 0.221855,-0.177198 0.08994,-0.03568 0.188452,-0.04368 0.282991,-0.02304 0.09449,0.02068 0.180726,0.06908 0.247577,0.138972 0.06685,0.06993 0.11133,0.158264 0.127719,0.253606 0.0039,0.04202 0.0039,0.08427 0,0.12629 -0.01041,0.106774 -0.05587,0.207074 -0.129282,0.285312 -0.07337,0.07824 -0.170589,0.129997 -0.276426,0.147234"
fill="#ffffff"
id="path1023-5-7-9-46-5-5"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.399672,34.161657 c -0.05926,0.105301 -0.155406,0.185013 -0.269906,0.223775 -0.1145,0.03872 -0.239271,0.03381 -0.350378,-0.01389 -0.111061,-0.04769 -0.200554,-0.134774 -0.251328,-0.244496 -0.05078,-0.109677 -0.05917,-0.23427 -0.02362,-0.349797 0.03555,-0.115528 0.112535,-0.213862 0.216184,-0.276069 0.103649,-0.06216 0.226634,-0.08387 0.345331,-0.06087 0.118654,0.023 0.224625,0.08904 0.297549,0.18546 0.07292,0.09641 0.107623,0.216362 0.09744,0.336846 -0.0017,0.07069 -0.02286,0.139598 -0.06127,0.199036 z"
fill="#ffffff"
id="path1025-5-86-6-8-8-8"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.22301,29.671454 c -0.112804,0.06355 -0.246149,0.07994 -0.37092,0.0455 -0.124816,-0.03443 -0.230876,-0.116822 -0.295137,-0.229223 -0.03166,-0.05609 -0.05198,-0.117805 -0.0598,-0.181709 -0.0078,-0.0639 -0.0029,-0.128701 0.01429,-0.190729 0.01724,-0.06203 0.04653,-0.120038 0.08619,-0.170768 0.03965,-0.05069 0.08891,-0.09311 0.145001,-0.124772 0.05604,-0.03166 0.11776,-0.05198 0.181664,-0.0598 0.0639,-0.0078 0.128701,-0.0029 0.190729,0.01429 0.06203,0.01724 0.120038,0.04653 0.170768,0.08619 0.05069,0.03965 0.09311,0.08891 0.124771,0.144956 0.04966,0.08565 0.07109,0.184745 0.06123,0.283259 -0.0073,0.07922 -0.03376,0.15545 -0.07708,0.222167 -0.04336,0.06667 -0.102309,0.121824 -0.171705,0.160631 z"
fill="#ffffff"
id="path1027-5-2-34-5-9-4"
style="stroke-width:0.446569" />
<path
d="m 60.913533,36.500917 c -0.782745,0.0037 -1.555041,-0.179565 -2.252626,-0.534632 -0.697585,-0.355022 -1.300274,-0.871523 -1.757917,-1.506543 -0.457644,-0.634976 -0.757023,-1.370118 -0.873176,-2.1442 -0.116152,-0.774037 -0.04577,-1.564642 0.205332,-2.306035 0.251106,-0.741349 0.675614,-1.412006 1.23829,-1.956194 0.562632,-0.544144 1.247088,-0.946056 1.99643,-1.172243 0.749342,-0.226232 1.541868,-0.270174 2.311618,-0.12821 0.76975,0.14192 1.494486,0.465682 2.113833,0.94427 l -0.597107,0.765552 c -0.582326,-0.445765 -1.277723,-0.719734 -2.00755,-0.790962 -0.729871,-0.07127 -1.465147,0.06305 -2.12263,0.3878 -0.657527,0.324745 -1.211094,0.826911 -1.598179,1.449785 -0.387086,0.622829 -0.592195,1.341537 -0.592195,2.074892 0,0.73331 0.205109,1.452062 0.592195,2.074892 0.387085,0.622874 0.940652,1.12504 1.598179,1.449785 0.657483,0.3247 1.392759,0.459028 2.12263,0.3878 0.729827,-0.07123 1.425224,-0.345198 2.00755,-0.790962 l 0.597107,0.784665 c -0.854018,0.658823 -1.903187,1.014381 -2.981784,1.01054 z"
fill="#ffffff"
id="path1029-6-6-2-4-5-0"
style="stroke-width:0.446569" />
</g>
</g>
<rect
style="fill:#ca2171;fill-opacity:1;fill-rule:evenodd;stroke-width:0.264583"
id="rect53-2-9-74"
width="31.143223"
height="30.383631"
x="176.01692"
y="4.2302041"
rx="0.94948852"
ry="0.94948852" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.3615px;line-height:1.25;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="177.87691"
y="32.318737"
id="text13642-4-5-2-9-3"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';fill:#e3e4e7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
x="177.87691"
y="32.318737"
id="tspan3647-7-9-5-7-5">8301</tspan></text>
<g
id="g51357-6-3-6-1"
transform="matrix(0.75411024,0,0,0.75411024,-37.399986,-13.87572)">
<g
id="g10468-1-5-0-6-7"
transform="translate(255.49561,0.52274421)">
<path
opacity="0.7"
fill-rule="evenodd"
clip-rule="evenodd"
d="m 60.894465,32.634214 c -0.210334,7.14e-4 -0.416158,-0.06114 -0.591257,-0.17769 -0.1751,-0.116554 -0.311616,-0.282544 -0.392087,-0.476891 -0.08047,-0.194346 -0.101371,-0.408253 -0.05993,-0.614478 0.0414,-0.206225 0.143215,-0.395481 0.292503,-0.543697 0.149287,-0.148216 0.339302,-0.24865 0.545796,-0.288573 0.206538,-0.03992 0.42031,-0.0175 0.614032,0.0644 0.193766,0.0819 0.358773,0.219623 0.474077,0.395571 0.115259,0.175948 0.175591,0.382218 0.173313,0.592552 5.36e-4,0.13924 -0.02639,0.277185 -0.07922,0.40602 -0.05283,0.128835 -0.130488,0.246014 -0.228599,0.34484 -0.09811,0.09878 -0.21471,0.177332 -0.343143,0.231055 -0.128478,0.05377 -0.266244,0.08168 -0.405484,0.08217"
fill="#ffffff"
id="path1013-1-9-2-6-2-6-4"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 62.957478,32.063678 c -0.0974,-4.5e-5 -0.192561,-0.02907 -0.27339,-0.08342 -0.08078,-0.05439 -0.143571,-0.131604 -0.180279,-0.221766 -0.03671,-0.09021 -0.04573,-0.189301 -0.02586,-0.284643 0.01983,-0.09534 0.06766,-0.182602 0.13732,-0.250659 0.06967,-0.06801 0.158041,-0.113786 0.25383,-0.131336 0.09579,-0.0176 0.194659,-0.0063 0.283928,0.0326 0.08931,0.03885 0.165007,0.103426 0.217434,0.185505 0.05243,0.08208 0.07922,0.177913 0.07694,0.275265 0,0.129951 -0.05162,0.254544 -0.143482,0.346448 -0.0919,0.09186 -0.216541,0.143482 -0.346448,0.143482"
fill="#ffffff"
id="path1015-4-5-7-8-4-3-0"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.744511,32.523241 c -0.005,0.118028 -0.05604,0.229403 -0.142187,0.310232 -0.08614,0.08083 -0.200509,0.124682 -0.318627,0.122181 -0.118117,-0.0025 -0.230563,-0.05118 -0.313178,-0.135578 -0.08266,-0.0844 -0.128925,-0.19783 -0.128925,-0.315992 0,-0.118118 0.04626,-0.231546 0.128925,-0.315992 0.08261,-0.0844 0.195061,-0.133078 0.313178,-0.135579 0.118118,-0.0025 0.232484,0.04135 0.318627,0.122226 0.08614,0.08083 0.137186,0.192203 0.142187,0.310231 0.0012,0.01273 0.0012,0.02554 0,0.03827 z"
fill="#ffffff"
id="path1017-9-5-43-5-8-5-5"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 64.40043,31.263918 c -0.09449,0.01867 -0.192381,0.0091 -0.281427,-0.0276 -0.08905,-0.03666 -0.16532,-0.09874 -0.21931,-0.178494 -0.05395,-0.07976 -0.08324,-0.173625 -0.08413,-0.269906 -9.37e-4,-0.09632 0.02657,-0.190729 0.079,-0.271513 0.05247,-0.08074 0.12754,-0.144287 0.215872,-0.182602 0.08833,-0.03836 0.185995,-0.04979 0.280847,-0.03296 0.09481,0.01688 0.182557,0.06131 0.252222,0.127719 0.06971,0.06645 0.118296,0.151967 0.139686,0.24588 0.01143,0.06328 0.01143,0.128076 0,0.191355 -0.01666,0.09543 -0.06234,0.183406 -0.130844,0.251909 -0.0685,0.0685 -0.156478,0.114233 -0.25191,0.13089"
fill="#ffffff"
id="path1019-7-1-0-5-8-6-5"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 66.138699,32.470278 c -0.02233,0.127406 -0.09436,0.240745 -0.200242,0.31501 -0.105881,0.07431 -0.236949,0.103514 -0.364355,0.08119 -0.127406,-0.02233 -0.240701,-0.09436 -0.31501,-0.200241 -0.07431,-0.105882 -0.103514,-0.23695 -0.08114,-0.364356 0.01192,-0.06243 0.03604,-0.121824 0.071,-0.174876 0.03497,-0.05305 0.08003,-0.09869 0.132676,-0.134239 0.05265,-0.03559 0.111776,-0.06038 0.174072,-0.07301 0.06225,-0.01264 0.126379,-0.01286 0.18872,-6.7e-4 0.12035,0.02063 0.228643,0.08543 0.303667,0.181708 0.07507,0.09633 0.111463,0.217167 0.102085,0.338857 -0.0022,0.01527 -0.0022,0.03072 0,0.04595"
fill="#ffffff"
id="path1021-1-7-8-0-5-7-3"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.744334,31.241232 c -0.09485,0.01916 -0.19323,0.0096 -0.282589,-0.02746 -0.08936,-0.03707 -0.165632,-0.09999 -0.219042,-0.180637 -0.05345,-0.0807 -0.08154,-0.175457 -0.08078,-0.272183 7.59e-4,-0.09677 0.03037,-0.191087 0.08503,-0.270889 0.05466,-0.07985 0.131916,-0.141518 0.221855,-0.177198 0.08994,-0.03568 0.188452,-0.04368 0.282991,-0.02304 0.09449,0.02068 0.180726,0.06908 0.247577,0.138972 0.06685,0.06993 0.11133,0.158264 0.127719,0.253606 0.0039,0.04202 0.0039,0.08427 0,0.12629 -0.01041,0.106774 -0.05587,0.207074 -0.129282,0.285312 -0.07337,0.07824 -0.170589,0.129997 -0.276426,0.147234"
fill="#ffffff"
id="path1023-5-7-9-46-5-7-4"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.399672,34.161657 c -0.05926,0.105301 -0.155406,0.185013 -0.269906,0.223775 -0.1145,0.03872 -0.239271,0.03381 -0.350378,-0.01389 -0.111061,-0.04769 -0.200554,-0.134774 -0.251328,-0.244496 -0.05078,-0.109677 -0.05917,-0.23427 -0.02362,-0.349797 0.03555,-0.115528 0.112535,-0.213862 0.216184,-0.276069 0.103649,-0.06216 0.226634,-0.08387 0.345331,-0.06087 0.118654,0.023 0.224625,0.08904 0.297549,0.18546 0.07292,0.09641 0.107623,0.216362 0.09744,0.336846 -0.0017,0.07069 -0.02286,0.139598 -0.06127,0.199036 z"
fill="#ffffff"
id="path1025-5-86-6-8-8-3-1"
style="stroke-width:0.446569" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 65.22301,29.671454 c -0.112804,0.06355 -0.246149,0.07994 -0.37092,0.0455 -0.124816,-0.03443 -0.230876,-0.116822 -0.295137,-0.229223 -0.03166,-0.05609 -0.05198,-0.117805 -0.0598,-0.181709 -0.0078,-0.0639 -0.0029,-0.128701 0.01429,-0.190729 0.01724,-0.06203 0.04653,-0.120038 0.08619,-0.170768 0.03965,-0.05069 0.08891,-0.09311 0.145001,-0.124772 0.05604,-0.03166 0.11776,-0.05198 0.181664,-0.0598 0.0639,-0.0078 0.128701,-0.0029 0.190729,0.01429 0.06203,0.01724 0.120038,0.04653 0.170768,0.08619 0.05069,0.03965 0.09311,0.08891 0.124771,0.144956 0.04966,0.08565 0.07109,0.184745 0.06123,0.283259 -0.0073,0.07922 -0.03376,0.15545 -0.07708,0.222167 -0.04336,0.06667 -0.102309,0.121824 -0.171705,0.160631 z"
fill="#ffffff"
id="path1027-5-2-34-5-9-8-4"
style="stroke-width:0.446569" />
<path
d="m 60.913533,36.500917 c -0.782745,0.0037 -1.555041,-0.179565 -2.252626,-0.534632 -0.697585,-0.355022 -1.300274,-0.871523 -1.757917,-1.506543 -0.457644,-0.634976 -0.757023,-1.370118 -0.873176,-2.1442 -0.116152,-0.774037 -0.04577,-1.564642 0.205332,-2.306035 0.251106,-0.741349 0.675614,-1.412006 1.23829,-1.956194 0.562632,-0.544144 1.247088,-0.946056 1.99643,-1.172243 0.749342,-0.226232 1.541868,-0.270174 2.311618,-0.12821 0.76975,0.14192 1.494486,0.465682 2.113833,0.94427 l -0.597107,0.765552 c -0.582326,-0.445765 -1.277723,-0.719734 -2.00755,-0.790962 -0.729871,-0.07127 -1.465147,0.06305 -2.12263,0.3878 -0.657527,0.324745 -1.211094,0.826911 -1.598179,1.449785 -0.387086,0.622829 -0.592195,1.341537 -0.592195,2.074892 0,0.73331 0.205109,1.452062 0.592195,2.074892 0.387085,0.622874 0.940652,1.12504 1.598179,1.449785 0.657483,0.3247 1.392759,0.459028 2.12263,0.3878 0.729827,-0.07123 1.425224,-0.345198 2.00755,-0.790962 l 0.597107,0.784665 c -0.854018,0.658823 -1.903187,1.014381 -2.981784,1.01054 z"
fill="#ffffff"
id="path1029-6-6-2-4-5-4-8"
style="stroke-width:0.446569" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 49 KiB