# List of documents that shouldn't be included in the build.
unused_docs = [
'api_ext/rst_extension_template',
- 'vmwareapi_readme',
'installer',
]
+++ /dev/null
-#!/bin/sh
-
-BR=$1
-DEV=$2
-
-/usr/sbin/brctl delif $BR $DEV
-/sbin/ifconfig $DEV down
+++ /dev/null
-Filter Scheduler
-================
-
-The **Filter Scheduler** supports `filtering` and `weighting` to make informed
-decisions on where a new instance should be created. This Scheduler supports
-only working with Compute Nodes.
-
-Filtering
----------
-
-.. image:: /images/filteringWorkflow1.png
-
-During its work Filter Scheduler firstly makes dictionary of unfiltered hosts,
-then filters them using filter properties and finally chooses hosts for the
-requested number of instances (each time it chooses the least costed host and
-appends it to the list of selected costs).
-
-If it turns up, that it can't find candidates for the next instance, it means
-that there are no more appropriate instances locally.
-
-If we speak about `filtering` and `weighting`, their work is quite flexible
-in the Filter Scheduler. There are a lot of filtering strategies for the
-Scheduler to support. Also you can even implement `your own algorithm of
-filtering`.
-
-There are some standard filter classes to use (:mod:`cinder.scheduler.filters`):
-
-* |AllHostsFilter| - frankly speaking, this filter does no operation. It
- returns all the available hosts after its work.
-* |AvailabilityZoneFilter| - filters hosts by availability zone. It returns
- hosts with the same availability zone as the requested instance has in its
- properties.
-* |ComputeFilter| - checks that the capabilities provided by the compute
- service satisfy the extra specifications, associated with the instance type.
- It returns a list of hosts that can create instance type.
-* |CoreFilter| - filters based on CPU core utilization. It will approve host if
- it has sufficient number of CPU cores.
-* |IsolatedHostsFilter| - filter based on "image_isolated" and "host_isolated"
- flags.
-* |JsonFilter| - allows simple JSON-based grammar for selecting hosts.
-* |RamFilter| - filters hosts by their RAM. So, it returns only the hosts with
- enough available RAM.
-* |SimpleCIDRAffinityFilter| - allows to put a new instance on a host within
- the same IP block.
-* |DifferentHostFilter| - allows to put the instance on a different host from a
- set of instances.
-* |SameHostFilter| - puts the instance on the same host as another instance in
- a set of of instances.
-
-Now we can focus on these standard filter classes in details. I will pass the
-simplest ones, such as |AllHostsFilter|, |CoreFilter| and |RamFilter| are,
-because their functionality is quite simple and can be understood just from the
-code. For example class |RamFilter| has the next realization:
-
-::
-
- class RamFilter(filters.BaseHostFilter):
- """Ram Filter with over subscription flag"""
-
- def host_passes(self, host_state, filter_properties):
- """Only return hosts with sufficient available RAM."""
- instance_type = filter_properties.get('instance_type')
- requested_ram = instance_type['memory_mb']
- free_ram_mb = host_state.free_ram_mb
- return free_ram_mb * FLAGS.ram_allocation_ratio >= requested_ram
-
-Here `ram_allocation_ratio` means the virtual RAM to physical RAM allocation
-ratio (it is 1.5 by default). Really, nice and simple.
-
-Next standard filter to describe is |AvailabilityZoneFilter| and it isn't
-difficult too. This filter just looks at the availability zone of compute node
-and availability zone from the properties of the request. Each compute service
-has its own availability zone. So deployment engineers have an option to run
-scheduler with availability zones support and can configure availability zones
-on each compute host. This classes method `host_passes` returns `True` if
-availability zone mentioned in request is the same on the current compute host.
-
-|ComputeFilter| checks if host can create `instance_type`. Let's note that
-instance types describe the compute, memory and storage capacity of cinder
-compute nodes, it is the list of characteristics such as number of vCPUs,
-amount RAM and so on. So |ComputeFilter| looks at hosts' capabilities (host
-without requested specifications can't be chosen for the creating of the
-instance), checks if the hosts service is up based on last heartbeat. Finally,
-this Scheduler can verify if host satisfies some `extra specifications`
-associated with the instance type (of course if there are no such extra
-specifications, every host suits them).
-
-Now we are going to |IsolatedHostsFilter|. There can be some special hosts
-reserved for specific images. These hosts are called **isolated**. So the
-images to run on the isolated hosts are also called isolated. This Scheduler
-checks if `image_isolated` flag named in instance specifications is the same
-that the host has.
-
-|DifferentHostFilter| - its method `host_passes` returns `True` if host to
-place instance on is different from all the hosts used by set of instances.
-
-|SameHostFilter| does the opposite to what |DifferentHostFilter| does. So its
-`host_passes` returns `True` if the host we want to place instance on is one
-of the set of instances uses.
-
-|SimpleCIDRAffinityFilter| looks at the subnet mask and investigates if
-the network address of the current host is in the same sub network as it was
-defined in the request.
-
-|JsonFilter| - this filter provides the opportunity to write complicated
-queries for the hosts capabilities filtering, based on simple JSON-like syntax.
-There can be used the following operations for the host states properties:
-'=', '<', '>', 'in', '<=', '>=', that can be combined with the following
-logical operations: 'not', 'or', 'and'. For example, there is the query you can
-find in tests:
-
-::
-
- ['and',
- ['>=', '$free_ram_mb', 1024],
- ['>=', '$free_disk_mb', 200 * 1024]
- ]
-
-This query will filter all hosts with free RAM greater or equal than 1024 MB
-and at the same time with free disk space greater or equal than 200 GB.
-
-Many filters use data from `scheduler_hints`, that is defined in the moment of
-creation of the new server for the user. The only exeption for this rule is
-|JsonFilter|, that takes data in some strange difficult to understand way.
-
-To use filters you specify next two settings:
-
-* `scheduler_available_filters` - points available filters.
-* `scheduler_default_filters` - points filters to be used by default from the
- list of available ones.
-
-Host Manager sets up these flags in `cinder.conf` by default on the next values:
-
-::
-
- --scheduler_available_filters=cinder.scheduler.filters.standard_filters
- --scheduler_default_filters=RamFilter,ComputeFilter,AvailabilityZoneFilter
-
-These two lines mean, that all the filters in the `cinder.scheduler.filters`
-would be available, and the default ones would be |RamFilter|, |ComputeFilter|
-and |AvailabilityZoneFilter|.
-
-If you want to create **your own filter** you just need to inherit from
-|BaseHostFilter| and implement one method:
-`host_passes`. This method should return `True` if host passes the filter. It
-takes `host_state` (describes host) and `filter_properties` dictionary as the
-parameters.
-
-So in the end file cinder.conf should contain lines like these:
-
-::
-
- --scheduler_driver=cinder.scheduler.distributed_scheduler.FilterScheduler
- --scheduler_available_filters=cinder.scheduler.filters.standard_filters
- --scheduler_available_filters=myfilter.MyFilter
- --scheduler_default_filters=RamFilter,ComputeFilter,MyFilter
-
-As you see, flag `scheduler_driver` is set up for the `FilterSchedule`,
-available filters can be specified more than once and description of the
-default filters should not contain full paths with class names you need, only
-class names.
-
-Costs and weights
------------------
-
-Filter Scheduler uses so-called **weights** and **costs** during its work.
-
-`Costs` are the computed integers, expressing hosts measure of fitness to be
-chosen as a result of the request. Of course, costs are computed due to hosts
-characteristics compared with characteristics from the request. So trying to
-put instance on a not appropriate host (for example, trying to put really
-simple and plain instance on a high performance host) would have high cost, and
-putting instance on an appropriate host would have low.
-
-So let's find out, how does all this computing work happen.
-
-Before weighting Filter Scheduler creates the list of tuples containing weights
-and cost functions to use for weighing hosts. These functions can be got from
-cache, if this operation had been done before (this cache depends on `topic` of
-node, Filter Scheduler works with only the Compute Nodes, so the topic would be
-"`compute`" here). If there is no cost functions in cache associated with
-"compute", Filter Scheduler tries to get these cost functions from `cinder.conf`.
-Weight in tuple means weight of cost function matching with it. It also can be
-got from `cinder.conf`. After that Scheduler weights host, using selected cost
-functions. It does this using `weighted_sum` method, which parameters are:
-
-* `weighted_fns` - list of cost functions created with their weights;
-* `host_states` - hosts to be weighted;
-* `weighing_properties` - dictionary of values that can influence weights.
-
-This method firstly creates a grid of function results (it just counts value of
-each function using `host_state` and `weighing_properties`) - `scores`, where
-it would be one row per host and one function per column. The next step is to
-multiply value from the each cell of the grid by the weight of appropriate cost
-function. And the final step is to sum values in the each row - it would be the
-weight of host, described in this line. This method returns the host with the
-lowest weight - the best one.
-
-If we concentrate on cost functions, it would be important to say that we use
-`compute_fill_first_cost_fn` function by default, which simply returns hosts
-free RAM:
-
-::
-
- def compute_fill_first_cost_fn(host_state, weighing_properties):
- """More free ram = higher weight. So servers will less free ram will be
- preferred."""
- return host_state.free_ram_mb
-
-You can implement your own variant of cost function for the hosts capabilities
-you would like to mention. Using different cost functions (as you understand,
-there can be a lot of ones used in the same time) can make the chose of next
-host for the creating of the new instance flexible.
-
-These cost functions should be set up in the `cinder.conf` with the flag
-`least_cost_functions` (there can be more than one functions separated by
-commas). By default this line would look like this:
-
-::
-
- --least_cost_functions=cinder.scheduler.least_cost.compute_fill_first_cost_fn
-
-As for weights of cost functions, they also should be described in `cinder.conf`.
-The line with this description looks the following way:
-**function_name_weight**.
-
-As for default cost function, it would be: `compute_fill_first_cost_fn_weight`,
-and by default it is 1.0.
-
-::
-
- --compute_fill_first_cost_fn_weight=1.0
-
-Filter Scheduler finds local list of acceptable hosts by repeated filtering and
-weighing. Each time it chooses a host, it virtually consumes resources on it,
-so subsequent selections can adjust accordingly. It is useful if the customer
-asks for the some large amount of instances, because weight is computed for
-each instance requested.
-
-.. image:: /images/filteringWorkflow2.png
-
-In the end Filter Scheduler sorts selected hosts by their weight and provisions
-instances on them.
-
-P.S.: you can find more examples of using Filter Scheduler and standard filters
-in :mod:`cinder.tests.scheduler`.
-
-.. |AllHostsFilter| replace:: :class:`AllHostsFilter <cinder.scheduler.filters.all_hosts_filter.AllHostsFilter>`
-.. |AvailabilityZoneFilter| replace:: :class:`AvailabilityZoneFilter <cinder.scheduler.filters.availability_zone_filter.AvailabilityZoneFilter>`
-.. |BaseHostFilter| replace:: :class:`BaseHostFilter <cinder.scheduler.filters.BaseHostFilter>`
-.. |ComputeFilter| replace:: :class:`ComputeFilter <cinder.scheduler.filters.compute_filter.ComputeFilter>`
-.. |CoreFilter| replace:: :class:`CoreFilter <cinder.scheduler.filters.core_filter.CoreFilter>`
-.. |IsolatedHostsFilter| replace:: :class:`IsolatedHostsFilter <cinder.scheduler.filters.isolated_hosts_filter>`
-.. |JsonFilter| replace:: :class:`JsonFilter <cinder.scheduler.filters.json_filter.JsonFilter>`
-.. |RamFilter| replace:: :class:`RamFilter <cinder.scheduler.filters.ram_filter.RamFilter>`
-.. |SimpleCIDRAffinityFilter| replace:: :class:`SimpleCIDRAffinityFilter <cinder.scheduler.filters.affinity_filter.SimpleCIDRAffinityFilter>`
-.. |DifferentHostFilter| replace:: :class:`DifferentHostFilter <cinder.scheduler.filters.affinity_filter.DifferentHostFilter>`
-.. |SameHostFilter| replace:: :class:`SameHostFilter <cinder.scheduler.filters.affinity_filter.SameHostFilter>`
+++ /dev/null
-#!/bin/sh -e
-#
-# rc.local
-#
-# This script is executed at the end of each multiuser runlevel.
-# Make sure that the script will "exit 0" on success or any other
-# value on error.
-#
-# In order to enable or disable this script just change the execution
-# bits.
-#
-# By default this script does nothing.
-####### These lines go at the end of /etc/rc.local #######
-. /lib/lsb/init-functions
-
-echo Downloading payload from userdata
-wget http://169.254.169.254/latest/user-data -O /tmp/payload.b64
-echo Decrypting base64 payload
-openssl enc -d -base64 -in /tmp/payload.b64 -out /tmp/payload.zip
-
-mkdir -p /tmp/payload
-echo Unzipping payload file
-unzip -o /tmp/payload.zip -d /tmp/payload/
-
-# if the autorun.sh script exists, run it
-if [ -e /tmp/payload/autorun.sh ]; then
- echo Running autorun.sh
- cd /tmp/payload
- sh /tmp/payload/autorun.sh
-
-else
- echo rc.local : No autorun script to run
-fi
-
-
-exit 0
+++ /dev/null
-port 1194
-proto udp
-dev tap0
-up "/etc/openvpn/up.sh br0"
-down "/etc/openvpn/down.sh br0"
-
-persist-key
-persist-tun
-
-ca ca.crt
-cert server.crt
-key server.key # This file should be kept secret
-
-dh dh1024.pem
-ifconfig-pool-persist ipp.txt
-
-server-bridge VPN_IP DHCP_SUBNET DHCP_LOWER DHCP_UPPER
-
-client-to-client
-keepalive 10 120
-comp-lzo
-
-max-clients 1
-
-user nobody
-group nogroup
-
-persist-key
-persist-tun
-
-status openvpn-status.log
-
-verb 3
-mute 20
\ No newline at end of file
+++ /dev/null
-#!/bin/sh
-
-BR=$1
-DEV=$2
-MTU=$3
-/sbin/ifconfig $DEV mtu $MTU promisc up
-/usr/sbin/brctl addif $BR $DEV
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448819"
- height="1052.3622047"
- id="svg2"
- inkscape:label="PozadÃ"
- version="1.1"
- inkscape:version="0.47 r22583"
- sodipodi:docname="CINDER_ARCH.svg"
- inkscape:export-filename="/home/t/work/lho/CINDER_ARCH.png"
- inkscape:export-xdpi="200"
- inkscape:export-ydpi="200">
- <defs
- id="defs3">
- <marker
- inkscape:stockid="Arrow2Mstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Mstart"
- style="overflow:visible">
- <path
- id="path9345"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(0.6) translate(0,0)" />
- </marker>
- <linearGradient
- id="linearGradient12067">
- <stop
- id="stop12069"
- style="stop-color:#ad96cc;stop-opacity:1;"
- offset="0" />
- <stop
- id="stop12071"
- style="stop-color:#e9afaf;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path9324"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path9321"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8) translate(12.5,0)" />
- </marker>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern5307"
- id="pattern5310"
- patternTransform="matrix(0,5.5342899,-6.6960605,3.3480303,466.66297,104.02755)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern118687-1"
- id="pattern5307"
- patternTransform="matrix(0,5.5342899,-7.4864232,0,521.74506,337.35904)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern5286"
- id="pattern5289"
- patternTransform="matrix(0,5.5342899,-6.6960605,3.3480303,466.66297,104.02755)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern118687-1"
- id="pattern5286"
- patternTransform="matrix(0,5.5342899,-7.4864232,0,521.74506,337.35904)" />
- <linearGradient
- id="linearGradient2817">
- <stop
- style="stop-color:#cccccc;stop-opacity:1;"
- offset="0"
- id="stop2819" />
- <stop
- style="stop-color:#f6f6f1;stop-opacity:1;"
- offset="1"
- id="stop2821" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="627.46067 : 602.89763 : 1"
- inkscape:vp_y="0 : 691.34383 : 0"
- inkscape:vp_z="854.09747 : 666.1591 : 1"
- inkscape:persp3d-origin="737.53684 : 544.90176 : 1"
- id="perspective9" />
- <linearGradient
- gradientTransform="matrix(0.56832948,0,0,0.57917444,-18.000341,286.5989)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9-1-8"
- id="linearGradient4204"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <linearGradient
- gradientTransform="matrix(0.56832948,0,0,0.57917444,-18.000341,286.5989)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9-1-8"
- id="linearGradient4191"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9-1-8"
- id="linearGradient4157"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <linearGradient
- id="linearGradient69151-9-1-8">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69153-4-0-5-6" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69155-8-8-0" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9-1-8"
- id="linearGradient4102-7"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <filter
- id="filter69132-4-0-7"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur69134-0-3-4"
- stdDeviation="4.3795246" />
- </filter>
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9-1"
- id="linearGradient4102"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <linearGradient
- id="linearGradient69151-9-1">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69153-4-0-5" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69155-8-8" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9-1"
- id="linearGradient4047-3"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <filter
- id="filter69132-4-0"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur69134-0-3"
- stdDeviation="4.3795246" />
- </filter>
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9"
- id="linearGradient4047"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <linearGradient
- id="linearGradient69151-9">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69153-4-0" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69155-8" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-9"
- id="linearGradient69168-2"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <filter
- id="filter69132-4"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur69134-0"
- stdDeviation="4.3795246" />
- </filter>
- <linearGradient
- id="linearGradient69012-7">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69014-3" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69016-4" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69012-7"
- id="linearGradient69047-4"
- y2="327.05923"
- x2="558.43054"
- y1="91.76548"
- x1="614.901" />
- <linearGradient
- id="linearGradient68896-7">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop68898-9" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop68900-8" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68896-7"
- id="linearGradient68931-9"
- y2="311.37299"
- x2="644.18201"
- y1="30.066221"
- x1="646.27356" />
- <linearGradient
- id="linearGradient68881-9">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:1"
- id="stop68883-3" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0"
- id="stop68885-5" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68881-9"
- id="linearGradient68929-1"
- y2="222.48422"
- x2="590.84882"
- y1="349.01999"
- x1="546.92725" />
- <linearGradient
- id="linearGradient69151-4">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69153-4" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69155-2" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151-4"
- id="linearGradient3539"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <filter
- id="filter69132-2"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur69134-4"
- stdDeviation="4.3795246" />
- </filter>
- <linearGradient
- id="linearGradient69185-1">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop69187-2" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop69189-5" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(644.80647,-1048.55)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69185-1"
- id="linearGradient3594"
- y2="223.52998"
- x2="334.64001"
- y1="-60.91404"
- x1="403.65952" />
- <filter
- id="filter69132-1"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur69134-7"
- stdDeviation="4.3795246" />
- </filter>
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68896"
- id="linearGradient69890"
- y2="311.37299"
- x2="644.18201"
- y1="30.066221"
- x1="646.27356" />
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68881"
- id="linearGradient69888"
- y2="222.48422"
- x2="590.84882"
- y1="349.01999"
- x1="546.92725" />
- <linearGradient
- gradientTransform="translate(62.745003,105.62076)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69874"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(130.71876,-5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69872"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-3.2766244e-6,-2.0915001)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69870"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-3.2766244e-6,-2.0915001)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69406"
- id="linearGradient69868"
- y2="258.03973"
- x2="392.15628"
- y1="27.974716"
- x1="260.39178" />
- <linearGradient
- gradientTransform="translate(-336.73152,-126.53575)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69828"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-268.75776,-237.38526)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69826"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-399.47652,-234.24801)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69824"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-399.47652,-234.24801)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69406"
- id="linearGradient69822"
- y2="258.03973"
- x2="392.15628"
- y1="27.974716"
- x1="260.39178" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69012"
- id="linearGradient69780"
- y2="327.05923"
- x2="558.43054"
- y1="91.76548"
- x1="614.901" />
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151"
- id="linearGradient69768"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <linearGradient
- gradientTransform="translate(81.5685,519.73778)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69733"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(149.54225,408.88827)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69731"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(18.823494,412.02552)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69729"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(18.823494,412.02552)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69406"
- id="linearGradient69727"
- y2="258.03973"
- x2="392.15628"
- y1="27.974716"
- x1="260.39178" />
- <linearGradient
- gradientTransform="translate(62.745003,105.62076)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69652"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(130.71876,-5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69650"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-3.276625e-6,-2.0915001)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69648"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-3.276625e-6,-2.0915001)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69406"
- id="linearGradient69646"
- y2="258.03973"
- x2="392.15628"
- y1="27.974716"
- x1="260.39178" />
- <linearGradient
- gradientTransform="translate(-336.73152,-126.53575)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69487"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-268.75776,-237.38526)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69485"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-399.47652,-234.24801)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69425"
- id="linearGradient69483"
- y2="273.72598"
- x2="246.79701"
- y1="183.79149"
- x1="236.33952" />
- <linearGradient
- gradientTransform="translate(-399.47652,-234.24801)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69406"
- id="linearGradient69481"
- y2="258.03973"
- x2="392.15628"
- y1="27.974716"
- x1="260.39178" />
- <filter
- id="filter69400"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur69402"
- stdDeviation="4.8539841" />
- </filter>
- <linearGradient
- gradientTransform="translate(644.80647,-1048.55)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69185"
- id="linearGradient69203"
- y2="223.52998"
- x2="334.64001"
- y1="-60.91404"
- x1="403.65952" />
- <linearGradient
- gradientTransform="matrix(0.98127514,0,0,1,3.1523805,5.2287503)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69151"
- id="linearGradient69168"
- y2="300.91547"
- x2="211.24152"
- y1="-19.084036"
- x1="355.55502" />
- <filter
- id="filter69132"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur69134"
- stdDeviation="4.3795246" />
- </filter>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69012"
- id="linearGradient69047"
- y2="327.05923"
- x2="558.43054"
- y1="91.76548"
- x1="614.901" />
- <linearGradient
- gradientTransform="translate(238.43101,-292.81002)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient69012"
- id="linearGradient69039"
- y2="327.05923"
- x2="558.43054"
- y1="91.76548"
- x1="614.901" />
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68896"
- id="linearGradient68931"
- y2="311.37299"
- x2="644.18201"
- y1="30.066221"
- x1="646.27356" />
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68881"
- id="linearGradient68929"
- y2="222.48422"
- x2="590.84882"
- y1="349.01999"
- x1="546.92725" />
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68896"
- id="linearGradient68902"
- y2="311.37299"
- x2="644.18201"
- y1="30.066221"
- x1="646.27356" />
- <linearGradient
- gradientTransform="translate(-69.019504,213.33301)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient68881"
- id="linearGradient68889"
- y2="222.48422"
- x2="590.84882"
- y1="349.01999"
- x1="546.92725" />
- <linearGradient
- gradientTransform="matrix(0.94766,0,0,0.93975812,-498.89341,-720.21802)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient63927"
- id="linearGradient65727"
- y2="661.03473"
- x2="370.64758"
- y1="280.84256"
- x1="407.23511" />
- <linearGradient
- id="linearGradient63927">
- <stop
- offset="0"
- style="stop-color:#e6e6e6;stop-opacity:1"
- id="stop63929" />
- <stop
- offset="1"
- style="stop-color:#e6e6e6;stop-opacity:0"
- id="stop63931" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient62493"
- id="linearGradient63086"
- y2="-23.348454"
- x2="-928.76868"
- y1="-135.02313"
- x1="-963.9256" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient62493"
- id="linearGradient62995"
- y2="-23.348454"
- x2="-928.76868"
- y1="-135.02313"
- x1="-963.9256" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient62493"
- id="linearGradient62499"
- y2="-23.348454"
- x2="-928.76868"
- y1="-135.02313"
- x1="-963.9256" />
- <filter
- id="filter25721"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology25723" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur25725" />
- <feComposite
- id="feComposite25727"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter25793"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology25795" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur25797" />
- <feComposite
- id="feComposite25799"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter25817"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology25819" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur25821" />
- <feComposite
- id="feComposite25823"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter25849"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology25851" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur25853" />
- <feComposite
- id="feComposite25855"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter25961"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology25963" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur25965" />
- <feComposite
- id="feComposite25967"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter45689"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology45691" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur45693" />
- <feComposite
- id="feComposite45695"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix57073"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology57075" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur57077" />
- <feComposite
- id="feComposite57079"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter46185"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology46187" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur46189" />
- <feComposite
- id="feComposite46191"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix57569"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology57571" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur57573" />
- <feComposite
- id="feComposite57575"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter46329"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology46331" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur46333" />
- <feComposite
- id="feComposite46335"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix57713"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology57715" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur57717" />
- <feComposite
- id="feComposite57719"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter46345"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology46347" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur46349" />
- <feComposite
- id="feComposite46351"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix57729"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology57731" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur57733" />
- <feComposite
- id="feComposite57735"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter46457"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology46459" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur46461" />
- <feComposite
- id="feComposite46463"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix57841"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology57843" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur57845" />
- <feComposite
- id="feComposite57847"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter28937"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology28939" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur28941" />
- <feComposite
- id="feComposite28943"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix58409"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology58411" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58413" />
- <feComposite
- id="feComposite58415"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter28945"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology28947" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur28949" />
- <feComposite
- id="feComposite28951"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix58417"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology58419" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58421" />
- <feComposite
- id="feComposite58423"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter28969"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology28971" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur28973" />
- <feComposite
- id="feComposite28975"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix58441"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology58443" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58445" />
- <feComposite
- id="feComposite58447"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter28993"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology28995" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur28997" />
- <feComposite
- id="feComposite28999"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix58465"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology58467" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58469" />
- <feComposite
- id="feComposite58471"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter29001"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology29003" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur29005" />
- <feComposite
- id="feComposite29007"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix58473"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology58475" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58477" />
- <feComposite
- id="feComposite58479"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter58481"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology58483" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58485" />
- <feComposite
- id="feComposite58487"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter58489"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology58491" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58493" />
- <feComposite
- id="feComposite58495"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter58505"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology58507" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58509" />
- <feComposite
- id="feComposite58511"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter29017"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology29019" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur29021" />
- <feComposite
- id="feComposite29023"
- result="fbSourceGraphic"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- <feColorMatrix
- id="feColorMatrix58513"
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
- in="fbSourceGraphic"
- result="fbSourceGraphicAlpha" />
- <feMorphology
- result="result0"
- in="fbSourceGraphic"
- radius="4"
- id="feMorphology58515" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58517" />
- <feComposite
- id="feComposite58519"
- in="fbSourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <filter
- id="filter58545"
- color-interpolation-filters="sRGB"
- height="1"
- width="1"
- y="0"
- x="0">
- <feMorphology
- result="result0"
- in="SourceGraphic"
- radius="4"
- id="feMorphology58547" />
- <feGaussianBlur
- result="result91"
- stdDeviation="8"
- in="result0"
- id="feGaussianBlur58549" />
- <feComposite
- id="feComposite58551"
- in="SourceGraphic"
- operator="in"
- in2="result91" />
- </filter>
- <linearGradient
- id="linearGradient62493">
- <stop
- offset="0"
- style="stop-color:#686762;stop-opacity:1"
- id="stop62495" />
- <stop
- offset="1"
- style="stop-color:#686762;stop-opacity:0"
- id="stop62497" />
- </linearGradient>
- <linearGradient
- id="linearGradient68881">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:1"
- id="stop68883" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0"
- id="stop68885" />
- </linearGradient>
- <linearGradient
- id="linearGradient68896">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop68898" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop68900" />
- </linearGradient>
- <linearGradient
- id="linearGradient69012">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69014" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69016" />
- </linearGradient>
- <linearGradient
- id="linearGradient69151">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69153" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69155" />
- </linearGradient>
- <linearGradient
- id="linearGradient69185">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop69187" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop69189" />
- </linearGradient>
- <linearGradient
- id="linearGradient69406">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop69408" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop69410" />
- </linearGradient>
- <linearGradient
- id="linearGradient69425">
- <stop
- offset="0"
- style="stop-color:#f9f9f9;stop-opacity:1"
- id="stop69427" />
- <stop
- offset="1"
- style="stop-color:#f9f9f9;stop-opacity:0"
- id="stop69429" />
- </linearGradient>
- <inkscape:perspective
- id="perspective3330"
- inkscape:persp3d-origin="400 : 200 : 1"
- inkscape:vp_z="800 : 300 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 300 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- gradientTransform="translate(-479.99928,518.99082)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4716"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4260"
- id="linearGradient4714"
- y2="678.4082"
- x2="159.7227"
- y1="921.79523"
- x1="160.99034" />
- <linearGradient
- gradientTransform="translate(-0.44817674,684.36872)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4698"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4296"
- id="linearGradient4696"
- y2="1122.0824"
- x2="467.75937"
- y1="1307.158"
- x1="475.3652" />
- <linearGradient
- gradientTransform="translate(0.44818046,519.439)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4694"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4242"
- id="linearGradient4692"
- y2="698.69049"
- x2="794.81061"
- y1="929.40106"
- x1="807.487" />
- <linearGradient
- gradientTransform="translate(-0.44817674,341.96027)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4690"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4224"
- id="linearGradient4688"
- y2="481.92395"
- x2="785.93713"
- y1="724.04327"
- x1="791.00769" />
- <linearGradient
- gradientTransform="translate(-239.32737,342.40845)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4686"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4090"
- id="linearGradient4684"
- y2="749.39606"
- x2="546.35303"
- y1="1037.1505"
- x1="557.76184" />
- <linearGradient
- gradientTransform="translate(-239.77555,519.439)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4682"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4278"
- id="linearGradient4680"
- y2="684.74646"
- x2="458.88586"
- y1="839.39856"
- x1="470.29462" />
- <linearGradient
- gradientTransform="translate(-240.22373,684.8169)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4678"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4198"
- id="linearGradient4676"
- y2="892.63947"
- x2="527.33844"
- y1="1104.3354"
- x1="540.01483" />
- <linearGradient
- gradientTransform="translate(-479.5511,684.36872)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4674"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientTransform="translate(-46.902699,135.63753)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4180"
- id="linearGradient4672"
- y2="872.35724"
- x2="215.49889"
- y1="1106.8707"
- x1="209.16068" />
- <linearGradient
- gradientTransform="translate(-479.99928,518.99082)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4670"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4260"
- id="linearGradient4668"
- y2="678.4082"
- x2="159.7227"
- y1="921.79523"
- x1="160.99034" />
- <linearGradient
- gradientTransform="translate(-480.44746,342.85663)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4666"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4018"
- id="linearGradient4664"
- y2="771.80237"
- x2="186.44229"
- y1="1007.5443"
- x1="187.33865" />
- <linearGradient
- gradientTransform="translate(-479.10292,169.85969)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4662"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4074"
- id="linearGradient4660"
- y2="295.58078"
- x2="536.21191"
- y1="541.50305"
- x1="537.47955" />
- <linearGradient
- gradientTransform="translate(-480.44746,1.3445382)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4658"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientTransform="translate(145.20987,64.537718)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3948"
- id="linearGradient4656"
- y2="140.76692"
- x2="51.988716"
- y1="0.93518841"
- x1="57.366859" />
- <linearGradient
- gradientTransform="translate(-239.77555,2.3885373e-6)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4654"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4066"
- id="linearGradient4652"
- y2="26.841015"
- x2="547.62073"
- y1="271.49564"
- x1="543.81781" />
- <linearGradient
- gradientTransform="translate(-239.32737,170.30787)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4650"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4000"
- id="linearGradient4648"
- y2="521.71875"
- x2="220.50388"
- y1="752.08252"
- x1="228.57109" />
- <linearGradient
- gradientTransform="translate(0,169.41151)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4646"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4082"
- id="linearGradient4644"
- y2="550.37653"
- x2="538.74719"
- y1="802.63702"
- x1="548.88831" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371"
- id="linearGradient4642"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- gradientTransform="matrix(0.77146086,0,0,0.77146086,473.62706,-225.83335)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3982"
- id="linearGradient4640"
- y2="260.87878"
- x2="198.9913"
- y1="542.3349"
- x1="199.88765" />
- <filter
- id="filter3968"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- stdDeviation="3.3747421"
- id="feGaussianBlur3970" />
- </filter>
- <linearGradient
- id="linearGradient3948">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop3950" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop3952" />
- </linearGradient>
- <linearGradient
- id="linearGradient3982">
- <stop
- offset="0"
- style="stop-color:#d40000;stop-opacity:1"
- id="stop3984" />
- <stop
- offset="1"
- style="stop-color:#d40000;stop-opacity:0"
- id="stop3986" />
- </linearGradient>
- <linearGradient
- id="linearGradient4000">
- <stop
- offset="0"
- style="stop-color:#ff6600;stop-opacity:1"
- id="stop4002" />
- <stop
- offset="1"
- style="stop-color:#ff6600;stop-opacity:0"
- id="stop4004" />
- </linearGradient>
- <linearGradient
- id="linearGradient4018">
- <stop
- offset="0"
- style="stop-color:#ffd42a;stop-opacity:1"
- id="stop4020" />
- <stop
- offset="1"
- style="stop-color:#ffd42a;stop-opacity:0"
- id="stop4022" />
- </linearGradient>
- <linearGradient
- id="linearGradient4066">
- <stop
- offset="0"
- style="stop-color:#333333;stop-opacity:1"
- id="stop4068" />
- <stop
- offset="1"
- style="stop-color:#333333;stop-opacity:0"
- id="stop4070" />
- </linearGradient>
- <linearGradient
- id="linearGradient4074">
- <stop
- offset="0"
- style="stop-color:#aad400;stop-opacity:1"
- id="stop4076" />
- <stop
- offset="1"
- style="stop-color:#aad400;stop-opacity:0"
- id="stop4078" />
- </linearGradient>
- <linearGradient
- id="linearGradient4082">
- <stop
- offset="0"
- style="stop-color:#0000d4;stop-opacity:1"
- id="stop4084" />
- <stop
- offset="1"
- style="stop-color:#0000d4;stop-opacity:0"
- id="stop4086" />
- </linearGradient>
- <linearGradient
- id="linearGradient4090">
- <stop
- offset="0"
- style="stop-color:#ff00cc;stop-opacity:1"
- id="stop4092" />
- <stop
- offset="1"
- style="stop-color:#ff00cc;stop-opacity:0"
- id="stop4094" />
- </linearGradient>
- <linearGradient
- id="linearGradient4180">
- <stop
- offset="0"
- style="stop-color:#d40055;stop-opacity:1"
- id="stop4182" />
- <stop
- offset="1"
- style="stop-color:#d40055;stop-opacity:0"
- id="stop4184" />
- </linearGradient>
- <linearGradient
- id="linearGradient4198">
- <stop
- offset="0"
- style="stop-color:#cc00ff;stop-opacity:1"
- id="stop4200" />
- <stop
- offset="1"
- style="stop-color:#cc00ff;stop-opacity:0"
- id="stop4202" />
- </linearGradient>
- <linearGradient
- id="linearGradient4224">
- <stop
- offset="0"
- style="stop-color:#00ffcc;stop-opacity:1"
- id="stop4226" />
- <stop
- offset="1"
- style="stop-color:#00ffcc;stop-opacity:0"
- id="stop4228" />
- </linearGradient>
- <linearGradient
- id="linearGradient4242">
- <stop
- offset="0"
- style="stop-color:#0066ff;stop-opacity:1"
- id="stop4244" />
- <stop
- offset="1"
- style="stop-color:#0066ff;stop-opacity:0"
- id="stop4246" />
- </linearGradient>
- <linearGradient
- id="linearGradient4260">
- <stop
- offset="0"
- style="stop-color:#00d400;stop-opacity:1"
- id="stop4262" />
- <stop
- offset="1"
- style="stop-color:#00d400;stop-opacity:0"
- id="stop4264" />
- </linearGradient>
- <linearGradient
- id="linearGradient4278">
- <stop
- offset="0"
- style="stop-color:#ad96cc;stop-opacity:0.5933333;"
- id="stop4280" />
- <stop
- offset="1"
- style="stop-color:#ccff00;stop-opacity:0"
- id="stop4282" />
- </linearGradient>
- <linearGradient
- id="linearGradient4296">
- <stop
- offset="0"
- style="stop-color:#a02c2c;stop-opacity:1"
- id="stop4298" />
- <stop
- offset="1"
- style="stop-color:#a02c2c;stop-opacity:0"
- id="stop4300" />
- </linearGradient>
- <linearGradient
- id="linearGradient4371">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4373" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop4375" />
- </linearGradient>
- <inkscape:perspective
- id="perspective3871"
- inkscape:persp3d-origin="450 : 266.66667 : 1"
- inkscape:vp_z="900 : 400 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 400 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective2403" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective2390" />
- <inkscape:perspective
- id="perspective10"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective19261"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <radialGradient
- r="3"
- fy="265.86209"
- fx="97.48214"
- cy="265.86209"
- cx="97.48214"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient14784"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient2202">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206" />
- </linearGradient>
- <radialGradient
- r="3"
- fy="265.86209"
- fx="97.48214"
- cy="265.86209"
- cx="97.48214"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient4338"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <radialGradient
- r="3"
- fy="265.86209"
- fx="97.48214"
- cy="265.86209"
- cx="97.48214"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3297"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4318"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient4320"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Strips1_1"
- id="pattern118687"
- patternTransform="matrix(0,5.5342899,-7.4864232,0,521.74506,337.35904)" />
- <pattern
- inkscape:stockid="Stripes 1:1"
- id="Strips1_1"
- patternTransform="matrix(0,5.5342899,-7.4864229,0,31.668795,357.00572)"
- height="1"
- width="2"
- patternUnits="userSpaceOnUse"
- inkscape:collect="always">
- <rect
- id="rect5260"
- height="2"
- width="1"
- y="-0.5"
- x="0"
- style="fill:black;stroke:none" />
- </pattern>
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4322"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient4324"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <radialGradient
- r="3"
- fy="265.86209"
- fx="97.48214"
- cy="265.86209"
- cx="97.48214"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3277"
- xlink:href="#linearGradient2202"
- inkscape:collect="always" />
- <linearGradient
- y2="387.43924"
- x2="332.02466"
- y1="369.97995"
- x1="314.56537"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4330"
- xlink:href="#linearGradient4886"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4886">
- <stop
- id="stop4888"
- offset="0.0000000"
- style="stop-color:#1c97e1;stop-opacity:1.0000000;" />
- <stop
- id="stop4890"
- offset="1.0000000"
- style="stop-color:#006798;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="390.78342"
- x2="311.27377"
- y1="377.9527"
- x1="302.73621"
- gradientTransform="matrix(1.9519,0,0,1.84182,-297.02235,74.95322)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4332"
- xlink:href="#linearGradient4554"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4554">
- <stop
- id="stop4556"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop4558"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4262"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4068">
- <stop
- id="stop4070-3"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop4490"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop4492"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop4072"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4264"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4266"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4268"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4270"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4272"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4274"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4276"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4278-2"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4280"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4282"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4284"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4286"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4288"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4290"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4292"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4294"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4296-1"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4298"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4300"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4302"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4304"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4306"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4308"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4310"
- xlink:href="#linearGradient4068"
- inkscape:collect="always" />
- <radialGradient
- r="24.998358"
- fy="571.95715"
- fx="384.69696"
- cy="571.95715"
- cx="384.69696"
- gradientUnits="userSpaceOnUse"
- id="radialGradient4312"
- xlink:href="#linearGradient5178"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient5178">
- <stop
- id="stop5180"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop5186"
- offset="0.89021850"
- style="stop-color:#ffffff;stop-opacity:0.49803922;" />
- <stop
- id="stop5188"
- offset="0.95396262"
- style="stop-color:#ffffff;stop-opacity:0.24705882;" />
- <stop
- id="stop5182"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <radialGradient
- r="24.998358"
- fy="571.95715"
- fx="384.69696"
- cy="571.95715"
- cx="384.69696"
- gradientUnits="userSpaceOnUse"
- id="radialGradient7730"
- xlink:href="#linearGradient5178-1"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7728"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7726"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7724"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7722"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7720"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7718"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7716"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7714"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7712"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7710"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7708"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7706"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7704"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7702"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7700"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7698"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7696"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7694"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7692"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7690"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7688"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7686"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7684"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7682"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7680"
- xlink:href="#linearGradient4068-8"
- inkscape:collect="always" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient114975">
- <stop
- style="stop-color:#3465a4;stop-opacity:1"
- offset="0"
- id="stop114977" />
- <stop
- style="stop-color:#3465a4;stop-opacity:0;"
- offset="1"
- id="stop114979" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient114953">
- <stop
- style="stop-color:#191a19;stop-opacity:1;"
- offset="0"
- id="stop114955" />
- <stop
- style="stop-color:#191a19;stop-opacity:0;"
- offset="1"
- id="stop114957" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient114931">
- <stop
- style="stop-color:#2e3436;stop-opacity:1;"
- offset="0"
- id="stop114933" />
- <stop
- style="stop-color:#2e3436;stop-opacity:0;"
- offset="1"
- id="stop114935" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- xlink:href="#Strips1_1-9"
- id="pattern118687-1"
- patternTransform="matrix(0,5.5342899,-7.4864232,0,521.74506,337.35904)" />
- <pattern
- inkscape:stockid="Stripes 1:1"
- id="Strips1_1-9"
- patternTransform="matrix(0,5.5342899,-7.4864229,0,31.668795,357.00572)"
- height="1"
- width="2"
- patternUnits="userSpaceOnUse"
- inkscape:collect="always">
- <rect
- id="rect5260-2"
- height="2"
- width="1"
- y="-0.5"
- x="0"
- style="fill:black;stroke:none" />
- </pattern>
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient117519"
- xlink:href="#linearGradient2202-9"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient117517"
- xlink:href="#linearGradient2202-9"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient2202-9">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-9" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4886-9">
- <stop
- id="stop4888-0"
- offset="0.0000000"
- style="stop-color:#1c97e1;stop-opacity:1.0000000;" />
- <stop
- id="stop4890-0"
- offset="1.0000000"
- style="stop-color:#006798;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4554-4">
- <stop
- id="stop4556-5"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop4558-0"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4738">
- <stop
- id="stop4740"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.72656250;" />
- <stop
- id="stop4742"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="387.43924"
- x2="332.02466"
- y1="369.97995"
- x1="314.56537"
- gradientUnits="userSpaceOnUse"
- id="linearGradient109180"
- xlink:href="#linearGradient4568"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4568">
- <stop
- id="stop4570"
- offset="0"
- style="stop-color:#e12b1c;stop-opacity:1;" />
- <stop
- id="stop4572"
- offset="1.0000000"
- style="stop-color:#980b00;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="390.49332"
- x2="414.38986"
- y1="376.13748"
- x1="401.93405"
- gradientTransform="matrix(0.999946,0,0,1.000054,-175.79715,404.73102)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient109182"
- xlink:href="#linearGradient4738"
- inkscape:collect="always" />
- <linearGradient
- y2="390.78342"
- x2="311.27377"
- y1="377.9527"
- x1="302.73621"
- gradientTransform="matrix(1.9519,0,0,1.84182,-382.19925,74.95322)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient109184"
- xlink:href="#linearGradient4554-4"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4068-8">
- <stop
- id="stop4070-0"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop4490-3"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop4492-8"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop4072-3"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5178-1">
- <stop
- id="stop5180-3"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop5186-7"
- offset="0.89021850"
- style="stop-color:#ffffff;stop-opacity:0.49803922;" />
- <stop
- id="stop5188-7"
- offset="0.95396262"
- style="stop-color:#ffffff;stop-opacity:0.24705882;" />
- <stop
- id="stop5182-9"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <inkscape:perspective
- id="perspective838"
- inkscape:persp3d-origin="750.79663 : 307.92326 : 1"
- inkscape:vp_z="1501.5933 : 461.88489 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 461.88489 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective19535"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- y2="683.92651"
- x2="482.37622"
- y1="298.85724"
- x1="332.67328"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14778"
- xlink:href="#linearGradient114931-9"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient114931-9"
- inkscape:collect="always">
- <stop
- id="stop114933-4"
- offset="0"
- style="stop-color:#2e3436;stop-opacity:1;" />
- <stop
- id="stop114935-5"
- offset="1"
- style="stop-color:#2e3436;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- y2="399.49088"
- x2="335.66339"
- y1="237.31267"
- x1="218.73267"
- gradientTransform="matrix(1.1048951,0,0,1.1048951,67.985466,73.286385)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14780"
- xlink:href="#linearGradient114953-9"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient114953-9"
- inkscape:collect="always">
- <stop
- id="stop114955-4"
- offset="0"
- style="stop-color:#191a19;stop-opacity:1;" />
- <stop
- id="stop114957-2"
- offset="1"
- style="stop-color:#191a19;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- y2="166.61961"
- x2="236.19801"
- y1="224.83743"
- x1="273.62375"
- gradientTransform="matrix(0.9983345,0,0,1.0398445,80.706264,173.27788)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14782"
- xlink:href="#linearGradient114975-9"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient114975-9"
- inkscape:collect="always">
- <stop
- id="stop114977-3"
- offset="0"
- style="stop-color:#3465a4;stop-opacity:1" />
- <stop
- id="stop114979-1"
- offset="1"
- style="stop-color:#3465a4;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14847"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient2202-1">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-0" />
- </linearGradient>
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient14849"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14786"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient14788"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- y2="-321.47269"
- x2="909.21588"
- y1="-320.49728"
- x1="838.01013"
- gradientTransform="translate(32.697924,534.73628)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14790"
- xlink:href="#linearGradient4886-2"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4886-2">
- <stop
- id="stop4888-4"
- offset="0.0000000"
- style="stop-color:#1c97e1;stop-opacity:1.0000000;" />
- <stop
- id="stop4890-5"
- offset="1.0000000"
- style="stop-color:#006798;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="258.76886"
- x2="1333.0073"
- y1="237.96057"
- x1="1313.4297"
- gradientTransform="matrix(0.638597,0,0,1.565933,-355.04905,402.57752)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14792"
- xlink:href="#linearGradient4738-8"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4738-8">
- <stop
- id="stop4740-4"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.72656250;" />
- <stop
- id="stop4742-8"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="400.04047"
- x2="832.68341"
- y1="362.58139"
- x1="808.12592"
- gradientTransform="translate(-354.99455,401.23652)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14794"
- xlink:href="#linearGradient4554-2"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4554-2">
- <stop
- id="stop4556-9"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop4558-2"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14888"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient14890"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="linearGradient4176"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="radialGradient4178"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="linearGradient3512"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="radialGradient3514"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="linearGradient3462"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="radialGradient3464"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3434"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3436"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- y2="487.91693"
- x2="-124.93314"
- y1="472.52106"
- x1="-137.36061"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3438"
- xlink:href="#linearGradient414"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient414">
- <stop
- id="stop415"
- offset="0.00000000"
- style="stop-color:#ffd800;stop-opacity:1.0000000;" />
- <stop
- id="stop416"
- offset="1.0000000"
- style="stop-color:#e77900;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3492"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3494"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3374"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3376"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4208"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient4210"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <linearGradient
- y2="387.43924"
- x2="332.02466"
- y1="369.97995"
- x1="314.56537"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4238"
- xlink:href="#linearGradient4568-1"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4568-1">
- <stop
- id="stop4570-6"
- offset="0"
- style="stop-color:#e12b1c;stop-opacity:1;" />
- <stop
- id="stop4572-5"
- offset="1.0000000"
- style="stop-color:#980b00;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="390.49332"
- x2="414.38986"
- y1="376.13748"
- x1="401.93405"
- gradientTransform="matrix(0.999946,0,0,1.000054,-175.79715,404.73102)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4240"
- xlink:href="#linearGradient4738-8"
- inkscape:collect="always" />
- <linearGradient
- y2="390.78342"
- x2="311.27377"
- y1="377.9527"
- x1="302.73621"
- gradientTransform="matrix(1.9519,0,0,1.84182,-382.19925,74.95322)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4242-6"
- xlink:href="#linearGradient4554-2"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3332"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3334"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <radialGradient
- r="199.63403"
- fy="1736.9607"
- fx="127.83543"
- cy="1736.9607"
- cx="127.83543"
- gradientTransform="matrix(1.105165,1.228066,-0.8683345,0.7814343,1473.1011,172.79095)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3336"
- xlink:href="#linearGradient3175"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient3175">
- <stop
- id="stop3177"
- offset="0"
- style="stop-color:#41a0ee;stop-opacity:1;" />
- <stop
- style="stop-color:#378be4;stop-opacity:1;"
- offset="0.64377683"
- id="stop3191" />
- <stop
- id="stop3179"
- offset="1"
- style="stop-color:#2d77db;stop-opacity:1;" />
- </linearGradient>
- <radialGradient
- r="195.94841"
- fy="1808.0941"
- fx="65.333183"
- cy="1808.0941"
- cx="65.333183"
- gradientTransform="matrix(0.5002429,1.4674024,-1.2539857,0.4274882,2324.404,828.29789)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3338"
- xlink:href="#linearGradient3159"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient3159">
- <stop
- id="stop3161"
- offset="0"
- style="stop-color:#b0dc18;stop-opacity:1;" />
- <stop
- style="stop-color:#3ea20c;stop-opacity:1;"
- offset="0.56223178"
- id="stop3187" />
- <stop
- id="stop3163"
- offset="1"
- style="stop-color:#006900;stop-opacity:1;" />
- </linearGradient>
- <radialGradient
- r="199.13403"
- fy="1679.6958"
- fx="13.846332"
- cy="1679.6958"
- cx="13.846332"
- gradientTransform="matrix(0.1992334,1.195744,-1.1829727,0.1971052,1996.7215,1257.5875)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3340"
- xlink:href="#linearGradient3195"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient3195">
- <stop
- id="stop3199"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop3201" />
- </linearGradient>
- <radialGradient
- r="199.13403"
- fy="1673.207"
- fx="5.8389463"
- cy="1673.207"
- cx="5.8389463"
- gradientTransform="matrix(-0.1087803,1.4752039,-1.9297648,-0.1423,3255.8728,1823.5882)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3342"
- xlink:href="#linearGradient3273"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient3273">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop3275" />
- <stop
- id="stop3289"
- offset="0.5"
- style="stop-color:#ffffff;stop-opacity:0;" />
- <stop
- style="stop-color:#000000;stop-opacity:0.21602787;"
- offset="1"
- id="stop3283" />
- <stop
- id="stop3277"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.59233451;" />
- </linearGradient>
- <radialGradient
- r="199.13403"
- fy="1676.9956"
- fx="-90.184074"
- cy="1676.9956"
- cx="-90.184074"
- gradientTransform="matrix(0.466646,1.4600162,-1.3948135,0.4458064,2272.5859,931.37623)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3344"
- xlink:href="#linearGradient3180"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient3180">
- <stop
- id="stop3186"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop3188" />
- </linearGradient>
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4216"
- xlink:href="#linearGradient2202-1"
- inkscape:collect="always" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6042"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy"
- id="pattern6024"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6040"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6038"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6036"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6034"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6032"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6030"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024"
- id="pattern6028"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3982"
- id="linearGradient8849"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.77146086,0,0,0.77146086,473.62706,-225.83335)"
- x1="199.88765"
- y1="542.3349"
- x2="198.9913"
- y2="260.87878" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient8851"
- gradientUnits="userSpaceOnUse"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4082"
- id="linearGradient8853"
- gradientUnits="userSpaceOnUse"
- x1="548.88831"
- y1="802.63702"
- x2="538.74719"
- y2="550.37653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient8855"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0,169.41151)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4000"
- id="linearGradient8857"
- gradientUnits="userSpaceOnUse"
- x1="228.57109"
- y1="752.08252"
- x2="220.50388"
- y2="521.71875" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient8859"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-239.32737,170.30787)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4066"
- id="linearGradient8861"
- gradientUnits="userSpaceOnUse"
- x1="543.81781"
- y1="271.49564"
- x2="547.62073"
- y2="26.841015" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient8863"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-239.77555,2.3885373e-6)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3948"
- id="linearGradient8976"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(145.20987,64.537718)"
- x1="57.366859"
- y1="0.93518841"
- x2="51.988716"
- y2="140.76692" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient8978"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-480.44746,1.3445382)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5072"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5082"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5096"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5106"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5123"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5133"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5149"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5159"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5178"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5191"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.17998545,0,0,0.14918688,502.1893,-24.02897)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5194"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.28503107,0,0,0.19252569,407.7236,-73.15871)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5197"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.34178919,0,0,0.23086363,396.3144,-88.95173)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5200"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.25086058,0,0,0.16944441,406.7992,-32.10751)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5203"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.26134748,0,0,0.17652771,412.2819,-25.25605)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5206"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.10450367,-0.15138107,-0.14618876,0.07058814,668.335,91.43843)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5209"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.15523199,-0.22486363,-0.21715137,0.10485269,738.2325,88.88709)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5212"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.13850655,-0.20063507,-0.19375423,0.09355524,722.8067,97.77468)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5215"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.11821823,-0.17124787,-0.16537317,0.07985124,677.6847,122.0894)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5218"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.09649358,-0.13977614,-0.1349824,0.06517688,635.5166,142.1226)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5221"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.16528031,-0.23941723,0.23120639,-0.11163907,265.1906,314.0698)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.17347291,-0.25128512,0.24266582,-0.117172,239.7257,330.3731)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5227"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.17787482,-0.25766417,0.24882648,-0.12014721,225.1178,318.3329)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5230"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.16712798,-0.24209591,0.23379201,-0.11288754,227.7161,329.1711)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5233"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.11258989,-0.16309441,0.15750073,-0.07604949,314.1776,290.1886)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5236"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.11868893,0.17192833,0.16603178,0.0801691,311.5686,16.07786)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5239"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.09470054,0.13717975,0.1324755,0.06396614,331.8395,50.2111)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5242"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.1147788,0.16626286,0.16056063,0.07752752,322.2702,30.08746)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5245"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.14121233,0.20455424,0.19753851,0.09538236,286.7172,18.15027)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5248"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.16277324,0.23578711,0.22770011,0.10994621,259.9411,6.05945)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5251"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.16116543,0.23345669,-0.22545126,-0.10885916,748.0707,211.5833)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5254"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.12673802,0.18358546,-0.17729095,-0.08560556,697.8146,196.7379)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5257"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.13824761,0.20026072,-0.19339155,-0.09337933,714.1281,221.8225)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5260"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.12141779,0.17588262,-0.16984994,-0.08201292,662.6019,207.1803)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-8"
- id="linearGradient5263"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.14486352,0.20984435,-0.20264797,-0.09784905,735.5011,232.5166)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-1"
- id="radialGradient5266"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358"
- gradientTransform="matrix(1.155532,0,0,1.155532,26.16756,-503.197)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5275"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5296"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5299"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5323"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5337"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5356"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5369"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5379"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5402"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5412"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4886-9"
- id="linearGradient5422"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,-354.99474,401.23658)"
- x1="838.01013"
- y1="-320.49728"
- x2="909.21588"
- y2="-321.47269" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4738"
- id="linearGradient5425"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.638597,0,0,1.565933,-355.04905,402.57752)"
- x1="1313.4297"
- y1="237.96057"
- x2="1333.0073"
- y2="258.76886" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4554-4"
- id="linearGradient5428"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-354.99455,401.23652)"
- x1="808.12592"
- y1="362.58139"
- x2="832.68341"
- y2="400.04047" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114931"
- id="linearGradient5448"
- gradientUnits="userSpaceOnUse"
- x1="332.67328"
- y1="298.85724"
- x2="482.37622"
- y2="683.92651" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114953"
- id="linearGradient5451"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1048951,0,0,1.1048951,67.985466,73.286385)"
- x1="218.73267"
- y1="237.31267"
- x2="335.66339"
- y2="399.49088" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114975"
- id="linearGradient5454"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9983345,0,0,1.0398445,80.706264,173.27788)"
- x1="273.62375"
- y1="224.83743"
- x2="236.19801"
- y2="166.61961" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5471"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5488"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5498"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5512"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5522"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="linearGradient5536"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-9"
- id="radialGradient5546"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <inkscape:perspective
- id="perspective8000"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4082"
- id="linearGradient9152"
- gradientUnits="userSpaceOnUse"
- x1="525.26874"
- y1="1174.7026"
- x2="538.74719"
- y2="550.37653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient9154"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0,169.41151)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <inkscape:perspective
- id="perspective9182"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <filter
- id="filter3968-6"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- stdDeviation="3.3747421"
- id="feGaussianBlur3970-7" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4082-4"
- id="linearGradient9152-7"
- gradientUnits="userSpaceOnUse"
- x1="525.26874"
- y1="1174.7026"
- x2="538.74719"
- y2="550.37653" />
- <linearGradient
- id="linearGradient4082-4">
- <stop
- offset="0"
- style="stop-color:#0000d4;stop-opacity:1"
- id="stop4084-0" />
- <stop
- offset="1"
- style="stop-color:#0000d4;stop-opacity:0"
- id="stop4086-6" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371-7"
- id="linearGradient9154-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0,169.41151)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- id="linearGradient4371-7">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4373-4" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop4375-8" />
- </linearGradient>
- <inkscape:perspective
- id="perspective10330"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart-5"
- style="overflow:visible">
- <path
- id="path9321-3"
- d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend-9"
- style="overflow:visible">
- <path
- id="path9324-4"
- d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4066"
- id="linearGradient10380"
- gradientUnits="userSpaceOnUse"
- x1="543.81781"
- y1="271.49564"
- x2="547.62073"
- y2="26.841015" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient10382"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-239.77555,2.3885373e-6)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <inkscape:perspective
- id="perspective10392"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <filter
- id="filter3968-6-7"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- stdDeviation="3.3747421"
- id="feGaussianBlur3970-7-0" />
- </filter>
- <linearGradient
- id="linearGradient4082-4-8">
- <stop
- offset="0"
- style="stop-color:#0000d4;stop-opacity:1"
- id="stop4084-0-4" />
- <stop
- offset="1"
- style="stop-color:#0000d4;stop-opacity:0"
- id="stop4086-6-8" />
- </linearGradient>
- <linearGradient
- id="linearGradient4371-7-6">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4373-4-8" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop4375-8-5" />
- </linearGradient>
- <inkscape:perspective
- id="perspective12102"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient2817-2">
- <stop
- style="stop-color:#cccccc;stop-opacity:1;"
- offset="0"
- id="stop2819-2" />
- <stop
- style="stop-color:#cccccc;stop-opacity:0;"
- offset="1"
- id="stop2821-2" />
- </linearGradient>
- <inkscape:perspective
- id="perspective13556"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient12067-5">
- <stop
- id="stop12069-4"
- style="stop-color:#ad96cc;stop-opacity:0.5933333;"
- offset="0" />
- <stop
- id="stop12071-6"
- style="stop-color:#e9afaf;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <inkscape:perspective
- id="perspective15770"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <filter
- id="filter3968-7"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- stdDeviation="3.3747421"
- id="feGaussianBlur3970-0" />
- </filter>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4278-9"
- id="linearGradient4680-4"
- y2="684.74646"
- x2="458.88586"
- y1="839.39856"
- x1="470.29462" />
- <linearGradient
- id="linearGradient4278-9">
- <stop
- offset="0"
- style="stop-color:#ad96cc;stop-opacity:0.5933333;"
- id="stop4280-6" />
- <stop
- offset="1"
- style="stop-color:#ccff00;stop-opacity:0"
- id="stop4282-9" />
- </linearGradient>
- <linearGradient
- gradientTransform="translate(-239.77555,519.439)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4371-1"
- id="linearGradient4682-5"
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532" />
- <linearGradient
- id="linearGradient4371-1">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4373-6" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop4375-0" />
- </linearGradient>
- <linearGradient
- y2="118.80616"
- x2="639.10272"
- y1="-33.126385"
- x1="645.82532"
- gradientTransform="translate(-239.77555,519.439)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient15791"
- xlink:href="#linearGradient4371-1"
- inkscape:collect="always" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient15859"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88885013,0,0,0.88885013,168.13259,220.68371)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <inkscape:perspective
- id="perspective16199"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient12067-57">
- <stop
- id="stop12069-0"
- style="stop-color:#ad96cc;stop-opacity:0.5933333;"
- offset="0" />
- <stop
- id="stop12071-2"
- style="stop-color:#e9afaf;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient16680"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,-70.400599,-249.7195)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient16698"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,279.9044,-264.59654)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817-2"
- id="linearGradient16739"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,-143.75719,176.83724)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient16756"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,300.85528,217.70027)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient16765"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,300.85528,375.65549)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient16802"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.49114184,0,0,0.6629986,189.52223,210.60917)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient16991"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,-0.708975,60.94437)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient16993"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,-144.505,53.31895)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient17005"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,150.5255,-4.52637)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient17433"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,300.85528,375.65549)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2817"
- id="linearGradient20271"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.88408881,0,0,0.66263018,300.85528,217.70027)"
- x1="247.14285"
- y1="484.50504"
- x2="213.57144"
- y2="350.93359" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4082-4-8"
- id="linearGradient20722"
- gradientUnits="userSpaceOnUse"
- x1="525.26874"
- y1="1174.7026"
- x2="538.74719"
- y2="550.37653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4082-4-8"
- id="linearGradient21714"
- gradientUnits="userSpaceOnUse"
- x1="525.26874"
- y1="1174.7026"
- x2="538.74719"
- y2="550.37653"
- gradientTransform="matrix(0.7481581,0,0,0.9471927,233.23862,163.03297)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4066"
- id="linearGradient21756"
- gradientUnits="userSpaceOnUse"
- x1="543.81781"
- y1="271.49564"
- x2="547.62073"
- y2="26.841015" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient21758"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-239.77555,2.3885373e-6)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient21761"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6893672,0,0,1.245506,-704.28431,73.380251)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4066"
- id="linearGradient21768"
- gradientUnits="userSpaceOnUse"
- x1="543.81781"
- y1="271.49564"
- x2="547.62073"
- y2="26.841015" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4066"
- id="linearGradient21771"
- gradientUnits="userSpaceOnUse"
- x1="543.81781"
- y1="271.49564"
- x2="547.62073"
- y2="26.841015"
- gradientTransform="matrix(1.3032807,0,0,0.96085913,-346.6082,37.566254)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4066"
- id="linearGradient21785"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3032807,0,0,0.96085913,-346.6082,37.566254)"
- x1="543.81781"
- y1="271.49564"
- x2="547.62073"
- y2="26.841015" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4371"
- id="linearGradient21787"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6893672,0,0,1.245506,-704.28431,73.380251)"
- x1="645.82532"
- y1="-33.126385"
- x2="639.10272"
- y2="118.80616" />
- <filter
- inkscape:collect="always"
- id="filter21805"
- x="-0.15145693"
- width="1.3029139"
- y="-0.014428231"
- height="1.0288565">
- <feGaussianBlur
- inkscape:collect="always"
- stdDeviation="0.74912805"
- id="feGaussianBlur21807" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter21809"
- x="-0.16034819"
- width="1.3206964"
- y="-0.015197877"
- height="1.0303958">
- <feGaussianBlur
- inkscape:collect="always"
- stdDeviation="0.74912805"
- id="feGaussianBlur21811" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter21813"
- x="-0.18043325"
- width="1.3608665"
- y="-0.016119204"
- height="1.0322384">
- <feGaussianBlur
- inkscape:collect="always"
- stdDeviation="0.74912805"
- id="feGaussianBlur21815" />
- </filter>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.6491111"
- inkscape:cx="219.31218"
- inkscape:cy="664.4532"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:window-width="1145"
- inkscape:window-height="934"
- inkscape:window-x="34"
- inkscape:window-y="39"
- inkscape:window-maximized="0"
- showguides="true"
- inkscape:guide-bbox="true" />
- <metadata
- id="metadata6">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="bg">
- <rect
- style="opacity:0.29761903;fill:#ffffff;fill-opacity:1;stroke:none"
- id="rect3885"
- width="720.9859"
- height="710.20197"
- x="12.324539"
- y="26.343679"
- rx="0"
- ry="0" />
- </g>
- <g
- inkscape:label="Vrstva 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="display:inline">
- <flowRoot
- xml:space="preserve"
- id="flowRoot2829"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"><flowRegion
- id="flowRegion2831"><rect
- id="rect2833"
- width="265.71429"
- height="177.85715"
- x="155.71428"
- y="404.50504" /></flowRegion><flowPara
- id="flowPara2835" /></flowRoot> <g
- id="g16794"
- transform="translate(-24.010968,-5.3372475)">
- <rect
- ry="11.945394"
- rx="8.8490124"
- y="496.79114"
- x="276.52448"
- height="70.088417"
- width="89.808792"
- id="rect2815"
- style="fill:url(#linearGradient16802);fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <text
- id="text2825"
- y="519.22876"
- x="321.64371"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:none"
- y="519.22876"
- x="321.64371"
- id="tspan2827"
- sodipodi:role="line">AMQP</tspan></text>
- <text
- id="text2837"
- y="544.44421"
- x="321.43179"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="544.44421"
- x="321.43179"
- id="tspan2839"
- sodipodi:role="line"
- style="font-size:12px;stroke:none">Messaging</tspan><tspan
- y="559.44421"
- x="321.43179"
- sodipodi:role="line"
- style="font-size:12px;stroke:none"
- id="tspan9256">(RabbitMQ)</tspan></text>
- </g>
- <g
- id="g16889"
- transform="translate(0.50596409,-29.325539)">
- <rect
- ry="11.938755"
- rx="15.928825"
- y="346.96732"
- x="155.90103"
- height="70.049469"
- width="161.66194"
- id="rect8725"
- style="fill:url(#linearGradient16991);fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <text
- id="text8727"
- y="369.38547"
- x="236.94684"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:none"
- y="369.38547"
- x="236.94684"
- id="tspan8729"
- sodipodi:role="line">cinder-api</tspan></text>
- <text
- id="text8731"
- y="398.95828"
- x="236.73492"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="398.95828"
- x="236.73492"
- id="tspan8733"
- sodipodi:role="line"
- style="font-size:12px;stroke:none">(Public API server)</tspan></text>
- </g>
- <g
- id="g16932"
- transform="translate(3.4001987,4.4121277)">
- <rect
- style="fill:url(#linearGradient16993);fill-opacity:1;stroke:#000000;stroke-opacity:1"
- id="rect8648"
- width="161.66194"
- height="70.049469"
- x="12.105004"
- y="339.34192"
- rx="15.928825"
- ry="11.938755" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="93.15081"
- y="361.76007"
- id="text8650"><tspan
- sodipodi:role="line"
- id="tspan8652"
- x="93.15081"
- y="361.76007"
- style="font-size:16px;stroke:none">cinder-api</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="92.938896"
- y="391.33289"
- id="text8654"><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- id="tspan8656"
- x="92.938896"
- y="391.33289">(Public API server)</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="csc"
- id="path16669"
- d="m 512.9762,107.60868 c 0,0 -19.88364,73.77843 -19.14762,133.13834 0.74982,60.47338 73.49977,177.42206 73.49977,177.42206"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none;marker-end:url(#Arrow1Lend-9)" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none;marker-end:url(#Arrow1Lend-9)"
- d="m 512.87991,107.60868 c -4.71799,19.64225 -24.01824,85.99818 -24.05251,138.04039 -0.0398,60.47802 68.47123,180.49754 68.47123,180.49754"
- id="path11656"
- sodipodi:nodetypes="csc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Lstart-5);marker-mid:none;marker-end:url(#Arrow1Lend-9)"
- d="m 512.78363,107.60868 c -2.31085,9.24341 -17.6719,77.28342 -13.89346,135.31703 3.89289,60.35262 78.01669,167.97005 78.01669,167.97005"
- id="path16671"
- sodipodi:nodetypes="csc" />
- <g
- id="g21776"
- transform="translate(6.5360776,1.0893463)">
- <path
- style="opacity:0.26984127;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3968)"
- id="path8232"
- transform="matrix(1.3322638,0,0,1.0031175,88.993121,34.164002)"
- d="m 222.51946,60.989827 c -26.62399,0 -48.63303,8.548333 -52.22594,19.65625 -6.69546,-1.106666 -13.97205,-1.71875 -21.60756,-1.71875 -32.53011,0 -58.907419,11.042529 -58.907419,24.656233 0,0.75473 0.08653,1.48131 0.245192,2.21875 -0.08202,-3.9e-4 -0.163046,0 -0.245192,0 -21.363059,0 -38.679067,13.25729 -38.679067,29.59375 0,9.68721 6.096934,18.26069 15.508406,23.65625 -0.365836,1.92843 -0.582332,3.88678 -0.582332,5.90625 0,19.80178 18.308926,35.875 40.885792,35.875 4.46135,0 8.76139,-0.65378 12.78065,-1.8125 0.48146,16.9154 14.64139,30.5 32.05888,30.5 6.3283,0 12.22292,-1.81426 17.1941,-4.90625 4.34571,4.21099 9.62161,6.6875 15.32451,6.6875 6.04314,0 11.63741,-2.78914 16.12138,-7.46875 10.6727,7.90405 25.89396,12.84375 42.78604,12.84375 32.28736,0 58.47834,-18.06675 58.47834,-40.34375 0,-1.24407 -0.0854,-2.47215 -0.24519,-3.6875 14.00459,-4.26594 23.96754,-15.2465 23.96754,-28.125 0,-11.93982 -8.55473,-22.25444 -20.96393,-27.09375 6.63334,-4.33556 10.42066,-9.30406 10.42066,-14.59375 0,-6.50703 -5.7256,-12.51858 -15.4471,-17.46875 1.99862,-2.68052 3.1262,-5.727807 3.1262,-8.968735 0,-10.643452 -12.19574,-19.281248 -27.24699,-19.281248 -0.7631,0 -1.52079,0.05025 -2.26802,0.09375 -6.57023,-9.381491 -26.683,-16.21875 -50.47895,-16.21875 z" />
- <path
- style="opacity:0.29761903;fill:#cccccc;fill-opacity:1;stroke:none"
- id="path8234"
- d="m 386.15762,100.47525 c -34.69853,0 -63.38249,8.21374 -68.06506,18.88689 -8.72606,-1.06335 -18.2095,-1.65148 -28.16072,-1.65148 -42.39586,0 -76.7729,10.61032 -76.7729,23.69118 0,0.72519 0.11273,1.42333 0.31955,2.13191 -0.10687,-3.8e-4 -0.2125,0 -0.31955,0 -27.84206,0 -50.40968,12.73839 -50.40968,28.43542 0,9.30805 7.94601,17.54595 20.21181,22.73033 -0.4768,1.85295 -0.75896,3.73464 -0.75896,5.67507 0,19.02672 23.86168,34.47082 53.28568,34.47082 5.81439,0 11.41855,-0.62819 16.65677,-1.74155 0.62748,16.25331 19.08184,29.3062 41.78172,29.3062 8.24755,0 15.9299,-1.74325 22.40874,-4.71422 5.66368,4.04617 12.53966,6.42575 19.97214,6.42575 7.87591,0 15.16681,-2.67997 21.01068,-7.17642 13.90953,7.59468 33.7471,12.34104 55.76222,12.34104 42.0795,0 76.21369,-17.35961 76.21369,-38.76466 0,-1.19538 -0.1113,-2.37539 -0.31955,-3.54317 18.25192,-4.09897 31.23644,-14.64974 31.23644,-27.02416 0,-11.47249 -11.14922,-21.38339 -27.32189,-26.03328 8.6451,-4.16586 13.58105,-8.93989 13.58105,-14.02254 0,-6.25234 -7.46207,-12.02859 -20.13191,-16.78501 2.60476,-2.5756 4.07431,-5.50362 4.07431,-8.6177 0,-10.22686 -15.89447,-18.52657 -35.51047,-18.52657 -0.99454,0 -1.98202,0.0483 -2.95587,0.0901 -8.56285,-9.01429 -34.77544,-15.58393 -65.78824,-15.58393 z" />
- <path
- style="opacity:0.5674603;fill:#cccccc;fill-opacity:1;stroke:none"
- id="path8236"
- d="m 375.20571,95.674419 c -20.30087,0.52671 -44.63816,2.336897 -56.73344,15.824151 -7.77932,5.45494 -18.72353,0.64029 -27.93908,1.35121 -26.25523,-0.81492 -55.2717,0.94667 -75.95684,14.02253 -4.21055,4.5643 1.05482,10.07046 7.08659,12.10083 -16.73873,-1.44814 -35.86195,-1.23819 -49.32103,7.17641 -9.49694,5.28455 -14.29217,15.64261 -7.20877,23.30084 4.11932,5.10929 10.95197,9.01215 18.69393,10.68955 -8.95226,15.99047 9.50229,33.99299 31.36019,36.60273 13.24633,1.81305 26.98139,0.52381 39.17989,-3.6933 -7.81013,13.84905 7.80651,29.16437 26.47289,31.88851 8.47083,1.74611 16.91892,-0.29015 24.11069,-3.51314 5.7717,-1.85581 11.63161,0.40738 15.39501,3.54317 9.34531,4.03619 21.41479,0.6773 28.59072,-4.53406 11.12891,-1.19569 18.16623,7.34084 28.87581,8.10725 32.01903,7.76142 72.12284,3.44795 94.48785,-16.09439 5.80294,-6.20705 7.78549,-14.47269 3.78766,-21.55927 19.12596,0.27067 39.26768,-14.40125 31.84892,-28.7357 -6.7557,-11.19695 -23.63984,-15.93279 -39.30206,-17.23541 8.95688,-4.93264 24.29301,-6.8814 26.59508,-16.2145 -2.30454,-8.78724 -16.55309,-10.99986 -25.53616,-15.22361 -5.72916,-1.87775 3.74245,-1.22421 5.33531,-3.30295 7.99435,-5.32026 2.50692,-15.38236 -7.20878,-17.11531 -10.01676,-2.92966 -22.58718,-0.81989 -30.50491,-7.17641 C 420.53639,95.503998 396.01115,95.671823 375.20571,95.674419 z" />
- <path
- style="opacity:0.28968255;fill:url(#linearGradient21785);fill-opacity:1;stroke:none"
- id="path8238"
- d="m 375.20571,95.674419 c -20.30087,0.52671 -44.63816,2.336897 -56.73344,15.824151 -7.77932,5.45494 -18.72353,0.64029 -27.93908,1.35121 -26.25523,-0.81492 -55.2717,0.94667 -75.95684,14.02253 -4.21055,4.5643 1.05482,10.07046 7.08659,12.10083 -16.73873,-1.44814 -35.86195,-1.23819 -49.32103,7.17641 -9.49694,5.28455 -14.29217,15.64261 -7.20877,23.30084 4.11932,5.10929 10.95197,9.01215 18.69393,10.68955 -8.95226,15.99047 9.50229,33.99299 31.36019,36.60273 13.24633,1.81305 26.98139,0.52381 39.17989,-3.6933 -7.81013,13.84905 7.80651,29.16437 26.47289,31.88851 8.47083,1.74611 16.91892,-0.29015 24.11069,-3.51314 5.7717,-1.85581 11.63161,0.40738 15.39501,3.54317 9.34531,4.03619 21.41479,0.6773 28.59072,-4.53406 11.12891,-1.19569 18.16623,7.34084 28.87581,8.10725 32.01903,7.76142 72.12284,3.44795 94.48785,-16.09439 5.80294,-6.20705 7.78549,-14.47269 3.78766,-21.55927 19.12596,0.27067 39.26768,-14.40125 31.84892,-28.7357 -6.7557,-11.19695 -23.63984,-15.93279 -39.30206,-17.23541 8.95688,-4.93264 24.29301,-6.8814 26.59508,-16.2145 -2.30454,-8.78724 -16.55309,-10.99986 -25.53616,-15.22361 -5.72916,-1.87775 3.74245,-1.22421 5.33531,-3.30295 7.99435,-5.32026 2.50692,-15.38236 -7.20878,-17.11531 -10.01676,-2.92966 -22.58718,-0.81989 -30.50491,-7.17641 C 420.53639,95.503998 396.01115,95.671823 375.20571,95.674419 z" />
- <path
- d="m 378.17772,97.978994 c -20.29884,-0.746257 -42.75508,2.187766 -56.85776,13.739486 -5.35143,5.37908 -15.90284,4.75331 -23.9273,4.0565 -25.83806,-2.50785 -54.16704,-0.82004 -76.06212,10.34467 -3.02319,1.4398 -7.31508,3.44621 -4.90973,6.42214 1.79656,3.23547 8.29522,3.85778 9.60828,7.16165 -1.48543,2.80361 -7.20246,0.99682 -10.28961,1.12089 -9.38434,-0.58805 -18.99005,-0.61648 -28.14349,1.21444 40.73064,19.45562 94.57638,19.96884 138.68649,6.49998 34.66458,-6.74734 71.855,-0.63812 102.52779,12.06107 9.6536,3.23527 48.99589,10.38806 58.77125,13.41587 1.13272,-1.711 -0.7863,-3.1314 -22.15369,-7.70656 -11.65832,-2.49626 20.54303,-8.26695 26.09587,-16.99194 -2.2742,-7.93582 -14.26212,-9.64595 -22.4369,-13.19457 -3.87129,-0.62833 -5.78892,-5.95644 -0.79189,-6.30538 5.35647,-0.95769 8.77398,-5.43924 6.17674,-9.26345 -2.89922,-5.8006 -12.12725,-7.04579 -19.59383,-6.90313 -11.55222,-1.21285 -21.20146,-6.0701 -30.66484,-10.76749 -14.22984,-5.030533 -30.53876,-5.021552 -46.03526,-4.904176 z"
- id="path8240"
- style="opacity:0.5674603;fill:url(#linearGradient21787);fill-opacity:1;stroke:none" />
- <text
- xml:space="preserve"
- style="font-size:22.42008591px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;opacity:0.76448729;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="342.94745"
- y="142.13666"
- id="text7423"><tspan
- sodipodi:role="line"
- id="tspan7425"
- x="342.94745"
- y="142.13666">Internet</tspan></text>
- </g>
- <g
- id="g16682"
- transform="translate(10.848402,-0.63264792)">
- <rect
- style="fill:url(#linearGradient16680);fill-opacity:1;stroke:#000000;stroke-opacity:1"
- id="rect9008"
- width="161.66194"
- height="70.049469"
- x="86.209404"
- y="36.303455"
- rx="15.928825"
- ry="11.938755" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="167.2552"
- y="58.721607"
- id="text9010"><tspan
- sodipodi:role="line"
- id="tspan9012"
- x="167.2552"
- y="58.721607"
- style="font-size:16px;stroke:none">Cloud users</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="167.04329"
- y="82.132156"
- id="text9014"><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- id="tspan9016"
- x="167.04329"
- y="82.132156">Using tools to manage</tspan><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="167.04329"
- y="97.132156"
- id="tspan7018">virtual guests</tspan><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="167.04329"
- y="112.13216"
- id="tspan7020" /></text>
- </g>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="209.5202"
- y="266.69235"
- id="text8731-0"><tspan
- style="font-size:12px"
- sodipodi:role="line"
- id="tspan8733-5"
- x="209.5202"
- y="266.69235" /></text>
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Lstart);marker-mid:none;marker-end:url(#Arrow1Lend)"
- d="m 198.3248,107.59465 c 0,0 0.0334,61.30615 -12.67029,115.01394 -12.4729,52.73189 -77.81473,120.32191 -77.81473,120.32191"
- id="path9316"
- sodipodi:nodetypes="csc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Lend);display:inline"
- d="m 198.28949,107.52657 c 0,0 -0.91296,53.23484 4.06099,93.36586 5.74342,46.33928 44.61511,113.98877 44.61511,113.98877"
- id="path9316-1"
- sodipodi:nodetypes="csc" />
- <g
- style="opacity:0.84126988;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
- id="g9125"
- transform="translate(-25.132382,-9.2981524)">
- <g
- id="g8299"
- transform="matrix(0.56548207,0,0,0.56548207,-104.34915,96.818268)"
- style="stroke-width:1.7684027;stroke-miterlimit:4;stroke-dasharray:none">
- <g
- id="g8301"
- transform="matrix(0.77146086,0,0,0.77146086,210.15747,-250.94342)"
- style="stroke-width:2.29227781;stroke-miterlimit:4;stroke-dasharray:none">
- <path
- style="fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3968)"
- id="path8303"
- transform="matrix(1.0222386,0,0,1.0439798,336.02717,504.69369)"
- d="m 222.51946,60.989827 c -26.62399,0 -48.63303,8.548333 -52.22594,19.65625 -6.69546,-1.106666 -13.97205,-1.71875 -21.60756,-1.71875 -32.53011,0 -58.907419,11.042529 -58.907419,24.656233 0,0.75473 0.08653,1.48131 0.245192,2.21875 -0.08202,-3.9e-4 -0.163046,0 -0.245192,0 -21.363059,0 -38.679067,13.25729 -38.679067,29.59375 0,9.68721 6.096934,18.26069 15.508406,23.65625 -0.365836,1.92843 -0.582332,3.88678 -0.582332,5.90625 0,19.80178 18.308926,35.875 40.885792,35.875 4.46135,0 8.76139,-0.65378 12.78065,-1.8125 0.48146,16.9154 14.64139,30.5 32.05888,30.5 6.3283,0 12.22292,-1.81426 17.1941,-4.90625 4.34571,4.21099 9.62161,6.6875 15.32451,6.6875 6.04314,0 11.63741,-2.78914 16.12138,-7.46875 10.6727,7.90405 25.89396,12.84375 42.78604,12.84375 32.28736,0 58.47834,-18.06675 58.47834,-40.34375 0,-1.24407 -0.0854,-2.47215 -0.24519,-3.6875 14.00459,-4.26594 23.96754,-15.2465 23.96754,-28.125 0,-11.93982 -8.55473,-22.25444 -20.96393,-27.09375 6.63334,-4.33556 10.42066,-9.30406 10.42066,-14.59375 0,-6.50703 -5.7256,-12.51858 -15.4471,-17.46875 1.99862,-2.68052 3.1262,-5.727807 3.1262,-8.968735 0,-10.643452 -12.19574,-19.281248 -27.24699,-19.281248 -0.7631,0 -1.52079,0.05025 -2.26802,0.09375 -6.57023,-9.381491 -26.683,-16.21875 -50.47895,-16.21875 z" />
- <path
- style="fill:#000055;fill-opacity:1;stroke:none"
- id="path8305"
- d="m 564.03984,573.70614 c -26.62399,0 -48.63303,8.54834 -52.22594,19.65625 -6.69546,-1.10666 -13.97205,-1.71875 -21.60756,-1.71875 -32.53011,0 -58.90743,11.04253 -58.90743,24.65625 0,0.75473 0.0865,1.48131 0.24519,2.21875 -0.082,-3.9e-4 -0.16304,0 -0.24519,0 -21.36306,0 -38.67907,13.25729 -38.67907,29.59375 0,9.68721 6.09694,18.26069 15.50841,23.65625 -0.36584,1.92843 -0.58233,3.88678 -0.58233,5.90625 0,19.80178 18.30892,35.875 40.88579,35.875 4.46136,0 8.7614,-0.65378 12.78066,-1.8125 0.48146,16.9154 14.64139,30.5 32.05888,30.5 6.3283,0 12.22292,-1.81426 17.1941,-4.90625 4.34571,4.21099 9.62161,6.6875 15.32451,6.6875 6.04314,0 11.63741,-2.78914 16.12138,-7.46875 10.6727,7.90405 25.89396,12.84375 42.78604,12.84375 32.28736,0 58.47834,-18.06675 58.47834,-40.34375 0,-1.24407 -0.0854,-2.47215 -0.24519,-3.6875 14.00459,-4.26594 23.96754,-15.2465 23.96754,-28.125 0,-11.93982 -8.55473,-22.25444 -20.96393,-27.09375 6.63334,-4.33556 10.42066,-9.30406 10.42066,-14.59375 0,-6.50703 -5.7256,-12.51858 -15.4471,-17.46875 1.99862,-2.68052 3.1262,-5.72781 3.1262,-8.96875 0,-10.64345 -12.19574,-19.28125 -27.24699,-19.28125 -0.7631,0 -1.52079,0.0503 -2.26802,0.0937 -6.57023,-9.38149 -26.683,-16.21875 -50.47895,-16.21875 z" />
- <path
- style="fill:#cccccc;fill-opacity:1;stroke:none"
- id="path8307"
- d="m 555.6365,568.70975 c -15.57674,0.54816 -34.25061,2.43209 -43.53125,16.46875 -5.96903,5.67715 -14.36646,0.66637 -21.4375,1.40625 -20.14549,-0.84811 -42.40968,0.98524 -58.28126,14.59375 -3.23074,4.75022 0.80936,10.48068 5.4375,12.59375 -12.84354,-1.50713 -27.51668,-1.28862 -37.84375,7.46875 -7.28696,5.49982 -10.96631,16.27981 -5.53125,24.25 3.16073,5.31742 8.40339,9.37927 14.34375,11.125 -6.86902,16.64184 7.29104,35.3777 24.0625,38.09375 10.16382,1.8869 20.70267,0.54515 30.06251,-3.84375 -5.99267,14.4132 5.98989,30.35239 20.3125,33.1875 6.49962,1.81724 12.98179,-0.30197 18.5,-3.65625 4.42859,-1.93141 8.92487,0.42397 11.8125,3.6875 7.17061,4.20061 16.43145,0.70489 21.9375,-4.71875 8.53915,-1.2444 13.93885,7.63987 22.15625,8.4375 24.56802,8.07758 55.33945,3.5884 72.5,-16.75 4.45256,-6.4599 5.97376,-15.06224 2.90625,-22.4375 14.67524,0.2817 30.12987,-14.98788 24.4375,-29.90625 -5.18361,-11.65306 -18.13872,-16.58182 -30.15625,-17.9375 6.87256,-5.13357 18.63989,-7.16172 20.40625,-16.875 -1.76826,-9.1452 -12.70109,-11.44795 -19.59375,-15.84375 -4.39595,-1.95424 2.87156,-1.27408 4.09375,-3.4375 6.13402,-5.53698 1.92355,-16.00896 -5.53125,-17.8125 -7.68581,-3.049 -17.33102,-0.85329 -23.40625,-7.46875 -12.87427,-10.80236 -31.69235,-10.6277 -47.65625,-10.625 z" />
- <path
- style="fill:url(#linearGradient9152);fill-opacity:1;stroke:none"
- id="path8309"
- d="m 555.6365,568.70975 c -15.57674,0.54816 -34.25061,2.43209 -43.53125,16.46875 -5.96903,5.67715 -14.36646,0.66637 -21.4375,1.40625 -20.14549,-0.84811 -42.40968,0.98524 -58.28126,14.59375 -3.23074,4.75022 0.80936,10.48068 5.4375,12.59375 -12.84354,-1.50713 -27.51668,-1.28862 -37.84375,7.46875 -7.28696,5.49982 -10.96631,16.27981 -5.53125,24.25 3.16073,5.31742 8.40339,9.37927 14.34375,11.125 -6.86902,16.64184 7.29104,35.3777 24.0625,38.09375 10.16382,1.8869 20.70267,0.54515 30.06251,-3.84375 -5.99267,14.4132 5.98989,30.35239 20.3125,33.1875 6.49962,1.81724 12.98179,-0.30197 18.5,-3.65625 4.42859,-1.93141 8.92487,0.42397 11.8125,3.6875 7.17061,4.20061 16.43145,0.70489 21.9375,-4.71875 8.53915,-1.2444 13.93885,7.63987 22.15625,8.4375 24.56802,8.07758 55.33945,3.5884 72.5,-16.75 4.45256,-6.4599 5.97376,-15.06224 2.90625,-22.4375 14.67524,0.2817 30.12987,-14.98788 24.4375,-29.90625 -5.18361,-11.65306 -18.13872,-16.58182 -30.15625,-17.9375 6.87256,-5.13357 18.63989,-7.16172 20.40625,-16.875 -1.76826,-9.1452 -12.70109,-11.44795 -19.59375,-15.84375 -4.39595,-1.95424 2.87156,-1.27408 4.09375,-3.4375 6.13402,-5.53698 1.92355,-16.00896 -5.53125,-17.8125 -7.68581,-3.049 -17.33102,-0.85329 -23.40625,-7.46875 -12.87427,-10.80236 -31.69235,-10.6277 -47.65625,-10.625 z" />
- </g>
- <path
- style="fill:url(#linearGradient9154);fill-opacity:1;stroke:none"
- id="path8311"
- d="m 640.75,189.16151 c -12.01565,-0.59916 -25.30834,1.75653 -33.65625,11.03125 -3.16771,4.31879 -9.41349,3.81637 -14.16347,3.25691 -15.29452,-2.01352 -32.06351,-0.6584 -45.02403,8.30559 -1.78954,1.156 -4.33007,2.76692 -2.90625,5.15625 1.06345,2.59772 4.91025,3.09736 5.6875,5.75 -0.87928,2.25098 -4.26341,0.80033 -6.09081,0.89994 -5.55494,-0.47213 -11.24092,-0.49496 -16.65919,0.97506 24.11,15.62066 55.98332,16.03271 82.09375,5.21875 20.51927,-5.41735 42.53368,-0.51234 60.69006,9.68367 5.71433,2.59755 29.00251,8.34043 34.78891,10.77142 0.6705,-1.37374 -0.46544,-2.51416 -13.1136,-6.18749 -6.901,-2.00422 12.16019,-6.63743 15.44713,-13.6426 -1.34619,-6.37157 -8.44229,-7.74461 -13.28125,-10.59375 -2.29156,-0.50447 -3.42668,-4.78234 -0.46875,-5.0625 3.1707,-0.76892 5.19365,-4.36709 3.65625,-7.4375 -1.71616,-4.65722 -7.17858,-5.65697 -11.59833,-5.54243 -6.83819,-0.97378 -12.54994,-4.8736 -18.15167,-8.64507 -8.42318,-4.03895 -18.07704,-4.03174 -27.25,-3.9375 z" />
- </g>
- <text
- id="text8317"
- y="225.54834"
- x="244.01357"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px"
- y="225.54834"
- x="246.56044"
- id="tspan8319"
- sodipodi:role="line">Admin </tspan><tspan
- style="font-size:16px"
- id="tspan8321"
- y="245.54834"
- x="244.01357"
- sodipodi:role="line">network</tspan></text>
- </g>
- <g
- id="g16700"
- transform="translate(17.38448,14.244393)">
- <rect
- ry="11.938755"
- rx="15.928825"
- y="21.426414"
- x="436.5144"
- height="70.049469"
- width="161.66194"
- id="rect9158"
- style="fill:url(#linearGradient16698);fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <text
- id="text9160"
- y="43.844566"
- x="517.56018"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:none"
- y="43.844566"
- x="517.56018"
- id="tspan9162"
- sodipodi:role="line">Internet EndUsers</tspan></text>
- <text
- id="text9164"
- y="67.255119"
- x="517.34827"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="67.255119"
- x="517.34827"
- id="tspan9166"
- sodipodi:role="line"
- style="font-size:12px;stroke:none">Using services provided</tspan><tspan
- id="tspan9168"
- y="82.255119"
- x="517.34827"
- sodipodi:role="line"
- style="font-size:12px;stroke:none">by virtual guests</tspan><tspan
- id="tspan9170"
- y="97.255119"
- x="517.34827"
- sodipodi:role="line"
- style="font-size:12px;stroke:none" /></text>
- </g>
- <g
- style="opacity:0.84126988;display:inline"
- id="g9125-5"
- transform="translate(261.58723,-9.2669558)">
- <g
- id="g8299-8"
- transform="matrix(0.56548207,0,0,0.56548207,-104.34915,96.818268)">
- <g
- id="g8301-2"
- transform="matrix(0.77146086,0,0,0.77146086,210.15747,-250.94342)">
- <path
- style="fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3968-6)"
- id="path8303-6"
- transform="matrix(1.0222386,0,0,1.0439798,336.02717,504.69369)"
- d="m 222.51946,60.989827 c -26.62399,0 -48.63303,8.548333 -52.22594,19.65625 -6.69546,-1.106666 -13.97205,-1.71875 -21.60756,-1.71875 -32.53011,0 -58.907419,11.042529 -58.907419,24.656233 0,0.75473 0.08653,1.48131 0.245192,2.21875 -0.08202,-3.9e-4 -0.163046,0 -0.245192,0 -21.363059,0 -38.679067,13.25729 -38.679067,29.59375 0,9.68721 6.096934,18.26069 15.508406,23.65625 -0.365836,1.92843 -0.582332,3.88678 -0.582332,5.90625 0,19.80178 18.308926,35.875 40.885792,35.875 4.46135,0 8.76139,-0.65378 12.78065,-1.8125 0.48146,16.9154 14.64139,30.5 32.05888,30.5 6.3283,0 12.22292,-1.81426 17.1941,-4.90625 4.34571,4.21099 9.62161,6.6875 15.32451,6.6875 6.04314,0 11.63741,-2.78914 16.12138,-7.46875 10.6727,7.90405 25.89396,12.84375 42.78604,12.84375 32.28736,0 58.47834,-18.06675 58.47834,-40.34375 0,-1.24407 -0.0854,-2.47215 -0.24519,-3.6875 14.00459,-4.26594 23.96754,-15.2465 23.96754,-28.125 0,-11.93982 -8.55473,-22.25444 -20.96393,-27.09375 6.63334,-4.33556 10.42066,-9.30406 10.42066,-14.59375 0,-6.50703 -5.7256,-12.51858 -15.4471,-17.46875 1.99862,-2.68052 3.1262,-5.727807 3.1262,-8.968735 0,-10.643452 -12.19574,-19.281248 -27.24699,-19.281248 -0.7631,0 -1.52079,0.05025 -2.26802,0.09375 -6.57023,-9.381491 -26.683,-16.21875 -50.47895,-16.21875 z" />
- <path
- style="fill:#000055;fill-opacity:1;stroke:none"
- id="path8305-0"
- d="m 564.03984,573.70614 c -26.62399,0 -48.63303,8.54834 -52.22594,19.65625 -6.69546,-1.10666 -13.97205,-1.71875 -21.60756,-1.71875 -32.53011,0 -58.90743,11.04253 -58.90743,24.65625 0,0.75473 0.0865,1.48131 0.24519,2.21875 -0.082,-3.9e-4 -0.16304,0 -0.24519,0 -21.36306,0 -38.67907,13.25729 -38.67907,29.59375 0,9.68721 6.09694,18.26069 15.50841,23.65625 -0.36584,1.92843 -0.58233,3.88678 -0.58233,5.90625 0,19.80178 18.30892,35.875 40.88579,35.875 4.46136,0 8.7614,-0.65378 12.78066,-1.8125 0.48146,16.9154 14.64139,30.5 32.05888,30.5 6.3283,0 12.22292,-1.81426 17.1941,-4.90625 4.34571,4.21099 9.62161,6.6875 15.32451,6.6875 6.04314,0 11.63741,-2.78914 16.12138,-7.46875 10.6727,7.90405 25.89396,12.84375 42.78604,12.84375 32.28736,0 58.47834,-18.06675 58.47834,-40.34375 0,-1.24407 -0.0854,-2.47215 -0.24519,-3.6875 14.00459,-4.26594 23.96754,-15.2465 23.96754,-28.125 0,-11.93982 -8.55473,-22.25444 -20.96393,-27.09375 6.63334,-4.33556 10.42066,-9.30406 10.42066,-14.59375 0,-6.50703 -5.7256,-12.51858 -15.4471,-17.46875 1.99862,-2.68052 3.1262,-5.72781 3.1262,-8.96875 0,-10.64345 -12.19574,-19.28125 -27.24699,-19.28125 -0.7631,0 -1.52079,0.0503 -2.26802,0.0937 -6.57023,-9.38149 -26.683,-16.21875 -50.47895,-16.21875 z" />
- <path
- style="fill:#cccccc;fill-opacity:1;stroke:none"
- id="path8307-6"
- d="m 555.6365,568.70975 c -15.57674,0.54816 -34.25061,2.43209 -43.53125,16.46875 -5.96903,5.67715 -14.36646,0.66637 -21.4375,1.40625 -20.14549,-0.84811 -42.40968,0.98524 -58.28126,14.59375 -3.23074,4.75022 0.80936,10.48068 5.4375,12.59375 -12.84354,-1.50713 -27.51668,-1.28862 -37.84375,7.46875 -7.28696,5.49982 -10.96631,16.27981 -5.53125,24.25 3.16073,5.31742 8.40339,9.37927 14.34375,11.125 -6.86902,16.64184 7.29104,35.3777 24.0625,38.09375 10.16382,1.8869 20.70267,0.54515 30.06251,-3.84375 -5.99267,14.4132 5.98989,30.35239 20.3125,33.1875 6.49962,1.81724 12.98179,-0.30197 18.5,-3.65625 4.42859,-1.93141 8.92487,0.42397 11.8125,3.6875 7.17061,4.20061 16.43145,0.70489 21.9375,-4.71875 8.53915,-1.2444 13.93885,7.63987 22.15625,8.4375 24.56802,8.07758 55.33945,3.5884 72.5,-16.75 4.45256,-6.4599 5.97376,-15.06224 2.90625,-22.4375 14.67524,0.2817 30.12987,-14.98788 24.4375,-29.90625 -5.18361,-11.65306 -18.13872,-16.58182 -30.15625,-17.9375 6.87256,-5.13357 18.63989,-7.16172 20.40625,-16.875 -1.76826,-9.1452 -12.70109,-11.44795 -19.59375,-15.84375 -4.39595,-1.95424 2.87156,-1.27408 4.09375,-3.4375 6.13402,-5.53698 1.92355,-16.00896 -5.53125,-17.8125 -7.68581,-3.049 -17.33102,-0.85329 -23.40625,-7.46875 -12.87427,-10.80236 -31.69235,-10.6277 -47.65625,-10.625 z" />
- <path
- style="fill:url(#linearGradient9152-7);fill-opacity:1;stroke:none"
- id="path8309-6"
- d="m 555.6365,568.70975 c -15.57674,0.54816 -34.25061,2.43209 -43.53125,16.46875 -5.96903,5.67715 -14.36646,0.66637 -21.4375,1.40625 -20.14549,-0.84811 -42.40968,0.98524 -58.28126,14.59375 -3.23074,4.75022 0.80936,10.48068 5.4375,12.59375 -12.84354,-1.50713 -27.51668,-1.28862 -37.84375,7.46875 -7.28696,5.49982 -10.96631,16.27981 -5.53125,24.25 3.16073,5.31742 8.40339,9.37927 14.34375,11.125 -6.86902,16.64184 7.29104,35.3777 24.0625,38.09375 10.16382,1.8869 20.70267,0.54515 30.06251,-3.84375 -5.99267,14.4132 5.98989,30.35239 20.3125,33.1875 6.49962,1.81724 12.98179,-0.30197 18.5,-3.65625 4.42859,-1.93141 8.92487,0.42397 11.8125,3.6875 7.17061,4.20061 16.43145,0.70489 21.9375,-4.71875 8.53915,-1.2444 13.93885,7.63987 22.15625,8.4375 24.56802,8.07758 55.33945,3.5884 72.5,-16.75 4.45256,-6.4599 5.97376,-15.06224 2.90625,-22.4375 14.67524,0.2817 30.12987,-14.98788 24.4375,-29.90625 -5.18361,-11.65306 -18.13872,-16.58182 -30.15625,-17.9375 6.87256,-5.13357 18.63989,-7.16172 20.40625,-16.875 -1.76826,-9.1452 -12.70109,-11.44795 -19.59375,-15.84375 -4.39595,-1.95424 2.87156,-1.27408 4.09375,-3.4375 6.13402,-5.53698 1.92355,-16.00896 -5.53125,-17.8125 -7.68581,-3.049 -17.33102,-0.85329 -23.40625,-7.46875 -12.87427,-10.80236 -31.69235,-10.6277 -47.65625,-10.625 z" />
- </g>
- <path
- style="fill:url(#linearGradient9154-4);fill-opacity:1;stroke:none"
- id="path8311-4"
- d="m 640.75,189.16151 c -12.01565,-0.59916 -25.30834,1.75653 -33.65625,11.03125 -3.16771,4.31879 -9.41349,3.81637 -14.16347,3.25691 -15.29452,-2.01352 -32.06351,-0.6584 -45.02403,8.30559 -1.78954,1.156 -4.33007,2.76692 -2.90625,5.15625 1.06345,2.59772 4.91025,3.09736 5.6875,5.75 -0.87928,2.25098 -4.26341,0.80033 -6.09081,0.89994 -5.55494,-0.47213 -11.24092,-0.49496 -16.65919,0.97506 24.11,15.62066 55.98332,16.03271 82.09375,5.21875 20.51927,-5.41735 42.53368,-0.51234 60.69006,9.68367 5.71433,2.59755 29.00251,8.34043 34.78891,10.77142 0.6705,-1.37374 -0.46544,-2.51416 -13.1136,-6.18749 -6.901,-2.00422 12.16019,-6.63743 15.44713,-13.6426 -1.34619,-6.37157 -8.44229,-7.74461 -13.28125,-10.59375 -2.29156,-0.50447 -3.42668,-4.78234 -0.46875,-5.0625 3.1707,-0.76892 5.19365,-4.36709 3.65625,-7.4375 -1.71616,-4.65722 -7.17858,-5.65697 -11.59833,-5.54243 -6.83819,-0.97378 -12.54994,-4.8736 -18.15167,-8.64507 -8.42318,-4.03895 -18.07704,-4.03174 -27.25,-3.9375 z" />
- </g>
- <text
- id="text8317-6"
- y="225.54834"
- x="244.01357"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px"
- y="225.54834"
- x="244.01357"
- id="tspan8319-2"
- sodipodi:role="line">Public</tspan><tspan
- style="font-size:16px"
- id="tspan8321-8"
- y="245.54834"
- x="244.01357"
- sodipodi:role="line">network</tspan></text>
- </g>
- <text
- id="text16517"
- y="628.02972"
- x="646.58423"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:#000000;stroke-opacity:1"
- y="628.02972"
- x="646.58423"
- id="tspan16519"
- sodipodi:role="line" /></text>
- <text
- id="text16521"
- y="651.44031"
- x="646.37231"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan16523"
- y="651.44031"
- x="646.37231"
- sodipodi:role="line"
- style="font-size:12px;stroke:#000000;stroke-opacity:1" /><tspan
- id="tspan16525"
- y="666.44031"
- x="646.37231"
- sodipodi:role="line"
- style="font-size:12px;stroke:#000000;stroke-opacity:1" /></text>
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="637.71069"
- y="634.78632"
- id="text16531"><tspan
- sodipodi:role="line"
- id="tspan16533"
- x="637.71069"
- y="634.78632"
- style="font-size:16px;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="637.49878"
- y="658.19684"
- id="text16535"><tspan
- style="font-size:12px;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:role="line"
- x="637.49878"
- y="658.19684"
- id="tspan16537" /><tspan
- style="font-size:12px;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:role="line"
- x="637.49878"
- y="673.19684"
- id="tspan16539" /></text>
- <rect
- ry="11.938755"
- rx="15.928825"
- y="605.61157"
- x="565.53839"
- height="70.049469"
- width="161.66194"
- id="rect16515"
- style="fill:#536c5d;fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <rect
- style="fill:#6f917c;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="rect16529"
- width="161.66194"
- height="70.049469"
- x="556.66486"
- y="612.36816"
- rx="15.928825"
- ry="11.938755" />
- <rect
- style="fill:#93ac9d;fill-opacity:1;stroke:#000000;stroke-opacity:1"
- id="rect16543"
- width="161.66194"
- height="70.049469"
- x="547.79132"
- y="619.12476"
- rx="15.928825"
- ry="11.938755" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="628.83716"
- y="641.54291"
- id="text16545"><tspan
- sodipodi:role="line"
- id="tspan16547"
- x="628.83716"
- y="641.54291"
- style="font-size:16px;stroke:none">Disk Images</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="628.62524"
- y="664.95349"
- id="text16549"><tspan
- id="tspan16561"
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="628.62524"
- y="664.95349">for Virtual Guests</tspan><tspan
- id="tspan20663"
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="628.62524"
- y="679.95349" /><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="628.62524"
- y="694.95349"
- id="tspan16553" /></text>
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="646.58423"
- y="432.92889"
- id="text15923"><tspan
- sodipodi:role="line"
- id="tspan15925"
- x="646.58423"
- y="432.92889"
- style="font-size:16px;stroke:#000000;stroke-opacity:1" /></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="646.37231"
- y="456.33945"
- id="text15927"><tspan
- style="font-size:12px;stroke:#000000;stroke-opacity:1"
- sodipodi:role="line"
- x="646.37231"
- y="456.33945"
- id="tspan15929" /><tspan
- style="font-size:12px;stroke:#000000;stroke-opacity:1"
- sodipodi:role="line"
- x="646.37231"
- y="471.33945"
- id="tspan15931" /></text>
- <text
- id="text15988"
- y="439.68546"
- x="637.71069"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- y="439.68546"
- x="637.71069"
- id="tspan15990"
- sodipodi:role="line" /></text>
- <text
- id="text15992"
- y="463.09601"
- x="637.49878"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan15994"
- y="463.09601"
- x="637.49878"
- sodipodi:role="line"
- style="font-size:12px;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><tspan
- id="tspan15996"
- y="478.09601"
- x="637.49878"
- sodipodi:role="line"
- style="font-size:12px;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></text>
- <g
- id="g3865">
- <rect
- ry="11.938755"
- rx="15.928825"
- y="410.51074"
- x="565.53839"
- height="70.049469"
- width="161.66194"
- id="rect15921"
- style="fill:#806600;fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <rect
- style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="rect15986"
- width="161.66194"
- height="70.049469"
- x="556.66486"
- y="417.2673"
- rx="15.928825"
- ry="11.938755" />
- <rect
- style="fill:#d4aa00;fill-opacity:1;stroke:#000000;stroke-opacity:1"
- id="rect10492"
- width="161.66194"
- height="70.049469"
- x="547.79132"
- y="424.02393"
- rx="15.928825"
- ry="11.938755" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="628.83716"
- y="446.44208"
- id="text10494"><tspan
- sodipodi:role="line"
- id="tspan10496"
- x="628.83716"
- y="446.44208"
- style="font-size:16px;stroke:none">Virtual Guests</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="628.62524"
- y="469.85263"
- id="text10498"><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="628.62524"
- y="469.85263"
- id="tspan10502">Runing in the cloud</tspan><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="628.62524"
- y="484.85263"
- id="tspan10504" /></text>
- </g>
- <g
- id="g16785"
- transform="translate(-50.816079,-31.823295)">
- <rect
- ry="11.938755"
- rx="15.928825"
- y="503.72324"
- x="457.46527"
- height="70.049469"
- width="161.66194"
- id="rect9298"
- style="fill:url(#linearGradient16756);fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <text
- id="text9300"
- y="526.14136"
- x="538.51111"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:none"
- y="526.14136"
- x="538.51111"
- id="tspan9302"
- sodipodi:role="line">cinder-compute</tspan></text>
- <text
- id="text9304"
- y="549.55194"
- x="538.29919"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan9308"
- y="549.55194"
- x="540.20935"
- sodipodi:role="line"
- style="font-size:12px;stroke:none">(uses libvirt or XenAPI </tspan><tspan
- y="564.55194"
- x="540.20935"
- sodipodi:role="line"
- style="font-size:12px;stroke:none"
- id="tspan12073">to manage guests) </tspan><tspan
- id="tspan9310"
- y="579.55194"
- x="538.29919"
- sodipodi:role="line"
- style="font-size:12px;stroke:none" /></text>
- </g>
- <g
- id="g16939"
- transform="translate(2.3108524,4.038323)">
- <rect
- ry="11.938755"
- rx="15.928825"
- y="462.8602"
- x="12.852811"
- height="70.049469"
- width="161.66194"
- id="rect9298-7"
- style="fill:url(#linearGradient16739);fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <text
- id="text9300-9"
- y="485.27835"
- x="93.898621"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:none"
- y="485.27835"
- x="93.898621"
- id="tspan9302-8"
- sodipodi:role="line">User authorisation</tspan></text>
- <text
- id="text9304-5"
- y="508.6889"
- x="93.686707"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="508.6889"
- x="95.596863"
- sodipodi:role="line"
- style="font-size:12px;stroke:none"
- id="tspan12159">(SQL, LDAP or </tspan><tspan
- y="523.6889"
- x="95.596863"
- sodipodi:role="line"
- style="font-size:12px;stroke:none"
- id="tspan12163">fake LDAP using ReDIS) </tspan><tspan
- id="tspan9310-8"
- y="538.6889"
- x="93.686707"
- sodipodi:role="line"
- style="font-size:12px;stroke:none" /></text>
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="m 96.239033,413.80352 -0.147258,53.095"
- id="path17007"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g16932"
- inkscape:connection-end="#g16939" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="m 204.09367,387.69125 -74.95474,79.20727"
- id="path17009"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g16889"
- inkscape:connection-end="#g16939" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="m 249.36342,387.69125 35.92229,103.76264"
- id="path17011"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g16889"
- inkscape:connection-end="#g16794" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="M 254.88157,495.24992 144.01331,413.80352"
- id="path17013"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g16794"
- inkscape:connection-end="#g16932" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="m 385.14058,375.96289 -67.30106,115.491"
- id="path17015"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g16794"
- inkscape:connection-start="#g16995" />
- <g
- id="g16995"
- transform="translate(17.584375,24.41684)">
- <g
- id="g16982">
- <rect
- ry="11.938755"
- rx="15.928825"
- y="281.49658"
- x="307.1355"
- height="70.049469"
- width="161.66194"
- id="rect15356"
- style="fill:url(#linearGradient17005);fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <text
- id="text15358"
- y="303.91473"
- x="388.1813"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:none"
- y="303.91473"
- x="388.1813"
- id="tspan15360"
- sodipodi:role="line">cinder-network</tspan></text>
- <text
- id="text15362"
- y="327.32529"
- x="387.96939"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan15374"
- y="327.32529"
- x="389.87955"
- sodipodi:role="line"
- style="font-size:12px;stroke:none">manages cloud networks, </tspan><tspan
- y="342.32529"
- x="387.96939"
- sodipodi:role="line"
- style="font-size:12px;stroke:none"
- id="tspan21711">vlans and bridges</tspan><tspan
- id="tspan15368"
- y="357.32529"
- x="387.96939"
- sodipodi:role="line"
- style="font-size:12px;stroke:none" /></text>
- </g>
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="m 406.64919,515.24899 -64.32689,6.62466"
- id="path17017"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g16785"
- inkscape:connection-end="#g16794" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="M 413.14924,577.4452 342.3223,546.26585"
- id="path17023"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g16948"
- inkscape:connection-end="#g16794" />
- <g
- id="g16948"
- transform="translate(-50.816078,-86.536142)">
- <rect
- style="fill:url(#linearGradient16765);fill-opacity:1;stroke:#000000;stroke-opacity:1"
- id="rect13528"
- width="161.66194"
- height="70.049469"
- x="457.46527"
- y="661.67847"
- rx="15.928825"
- ry="11.938755" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="538.51111"
- y="684.09662"
- id="text13530"><tspan
- sodipodi:role="line"
- id="tspan13532"
- x="538.51111"
- y="684.09662"
- style="font-size:16px;stroke:none">cinder-volume</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="538.29919"
- y="707.50714"
- id="text13534"><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="538.29919"
- y="707.50714"
- id="tspan21791">disk images for v. guests</tspan><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="538.29919"
- y="722.50714"
- id="tspan21795">(filesystem or AoE)</tspan><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="538.29919"
- y="737.50714"
- id="tspan13540" /></text>
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter21809)"
- d="m 633.9107,494.12013 -11.21252,118.2999"
- id="path17029"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connector-type="polyline"
- id="path17033"
- d="m 626.13785,494.39245 -9.96439,111.53822"
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter21813)" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter21805)"
- d="M 641.38869,494.07338 629.51794,618.68376"
- id="path17035"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(-171.63342,-2.2561093)"
- id="g17417">
- <rect
- ry="11.938755"
- rx="15.928825"
- y="661.67847"
- x="457.46527"
- height="70.049469"
- width="161.66194"
- id="rect17419"
- style="fill:url(#linearGradient17433);fill-opacity:1;stroke:#000000;stroke-opacity:1" />
- <text
- id="text17421"
- y="684.09662"
- x="538.51111"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- style="font-size:16px;stroke:none"
- y="684.09662"
- x="538.51111"
- id="tspan17423"
- sodipodi:role="line">cinder-objectstore</tspan></text>
- <text
- id="text17425"
- y="707.50714"
- x="538.29919"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="707.50714"
- x="538.29919"
- sodipodi:role="line"
- style="font-size:12px;stroke:none"
- id="tspan17441">(implements S3-like api</tspan><tspan
- y="722.50714"
- x="538.29919"
- sodipodi:role="line"
- style="font-size:12px;stroke:none"
- id="tspan17445">Using Files or (later) Swift</tspan><tspan
- id="tspan17431"
- y="737.50714"
- x="538.29919"
- sodipodi:role="line"
- style="font-size:12px;stroke:none" /></text>
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="M 352.22222,659.42236 311.86654,561.54231"
- id="path17447"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g17417"
- inkscape:connection-end="#g16794" />
- <g
- transform="translate(-393.56046,89.539858)"
- id="g20255">
- <rect
- style="fill:url(#linearGradient20271);fill-opacity:1;stroke:#000000;stroke-opacity:1"
- id="rect20257"
- width="161.66194"
- height="70.049469"
- x="457.46527"
- y="503.72324"
- rx="15.928825"
- ry="11.938755" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="538.51111"
- y="526.14136"
- id="text20259"><tspan
- sodipodi:role="line"
- id="tspan20261"
- x="538.51111"
- y="526.14136"
- style="font-size:16px;stroke:none">cinder-scheduler</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="538.29919"
- y="549.55194"
- id="text20263"><tspan
- id="tspan20267"
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="540.20935"
- y="549.55194">Plans where to </tspan><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="538.29919"
- y="564.55194"
- id="tspan20275">place new guests</tspan><tspan
- style="font-size:12px;stroke:none"
- sodipodi:role="line"
- x="538.29919"
- y="579.55194"
- id="tspan20269" /></text>
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="m 197.27203,593.26309 56.4451,-37.63067"
- id="path20277"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g20255"
- inkscape:connection-end="#g16794" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0;marker-start:url(#Arrow1Lstart-5);marker-end:url(#Arrow1Lend-9)"
- d="m 477.13366,261.49678 -45.75253,42.48451"
- id="path21306"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg19253"
- sodipodi:version="0.32"
- inkscape:version="0.47 r22583"
- version="1.0"
- sodipodi:docname="CINDER_clouds_A_B.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/var/www/alekiba/cinder/CINDER_clouds_A_B.png"
- inkscape:export-xdpi="100"
- inkscape:export-ydpi="100">
- <defs
- id="defs19255">
- <linearGradient
- id="linearGradient5178">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5180" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.49803922;"
- offset="0.89021850"
- id="stop5186" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.24705882;"
- offset="0.95396262"
- id="stop5188" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop5182" />
- </linearGradient>
- <linearGradient
- id="linearGradient4068">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop4070" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop4490" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop4492" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop4072" />
- </linearGradient>
- <linearGradient
- id="linearGradient4554">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop4556" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop4558" />
- </linearGradient>
- <linearGradient
- id="linearGradient4886">
- <stop
- style="stop-color:#1c97e1;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop4888" />
- <stop
- style="stop-color:#006798;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4890" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202">
- <stop
- id="stop2204"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective19261" />
- <inkscape:perspective
- id="perspective19535"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- y2="683.92651"
- x2="482.37622"
- y1="298.85724"
- x1="332.67328"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14778"
- xlink:href="#linearGradient114931"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient114931"
- inkscape:collect="always">
- <stop
- id="stop114933"
- offset="0"
- style="stop-color:#2e3436;stop-opacity:1;" />
- <stop
- id="stop114935"
- offset="1"
- style="stop-color:#2e3436;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- y2="399.49088"
- x2="335.66339"
- y1="237.31267"
- x1="218.73267"
- gradientTransform="matrix(1.1048951,0,0,1.1048951,67.985466,73.286385)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14780"
- xlink:href="#linearGradient114953"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient114953"
- inkscape:collect="always">
- <stop
- id="stop114955"
- offset="0"
- style="stop-color:#191a19;stop-opacity:1;" />
- <stop
- id="stop114957"
- offset="1"
- style="stop-color:#191a19;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- y2="166.61961"
- x2="236.19801"
- y1="224.83743"
- x1="273.62375"
- gradientTransform="matrix(0.9983345,0,0,1.0398445,80.706264,173.27788)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient14782"
- xlink:href="#linearGradient114975"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient114975"
- inkscape:collect="always">
- <stop
- id="stop114977"
- offset="0"
- style="stop-color:#3465a4;stop-opacity:1" />
- <stop
- id="stop114979"
- offset="1"
- style="stop-color:#3465a4;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5" />
- </linearGradient>
- <linearGradient
- id="linearGradient4886-1">
- <stop
- id="stop4888-5"
- offset="0.0000000"
- style="stop-color:#1c97e1;stop-opacity:1.0000000;" />
- <stop
- id="stop4890-4"
- offset="1.0000000"
- style="stop-color:#006798;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4738">
- <stop
- id="stop4740"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.72656250;" />
- <stop
- id="stop4742"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4554-3">
- <stop
- id="stop4556-9"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop4558-4"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient414">
- <stop
- id="stop415"
- offset="0.00000000"
- style="stop-color:#ffd800;stop-opacity:1.0000000;" />
- <stop
- id="stop416"
- offset="1.0000000"
- style="stop-color:#e77900;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4568">
- <stop
- id="stop4570"
- offset="0"
- style="stop-color:#e12b1c;stop-opacity:1;" />
- <stop
- id="stop4572"
- offset="1.0000000"
- style="stop-color:#980b00;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3175">
- <stop
- id="stop3177"
- offset="0"
- style="stop-color:#41a0ee;stop-opacity:1;" />
- <stop
- style="stop-color:#378be4;stop-opacity:1;"
- offset="0.64377683"
- id="stop3191" />
- <stop
- id="stop3179"
- offset="1"
- style="stop-color:#2d77db;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3159">
- <stop
- id="stop3161"
- offset="0"
- style="stop-color:#b0dc18;stop-opacity:1;" />
- <stop
- style="stop-color:#3ea20c;stop-opacity:1;"
- offset="0.56223178"
- id="stop3187" />
- <stop
- id="stop3163"
- offset="1"
- style="stop-color:#006900;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3195">
- <stop
- id="stop3199"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop3201" />
- </linearGradient>
- <linearGradient
- id="linearGradient3273">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop3275" />
- <stop
- id="stop3289"
- offset="0.5"
- style="stop-color:#ffffff;stop-opacity:0;" />
- <stop
- style="stop-color:#000000;stop-opacity:0.21602787;"
- offset="1"
- id="stop3283" />
- <stop
- id="stop3277"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.59233451;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3180">
- <stop
- id="stop3186"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop3188" />
- </linearGradient>
- <radialGradient
- r="24.998358"
- fy="571.95715"
- fx="384.69696"
- cy="571.95715"
- cx="384.69696"
- gradientUnits="userSpaceOnUse"
- id="radialGradient7730"
- xlink:href="#linearGradient5178-3"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7728"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7726"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7724"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7722"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7720"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7718"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7716"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7714"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7712"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7710"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7708"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7706"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7704"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7702"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7700"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7698"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7696"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7694"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7692"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7690"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7688"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7686"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7684"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7682"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <linearGradient
- y2="1061.9722"
- x2="191.89183"
- y1="993.39124"
- x1="145.52031"
- spreadMethod="reflect"
- gradientTransform="scale(1.003627,0.996386)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient7680"
- xlink:href="#linearGradient4068-4"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient117519"
- xlink:href="#linearGradient2202-3"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient117517"
- xlink:href="#linearGradient2202-3"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient2202-3">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-4" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-2" />
- </linearGradient>
- <linearGradient
- id="linearGradient4886-3">
- <stop
- id="stop4888-1"
- offset="0.0000000"
- style="stop-color:#1c97e1;stop-opacity:1.0000000;" />
- <stop
- id="stop4890-8"
- offset="1.0000000"
- style="stop-color:#006798;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4554-9">
- <stop
- id="stop4556-2"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop4558-2"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4738-6">
- <stop
- id="stop4740-0"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.72656250;" />
- <stop
- id="stop4742-8"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="387.43924"
- x2="332.02466"
- y1="369.97995"
- x1="314.56537"
- gradientUnits="userSpaceOnUse"
- id="linearGradient109180"
- xlink:href="#linearGradient4568-4"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4568-4">
- <stop
- id="stop4570-3"
- offset="0"
- style="stop-color:#e12b1c;stop-opacity:1;" />
- <stop
- id="stop4572-8"
- offset="1.0000000"
- style="stop-color:#980b00;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- y2="390.49332"
- x2="414.38986"
- y1="376.13748"
- x1="401.93405"
- gradientTransform="matrix(0.999946,0,0,1.000054,-175.79715,404.73102)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient109182"
- xlink:href="#linearGradient4738-6"
- inkscape:collect="always" />
- <linearGradient
- y2="390.78342"
- x2="311.27377"
- y1="377.9527"
- x1="302.73621"
- gradientTransform="matrix(1.9519,0,0,1.84182,-382.19925,74.95322)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient109184"
- xlink:href="#linearGradient4554-9"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4068-4">
- <stop
- id="stop4070-2"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop4490-5"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop4492-2"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop4072-4"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5178-3">
- <stop
- id="stop5180-4"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop5186-9"
- offset="0.89021850"
- style="stop-color:#ffffff;stop-opacity:0.49803922;" />
- <stop
- id="stop5188-2"
- offset="0.95396262"
- style="stop-color:#ffffff;stop-opacity:0.24705882;" />
- <stop
- id="stop5182-7"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <inkscape:perspective
- id="perspective838"
- inkscape:persp3d-origin="750.79663 : 307.92326 : 1"
- inkscape:vp_z="1501.5933 : 461.88489 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 461.88489 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="linearGradient12076"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1"
- id="radialGradient12078"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <inkscape:perspective
- id="perspective12088"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12182"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12184"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12186"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12188"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12190"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12192"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12194"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12196"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12198"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12200"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12202"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12204"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12206"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12208"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12210"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12212"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12214"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12216"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12218"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12220"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12222"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12226"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12228"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient12230"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient12232"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <inkscape:perspective
- id="perspective12388"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-5">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-8" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-5" />
- </linearGradient>
- <linearGradient
- id="linearGradient12397">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop12399" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop12401" />
- </linearGradient>
- <inkscape:perspective
- id="perspective12388-9"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-8">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-1" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-2" />
- </linearGradient>
- <linearGradient
- id="linearGradient12397-7">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop12399-8" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop12401-6" />
- </linearGradient>
- <inkscape:perspective
- id="perspective12388-3"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-9">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-4" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-8" />
- </linearGradient>
- <linearGradient
- id="linearGradient12397-9">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop12399-2" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop12401-9" />
- </linearGradient>
- <inkscape:perspective
- id="perspective12388-1"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-93">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-6" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-21" />
- </linearGradient>
- <linearGradient
- id="linearGradient12397-5">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop12399-3" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop12401-91" />
- </linearGradient>
- <inkscape:perspective
- id="perspective12953"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective13067"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective13089"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective13893"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-2">
- <stop
- id="stop2204-6"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-6"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202"
- id="radialGradient14034"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <inkscape:perspective
- id="perspective14079"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-2-4">
- <stop
- id="stop2204-6-7"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-6-8"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-0">
- <stop
- id="stop2204-0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-64"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-93-7">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-6-5" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-21-8" />
- </linearGradient>
- <linearGradient
- id="linearGradient14096">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop14098" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop14100" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-9-9">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-4-3" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-8-0" />
- </linearGradient>
- <linearGradient
- id="linearGradient14107">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop14109" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop14111" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-8-4">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-1-3" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-2-8" />
- </linearGradient>
- <linearGradient
- id="linearGradient14118">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop14120" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop14122" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-5-0">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-8-8" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-5-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient14129">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop14131" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop14133" />
- </linearGradient>
- <inkscape:perspective
- id="perspective24883"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-2-1">
- <stop
- id="stop2204-6-0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-6-0"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient24892">
- <stop
- id="stop24894"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop24896"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-93-3">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-6-1" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-21-0" />
- </linearGradient>
- <linearGradient
- id="linearGradient24903">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop24905" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop24907" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-9-8">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-4-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-8-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient24914">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop24916" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop24918" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-8-3">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-1-4" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-2-7" />
- </linearGradient>
- <linearGradient
- id="linearGradient24925">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop24927" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop24929" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-5-4">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-8-4" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-5-2" />
- </linearGradient>
- <linearGradient
- id="linearGradient24936">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop24938" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop24940" />
- </linearGradient>
- <inkscape:perspective
- id="perspective25775"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient28127"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient28129"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient28131"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient28133"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient28135"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient28137"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient28139"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient28141"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient28143"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient28145"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <inkscape:perspective
- id="perspective28939"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective29218"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective29250"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-19">
- <stop
- id="stop2204-02"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-3"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29250-3"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-7">
- <stop
- id="stop2204-64"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-9"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29416"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective29448"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-53">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-2" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-4" />
- </linearGradient>
- <linearGradient
- id="linearGradient29457">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop29459" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop29461" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29448-9"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-51">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-42" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-82" />
- </linearGradient>
- <linearGradient
- id="linearGradient29457-9">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop29459-9" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop29461-9" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29448-6"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-7">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-64" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-23" />
- </linearGradient>
- <linearGradient
- id="linearGradient29457-0">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop29459-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop29461-7" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29448-94"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-87">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-5" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-40" />
- </linearGradient>
- <linearGradient
- id="linearGradient29457-2">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop29459-8" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop29461-0" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29448-2"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-1">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-83" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-86" />
- </linearGradient>
- <linearGradient
- id="linearGradient29457-8">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop29459-07" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop29461-3" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29448-8"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-2">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-3" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient29457-91">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop29459-3" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop29461-6" />
- </linearGradient>
- <inkscape:perspective
- id="perspective29448-4"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-3">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-50" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-234" />
- </linearGradient>
- <linearGradient
- id="linearGradient29457-23">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop29459-2" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop29461-1" />
- </linearGradient>
- <inkscape:perspective
- id="perspective30318"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-59">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-33" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-0" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-5"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-6" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern30331"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern30338"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern30345"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern30352"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern30359"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern30366"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern30373"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <inkscape:perspective
- id="perspective30318-6"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-32">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-47" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-85" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-9"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-63" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern30331-1"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern30338-9"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern30345-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern30352-9"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern30359-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern30366-8"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern30373-6"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <inkscape:perspective
- id="perspective30318-1"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-90">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-56" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-4"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-5" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern30331-7"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern30338-3"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern30345-8"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern30352-91"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern30359-1"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern30366-9"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern30373-9"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <inkscape:perspective
- id="perspective30318-8"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-52">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-54" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-55" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-92"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-9" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern30331-79"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern30338-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern30345-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern30352-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern30359-6"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern30366-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern30373-7"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <inkscape:perspective
- id="perspective30318-2"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-19">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-7" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-06" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-6"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-7" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern30331-16"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern30338-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern30345-81"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern30352-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern30359-7"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern30366-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern30373-1"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <inkscape:perspective
- id="perspective30318-5"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-900">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-23" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-6" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-1"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-72" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-1"
- id="pattern30331-9"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-1"
- id="pattern30338-58"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-1"
- id="pattern30345-3"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-1"
- id="pattern30352-1"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-1"
- id="pattern30359-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-1"
- id="pattern30366-3"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-1"
- id="pattern30373-98"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <inkscape:perspective
- id="perspective31338"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective33323"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-2"
- id="radialGradient28685-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient2202-2-1-2">
- <stop
- id="stop2204-6-0-4"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-6-0-6"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-1"
- id="linearGradient28681-3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-93-3-1">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-6-1-4" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-21-0-3" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-1"
- id="radialGradient28683-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33336">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33338" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33340" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-9"
- id="linearGradient28677-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-9-8-9">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-4-0-7" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-8-1-6" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-9"
- id="radialGradient28679-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33347">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33349" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33351" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-6"
- id="linearGradient28673-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-8-3-6">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-1-4-6" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-2-7-1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-6"
- id="radialGradient28675-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33358">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33360" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33362" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-6"
- id="linearGradient28669-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-5-4-6">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-8-4-8" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-5-2-3" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-6"
- id="radialGradient28671-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33369">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33371" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33373" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-2"
- id="radialGradient28667-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient33376">
- <stop
- id="stop33378"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop33380"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-2"
- id="radialGradient33382"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient33384">
- <stop
- id="stop33386"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop33388"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-1"
- id="linearGradient33390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient33392">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33394" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33396" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-1"
- id="radialGradient33398"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33400">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33402" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33404" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-9"
- id="linearGradient33406"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient33408">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33410" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33412" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-9"
- id="radialGradient33414"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33416">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33418" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33420" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-6"
- id="linearGradient33422"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient33424">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33426" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33428" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-6"
- id="radialGradient33430"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33432">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33434" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33436" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-6"
- id="linearGradient33438"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient33440">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33442" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33444" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-6"
- id="radialGradient33446"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient33448">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop33450" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop33452" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-2"
- id="radialGradient33454"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient33456">
- <stop
- id="stop33458"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop33460"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- r="3"
- fy="265.86209"
- fx="97.48214"
- cy="265.86209"
- cx="97.48214"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient33952"
- xlink:href="#linearGradient2202-2-1-2"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient33954"
- xlink:href="#linearGradient2202-1-5-4-6"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient33956"
- xlink:href="#linearGradient2202-1-5-4-6"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient33958"
- xlink:href="#linearGradient2202-1-8-3-6"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient33960"
- xlink:href="#linearGradient2202-1-8-3-6"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient33962"
- xlink:href="#linearGradient2202-1-9-8-9"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient33964"
- xlink:href="#linearGradient2202-1-9-8-9"
- inkscape:collect="always" />
- <linearGradient
- y2="207.36218"
- x2="195"
- y1="207.36218"
- x1="175"
- gradientTransform="translate(-153,-176.36218)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient33966"
- xlink:href="#linearGradient2202-1-93-3-1"
- inkscape:collect="always" />
- <radialGradient
- r="4.5"
- fy="349.86218"
- fx="109"
- cy="349.86218"
- cx="109"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient33968"
- xlink:href="#linearGradient2202-1-93-3-1"
- inkscape:collect="always" />
- <radialGradient
- r="3"
- fy="265.86209"
- fx="97.48214"
- cy="265.86209"
- cx="97.48214"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient33970"
- xlink:href="#linearGradient2202-2-1-2"
- inkscape:collect="always" />
- <inkscape:perspective
- id="perspective35151"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-54">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-57" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-52" />
- </linearGradient>
- <linearGradient
- id="linearGradient35160">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop35162" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop35164" />
- </linearGradient>
- <linearGradient
- y2="487.91693"
- x2="-124.93314"
- y1="472.52106"
- x1="-137.36061"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3438-4"
- xlink:href="#linearGradient414-2"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient414-2">
- <stop
- id="stop415-6"
- offset="0.00000000"
- style="stop-color:#ffd800;stop-opacity:1.0000000;" />
- <stop
- id="stop416-0"
- offset="1.0000000"
- style="stop-color:#e77900;stop-opacity:1.0000000;" />
- </linearGradient>
- <inkscape:perspective
- id="perspective35294"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-19-1">
- <stop
- id="stop2204-02-4"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-3-1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <inkscape:perspective
- id="perspective36260"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-31">
- <stop
- id="stop2204-2"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-99"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient36269">
- <stop
- id="stop36271"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop36273"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <inkscape:perspective
- id="perspective80107"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective80129"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective80164"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective80186"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective80208"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient4068-1">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop4070-7" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop4490-1" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop4492-25" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop4072-49" />
- </linearGradient>
- <linearGradient
- id="linearGradient80219">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80221" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80223" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80225" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80227" />
- </linearGradient>
- <linearGradient
- id="linearGradient80230">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80232" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80234" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80236" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80238" />
- </linearGradient>
- <linearGradient
- id="linearGradient80241">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80243" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80245" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80247" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80249" />
- </linearGradient>
- <linearGradient
- id="linearGradient80252">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80254" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80256" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80258" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80260" />
- </linearGradient>
- <linearGradient
- id="linearGradient80263">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80265" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80267" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80269" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80271" />
- </linearGradient>
- <linearGradient
- id="linearGradient80274">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80276" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80278" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80280" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80282" />
- </linearGradient>
- <linearGradient
- id="linearGradient80285">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80287" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80289" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80291" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80293" />
- </linearGradient>
- <linearGradient
- id="linearGradient80296">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80298" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80300" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80302" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80304" />
- </linearGradient>
- <linearGradient
- id="linearGradient80307">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80309" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80311" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80313" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80315" />
- </linearGradient>
- <linearGradient
- id="linearGradient80318">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80320" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80322" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80324" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80326" />
- </linearGradient>
- <linearGradient
- id="linearGradient80329">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80331" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80333" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80335" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80337" />
- </linearGradient>
- <linearGradient
- id="linearGradient80340">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80342" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80344" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80346" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80348" />
- </linearGradient>
- <linearGradient
- id="linearGradient80351">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80353" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80355" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80357" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80359" />
- </linearGradient>
- <linearGradient
- id="linearGradient80362">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80364" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80366" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80368" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80370" />
- </linearGradient>
- <linearGradient
- id="linearGradient80373">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80375" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80377" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80379" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80381" />
- </linearGradient>
- <linearGradient
- id="linearGradient80384">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80386" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80388" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80390" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80392" />
- </linearGradient>
- <linearGradient
- id="linearGradient80395">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80397" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80399" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80401" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80403" />
- </linearGradient>
- <linearGradient
- id="linearGradient80406">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80408" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80410" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80412" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80414" />
- </linearGradient>
- <linearGradient
- id="linearGradient80417">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80419" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80421" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80423" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80425" />
- </linearGradient>
- <linearGradient
- id="linearGradient80428">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80430" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80432" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80434" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80436" />
- </linearGradient>
- <linearGradient
- id="linearGradient80439">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80441" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80443" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80445" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80447" />
- </linearGradient>
- <linearGradient
- id="linearGradient80450">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80452" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80454" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80456" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80458" />
- </linearGradient>
- <linearGradient
- id="linearGradient80461">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80463" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80465" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80467" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80469" />
- </linearGradient>
- <linearGradient
- id="linearGradient80472">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop80474" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop80476" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop80478" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop80480" />
- </linearGradient>
- <linearGradient
- id="linearGradient5178-1">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5180-8" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.49803922;"
- offset="0.89021850"
- id="stop5186-98" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.24705882;"
- offset="0.95396262"
- id="stop5188-20" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop5182-5" />
- </linearGradient>
- <inkscape:perspective
- id="perspective80938"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-95">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-72" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-406" />
- </linearGradient>
- <linearGradient
- id="linearGradient80947">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop80949" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop80951" />
- </linearGradient>
- <inkscape:perspective
- id="perspective81071"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective81097"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-1-95-8">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-72-4" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-406-3" />
- </linearGradient>
- <linearGradient
- id="linearGradient81106">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop81108" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop81110" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient81224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient81226"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient81228"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient81230"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient81232"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient81234"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient81236"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient81238"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-59"
- id="linearGradient81240"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-32"
- id="linearGradient81242"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-90"
- id="linearGradient81244"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-52"
- id="linearGradient81246"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-19"
- id="linearGradient81248"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient81250"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81252"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81254"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81256"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81258"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81260"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81262"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81264"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81266"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81282"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81284"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81286"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81288"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81290"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81292"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81294"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81296"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81298"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81300"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81302"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81304"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81308"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81310"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient81312"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81314"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81316"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81318"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81320"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81324"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81326"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81328"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81330"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81332"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81334"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81336"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81340"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81342"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81344"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81346"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81348"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81350"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81352"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81356"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81358"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81360"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81362"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient81364"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="linearGradient81366"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="radialGradient81368"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-2"
- id="linearGradient81370"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient81372"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81374"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81378"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81380"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81382"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81384"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81386"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81388"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81392"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient81394"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient81396"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient81398"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient81400"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient81402"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient81404"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient81406"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient81408"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient81410"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient81412"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-59"
- id="linearGradient81414"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-32"
- id="linearGradient81416"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-90"
- id="linearGradient81418"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-52"
- id="linearGradient81420"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-19"
- id="linearGradient81422"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient81424"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81426"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81428"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81430"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81432"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81434"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81436"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81438"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81440"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81442"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81444"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81446"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81448"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81452"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81454"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81456"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81458"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81460"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81462"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81464"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81466"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81468"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81470"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81472"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81474"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81476"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81478"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81480"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81482"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81484"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient81486"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81488"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81492"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81494"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81496"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81498"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81500"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81502"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81504"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81508"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81510"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81512"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81514"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81516"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81518"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81520"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81522"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81526"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81528"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81530"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81532"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81534"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient81536"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient81538"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="linearGradient81540"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="radialGradient81542"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-2"
- id="linearGradient81544"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient81546"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81548"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient81550"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient81552"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient81554"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient81556"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient81558"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient81560"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient81562"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient81564"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient81566"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient81568"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient81570"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <inkscape:perspective
- id="perspective83870"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 461.88489 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1501.5933 : 461.88489 : 1"
- inkscape:persp3d-origin="750.79663 : 307.92326 : 1"
- id="perspective838-4" />
- <linearGradient
- id="linearGradient5178-3-3">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5180-4-4" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.49803922;"
- offset="0.89021850"
- id="stop5186-9-0" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.24705882;"
- offset="0.95396262"
- id="stop5188-2-5" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop5182-7-0" />
- </linearGradient>
- <linearGradient
- id="linearGradient4068-4-3">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop4070-2-9" />
- <stop
- style="stop-color:#000000;stop-opacity:0.49803922;"
- offset="0.67741936"
- id="stop4490-5-1" />
- <stop
- style="stop-color:#000000;stop-opacity:0.24705882;"
- offset="0.86472428"
- id="stop4492-2-7" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop4072-4-8" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4554-9-7"
- id="linearGradient109184-7"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.9519,0,0,1.84182,-382.19925,74.95322)"
- x1="302.73621"
- y1="377.9527"
- x2="311.27377"
- y2="390.78342" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4738-6-3"
- id="linearGradient109182-7"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.999946,0,0,1.000054,-175.79715,404.73102)"
- x1="401.93405"
- y1="376.13748"
- x2="414.38986"
- y2="390.49332" />
- <linearGradient
- id="linearGradient4568-4-2">
- <stop
- style="stop-color:#e12b1c;stop-opacity:1;"
- offset="0"
- id="stop4570-3-3" />
- <stop
- style="stop-color:#980b00;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4572-8-4" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4568-4-2"
- id="linearGradient109180-9"
- gradientUnits="userSpaceOnUse"
- x1="314.56537"
- y1="369.97995"
- x2="332.02466"
- y2="387.43924" />
- <linearGradient
- id="linearGradient4738-6-3">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.72656250;"
- offset="0.0000000"
- id="stop4740-0-9" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4742-8-3" />
- </linearGradient>
- <linearGradient
- id="linearGradient4554-9-7">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop4556-2-0" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop4558-2-5" />
- </linearGradient>
- <linearGradient
- id="linearGradient4886-3-9">
- <stop
- style="stop-color:#1c97e1;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop4888-1-4" />
- <stop
- style="stop-color:#006798;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4890-8-3" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-3-7">
- <stop
- id="stop2204-4-4"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-2-2"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient117517-3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient117519-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="2"
- height="1"
- patternTransform="matrix(0,5.5342899,-7.4864229,0,31.668795,357.00572)"
- id="Strips1_1-2"
- inkscape:stockid="Stripes 1:1">
- <rect
- style="fill:black;stroke:none"
- x="0"
- y="-0.5"
- width="1"
- height="2"
- id="rect5260-4" />
- </pattern>
- <pattern
- patternTransform="matrix(0,5.5342899,-7.4864232,0,521.74506,337.35904)"
- id="pattern118687-5"
- xlink:href="#Strips1_1-2"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient114931-1"
- inkscape:collect="always">
- <stop
- id="stop114933-7"
- offset="0"
- style="stop-color:#2e3436;stop-opacity:1;" />
- <stop
- id="stop114935-5"
- offset="1"
- style="stop-color:#2e3436;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient114953-7"
- inkscape:collect="always">
- <stop
- id="stop114955-1"
- offset="0"
- style="stop-color:#191a19;stop-opacity:1;" />
- <stop
- id="stop114957-6"
- offset="1"
- style="stop-color:#191a19;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient114975-9"
- inkscape:collect="always">
- <stop
- id="stop114977-8"
- offset="0"
- style="stop-color:#3465a4;stop-opacity:1" />
- <stop
- id="stop114979-1"
- offset="1"
- style="stop-color:#3465a4;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7680-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7682-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7684-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7686-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7688-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7690-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7692-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7694-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7696-1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7698-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7700-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7702-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7704-3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7706-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7708-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7710-1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7712-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7714-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7716-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7718-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7720-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7722-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7724-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7726-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient7728-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3-3"
- id="radialGradient7730-1"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6028"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6030"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6032"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6034"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6036"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6038"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6040"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <pattern
- inkscape:stockid="Wavy"
- id="Wavy"
- height="5.1805778"
- width="30.066020"
- patternUnits="userSpaceOnUse"
- inkscape:collect="always">
- <path
- id="path6343"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- style="fill:black;stroke:none;" />
- </pattern>
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)"
- id="pattern6024"
- xlink:href="#Wavy"
- inkscape:collect="always" />
- <pattern
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)"
- id="pattern6042"
- xlink:href="#pattern6024"
- inkscape:collect="always" />
- <filter
- color-interpolation-filters="sRGB"
- id="filter3197"
- inkscape:collect="always">
- <feGaussianBlur
- id="feGaussianBlur3199"
- stdDeviation="5.125686"
- inkscape:collect="always" />
- </filter>
- <linearGradient
- id="linearGradient3180-5">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3186-6" />
- <stop
- id="stop3188-7"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3273-7">
- <stop
- id="stop3275-5"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:0;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0.5"
- id="stop3289-8" />
- <stop
- id="stop3283-6"
- offset="1"
- style="stop-color:#000000;stop-opacity:0.21602787;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.59233451;"
- offset="1"
- id="stop3277-7" />
- </linearGradient>
- <linearGradient
- id="linearGradient3195-1">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3199-2" />
- <stop
- id="stop3201-3"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3159-7">
- <stop
- style="stop-color:#b0dc18;stop-opacity:1;"
- offset="0"
- id="stop3161-7" />
- <stop
- id="stop3187-2"
- offset="0.56223178"
- style="stop-color:#3ea20c;stop-opacity:1;" />
- <stop
- style="stop-color:#006900;stop-opacity:1;"
- offset="1"
- id="stop3163-7" />
- </linearGradient>
- <filter
- color-interpolation-filters="sRGB"
- id="filter3267"
- inkscape:collect="always">
- <feGaussianBlur
- id="feGaussianBlur3269"
- stdDeviation="0.97583505"
- inkscape:collect="always" />
- </filter>
- <linearGradient
- id="linearGradient3175-8">
- <stop
- style="stop-color:#41a0ee;stop-opacity:1;"
- offset="0"
- id="stop3177-0" />
- <stop
- id="stop3191-2"
- offset="0.64377683"
- style="stop-color:#378be4;stop-opacity:1;" />
- <stop
- style="stop-color:#2d77db;stop-opacity:1;"
- offset="1"
- id="stop3179-5" />
- </linearGradient>
- <linearGradient
- id="linearGradient4568-5">
- <stop
- style="stop-color:#e12b1c;stop-opacity:1;"
- offset="0"
- id="stop4570-4" />
- <stop
- style="stop-color:#980b00;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4572-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient414-1">
- <stop
- style="stop-color:#ffd800;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop415-0" />
- <stop
- style="stop-color:#e77900;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop416-04" />
- </linearGradient>
- <linearGradient
- id="linearGradient4554-3-1">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop4556-9-4" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop4558-4-5" />
- </linearGradient>
- <linearGradient
- id="linearGradient4738-8">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.72656250;"
- offset="0.0000000"
- id="stop4740-4" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4742-3" />
- </linearGradient>
- <linearGradient
- id="linearGradient4886-1-9">
- <stop
- style="stop-color:#1c97e1;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop4888-5-5" />
- <stop
- style="stop-color:#006798;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4890-4-8" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-6">
- <stop
- id="stop2204-5-35"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-5-9"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient114975-3">
- <stop
- style="stop-color:#3465a4;stop-opacity:1"
- offset="0"
- id="stop114977-0" />
- <stop
- style="stop-color:#3465a4;stop-opacity:0;"
- offset="1"
- id="stop114979-6" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114975-3"
- id="linearGradient14782-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9983345,0,0,1.0398445,80.706264,173.27788)"
- x1="273.62375"
- y1="224.83743"
- x2="236.19801"
- y2="166.61961" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient114953-5">
- <stop
- style="stop-color:#191a19;stop-opacity:1;"
- offset="0"
- id="stop114955-3" />
- <stop
- style="stop-color:#191a19;stop-opacity:0;"
- offset="1"
- id="stop114957-7" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114953-5"
- id="linearGradient14780-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1048951,0,0,1.1048951,67.985466,73.286385)"
- x1="218.73267"
- y1="237.31267"
- x2="335.66339"
- y2="399.49088" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient114931-5">
- <stop
- style="stop-color:#2e3436;stop-opacity:1;"
- offset="0"
- id="stop114933-1" />
- <stop
- style="stop-color:#2e3436;stop-opacity:0;"
- offset="1"
- id="stop114935-50" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114931-5"
- id="linearGradient14778-2"
- gradientUnits="userSpaceOnUse"
- x1="332.67328"
- y1="298.85724"
- x2="482.37622"
- y2="683.92651" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective19535-5" />
- <inkscape:perspective
- id="perspective19261-3"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-8">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-20" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-63" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- xlink:href="#Strips1_1"
- id="pattern118687"
- patternTransform="matrix(0,5.5342899,-7.4864232,0,521.74506,337.35904)" />
- <pattern
- inkscape:stockid="Stripes 1:1"
- id="Strips1_1"
- patternTransform="matrix(0,5.5342899,-7.4864229,0,31.668795,357.00572)"
- height="1"
- width="2"
- patternUnits="userSpaceOnUse"
- inkscape:collect="always">
- <rect
- id="rect5260"
- height="2"
- width="1"
- y="-0.5"
- x="0"
- style="fill:black;stroke:none" />
- </pattern>
- <linearGradient
- id="linearGradient4886-6">
- <stop
- id="stop4888-3"
- offset="0.0000000"
- style="stop-color:#1c97e1;stop-opacity:1.0000000;" />
- <stop
- id="stop4890-0"
- offset="1.0000000"
- style="stop-color:#006798;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4554-0">
- <stop
- id="stop4556-8"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop4558-9"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4068-0">
- <stop
- id="stop4070-6"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop4490-0"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop4492-1"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop4072-7"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5178-7">
- <stop
- id="stop5180-5"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop5186-7"
- offset="0.89021850"
- style="stop-color:#ffffff;stop-opacity:0.49803922;" />
- <stop
- id="stop5188-9"
- offset="0.95396262"
- style="stop-color:#ffffff;stop-opacity:0.24705882;" />
- <stop
- id="stop5182-1"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89569"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89571"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89573"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89575"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89577"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89579"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89581"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89583"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89585"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89587"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89589"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89591"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89593"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89595"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89597"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89599"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89601"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89603"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89605"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89607"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89609"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89611"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89613"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89615"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-0"
- id="linearGradient89617"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-7"
- id="radialGradient89619"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4886-6"
- id="linearGradient89621"
- gradientUnits="userSpaceOnUse"
- x1="314.56537"
- y1="369.97995"
- x2="332.02466"
- y2="387.43924" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4554-0"
- id="linearGradient89623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.9519,0,0,1.84182,-297.02235,74.95322)"
- x1="302.73621"
- y1="377.9527"
- x2="311.27377"
- y2="390.78342" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="radialGradient89625"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="linearGradient89627"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="radialGradient89629"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="linearGradient89631"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="radialGradient89633"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="radialGradient89635"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="radialGradient89637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-8"
- id="radialGradient89639"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89641"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89643"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89645"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3175-8"
- id="radialGradient89647"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.105165,1.228066,-0.8683345,0.7814343,1473.1011,172.79095)"
- cx="127.83543"
- cy="1736.9607"
- fx="127.83543"
- fy="1736.9607"
- r="199.63403" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3159-7"
- id="radialGradient89649"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5002429,1.4674024,-1.2539857,0.4274882,2324.404,828.29789)"
- cx="65.333183"
- cy="1808.0941"
- fx="65.333183"
- fy="1808.0941"
- r="195.94841" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3195-1"
- id="radialGradient89651"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.1992334,1.195744,-1.1829727,0.1971052,1996.7215,1257.5875)"
- cx="13.846332"
- cy="1679.6958"
- fx="13.846332"
- fy="1679.6958"
- r="199.13403" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3273-7"
- id="radialGradient89653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.1087803,1.4752039,-1.9297648,-0.1423,3255.8728,1823.5882)"
- cx="5.8389463"
- cy="1673.207"
- fx="5.8389463"
- fy="1673.207"
- r="199.13403" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3180-5"
- id="radialGradient89655"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.466646,1.4600162,-1.3948135,0.4458064,2272.5859,931.37623)"
- cx="-90.184074"
- cy="1676.9956"
- fx="-90.184074"
- fy="1676.9956"
- r="199.13403" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89657"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89659"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4568-5"
- id="linearGradient89661"
- gradientUnits="userSpaceOnUse"
- x1="314.56537"
- y1="369.97995"
- x2="332.02466"
- y2="387.43924" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4738-8"
- id="linearGradient89663"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.999946,0,0,1.000054,-175.79715,404.73102)"
- x1="401.93405"
- y1="376.13748"
- x2="414.38986"
- y2="390.49332" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4554-3-1"
- id="linearGradient89665"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.9519,0,0,1.84182,-382.19925,74.95322)"
- x1="302.73621"
- y1="377.9527"
- x2="311.27377"
- y2="390.78342" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89667"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89669"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89671"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89673"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89675"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89677"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-1"
- id="linearGradient89679"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89681"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89683"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89685"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89687"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89689"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89691"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89693"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89695"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89697"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89699"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4886-1-9"
- id="linearGradient89701"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(32.697924,534.73628)"
- x1="838.01013"
- y1="-320.49728"
- x2="909.21588"
- y2="-321.47269" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4738-8"
- id="linearGradient89703"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.638597,0,0,1.565933,-355.04905,402.57752)"
- x1="1313.4297"
- y1="237.96057"
- x2="1333.0073"
- y2="258.76886" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4554-3-1"
- id="linearGradient89705"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-354.99455,401.23652)"
- x1="808.12592"
- y1="362.58139"
- x2="832.68341"
- y2="400.04047" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="linearGradient89707"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-6"
- id="radialGradient89709"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89711"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89713"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89715"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89717"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89719"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89721"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89723"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89725"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89727"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89729"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89731"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89733"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89735"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89737"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89739"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89741"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89743"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89745"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89747"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89749"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89751"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89753"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89755"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89757"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89759"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89761"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89763"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89765"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89767"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89769"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89771"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89773"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89775"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4-3"
- id="linearGradient89777"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3-3"
- id="radialGradient89779"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89781"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89783"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89785"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89787"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89789"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89791"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89793"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89795"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89797"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89799"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89801"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4886-3-9"
- id="linearGradient89803"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(32.697924,534.73628)"
- x1="838.01013"
- y1="-320.49728"
- x2="909.21588"
- y2="-321.47269" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4738-6-3"
- id="linearGradient89805"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.638597,0,0,1.565933,-355.04905,402.57752)"
- x1="1313.4297"
- y1="237.96057"
- x2="1333.0073"
- y2="258.76886" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4554-9-7"
- id="linearGradient89807"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-354.99455,401.23652)"
- x1="808.12592"
- y1="362.58139"
- x2="832.68341"
- y2="400.04047" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114931-1"
- id="linearGradient89809"
- gradientUnits="userSpaceOnUse"
- x1="332.67328"
- y1="298.85724"
- x2="482.37622"
- y2="683.92651" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114953-7"
- id="linearGradient89811"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1048951,0,0,1.1048951,67.985466,73.286385)"
- x1="218.73267"
- y1="237.31267"
- x2="335.66339"
- y2="399.49088" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient114975-9"
- id="linearGradient89813"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9983345,0,0,1.0398445,80.706264,173.27788)"
- x1="273.62375"
- y1="224.83743"
- x2="236.19801"
- y2="166.61961" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89815"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89817"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89819"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89821"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89823"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="linearGradient89825"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-3-7"
- id="radialGradient89827"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <inkscape:perspective
- id="perspective94039"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient2202-2-1-25">
- <stop
- id="stop2204-6-0-41"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-6-0-8"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-5-4-2">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-8-4-5" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-5-2-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient94052">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop94054" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop94056" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-8-3-0">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-1-4-2" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-2-7-6" />
- </linearGradient>
- <linearGradient
- id="linearGradient94063">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop94065" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop94067" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-9-8-0">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-4-0-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-8-1-3" />
- </linearGradient>
- <linearGradient
- id="linearGradient94074">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop94076" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop94078" />
- </linearGradient>
- <linearGradient
- id="linearGradient2202-1-93-3-2">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-6-1-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-21-0-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient94085">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop94087" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop94089" />
- </linearGradient>
- <linearGradient
- id="linearGradient94092">
- <stop
- id="stop94094"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop94096"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <inkscape:perspective
- id="perspective95714"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective95802"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective95824"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient98580"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient98582"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient98584"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient98586"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient98588"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient98590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient98592"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient98594"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-59"
- id="linearGradient98596"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-32"
- id="linearGradient98598"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-90"
- id="linearGradient98600"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-52"
- id="linearGradient98602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-19"
- id="linearGradient98604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient98606"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98608"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient98610"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient98612"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient98614"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient98616"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient98618"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient98620"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient98622"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient98624"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98626"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98628"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient98630"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient98632"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient98634"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient98636"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient98638"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient98640"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient98642"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient98644"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98646"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98648"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient98650"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient98652"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient98654"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient98656"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient98658"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient98660"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient98662"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient98664"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98666"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient98668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98670"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98672"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98674"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98676"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98678"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98680"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98682"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98684"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98686"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98688"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98690"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98692"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98694"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98696"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98698"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98700"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98702"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98704"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98708"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98710"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98712"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98716"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient98718"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient98720"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="linearGradient98722"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="radialGradient98724"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-2"
- id="linearGradient98726"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient98728"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98730"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient98732"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient98734"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient98736"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient98738"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient98740"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient98742"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient98744"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient98746"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient98748"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient98750"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient98752"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient101496"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient101498"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient101500"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient101502"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient101504"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient101506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient101508"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient101510"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-59"
- id="linearGradient101512"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-32"
- id="linearGradient101514"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-90"
- id="linearGradient101516"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-52"
- id="linearGradient101518"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-19"
- id="linearGradient101520"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient101522"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient101526"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient101528"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient101530"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient101532"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient101534"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient101536"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient101538"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient101540"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101542"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101544"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient101546"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient101548"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient101550"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient101552"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient101554"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient101556"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient101558"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient101560"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101562"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101564"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient101566"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient101568"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient101570"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient101572"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient101574"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient101576"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient101578"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient101580"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101582"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient101584"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101586"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101588"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101592"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101594"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101596"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101598"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101600"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101606"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101608"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101610"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101612"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101614"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101616"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101618"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101620"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101622"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101624"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101626"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101628"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101630"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101632"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient101634"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient101636"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="linearGradient101638"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="radialGradient101640"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-2"
- id="linearGradient101642"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient101644"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101646"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="linearGradient101648"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4"
- id="radialGradient101650"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="linearGradient101652"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3"
- id="radialGradient101654"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="linearGradient101656"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8"
- id="radialGradient101658"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="linearGradient101660"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3"
- id="radialGradient101662"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1"
- id="radialGradient101664"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient101666"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient101668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient109444"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient109446"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient109448"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient109450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient109452"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient109454"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient109456"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient109458"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient109460"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient109462"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="linearGradient109709"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="radialGradient109711"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient109741"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient109743"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient109763"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="linearGradient109781"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="radialGradient109783"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-2"
- id="linearGradient109788"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.07326939,-0.03663469,0,0.10467055,585.30104,1240.0665)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109813"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109815"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109817"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109819"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109821"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109823"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109825"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109827"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109829"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109831"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109833"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109835"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109837"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109839"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109841"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109843"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109845"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109847"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109849"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109851"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109853"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109855"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109857"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109859"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient109861"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient109863"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient109904"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient109922"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-19"
- id="linearGradient109940"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-52"
- id="linearGradient109961"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-90"
- id="linearGradient109982"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-32"
- id="linearGradient110003"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-59"
- id="linearGradient110024"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient110050"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient110052"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient110054"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient110056"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient110058"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient110060"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient110062"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient110064"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <inkscape:perspective
- id="perspective110844"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient115721"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient115723"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient115725"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient115727"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient115729"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient115731"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient115733"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient115735"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-59"
- id="linearGradient115737"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-32"
- id="linearGradient115739"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-90"
- id="linearGradient115741"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-52"
- id="linearGradient115743"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-19"
- id="linearGradient115745"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient115747"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient115749"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115751"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115753"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115755"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115757"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115759"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115761"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115763"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115765"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115767"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115769"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115771"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115773"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115775"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115777"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115779"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115781"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115783"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115785"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115787"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115789"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115791"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115793"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115795"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115797"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient115799"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient115801"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="linearGradient115803"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="radialGradient115805"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-2"
- id="linearGradient115807"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.07326939,-0.03663469,0,0.10467055,585.30104,1240.0665)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient115809"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient115811"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient115813"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="linearGradient115815"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="radialGradient115817"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient115819"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient115821"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient115823"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient115825"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient115827"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient115829"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient115831"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient115833"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient115835"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient115837"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.5378651"
- inkscape:cx="202.95323"
- inkscape:cy="605.2154"
- inkscape:document-units="px"
- inkscape:current-layer="layer3"
- showgrid="false"
- inkscape:window-width="1101"
- inkscape:window-height="852"
- inkscape:window-x="105"
- inkscape:window-y="150"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata19258">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- <cc:license
- rdf:resource="" />
- <dc:creator>
- <cc:Agent>
- <dc:title>David Pravec <alekibango@danix.org></dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:rights>
- <cc:Agent>
- <dc:title>released under terms of Apache License</dc:title>
- </cc:Agent>
- </dc:rights>
- <dc:description />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- id="layer3"
- inkscape:label="bg">
- <rect
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.92599999999999993;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
- id="rect5281"
- width="717.65204"
- height="349.53003"
- x="14.873618"
- y="27.941748" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="clipart lib"
- style="display:none"
- sodipodi:insensitive="true">
- <g
- inkscape:label="Layer 1"
- id="g4664-9"
- transform="matrix(2.2734672,0,0,2.2734672,1088.7555,758.6645)">
- <g
- transform="translate(-390.5856,-53.79125)"
- id="g35741-72">
- <g
- id="g35704-5">
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="text30384-0"
- d="m 452.22752,154.79534 c -1.32987,4.3593 0.97442,13.06343 4.32672,7.29809 0.55883,-4.21566 0.16853,-13.66849 -4.32672,-7.29809 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31227-9"
- d="m 459.05645,154.87353 c -5.73123,-1.99396 -4.37255,6.82514 -3.10169,8.88804 4.41472,0.3139 8.88448,0.68282 7.08957,-5.21292 -0.15325,-2.39014 -1.62637,-3.78967 -3.98788,-3.67512 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31225-6"
- d="m 461.48045,154.95173 c -1.09246,1.9721 -0.88144,8.20841 3.07563,8.75771 7.13327,0.55239 -1.24277,-5.48505 3.0235,-5.57782 1.36821,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31223-7"
- d="m 469.14346,154.84748 c -6.26267,0.075 -4.66384,10.71977 1.4292,8.95932 4.83425,0.31308 3.44625,-9.88021 -1.4292,-8.95932 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31221-5"
- d="m 468.85674,155.68154 c -5.85015,2.68836 -2.79296,6.6586 2.86712,4.84803 3.28424,0.8454 -0.45596,-6.36406 -2.86712,-4.84803 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31219-71"
- d="m 475.63355,154.84748 c -5.82517,-1.97942 -4.54812,6.74301 -3.23202,8.91409 4.84187,0.18324 3.39963,-5.16968 5.70816,-6.35977 0.24428,-2.37476 -0.19418,-2.73428 -2.47614,-2.55432 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31217-4"
- d="m 479.49112,154.87353 c -5.77442,-2.02369 -4.43922,6.79664 -3.15383,8.88804 4.41473,0.3139 8.88448,0.68282 7.08958,-5.21292 -0.15836,-2.36396 -1.59101,-3.77955 -3.93575,-3.67512 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31215-9"
- d="m 485.56417,154.84748 c -6.19598,0.15033 -4.65067,10.675 1.42942,8.96143 4.93021,0.35507 3.48048,-9.89643 -1.42942,-8.96143 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31213-6"
- d="m 485.30352,155.68154 c -5.85015,2.68836 -2.79297,6.6586 2.86711,4.84803 3.28424,0.8454 -0.45595,-6.36406 -2.86711,-4.84803 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path31211-8"
- d="m 488.0403,154.95173 c -1.06389,1.96915 -0.92086,8.22865 3.04957,8.75771 7.16539,0.57531 -1.21095,-5.48429 3.04956,-5.57782 1.3682,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z" />
- <path
- transform="matrix(-0.179335,0,0,0.149728,502.1893,-24.02897)"
- style="opacity:0.17777776;fill:url(#linearGradient89569);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- inkscape:tile-w="105.36077"
- inkscape:tile-h="104.60061"
- inkscape:tile-cy="1057.5979"
- inkscape:tile-cx="150.57283"
- id="path4066-8"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.284001,0,0,0.193224,407.7236,-73.15871)"
- style="opacity:0.17777776;fill:url(#linearGradient89571);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5006-6"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.340554,0,0,0.231701,396.3144,-88.95173)"
- style="opacity:0.17777776;fill:url(#linearGradient89573);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5008-47"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.249954,0,0,0.170059,406.7992,-32.10751)"
- style="opacity:0.17777776;fill:url(#linearGradient89575);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5010-7"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.260403,0,0,0.177168,412.2819,-25.25605)"
- style="opacity:0.17777776;fill:url(#linearGradient89577);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5012-15"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.104126,-0.150834,-0.146719,0.07084417,668.335,91.43843)"
- style="opacity:0.17777776;fill:url(#linearGradient89579);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5014-27"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.154671,-0.224051,-0.217939,0.105233,738.2325,88.88709)"
- style="opacity:0.17777776;fill:url(#linearGradient89581);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5016-7"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.138006,-0.19991,-0.194457,0.09389457,722.8067,97.77468)"
- style="opacity:0.17777776;fill:url(#linearGradient89583);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5018-7"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.117791,-0.170629,-0.165973,0.08014087,677.6847,122.0894)"
- style="opacity:0.17777776;fill:url(#linearGradient89585);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5020-7"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.09614486,-0.139271,-0.135472,0.06541328,635.5166,142.1226)"
- style="opacity:0.17777776;fill:url(#linearGradient89587);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5022-12"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.164683,-0.238552,0.232045,-0.112044,265.1906,314.0698)"
- style="opacity:0.17777776;fill:url(#linearGradient89589);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5024-4"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.172846,-0.250377,0.243546,-0.117597,239.7257,330.3731)"
- style="opacity:0.17777776;fill:url(#linearGradient89591);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5026-4"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.177232,-0.256733,0.249729,-0.120583,225.1178,318.3329)"
- style="opacity:0.17777776;fill:url(#linearGradient89593);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5028-2"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.166524,-0.241221,0.23464,-0.113297,227.7161,329.1711)"
- style="opacity:0.17777776;fill:url(#linearGradient89595);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5030-4"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.112183,-0.162505,0.158072,-0.07632533,314.1776,290.1886)"
- style="opacity:0.17777776;fill:url(#linearGradient89597);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5032-9"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.11826,0.171307,0.166634,0.08045988,311.5686,16.07786)"
- style="opacity:0.17777776;fill:url(#linearGradient89599);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5034-9"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.0943583,0.136684,0.132956,0.06419815,331.8395,50.2111)"
- style="opacity:0.17777776;fill:url(#linearGradient89601);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5036-4"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.114364,0.165662,0.161143,0.07780872,322.2702,30.08746)"
- style="opacity:0.17777776;fill:url(#linearGradient89603);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5038-8"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.140702,0.203815,0.198255,0.09572832,286.7172,18.15027)"
- style="opacity:0.17777776;fill:url(#linearGradient89605);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5040-52"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.162185,0.234935,0.228526,0.110345,259.9411,6.05945)"
- style="opacity:0.17777776;fill:url(#linearGradient89607);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5042-5"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.160583,0.232613,-0.226269,-0.109254,748.0707,211.5833)"
- style="opacity:0.17777776;fill:url(#linearGradient89609);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5044-45"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.12628,0.182922,-0.177934,-0.08591606,697.8146,196.7379)"
- style="opacity:0.17777776;fill:url(#linearGradient89611);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5046-2"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.137748,0.199537,-0.194093,-0.09371803,714.1281,221.8225)"
- style="opacity:0.17777776;fill:url(#linearGradient89613);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5048-5"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.120979,0.175247,-0.170466,-0.08231039,662.6019,207.1803)"
- style="opacity:0.17777776;fill:url(#linearGradient89615);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5050-1"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.14434,0.209086,-0.203383,-0.09820396,735.5011,232.5166)"
- style="opacity:0.17777776;fill:url(#linearGradient89617);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="use5052-23"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- </g>
- <path
- transform="matrix(1.155532,0,0,1.155532,26.16756,-503.197)"
- style="fill:url(#radialGradient89619);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:ry="24.998358"
- sodipodi:rx="24.998358"
- sodipodi:cy="571.95715"
- sodipodi:cx="384.69696"
- id="path5176-7"
- d="m 409.69532,571.95715 a 24.998358,24.998358 0 1 1 -49.99672,0 24.998358,24.998358 0 1 1 49.99672,0 z" />
- <text
- y="161.44913"
- xml:space="preserve"
- x="469.55161"
- style="font-size:10.00881386px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#9f0021;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="text5270-6"><tspan
- y="161.44913"
- x="469.55161"
- sodipodi:role="line"
- id="tspan5272-0">Networ</tspan></text>
- </g>
- </g>
- <g
- transform="matrix(0.7071068,0.3535534,-0.7071068,0.3535534,1568.0998,175.24649)"
- id="g3893">
- <g
- id="g3895">
- <path
- sodipodi:type="arc"
- style="fill:#166496;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.625;marker:none;visibility:visible;display:inline;overflow:visible"
- id="path3897"
- sodipodi:cx="325.57108"
- sodipodi:cy="378.05789"
- sodipodi:rx="13.966679"
- sodipodi:ry="13.966679"
- d="m 339.53775,378.05789 a 13.966679,13.966679 0 1 1 -27.93335,0 13.966679,13.966679 0 1 1 27.93335,0 z"
- transform="matrix(1.896061,0,0,1.896061,-297.02235,74.95322)" />
- <path
- sodipodi:type="arc"
- style="fill:url(#linearGradient89621);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.68594635;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
- id="path3899"
- sodipodi:cx="325.57108"
- sodipodi:cy="378.05789"
- sodipodi:rx="13.966679"
- sodipodi:ry="13.966679"
- d="m 339.53775,378.05789 a 13.966679,13.966679 0 1 1 -27.93335,0 13.966679,13.966679 0 1 1 27.93335,0 z"
- transform="matrix(1.731185,0,0,1.731185,-243.34385,137.28542)" />
- <path
- style="fill:url(#linearGradient89623);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61607176;marker:none;visibility:visible;display:inline;overflow:visible"
- d="m 320.26406,767.60785 c -13.34675,0 -24.1748,10.82803 -24.17478,24.17478 0,6.41257 2.61694,12.14291 6.69547,16.47203 2.11885,-17.50049 16.88952,-31.10725 34.95862,-31.10725 0.48721,0 0.93961,0.099 1.42205,0.1185 -4.42143,-5.75069 -11.09207,-9.65806 -18.90136,-9.65806 z"
- id="path3901" />
- </g>
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.12660336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 320.34678,804.36122 -4.67297,-8.6922 -9.86146,0.37754 5.19118,-8.39301 -5.25769,-8.35151 9.86416,0.2992 4.53346,8.0813 4.74328,-8.11814 9.86147,-0.37754 -5.19119,8.393 5.25768,8.35151 -9.86416,-0.29919 -4.60376,8.72904 z"
- id="path3903"
- sodipodi:nodetypes="ccccccccccccc" />
- </g>
- <g
- id="g3259"
- transform="translate(1251.0009,-809.31822)">
- <g
- id="g118215"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)">
- <path
- id="path118217"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118219"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118221"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g118223"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path118225"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path118227"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118229"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118231"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient89625);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- id="g2662"
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- id="path2664" />
- <g
- transform="translate(705.44117,-218.9829)"
- style="fill:#00ffff;stroke:#ffffff"
- id="g2666">
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- id="path2668" />
- <path
- id="path2670"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- id="path2672"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path2674" />
- </g>
- </g>
- </g>
- <g
- id="g3496"
- transform="translate(657.32073,-89.394509)">
- <g
- id="g3795"
- transform="translate(-87.70399,-526.32022)">
- <path
- id="path3797"
- d="m 607.23277,879.49528 55.44283,-27.72141 55.44282,27.72141 -55.44282,27.72142 -55.44283,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3799"
- d="m 607.23277,879.49528 0,83.16424 55.44283,27.72141 0,-83.16423 -55.44283,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3801"
- d="m 662.6756,990.38093 55.44282,-27.72141 0,-83.16424 -55.44282,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient89627);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3803"
- d="m 634.81813,937.76977 22.17713,11.08857 0,24.94927 -22.17713,-11.08856 0,-24.94928 z"
- style="fill:url(#radialGradient89629);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 633.56811,935.45788 0,2.25237 0,24.94927 0,0.86629 0.77967,0.34652 22.17713,11.08857 1.99247,1.03955 0,-2.25237 0,-24.94927 0,-0.86629 -0.77966,-0.34652 -22.17713,-11.08856 -1.99248,-1.03956 z m 2.77214,4.50473 19.40499,9.7025 0,21.83061 -19.40499,-9.70249 0,-21.83062 z"
- id="path3805" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 611.39098,891.10362 0,2.25237 0,66.53139 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99248,1.03955 0,-2.25236 0,-66.53139 0,-0.86629 -0.77967,-0.34652 -5.54428,-2.77214 -1.99248,-1.03956 z m 2.77215,4.50473 2.77214,1.38607 0,63.41273 -2.77214,-1.38607 0,-63.41273 z"
- id="path3807" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 621.09348,895.26184 0,69.65004 8.31642,4.15822 0,-69.65005 -8.31642,-4.15821 z"
- id="path3809"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 633.56811,899.42005 0,2.25236 0,27.72141 0,0.8663 0.77967,0.34652 11.08856,5.54428 1.99248,1.03955 0,-2.25236 0,-27.72141 0,-0.8663 -0.77966,-0.34652 -11.08857,-5.54428 -1.99248,-1.03955 z m 2.77214,4.50473 8.31643,4.15821 0,24.60275 -8.31643,-4.15821 0,-24.60275 z"
- id="path3811" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 650.20096,907.73647 0,2.25237 0,30.49355 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99247,1.03956 0,-2.25237 0,-30.49355 0,-0.8663 -0.77966,-0.34651 -5.54428,-2.77215 -1.99248,-1.03955 z m 2.77214,4.50473 2.77214,1.38607 0,27.3749 -2.77214,-1.38607 0,-27.3749 z"
- id="path3813" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 662.6756,850.21454 -0.60641,0.34652 -55.44282,27.72141 -0.77967,0.34652 0,0.86629 0,83.16424 0,0.86629 0.77967,0.34652 55.44282,27.72141 0.60641,0.34652 0.6064,-0.34652 55.44283,-27.72141 0.77966,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.77966,-0.34652 -55.44283,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.05675,27.02838 0,81.43165 -54.05675,27.02837 -54.05676,-27.02837 0,-81.43165 54.05676,-27.02838 z"
- id="path3815" />
- <rect
- transform="matrix(0.8944272,-0.4472136,0,1,0,0)"
- ry="0"
- rx="0"
- y="1269.7253"
- x="747.37006"
- height="45.980042"
- width="47.62381"
- id="rect3817"
- style="opacity:0.5;fill:url(#pattern118687);fill-opacity:1;stroke:none" />
- </g>
- <g
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,58.04311,-123.34555)"
- id="g3887">
- <path
- id="path3889"
- d="m 1116.1606,302.26602 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <path
- style="fill:#00ffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.05110741px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 1134.6137,320.71915 42,0 -14,21 14,21 -42,0 14,-21 -14,-21 z"
- id="path3891"
- sodipodi:nodetypes="ccccccc" />
- </g>
- </g>
- <g
- id="g3513"
- transform="translate(939.10013,-77.263449)">
- <g
- id="g3767"
- transform="translate(-369.48339,-385.43051)">
- <path
- id="path3769"
- d="m 607.23277,879.49528 55.44283,-27.72141 55.44282,27.72141 -55.44282,27.72142 -55.44283,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3771"
- d="m 607.23277,879.49528 0,83.16424 55.44283,27.72141 0,-83.16423 -55.44283,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3773"
- d="m 662.6756,990.38093 55.44282,-27.72141 0,-83.16424 -55.44282,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient89631);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3775"
- d="m 634.81813,937.76977 22.17713,11.08857 0,24.94927 -22.17713,-11.08856 0,-24.94928 z"
- style="fill:url(#radialGradient89633);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 633.56811,935.45788 0,2.25237 0,24.94927 0,0.86629 0.77967,0.34652 22.17713,11.08857 1.99247,1.03955 0,-2.25237 0,-24.94927 0,-0.86629 -0.77966,-0.34652 -22.17713,-11.08856 -1.99248,-1.03956 z m 2.77214,4.50473 19.40499,9.7025 0,21.83061 -19.40499,-9.70249 0,-21.83062 z"
- id="path3777" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 611.39098,891.10362 0,2.25237 0,66.53139 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99248,1.03955 0,-2.25236 0,-66.53139 0,-0.86629 -0.77967,-0.34652 -5.54428,-2.77214 -1.99248,-1.03956 z m 2.77215,4.50473 2.77214,1.38607 0,63.41273 -2.77214,-1.38607 0,-63.41273 z"
- id="path3779" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 621.09348,895.26184 0,69.65004 8.31642,4.15822 0,-69.65005 -8.31642,-4.15821 z"
- id="path3781"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 633.56811,899.42005 0,2.25236 0,27.72141 0,0.8663 0.77967,0.34652 11.08856,5.54428 1.99248,1.03955 0,-2.25236 0,-27.72141 0,-0.8663 -0.77966,-0.34652 -11.08857,-5.54428 -1.99248,-1.03955 z m 2.77214,4.50473 8.31643,4.15821 0,24.60275 -8.31643,-4.15821 0,-24.60275 z"
- id="path3783" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 650.20096,907.73647 0,2.25237 0,30.49355 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99247,1.03956 0,-2.25237 0,-30.49355 0,-0.8663 -0.77966,-0.34651 -5.54428,-2.77215 -1.99248,-1.03955 z m 2.77214,4.50473 2.77214,1.38607 0,27.3749 -2.77214,-1.38607 0,-27.3749 z"
- id="path3785" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 662.6756,850.21454 -0.60641,0.34652 -55.44282,27.72141 -0.77967,0.34652 0,0.86629 0,83.16424 0,0.86629 0.77967,0.34652 55.44282,27.72141 0.60641,0.34652 0.6064,-0.34652 55.44283,-27.72141 0.77966,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.77966,-0.34652 -55.44283,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.05675,27.02838 0,81.43165 -54.05675,27.02837 -54.05676,-27.02837 0,-81.43165 54.05676,-27.02838 z"
- id="path3787" />
- <rect
- transform="matrix(0.8944272,-0.4472136,0,1,0,0)"
- ry="0"
- rx="0"
- y="1269.7253"
- x="747.37006"
- height="45.980042"
- width="47.62381"
- id="rect3789"
- style="opacity:0.5;fill:url(#pattern118687);fill-opacity:1;stroke:none" />
- </g>
- <g
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-304.10649,883.79115)"
- id="g3863">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1042.8959,100.2653 0,78.90625 78.9063,0 0,-78.90625 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- id="path3865" />
- <g
- id="g3867"
- transform="translate(606.95622,-331.6564)"
- style="fill:#00ffff;stroke:#ffffff">
- <path
- transform="translate(212.65401,-137.99186)"
- d="m 256.53294,609.1156 -11.54674,6.66652 -11.54674,6.66651 0,-13.33303 0,-13.33303 11.54674,6.66652 11.54674,6.66651 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.0471976"
- sodipodi:arg1="0"
- sodipodi:r2="7.6978278"
- sodipodi:r1="15.395656"
- sodipodi:cy="609.1156"
- sodipodi:cx="241.13728"
- sodipodi:sides="3"
- id="path3869"
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- sodipodi:type="star" />
- <rect
- y="454.18146"
- x="471.7662"
- height="34.386734"
- width="7.6689839"
- id="rect3871"
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter" />
- <path
- sodipodi:type="star"
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- id="path3873"
- sodipodi:sides="3"
- sodipodi:cx="241.13728"
- sodipodi:cy="609.1156"
- sodipodi:r1="15.395656"
- sodipodi:r2="7.6978278"
- sodipodi:arg1="0"
- sodipodi:arg2="1.0471976"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 256.53294,609.1156 -11.54674,6.66652 -11.54674,6.66651 0,-13.33303 0,-13.33303 11.54674,6.66652 11.54674,6.66651 z"
- transform="matrix(-1,0,0,1,738.13162,-137.99186)" />
- </g>
- </g>
- </g>
- <g
- id="g3279"
- transform="translate(1134.8215,-530.82304)">
- <g
- id="g118255"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,488.78696,875.42775)">
- <path
- id="path118257"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118259"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118261"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g118263"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path118265"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path118267"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118269"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118271"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient89635);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-338.72869,1082.8342)"
- id="g3697">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1081.1367,402.39569 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- id="path3699" />
- <g
- id="g3701"
- transform="translate(456.4439,-26.889185)"
- style="fill:#00ffff;stroke:#ffffff">
- <path
- id="path3703"
- d="m 660.00267,458.32498 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 668.28911,465.32717 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path3705" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 660.00267,472.20199 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path3707" />
- <path
- id="path3709"
- d="m 668.28911,479.13574 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- <g
- id="g4812"
- transform="translate(467.27411,-273.27841)">
- <g
- id="g118275"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,1162.7579,726.53635)">
- <path
- id="path118277"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118279"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118281"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g118283"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path118285"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path118287"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118289"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118291"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient89637);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- id="g2734"
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,415.57747,-87.876339)">
- <g
- transform="translate(-61.737701,14.763031)"
- id="g2736">
- <path
- id="path2738"
- d="m 1160.246,537.14905 6.221,-11.2899 -1.9718,0 0,-18.4037 -8.4984,0 0,18.4037 -1.9565,0 6.2057,11.2899 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 1159.9433,537.34735 -12.8878,0.2574 0.9859,1.7076 -15.9381,9.2019 4.2493,7.3599 15.938,-9.2019 0.9783,1.6943 6.6744,-11.0192 z"
- id="path2740" />
- <path
- id="path2742"
- d="m 1188.3639,552.93325 -12.8878,-0.2574 0.9859,-1.7076 -15.9381,-9.2019 4.2493,-7.3599 15.938,9.2019 0.9783,-1.6944 6.6744,11.0193 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1059.0428,506.87882 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- id="path2744" />
- </g>
- </g>
- <text
- id="text19149"
- y="-154.39288"
- x="1289.1212"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- xml:space="preserve"><tspan
- id="tspan19151"
- y="-154.39288"
- x="1289.1212"
- sodipodi:role="line"
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold">ROUTER</tspan><tspan
- y="-136.89288"
- x="1289.1212"
- sodipodi:role="line"
- id="tspan19153"
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1305.3099"
- y="60.111889"
- id="text19097"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1305.3099"
- y="60.111889"
- id="tspan19099">SWITCH</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19101"
- sodipodi:role="line"
- x="1305.3099"
- y="77.611893">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1305.3099"
- y="168.75134"
- id="text19103"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1305.3099"
- y="168.75134"
- id="tspan19105">KVM SWITCH</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19107"
- sodipodi:role="line"
- x="1305.3099"
- y="186.25134">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1289.6263"
- y="-61.736378"
- id="text19109"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1289.6263"
- y="-61.736378"
- id="tspan19111">VPN-GW</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19113"
- sodipodi:role="line"
- x="1289.6263"
- y="-44.236378">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1311.0073"
- y="303.39124"
- id="text19115"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1311.0073"
- y="303.39124"
- id="tspan19117">BALANCER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19119"
- sodipodi:role="line"
- x="1311.0073"
- y="320.89124">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1309.1835"
- y="447.4747"
- id="text19121"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1309.1835"
- y="447.4747"
- id="tspan19123">FIREWALL</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19125"
- sodipodi:role="line"
- x="1309.1835"
- y="464.9747">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1289.1212"
- y="554.26849"
- id="text19127"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1289.1212"
- y="554.26849"
- id="tspan19129">CARP (virtual IP)</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19131"
- sodipodi:role="line"
- x="1289.1212"
- y="571.76849">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1325.7358"
- y="677.34473"
- id="text19133"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1325.7358"
- y="677.34473"
- id="tspan19135">CABLE connection</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19137"
- sodipodi:role="line"
- x="1325.7358"
- y="694.84473">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="1330.007"
- y="816.90076"
- id="text19139"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19143"
- sodipodi:role="line"
- x="1330.007"
- y="816.90076">rfIBER connection</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="1330.007"
- y="834.40076"
- id="tspan19147">IP: 192.168.12.10</tspan></text>
- <path
- style="fill:none;stroke:#808080;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1183.0041,712.7976 139.0826,-70.8662"
- id="path3533" />
- <path
- style="fill:none;stroke:#808080;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1182.0512,641.4459 139.0826,70.8661"
- id="path3535" />
- <g
- id="g8726"
- transform="translate(862.38433,-1019.7849)">
- <g
- id="g7342"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,753.88482,1246.3598)">
- <path
- id="path7344"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path7346"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path7348"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g7350"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path7352"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path7354"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path7356"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path7358"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient89639);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-171.20316,533.51496)"
- id="g7524">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1039.327,209.10189 0,78.90626 78.9063,0 0,-78.90626 -78.9063,0 z m 39.4688,2.46876 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- id="path7526" />
- <g
- id="g7528"
- transform="translate(-56.606987,6.6461916)">
- <g
- id="g7530"
- style="fill:#00ffff;stroke:#ffffff"
- transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,688.36387,330.14386)">
- <path
- id="path7532"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- id="path7534" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path7536" />
- <path
- id="path7538"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- <path
- id="path7540"
- d="m 1115.6726,231.44138 10.3619,10.36186 -9.9045,9.90444"
- style="fill:none;stroke:#00ffff;stroke-width:0.99300444;stroke-linecap:butt;stroke-linejoin:miter" />
- <path
- style="fill:none;stroke:#00ffff;stroke-width:0.99300444;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1155.0496,231.44138 -10.3618,10.36186 9.9044,9.90444"
- id="path7542" />
- <g
- transform="matrix(0,-1,1,0,1020.0499,767.50988)"
- id="g7544"
- style="fill:none;stroke:#00ffff">
- <path
- id="path7546"
- d="m 506.40857,105.24507 10.36186,10.36186 -9.90443,9.90444"
- style="fill:none;stroke:#00ffff;stroke-width:0.99300444;stroke-linecap:butt;stroke-linejoin:miter" />
- <path
- style="fill:none;stroke:#00ffff;stroke-width:0.99300444;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 545.78557,105.24507 -10.36186,10.36186 9.90443,9.90444"
- id="path7548" />
- </g>
- </g>
- </g>
- </g>
- <path
- id="path6475"
- d="m 1190.2296,787.3453 139.0827,70.86613"
- style="fill:none;stroke:#808080;stroke-width:10;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:20, 20;stroke-dashoffset:0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#808080;stroke-width:10;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:20, 20;stroke-dashoffset:0"
- d="M 1190.9453,858.57613 1330.028,787.71"
- id="path19085"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(-649.56327,-378.70234)"
- id="layer1-9"
- inkscape:label="Livello 1">
- <g
- transform="translate(-1074.1299,601.25107)"
- id="g3925">
- <g
- id="g108584"
- transform="translate(59.882331,-420.31793)">
- <g
- id="g92198">
- <path
- id="path5361"
- d="m 1005.3987,644.36812 55.4428,-27.72141 55.4429,27.72141 -55.4429,27.72142 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path5363"
- d="m 1005.3987,644.36812 0,83.16424 55.4428,27.72141 0,-83.16423 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path5365"
- d="m 1060.8415,755.25377 55.4429,-27.72141 0,-83.16424 -55.4429,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient89641);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 1060.8415,615.08738 -0.6064,0.34652 -55.4428,27.72141 -0.7797,0.34652 0,0.86629 0,83.16424 0,0.86629 0.7797,0.34652 55.4428,27.72141 0.6064,0.34652 0.6064,-0.34652 55.4429,-27.72141 0.7796,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.7796,-0.34652 -55.4429,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.0568,27.02838 0,81.43165 -54.0568,27.02837 -54.0567,-27.02837 0,-81.43165 54.0567,-27.02838 z"
- id="path5391" />
- <path
- style="fill:url(#pattern6042);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1010.0335,651.21095 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4979"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6040);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1022.9003,658.59748 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4981"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6038);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1035.7672,665.26918 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4983"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4985"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4977"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6036);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4987"
- d="m 1010.0335,689.81151 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6034);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4989"
- d="m 1022.9003,697.19804 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6032);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4991"
- d="m 1035.7672,703.86974 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6030);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:url(#pattern6028);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1048.3958,710.30317 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4993"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.4481573,-0.2240787,0,0.6402247,1001.8024,-178.48439)"
- id="g108970">
- <path
- d="m 314.09476,861.04125 c -1.56438,0.834 -3.6901,0.50384 -4.68956,-1.58568 -0.84011,-1.93879 -15.12073,-31.80949 -15.51636,-32.75301 -1.17184,-2.57186 -0.21709,-4.29384 1.44804,-5.1975 2.29126,-1.26473 21.81453,-11.77888 23.51292,-12.64626 1.86955,-1.02115 3.89506,-0.88867 5.13133,1.65883 0.9779,2.05018 14.86956,31.16397 15.69988,32.85344 0.87451,1.81637 0.0508,3.97006 -1.72579,4.83701 -1.32383,0.66683 -22.9908,12.34832 -23.86046,12.83317 z"
- id="path108972"
- style="font-size:12px;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.74380612" />
- <path
- d="m 314.23273,847.2469 c -1.75078,-0.007 -3.50603,-1.32081 -3.50687,-3.66398 0.0771,-2.13226 0.0716,-35.62533 0.12093,-36.65668 0.051,-2.85603 1.63653,-3.93391 3.50687,-3.94111 2.5827,-0.0289 24.47747,-0.0411 26.36202,0 2.10274,-0.0139 3.85286,1.07587 3.8697,3.94111 -0.002,2.29773 -0.0205,34.9291 -2e-5,36.8343 0.006,2.03958 -1.64681,3.56538 -3.60097,3.48636 -1.46498,-0.0403 -25.76932,-0.0153 -26.75166,0 z"
- id="path108974"
- style="font-size:12px;fill:#ffffeb;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- <path
- d="m 322.93888,855.54573 c -1.47013,-1.00866 -2.27836,-3.12041 -1.08622,-5.09293 1.15034,-1.7504 18.19628,-29.94194 18.7628,-30.78168 1.49688,-2.37446 3.37999,-2.37319 4.95778,-1.30763 2.18836,1.45544 20.62163,13.98988 22.18679,15.10424 1.77679,1.19305 2.69491,3.113 1.25047,5.53408 -1.17108,1.93287 -17.79882,29.38525 -18.75145,31.00043 -1.03344,1.71987 -3.20105,2.05714 -4.80547,0.87102 -1.21244,-0.8733 -21.68017,-14.77752 -22.5147,-15.32753 z"
- id="path108976"
- style="font-size:12px;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- </g>
- </g>
- <g
- transform="translate(-643.1028,19.368173)"
- id="g3299">
- <g
- transform="translate(466.84383,64.105478)"
- id="g117221">
- <g
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)"
- inkscape:label="Calque 1"
- id="g117223">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117225" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117227" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117229" />
- <g
- id="g117231">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- id="path117233" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- id="path117235" />
- <path
- style="fill:url(#linearGradient89643);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- id="path117237"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117239"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117241"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117243"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117245"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117247"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117249"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117251"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:url(#radialGradient89645);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- id="path117253"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path117255"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117257"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117259"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117261"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117263"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117265"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- </g>
- <g
- id="g108978"
- transform="matrix(0.08706124,-0.04353062,0,0.1242649,704.11524,-22.263442)"
- inkscape:export-filename="/home/maidis/Belgeler/goreseeel/inkscape/dunya/dunya.png"
- inkscape:export-xdpi="114.54683"
- inkscape:export-ydpi="114.54683">
- <path
- transform="translate(-56.33397,20.961477)"
- d="m 399.57816,1737.5405 a 199.13403,199.13403 0 1 1 -398.2680709,0 199.13403,199.13403 0 1 1 398.2680709,0 z"
- sodipodi:ry="199.13403"
- sodipodi:rx="199.13403"
- sodipodi:cy="1737.5405"
- sodipodi:cx="200.44412"
- id="path108980"
- style="fill:url(#radialGradient89647);fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:type="arc" />
- <path
- style="opacity:0.36909102;fill:#000000;fill-opacity:1;filter:url(#filter3267)"
- d="m 107.6879,1950.8501 c 0.77589,-0.7759 1.93006,-1.5838 2.56481,-1.7954 0.83388,-0.278 0.76947,-1.0049 -0.23214,-2.6198 -1.16233,-1.8741 -1.16774,-2.3711 -0.0336,-3.0771 1.14186,-0.7107 9.35283,-3.495 13.99054,-4.744 2.25888,-0.6084 0.3076,-10.0936 -3.62263,-17.6097 -3.37859,-6.4612 -3.47822,-6.9424 -2.27769,-11 0.95216,-3.2182 3.33527,-6.2611 9.86486,-12.596 4.73517,-4.594 10.95061,-9.8503 13.81207,-11.6808 10.6188,-6.7928 26.83325,-30.4592 26.18992,-38.2265 -0.30594,-3.6937 -0.35923,-3.7369 -4.30977,-3.4882 -4.05103,0.255 -6.44608,0.7935 -16.68187,3.7502 -4.303,1.243 -6.17821,1.3757 -7.72709,0.5467 -2.38044,-1.2739 -4.09104,-4.1187 -4.09104,-6.8034 0,-1.0779 -4.92806,-6.7724 -11.49999,-13.2886 -6.325,-6.2713 -11.5,-12.2244 -11.5,-13.2292 0,-2.3414 -2.55047,-7.278 -5.05318,-9.7807 -1.33367,-1.3336 -1.94682,-3.3198 -1.94682,-6.3063 0,-2.792 -1.04376,-6.4776 -2.90275,-10.25 -4.198162,-8.5192 -7.097252,-15.2155 -7.097252,-16.3932 0,-0.5634 -0.39883,-1.8058 -0.88629,-2.7609 -1.56863,-3.0732 -4.04953,-12.5312 -3.51423,-13.3973 0.70961,-1.1482 6.12149,-1.0588 8.35786,0.1381 1.902442,1.0181 5.506412,6.6462 10.260352,16.0228 1.53367,3.025 3.89943,7.525 5.25723,10 1.35781,2.475 2.48142,5.9818 2.49691,7.7929 0.021,2.4577 1.11586,4.4865 4.31723,8 2.35898,2.5889 5.62148,6.6791 7.25,9.0893 1.6285,2.4103 3.76361,5.5603 4.74466,7 0.98596,1.447 1.59117,3.7072 1.35319,5.0535 -0.2368,1.3395 0.37786,4.2645 1.36591,6.5 0.98805,2.2354 2.28197,5.3018 2.87537,6.8143 1.19523,3.0465 3.22064,3.5408 5.1218,1.25 0.68469,-0.825 2.87729,-1.5143 4.87244,-1.5318 1.99516,-0.018 4.50107,-0.6925 5.56869,-1.5 1.06762,-0.8075 2.72059,-1.4682 3.67327,-1.4682 0.95268,0 3.00799,-1.0735 4.56735,-2.3857 1.55936,-1.3121 4.48267,-3.074 6.49624,-3.9153 2.01356,-0.8413 4.16229,-2.4663 4.77495,-3.6111 1.17971,-2.2043 7.89828,-6.0879 10.53197,-6.0879 0.86053,0 2.00887,-1.1685 2.55188,-2.5968 0.54301,-1.4282 1.86697,-2.8268 2.94213,-3.1079 1.07516,-0.2812 2.22522,-1.3631 2.55569,-2.4043 0.33046,-1.0412 1.47036,-2.3585 2.53311,-2.9272 1.21395,-0.6497 1.93228,-2.0908 1.93228,-3.8765 0,-1.5633 0.675,-3.4026 1.5,-4.0873 0.825,-0.6847 1.5,-1.9078 1.5,-2.7181 0,-0.8103 0.7875,-2.8107 1.75,-4.4452 l 1.75,-2.972 -3.5,-2.9054 c -1.925,-1.598 -4.70488,-2.9176 -6.17752,-2.9324 -1.8082,-0.018 -3.49624,-1.073 -5.19917,-3.249 l -2.52165,-3.222 -2.31448,2.1743 c -1.27296,1.1959 -3.98138,2.8708 -6.01871,3.7221 -6.74082,2.8165 -10.76847,1.5969 -10.76847,-3.2607 0,-2.0009 -0.38212,-2.3125 -2.25831,-1.8416 -3.11225,0.7811 -4.12747,-0.098 -6.59154,-5.7087 -1.17363,-2.6723 -3.48753,-6.4004 -5.14201,-8.2848 -4.66439,-5.3124 -3.74468,-11.0358 2.06995,-12.8813 3.58851,-1.1389 6.74265,0.4048 9.77345,4.7833 3.6067,5.2105 6.43358,7.7858 11.72854,10.6849 l 4.08007,2.2339 3.41993,-2.0849 c 4.56278,-2.7816 5.41388,-2.6651 9.36073,1.2818 3.20443,3.2044 3.84486,3.4094 12.73247,4.0757 7.31208,0.5482 10.33882,0.3603 13.84252,-0.8596 7.76987,-2.7051 13.00584,-1.5999 16.7373,3.5329 0.68921,0.9481 2.82671,2.2431 4.75,2.8778 2.86978,0.9471 3.4969,1.6479 3.4969,3.9076 0,1.9195 0.76335,3.162 2.52021,4.1022 2.74129,1.4671 4.05666,0.7592 4.64421,-2.4993 0.1972,-1.0937 1.11485,-2.1342 2.03923,-2.3122 2.25597,-0.4345 4.79637,4.6419 4.79637,9.5844 0,2.1356 0.3084,4.1914 0.6853,4.5683 0.8571,0.8571 3.2793,7.7282 3.2996,9.3599 0.008,0.6665 1.6782,4.7156 3.7109,8.9981 2.0327,4.2824 4.8919,11.3871 6.3538,15.7881 1.6318,4.9127 3.197,8.0019 4.0542,8.0019 0.7679,0 2.4759,-2.25 3.7955,-5 2.0974,-4.3708 2.412,-6.5131 2.5,-17.0248 0.091,-10.8714 0.3165,-12.2992 2.3507,-14.8849 1.2375,-1.573 2.25,-3.2771 2.25,-3.7868 0,-0.5098 1.5027,-4.1616 3.3394,-8.1152 4.7065,-10.131 5.921,-13.6457 6.2076,-17.9639 0.2719,-4.0966 1.8777,-6.7244 4.1091,-6.7244 0.7762,0 2.352,-1.5942 3.5016,-3.5427 1.9927,-3.3774 2.1779,-3.4636 3.9663,-1.8451 1.0318,0.9338 1.876,2.303 1.876,3.0428 0,0.7398 0.9989,2.344 2.2199,3.5649 2.9102,2.9103 5.7801,8.6159 5.7801,11.4916 0,3.0451 1.8103,2.9175 3,-0.2115 1.41,-3.7086 2.7401,-3.0407 3.4851,1.75 1.0325,6.6388 1.4902,7.6967 3.0684,7.0911 0.8204,-0.3148 2.2872,0.468 3.3745,1.801 2.2923,2.8102 2.5502,2.355 4.0227,-7.102 1.1992,-7.7024 0.6753,-12.0756 -2.6273,-21.9299 -2.5953,-7.744 -2.5779,-7.1047 -0.7689,-28.2624 0.5132,-6.0036 0.1849,-9.7739 -1.5239,-17.5 -4.3512,-19.6728 -6.6973,-24.5744 -21.8047,-45.5566 -1.2508,-1.7372 -3.5478,-3.7753 -5.1046,-4.5293 -3.5903,-1.7388 -8.104,-10.6792 -6.3015,-12.4817 1.9739,-1.974 1.3993,-3.3473 -4.3198,-10.3246 -3.025,-3.6904 -5.5,-7.043 -5.5,-7.4501 0,-1.0862 -12.8332,-13.9421 -17.9374,-17.9692 -7.1636,-5.6519 -15.34307,-10.1962 -17.38945,-9.6611 -2.60758,0.6819 -5.71089,-0.6539 -11.13132,-4.7914 -2.54201,-1.9403 -6.06634,-4.2172 -7.83185,-5.0597 -1.7655,-0.8424 -3.98191,-2.8893 -4.92536,-4.5486 -1.05876,-1.8621 -3.4875,-3.7765 -6.34498,-5.0013 -2.85084,-1.2221 -4.69781,-2.8337 -5.17645,-4.0757 -0.71594,-1.8577 -8.09791,-4.869 -11.89442,-5.8985 -1.20523,-0.3268 -3.31852,-1.3764 -6.54076,-1.969 -4.79856,-0.8825 -7.01314,-1.5652 -9.57053,2.0361 -0.69332,0.9762 -2.03244,1.543 -3.02968,1.2822 -2.44281,-0.6388 -7.22782,1.2995 -7.22782,2.9278 0,2.0346 -17.517,1.298 -21.61488,-0.9089 -4.24326,-2.2851 -6.84093,-1.2335 -5.91417,2.3943 0.38465,1.5056 0.67509,4.0268 0.64544,5.6025 -0.0315,1.675 0.76033,3.5441 1.90637,4.5 2.15854,1.8004 3.03035,5.35 1.50677,6.135 -0.53375,0.275 -1.43388,-0.4 -2.00027,-1.5 -1.97535,-3.8363 -2.67543,-4.5277 -3.84836,-3.8004 -0.64949,0.4027 -4.02134,0.8436 -7.493,0.9797 -5.07768,0.199 -6.90164,0.7435 -9.32672,2.7841 -1.65805,1.3951 -3.63945,2.5366 -4.4031,2.5366 -0.76366,0 -2.92604,1.35 -4.80529,3 -3.87858,3.4055 -4.88637,3.6284 -6.67253,1.4762 -2.17704,-2.6232 0.0615,-5.8592 4.09696,-5.9225 1.88253,-0.029 3.42279,-0.5157 3.42279,-1.0804 0,-0.5647 -1.88264,-2.7276 -4.18364,-4.8064 -3.98267,-3.5981 -4.36698,-3.7298 -8,-2.74 -2.099,0.5718 -7.64136,3.5531 -12.31636,6.625 -4.675002,3.0719 -9.850002,5.8444 -11.500002,6.161 -4.71239,0.9045 -10.01079,3.917 -12.87421,7.32 -3.3161,3.941 -3.35547,5.3671 -0.12579,4.5565 2.90698,-0.7296 3.03593,-0.1163 1,4.7564 -0.825,1.9745 -1.5,4.0544 -1.5,4.6221 0,2.0989 2.92982,0.9394 5.01074,-1.983 1.18082,-1.6583 3.4013,-3.6637 4.93441,-4.4565 1.78002,-0.9205 3.00512,-2.5297 3.38968,-4.4525 0.56793,-2.8397 1.65427,-3.8022 10.78458,-9.5555 4.741102,-2.9874 8.127312,-4.607 8.614292,-4.12 0.30131,0.3013 -2.25128,3.2446 -5.67243,6.5406 -3.421142,3.296 -5.932932,6.4577 -5.581752,7.0259 0.35118,0.5682 2.18696,1.0331 4.079502,1.0331 2.70949,0 3.44098,0.4024 3.44098,1.893 0,2.0581 -1.85105,3.107 -5.483012,3.107 -1.59078,0 -2.96818,1.0996 -4.38449,3.5 -1.48728,2.5208 -2.76677,3.5 -4.57309,3.5 -1.78318,0 -2.96284,0.8795 -4.08163,3.043 -1.95167,3.7741 -4.67207,4.8597 -11.03119,4.402 -2.72062,-0.1958 -5.95909,-0.376 -7.19659,-0.4005 -1.2375,-0.024 -2.25,-0.6646 -2.25,-1.4225 0,-0.7579 1.0125,-2.065 2.25,-2.9047 1.85148,-1.2562 2.02068,-1.7639 0.95531,-2.8666 -1.07469,-1.1124 -1.83938,-0.7205 -4.5,2.3061 -2.33014,2.6506 -4.27182,3.7993 -7.111414,4.2071 -2.14835,0.3086 -5.07335,1.6562 -6.5,2.9948 -3.72928,3.4991 -15.762709,8.8139 -20.507899,9.0578 -3.91827,0.2014 -4.07511,0.3439 -4.75379,4.3195 -0.85597,5.0141 -2.71282,8.5188 -7.292331,13.764 l -3.49236,4 -5.4924401,-2.948 c -3.02085,-1.6214 -5.67099,-2.7464 -5.88921,-2.5 -0.21823,0.2464 -1.65074,2.473 -3.18337996,4.948 -1.53263004,2.475 -3.80504004,5.4557 -5.04979004,6.6237 -4.01628,3.7688 -6.3523099,9.5568 -5.7299199,14.1971 0.5506,4.105 0.63068,4.1792 4.5070999,4.1792 3.60786,0 4.62483,-0.6865 11.85036,-8 4.3471,-4.4 8.6747801,-8 9.6170701,-8 0.94229,0 3.00543,-1.2375 4.584771,-2.75 2.28261,-2.186 3.9345,-2.7937 8.05471,-2.963 2.85077,-0.1172 6.53321,-0.3422 8.18321,-0.5 l 3,-0.287 -0.3389,6.5676 c -0.30295,5.8709 -0.06426,6.8941 2.249999,9.6444 1.42389,1.6922 2.5889,3.7993 2.5889,4.6824 0,0.9389 0.8304,1.6056 2,1.6056 1.1,0 2,-0.1474 2,-0.3276 0,-0.1802 -1.125,-3.0962 -2.5,-6.4801 -3.29441,-8.1076 -3.26835,-13.1257 0.08889,-17.1156 3.90509,-4.6409 5.03665,-3.9896 5.71644,3.2901 0.4487,4.805 1.44437,7.7776 4.05876,12.1176 3.40165,5.6469 3.4381,5.8248 2.01812,9.8495 -1.58166,4.4829 -1.08507,8.8379 1.22653,10.7564 0.99587,0.8265 1.27603,2.1579 0.85626,4.0691 -0.79072,3.6001 1.766624,3.943 3.998874,0.5361 1.23365,-1.8828 1.29412,-2.8764 0.33042,-5.4295 -1.9266,-5.1042 -0.0022,-8.0135 5.3495,-8.0874 6.19972,-0.086 6.85621,0.8597 6.85621,9.8724 0,5.7769 0.4102,8.2164 1.57798,9.3841 2.60879,2.6088 5.37735,3.7139 7.56504,3.0195 1.22642,-0.3892 3.41491,0.07 5.37976,1.1276 2.86495,1.5429 3.86285,1.6189 7.38882,0.5624 10.169562,-3.0468 11.677372,5.6177 3.725522,21.4086 -4.008462,7.96 -5.377482,8.7995 -12.831492,7.8686 -3.4681,-0.4332 -8.46374,-0.6813 -11.10143,-0.5514 -5.33869,0.2629 -8.45784,-1.2682 -17.493114,-8.5865 -2.90891,-2.3561 -6.29628,-4.2839 -7.5275,-4.2839 -3.53138,0 -6.68359,2.7622 -6.68359,5.8567 0,5.2961 -4.46372,6.8348 -8.297749,2.8604 -1.21124,-1.2555 -3.43396,-3.0621 -4.93939,-4.0146 -1.50542,-0.9524 -3.67095,-3.5622 -4.81229,-5.7994 -1.14133,-2.2372 -3.37021,-4.8109 -4.95307,-5.7193 -1.58286,-0.9084 -3.528981,-3.3091 -4.324721,-5.3349 -1.35769,-3.4563 -1.3017,-3.9192 0.909,-7.516 3.002541,-4.8851 3.213291,-10.837 0.436331,-12.3232 -1.090041,-0.5834 -3.677541,-1.0064 -5.750001,-0.9401 -2.07246,0.066 -5.9234901,-0.4125 -8.5578501,-1.064 -3.30664,-0.8177 -5.17463996,-0.8651 -6.03277,-0.1529 -3.23662,2.6862 -6.41105,3.038 -10.0093699,1.1094 l -3.55303,-1.9043 -5.16991,3.4791 c -5.82709,3.9213 -7.69353,6.0397 -10.92034,12.394 -2.30392,4.537 -5.6027,7.9766 -7.70675,8.0358 -1.76858,0.05 -6.76115,7.4047 -10.88041,16.0287 -0.91827,1.9225 -2.28091,7.9975 -3.02809,13.5 -0.74718,5.5025 -2.210357,13.1203 -2.3149,17.0046 -0.449746,16.7105 2.267313,37.0861 9.19604,52.3382 3.85806,8.4927 4.52186,9.6202 9.2849,12.667 2.86207,1.8309 5.50496,3.8162 5.87309,4.4118 0.36812,0.5957 2.50807,1.083 4.75544,1.083 5.69166,0 11.64921,3.9919 15.05121,10.0852 2.0388499,3.6517 3.9429299,5.4883 7.6237099,7.3535 6.12073,3.1017 9.17306,8.6963 9.54232,17.4905 0.13725,3.2684 0.88608,6.8404 1.66407,7.9376 0.77799,1.0973 4.7895301,6.3461 8.9145301,11.6642 11.621791,14.983 20.000001,27.5178 20.000001,29.9225 0,5.1292 11.240759,14.3909 29.035233,23.9234 5.99985,3.2141 12.53494,5.6086 22,8.0607 15.084362,3.908 17.496152,4.1739 19.518342,2.1517 z m 46.4917,-239.0347 c -0.76234,-0.9186 -2.88439,-2.2962 -4.71567,-3.0613 -3.72472,-1.5563 -4.09671,-3.452 -2.25,-11.4664 0.80507,-3.4938 0.74001,-4.6979 -0.29719,-5.5 -3.43088,-2.6532 -8.78242,-10.4656 -8.78242,-12.8209 0,-1.4234 -0.45,-2.8661 -1,-3.206 -2.33005,-1.44 -0.72695,-5.0203 4.49408,-10.0369 4.26272,-4.0958 5.99968,-5.1559 7.75,-4.73 5.88115,1.4311 8.09926,8.4255 3.25592,10.2669 -1.375,0.5228 -2.48213,1.5242 -2.46029,2.2253 0.0582,1.8686 8.19011,10.3955 10.66231,11.1801 1.16548,0.3699 2.90196,1.8675 3.85883,3.3278 1.68361,2.5695 1.67035,2.7013 -0.41054,4.083 -2.53059,1.6803 -2.722,3.0423 -0.64274,4.5736 1.88123,1.3854 5.04409,13.4586 3.84099,14.6617 -0.48152,0.4815 -3.35988,1.1674 -6.39635,1.5243 -4.47768,0.5263 -5.78277,0.3333 -6.90693,-1.0212 z m -41.83872,-21.2889 c -2.36139,-0.2117 -5.91169,-1.4831 -7.88954,-2.8253 -4.101,-2.783 -6.177632,-2.9432 -11.817012,-0.9115 -5.94779,2.1427 -7.7653,1.8243 -11.48322,-2.0116 l -3.37556,-3.4827 3.27417,-6.5157 c 1.94439,-3.8694 5.12324,-8.1434 7.82689,-10.5232 l 4.55272,-4.0075 3.1025,1.8181 c 1.906,1.1169 3.1025,2.627 3.1025,3.9156 0,3.5824 1.319052,3.6469 2.786512,0.1362 1.77335,-4.2425 3.27971,-5.429 7.96349,-6.273 4.32395,-0.7791 4.81548,0.4538 2.19847,5.5146 -1.83976,3.5577 -1.24596,6.1151 1.8181,7.8304 2.53767,1.4206 9.73343,10.8873 9.73343,12.8053 0,1.937 -3.78353,5.2862 -5.75,5.0899 -0.9625,-0.096 -3.68205,-0.3479 -6.04345,-0.5596 z m 32.18854,260.85 c 2.65143,-1.0405 14.58497,-15.2386 14.5959,-17.3657 0.0125,-2.4361 -1.315,-2.1897 -5.02609,0.933 -1.7537,1.4756 -5.27572,3.2101 -7.82672,3.8544 -4.04232,1.021 -4.68059,1.5435 -4.96827,4.0671 -0.18154,1.5925 -1.24118,3.8747 -2.35477,5.0715 -1.11358,1.1968 -1.72598,2.6593 -1.3609,3.25 0.74917,1.2122 4.10192,1.3038 6.94085,0.1897 z m 143.20592,-116.6623 c 0.5733,-2.2841 -0.0402,-4.437 -0.9603,-3.3701 -1.0142,1.176 -1.558,5.9167 -0.6788,5.9167 0.55,0 1.2876,-1.1459 1.6391,-2.5466 z M 41.716664,1627.6149 c 2.25231,-1.4758 6.41766,-8.361 6.41766,-10.6083 0,-0.4832 -2.7,1.2428 -6,3.8354 -5.669989,4.4546 -6.876789,6.2087 -5.333329,7.7521 1.03526,1.0353 2.193199,0.8046 4.915669,-0.9792 z m -1.58234,-10.8541 c 1.73334,-1.845 1.95566,-2.5 0.84863,-2.5 -0.825,0 -2.556879,1.125 -3.848629,2.5 -1.73334,1.8451 -1.95566,2.5 -0.84863,2.5 0.825,0 2.556879,-1.125 3.848629,-2.5 z m 15.55793,-10.2754 c -0.68187,-0.6819 -6.55793,5.3923 -6.55793,6.779 0,0.4029 1.62915,-0.8039 3.62033,-2.6818 1.99118,-1.878 3.3131,-3.7217 2.9376,-4.0972 z m 20.442074,-22.2246 c 0,-0.55 -0.45,-1 -1,-1 -0.55,0 -1,0.45 -1,1 0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 z m 71.999992,-2.5 c -0.70675,-0.8516 -1.51,-1.3233 -1.785,-1.0483 -0.275,0.275 0.0782,1.1967 0.785,2.0483 0.70675,0.8516 1.51,1.3233 1.785,1.0483 0.275,-0.275 -0.0782,-1.1967 -0.785,-2.0483 z m -82.499992,-3.6979 c 4.12766,-0.9645 11.1401,-2.0069 25,-3.7163 4.4,-0.5427 10.025002,-1.6393 12.500002,-2.437 2.475,-0.7977 9.7875,-2.693 16.25,-4.2119 6.4625,-1.5188 11.74999,-3.0874 11.74999,-3.4857 0,-1.5373 -6.76833,-1.6613 -12.46055,-0.2283 -3.27831,0.8254 -9.57831,2.0817 -14,2.7919 -24.854212,3.992 -35.670602,6.6915 -44.039442,10.9912 -5.130544,2.636 -5.037054,2.6416 5,0.2961 z"
- id="path108982"
- sodipodi:nodetypes="csssssssssssssssssssssssssssssssssssssssssssssscccscccssssssscccssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssscccssssssssscccssssssssssssssssssssssssssssssssssscccsssssssssssssssssccsssssssssssssssccssccccccsssssssccssssssccssccsssccsssccssccsssccsssccsssssssc" />
- <path
- sodipodi:nodetypes="csssssssssssssssssssssssssssssssssssssssssssssscccscccssssssscccssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssscccssssssssscccssssssssssssssssssssssssssssssssssscccsssssssssssssssssccsssssssssssssssccssccccccsssssssccssssssccssccsssccsssccssccsssccsssccsssssssc"
- id="path108984"
- d="m 107.6879,1950.8501 c 0.77589,-0.7759 1.93006,-1.5838 2.56481,-1.7954 0.83388,-0.278 0.76947,-1.0049 -0.23214,-2.6198 -1.16233,-1.8741 -1.16774,-2.3711 -0.0336,-3.0771 1.14186,-0.7107 9.35283,-3.495 13.99054,-4.744 2.25888,-0.6084 0.3076,-10.0936 -3.62263,-17.6097 -3.37859,-6.4612 -3.47822,-6.9424 -2.27769,-11 0.95216,-3.2182 3.33527,-6.2611 9.86486,-12.596 4.73517,-4.594 10.95061,-9.8503 13.81207,-11.6808 10.6188,-6.7928 26.83325,-30.4592 26.18992,-38.2265 -0.30594,-3.6937 -0.35923,-3.7369 -4.30977,-3.4882 -4.05103,0.255 -6.44608,0.7935 -16.68187,3.7502 -4.303,1.243 -6.17821,1.3757 -7.72709,0.5467 -2.38044,-1.2739 -4.09104,-4.1187 -4.09104,-6.8034 0,-1.0779 -4.92806,-6.7724 -11.49999,-13.2886 -6.325,-6.2713 -11.5,-12.2244 -11.5,-13.2292 0,-2.3414 -2.55047,-7.278 -5.05318,-9.7807 -1.33367,-1.3336 -1.94682,-3.3198 -1.94682,-6.3063 0,-2.792 -1.04376,-6.4776 -2.90275,-10.25 -4.198162,-8.5192 -7.097252,-15.2155 -7.097252,-16.3932 0,-0.5634 -0.39883,-1.8058 -0.88629,-2.7609 -1.56863,-3.0732 -4.04953,-12.5312 -3.51423,-13.3973 0.70961,-1.1482 6.12149,-1.0588 8.35786,0.1381 1.902442,1.0181 5.506412,6.6462 10.260352,16.0228 1.53367,3.025 3.89943,7.525 5.25723,10 1.35781,2.475 2.48142,5.9818 2.49691,7.7929 0.021,2.4577 1.11586,4.4865 4.31723,8 2.35898,2.5889 5.62148,6.6791 7.25,9.0893 1.6285,2.4103 3.76361,5.5603 4.74466,7 0.98596,1.447 1.59117,3.7072 1.35319,5.0535 -0.2368,1.3395 0.37786,4.2645 1.36591,6.5 0.98805,2.2354 2.28197,5.3018 2.87537,6.8143 1.19523,3.0465 3.22064,3.5408 5.1218,1.25 0.68469,-0.825 2.87729,-1.5143 4.87244,-1.5318 1.99516,-0.018 4.50107,-0.6925 5.56869,-1.5 1.06762,-0.8075 2.72059,-1.4682 3.67327,-1.4682 0.95268,0 3.00799,-1.0735 4.56735,-2.3857 1.55936,-1.3121 4.48267,-3.074 6.49624,-3.9153 2.01356,-0.8413 4.16229,-2.4663 4.77495,-3.6111 1.17971,-2.2043 7.89828,-6.0879 10.53197,-6.0879 0.86053,0 2.00887,-1.1685 2.55188,-2.5968 0.54301,-1.4282 1.86697,-2.8268 2.94213,-3.1079 1.07516,-0.2812 2.22522,-1.3631 2.55569,-2.4043 0.33046,-1.0412 1.47036,-2.3585 2.53311,-2.9272 1.21395,-0.6497 1.93228,-2.0908 1.93228,-3.8765 0,-1.5633 0.675,-3.4026 1.5,-4.0873 0.825,-0.6847 1.5,-1.9078 1.5,-2.7181 0,-0.8103 0.7875,-2.8107 1.75,-4.4452 l 1.75,-2.972 -3.5,-2.9054 c -1.925,-1.598 -4.70488,-2.9176 -6.17752,-2.9324 -1.8082,-0.018 -3.49624,-1.073 -5.19917,-3.249 l -2.52165,-3.222 -2.31448,2.1743 c -1.27296,1.1959 -3.98138,2.8708 -6.01871,3.7221 -6.74082,2.8165 -10.76847,1.5969 -10.76847,-3.2607 0,-2.0009 -0.38212,-2.3125 -2.25831,-1.8416 -3.11225,0.7811 -4.12747,-0.098 -6.59154,-5.7087 -1.17363,-2.6723 -3.48753,-6.4004 -5.14201,-8.2848 -4.66439,-5.3124 -3.74468,-11.0358 2.06995,-12.8813 3.58851,-1.1389 6.74265,0.4048 9.77345,4.7833 3.6067,5.2105 6.43358,7.7858 11.72854,10.6849 l 4.08007,2.2339 3.41993,-2.0849 c 4.56278,-2.7816 5.41388,-2.6651 9.36073,1.2818 3.20443,3.2044 3.84486,3.4094 12.73247,4.0757 7.31208,0.5482 10.33882,0.3603 13.84252,-0.8596 7.76987,-2.7051 13.00584,-1.5999 16.7373,3.5329 0.68921,0.9481 2.82671,2.2431 4.75,2.8778 2.86978,0.9471 3.4969,1.6479 3.4969,3.9076 0,1.9195 0.76335,3.162 2.52021,4.1022 2.74129,1.4671 4.05666,0.7592 4.64421,-2.4993 0.1972,-1.0937 1.11485,-2.1342 2.03923,-2.3122 2.25597,-0.4345 4.79637,4.6419 4.79637,9.5844 0,2.1356 0.3084,4.1914 0.6853,4.5683 0.8571,0.8571 3.2793,7.7282 3.2996,9.3599 0.008,0.6665 1.6782,4.7156 3.7109,8.9981 2.0327,4.2824 4.8919,11.3871 6.3538,15.7881 1.6318,4.9127 3.197,8.0019 4.0542,8.0019 0.7679,0 2.4759,-2.25 3.7955,-5 2.0974,-4.3708 2.412,-6.5131 2.5,-17.0248 0.091,-10.8714 0.3165,-12.2992 2.3507,-14.8849 1.2375,-1.573 2.25,-3.2771 2.25,-3.7868 0,-0.5098 1.5027,-4.1616 3.3394,-8.1152 4.7065,-10.131 5.921,-13.6457 6.2076,-17.9639 0.2719,-4.0966 1.8777,-6.7244 4.1091,-6.7244 0.7762,0 2.352,-1.5942 3.5016,-3.5427 1.9927,-3.3774 2.1779,-3.4636 3.9663,-1.8451 1.0318,0.9338 1.876,2.303 1.876,3.0428 0,0.7398 0.9989,2.344 2.2199,3.5649 2.9102,2.9103 5.7801,8.6159 5.7801,11.4916 0,3.0451 1.8103,2.9175 3,-0.2115 1.41,-3.7086 2.7401,-3.0407 3.4851,1.75 1.0325,6.6388 1.4902,7.6967 3.0684,7.0911 0.8204,-0.3148 2.2872,0.468 3.3745,1.801 2.2923,2.8102 2.5502,2.355 4.0227,-7.102 1.1992,-7.7024 0.6753,-12.0756 -2.6273,-21.9299 -2.5953,-7.744 -2.5779,-7.1047 -0.7689,-28.2624 0.5132,-6.0036 0.1849,-9.7739 -1.5239,-17.5 -4.3512,-19.6728 -6.6973,-24.5744 -21.8047,-45.5566 -1.2508,-1.7372 -3.5478,-3.7753 -5.1046,-4.5293 -3.5903,-1.7388 -8.104,-10.6792 -6.3015,-12.4817 1.9739,-1.974 1.3993,-3.3473 -4.3198,-10.3246 -3.025,-3.6904 -5.5,-7.043 -5.5,-7.4501 0,-1.0862 -12.8332,-13.9421 -17.9374,-17.9692 -7.1636,-5.6519 -15.34307,-10.1962 -17.38945,-9.6611 -2.60758,0.6819 -5.71089,-0.6539 -11.13132,-4.7914 -2.54201,-1.9403 -6.06634,-4.2172 -7.83185,-5.0597 -1.7655,-0.8424 -3.98191,-2.8893 -4.92536,-4.5486 -1.05876,-1.8621 -3.4875,-3.7765 -6.34498,-5.0013 -2.85084,-1.2221 -4.69781,-2.8337 -5.17645,-4.0757 -0.71594,-1.8577 -8.09791,-4.869 -11.89442,-5.8985 -1.20523,-0.3268 -3.31852,-1.3764 -6.54076,-1.969 -4.79856,-0.8825 -7.01314,-1.5652 -9.57053,2.0361 -0.69332,0.9762 -2.03244,1.543 -3.02968,1.2822 -2.44281,-0.6388 -7.22782,1.2995 -7.22782,2.9278 0,2.0346 -17.517,1.298 -21.61488,-0.9089 -4.24326,-2.2851 -6.84093,-1.2335 -5.91417,2.3943 0.38465,1.5056 0.67509,4.0268 0.64544,5.6025 -0.0315,1.675 0.76033,3.5441 1.90637,4.5 2.15854,1.8004 3.03035,5.35 1.50677,6.135 -0.53375,0.275 -1.43388,-0.4 -2.00027,-1.5 -1.97535,-3.8363 -2.67543,-4.5277 -3.84836,-3.8004 -0.64949,0.4027 -4.02134,0.8436 -7.493,0.9797 -5.07768,0.199 -6.90164,0.7435 -9.32672,2.7841 -1.65805,1.3951 -3.63945,2.5366 -4.4031,2.5366 -0.76366,0 -2.92604,1.35 -4.80529,3 -3.87858,3.4055 -4.88637,3.6284 -6.67253,1.4762 -2.17704,-2.6232 0.0615,-5.8592 4.09696,-5.9225 1.88253,-0.029 3.42279,-0.5157 3.42279,-1.0804 0,-0.5647 -1.88264,-2.7276 -4.18364,-4.8064 -3.98267,-3.5981 -4.36698,-3.7298 -8,-2.74 -2.099,0.5718 -7.64136,3.5531 -12.31636,6.625 -4.675002,3.0719 -9.850002,5.8444 -11.500002,6.161 -4.71239,0.9045 -10.01079,3.917 -12.87421,7.32 -3.3161,3.941 -3.35547,5.3671 -0.12579,4.5565 2.90698,-0.7296 3.03593,-0.1163 1,4.7564 -0.825,1.9745 -1.5,4.0544 -1.5,4.6221 0,2.0989 2.92982,0.9394 5.01074,-1.983 1.18082,-1.6583 3.4013,-3.6637 4.93441,-4.4565 1.78002,-0.9205 3.00512,-2.5297 3.38968,-4.4525 0.56793,-2.8397 1.65427,-3.8022 10.78458,-9.5555 4.741102,-2.9874 8.127312,-4.607 8.614292,-4.12 0.30131,0.3013 -2.25128,3.2446 -5.67243,6.5406 -3.421142,3.296 -5.932932,6.4577 -5.581752,7.0259 0.35118,0.5682 2.18696,1.0331 4.079502,1.0331 2.70949,0 3.44098,0.4024 3.44098,1.893 0,2.0581 -1.85105,3.107 -5.483012,3.107 -1.59078,0 -2.96818,1.0996 -4.38449,3.5 -1.48728,2.5208 -2.76677,3.5 -4.57309,3.5 -1.78318,0 -2.96284,0.8795 -4.08163,3.043 -1.95167,3.7741 -4.67207,4.8597 -11.03119,4.402 -2.72062,-0.1958 -5.95909,-0.376 -7.19659,-0.4005 -1.2375,-0.024 -2.25,-0.6646 -2.25,-1.4225 0,-0.7579 1.0125,-2.065 2.25,-2.9047 1.85148,-1.2562 2.02068,-1.7639 0.95531,-2.8666 -1.07469,-1.1124 -1.83938,-0.7205 -4.5,2.3061 -2.33014,2.6506 -4.27182,3.7993 -7.111414,4.2071 -2.14835,0.3086 -5.07335,1.6562 -6.5,2.9948 -3.72928,3.4991 -15.762709,8.8139 -20.507899,9.0578 -3.91827,0.2014 -4.07511,0.3439 -4.75379,4.3195 -0.85597,5.0141 -2.71282,8.5188 -7.292331,13.764 l -3.49236,4 -5.4924401,-2.948 c -3.02085,-1.6214 -5.67099,-2.7464 -5.88921,-2.5 -0.21823,0.2464 -1.65074,2.473 -3.18337996,4.948 -1.53263004,2.475 -3.80504004,5.4557 -5.04979004,6.6237 -4.01628,3.7688 -6.3523099,9.5568 -5.7299199,14.1971 0.5506,4.105 0.63068,4.1792 4.5070999,4.1792 3.60786,0 4.62483,-0.6865 11.85036,-8 4.3471,-4.4 8.6747801,-8 9.6170701,-8 0.94229,0 3.00543,-1.2375 4.584771,-2.75 2.28261,-2.186 3.9345,-2.7937 8.05471,-2.963 2.85077,-0.1172 6.53321,-0.3422 8.18321,-0.5 l 3,-0.287 -0.3389,6.5676 c -0.30295,5.8709 -0.06426,6.8941 2.249999,9.6444 1.42389,1.6922 2.5889,3.7993 2.5889,4.6824 0,0.9389 0.8304,1.6056 2,1.6056 1.1,0 2,-0.1474 2,-0.3276 0,-0.1802 -1.125,-3.0962 -2.5,-6.4801 -3.29441,-8.1076 -3.26835,-13.1257 0.08889,-17.1156 3.90509,-4.6409 5.03665,-3.9896 5.71644,3.2901 0.4487,4.805 1.44437,7.7776 4.05876,12.1176 3.40165,5.6469 3.4381,5.8248 2.01812,9.8495 -1.58166,4.4829 -1.08507,8.8379 1.22653,10.7564 0.99587,0.8265 1.27603,2.1579 0.85626,4.0691 -0.79072,3.6001 1.766624,3.943 3.998874,0.5361 1.23365,-1.8828 1.29412,-2.8764 0.33042,-5.4295 -1.9266,-5.1042 -0.0022,-8.0135 5.3495,-8.0874 6.19972,-0.086 6.85621,0.8597 6.85621,9.8724 0,5.7769 0.4102,8.2164 1.57798,9.3841 2.60879,2.6088 5.37735,3.7139 7.56504,3.0195 1.22642,-0.3892 3.41491,0.07 5.37976,1.1276 2.86495,1.5429 3.86285,1.6189 7.38882,0.5624 10.169562,-3.0468 11.677372,5.6177 3.725522,21.4086 -4.008462,7.96 -5.377482,8.7995 -12.831492,7.8686 -3.4681,-0.4332 -8.46374,-0.6813 -11.10143,-0.5514 -5.33869,0.2629 -8.45784,-1.2682 -17.493114,-8.5865 -2.90891,-2.3561 -6.29628,-4.2839 -7.5275,-4.2839 -3.53138,0 -6.68359,2.7622 -6.68359,5.8567 0,5.2961 -4.46372,6.8348 -8.297749,2.8604 -1.21124,-1.2555 -3.43396,-3.0621 -4.93939,-4.0146 -1.50542,-0.9524 -3.67095,-3.5622 -4.81229,-5.7994 -1.14133,-2.2372 -3.37021,-4.8109 -4.95307,-5.7193 -1.58286,-0.9084 -3.528981,-3.3091 -4.324721,-5.3349 -1.35769,-3.4563 -1.3017,-3.9192 0.909,-7.516 3.002541,-4.8851 3.213291,-10.837 0.436331,-12.3232 -1.090041,-0.5834 -3.677541,-1.0064 -5.750001,-0.9401 -2.07246,0.066 -5.9234901,-0.4125 -8.5578501,-1.064 -3.30664,-0.8177 -5.17463996,-0.8651 -6.03277,-0.1529 -3.23662,2.6862 -6.41105,3.038 -10.0093699,1.1094 l -3.55303,-1.9043 -5.16991,3.4791 c -5.82709,3.9213 -7.69353,6.0397 -10.92034,12.394 -2.30392,4.537 -5.6027,7.9766 -7.70675,8.0358 -1.76858,0.05 -6.76115,7.4047 -10.88041,16.0287 -0.91827,1.9225 -2.28091,7.9975 -3.02809,13.5 -0.74718,5.5025 -2.210357,13.1203 -2.3149,17.0046 -0.449746,16.7105 2.267313,37.0861 9.19604,52.3382 3.85806,8.4927 4.52186,9.6202 9.2849,12.667 2.86207,1.8309 5.50496,3.8162 5.87309,4.4118 0.36812,0.5957 2.50807,1.083 4.75544,1.083 5.69166,0 11.64921,3.9919 15.05121,10.0852 2.0388499,3.6517 3.9429299,5.4883 7.6237099,7.3535 6.12073,3.1017 9.17306,8.6963 9.54232,17.4905 0.13725,3.2684 0.88608,6.8404 1.66407,7.9376 0.77799,1.0973 4.7895301,6.3461 8.9145301,11.6642 11.621791,14.983 20.000001,27.5178 20.000001,29.9225 0,5.1292 11.240759,14.3909 29.035233,23.9234 5.99985,3.2141 12.53494,5.6086 22,8.0607 15.084362,3.908 17.496152,4.1739 19.518342,2.1517 z m 46.4917,-239.0347 c -0.76234,-0.9186 -2.88439,-2.2962 -4.71567,-3.0613 -3.72472,-1.5563 -4.09671,-3.452 -2.25,-11.4664 0.80507,-3.4938 0.74001,-4.6979 -0.29719,-5.5 -3.43088,-2.6532 -8.78242,-10.4656 -8.78242,-12.8209 0,-1.4234 -0.45,-2.8661 -1,-3.206 -2.33005,-1.44 -0.72695,-5.0203 4.49408,-10.0369 4.26272,-4.0958 5.99968,-5.1559 7.75,-4.73 5.88115,1.4311 8.09926,8.4255 3.25592,10.2669 -1.375,0.5228 -2.48213,1.5242 -2.46029,2.2253 0.0582,1.8686 8.19011,10.3955 10.66231,11.1801 1.16548,0.3699 2.90196,1.8675 3.85883,3.3278 1.68361,2.5695 1.67035,2.7013 -0.41054,4.083 -2.53059,1.6803 -2.722,3.0423 -0.64274,4.5736 1.88123,1.3854 5.04409,13.4586 3.84099,14.6617 -0.48152,0.4815 -3.35988,1.1674 -6.39635,1.5243 -4.47768,0.5263 -5.78277,0.3333 -6.90693,-1.0212 z m -41.83872,-21.2889 c -2.36139,-0.2117 -5.91169,-1.4831 -7.88954,-2.8253 -4.101,-2.783 -6.177632,-2.9432 -11.817012,-0.9115 -5.94779,2.1427 -7.7653,1.8243 -11.48322,-2.0116 l -3.37556,-3.4827 3.27417,-6.5157 c 1.94439,-3.8694 5.12324,-8.1434 7.82689,-10.5232 l 4.55272,-4.0075 3.1025,1.8181 c 1.906,1.1169 3.1025,2.627 3.1025,3.9156 0,3.5824 1.319052,3.6469 2.786512,0.1362 1.77335,-4.2425 3.27971,-5.429 7.96349,-6.273 4.32395,-0.7791 4.81548,0.4538 2.19847,5.5146 -1.83976,3.5577 -1.24596,6.1151 1.8181,7.8304 2.53767,1.4206 9.73343,10.8873 9.73343,12.8053 0,1.937 -3.78353,5.2862 -5.75,5.0899 -0.9625,-0.096 -3.68205,-0.3479 -6.04345,-0.5596 z m 32.18854,260.85 c 2.65143,-1.0405 14.58497,-15.2386 14.5959,-17.3657 0.0125,-2.4361 -1.315,-2.1897 -5.02609,0.933 -1.7537,1.4756 -5.27572,3.2101 -7.82672,3.8544 -4.04232,1.021 -4.68059,1.5435 -4.96827,4.0671 -0.18154,1.5925 -1.24118,3.8747 -2.35477,5.0715 -1.11358,1.1968 -1.72598,2.6593 -1.3609,3.25 0.74917,1.2122 4.10192,1.3038 6.94085,0.1897 z m 143.20592,-116.6623 c 0.5733,-2.2841 -0.0402,-4.437 -0.9603,-3.3701 -1.0142,1.176 -1.558,5.9167 -0.6788,5.9167 0.55,0 1.2876,-1.1459 1.6391,-2.5466 z M 41.716664,1627.6149 c 2.25231,-1.4758 6.41766,-8.361 6.41766,-10.6083 0,-0.4832 -2.7,1.2428 -6,3.8354 -5.669989,4.4546 -6.876789,6.2087 -5.333329,7.7521 1.03526,1.0353 2.193199,0.8046 4.915669,-0.9792 z m -1.58234,-10.8541 c 1.73334,-1.845 1.95566,-2.5 0.84863,-2.5 -0.825,0 -2.556879,1.125 -3.848629,2.5 -1.73334,1.8451 -1.95566,2.5 -0.84863,2.5 0.825,0 2.556879,-1.125 3.848629,-2.5 z m 15.55793,-10.2754 c -0.68187,-0.6819 -6.55793,5.3923 -6.55793,6.779 0,0.4029 1.62915,-0.8039 3.62033,-2.6818 1.99118,-1.878 3.3131,-3.7217 2.9376,-4.0972 z m 20.442074,-22.2246 c 0,-0.55 -0.45,-1 -1,-1 -0.55,0 -1,0.45 -1,1 0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 z m 71.999992,-2.5 c -0.70675,-0.8516 -1.51,-1.3233 -1.785,-1.0483 -0.275,0.275 0.0782,1.1967 0.785,2.0483 0.70675,0.8516 1.51,1.3233 1.785,1.0483 0.275,-0.275 -0.0782,-1.1967 -0.785,-2.0483 z m -82.499992,-3.6979 c 4.12766,-0.9645 11.1401,-2.0069 25,-3.7163 4.4,-0.5427 10.025002,-1.6393 12.500002,-2.437 2.475,-0.7977 9.7875,-2.693 16.25,-4.2119 6.4625,-1.5188 11.74999,-3.0874 11.74999,-3.4857 0,-1.5373 -6.76833,-1.6613 -12.46055,-0.2283 -3.27831,0.8254 -9.57831,2.0817 -14,2.7919 -24.854212,3.992 -35.670602,6.6915 -44.039442,10.9912 -5.130544,2.636 -5.037054,2.6416 5,0.2961 z"
- style="fill:url(#radialGradient89649);fill-opacity:1" />
- <path
- sodipodi:type="arc"
- style="fill:url(#radialGradient89651);fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path108986"
- sodipodi:cx="200.44412"
- sodipodi:cy="1737.5405"
- sodipodi:rx="199.13403"
- sodipodi:ry="199.13403"
- d="m 399.57816,1737.5405 a 199.13403,199.13403 0 1 1 -398.2680709,0 199.13403,199.13403 0 1 1 398.2680709,0 z"
- transform="translate(-57.435743,20.958068)" />
- <path
- transform="translate(-57.435743,20.958068)"
- d="m 399.57816,1737.5405 a 199.13403,199.13403 0 1 1 -398.2680709,0 199.13403,199.13403 0 1 1 398.2680709,0 z"
- sodipodi:ry="199.13403"
- sodipodi:rx="199.13403"
- sodipodi:cy="1737.5405"
- sodipodi:cx="200.44412"
- id="path108988"
- style="fill:url(#radialGradient89653);fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:type="arc" />
- <path
- transform="matrix(-0.957313,-0.2890533,0.2890533,-0.957313,-163.64008,3479.8078)"
- style="fill:url(#radialGradient89655);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 399.57816,1737.5405 c 0,109.922 -89.21205,199.1341 -199.13404,199.1341 -109.921984,0 -199.1340309,-89.2121 -199.1340309,-199.1341 0,-109.922 89.2120469,-199.134 199.1340309,-199.134 109.92199,0 199.13404,89.212 199.13404,199.134 z"
- id="path108990" />
- <path
- transform="matrix(0.9990162,-0.04434574,0.04434574,0.9990162,-71.66061,4.3077244)"
- sodipodi:nodetypes="ccc"
- id="path108992"
- d="m 92.750756,1567.6849 c 94.430094,-18.2974 -110.062425,25.1793 -139.481349,163.0909 -16.895004,-90.4919 85.243172,-139.8951 139.481349,-163.0909 z"
- style="opacity:0.56060606;fill:#ffffff;fill-rule:evenodd;stroke:none;filter:url(#filter3197)" />
- </g>
- </g>
- <g
- transform="translate(-628.98887,416.46925)"
- id="g3378">
- <g
- transform="translate(775.01164,364.10273)"
- id="g117471">
- <g
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)"
- inkscape:label="Calque 1"
- id="g117473">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117475" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117477" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117479" />
- <g
- id="g117481">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- id="path117483" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- id="path117485" />
- <path
- style="fill:url(#linearGradient89657);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- id="path117487"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117489"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117491"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117493"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117495"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117497"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117499"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117501"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:url(#radialGradient89659);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- id="path117503"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path117505"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117507"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117509"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117511"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117513"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117515"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.6608344,-0.3304172,0,0.9440491,868.88814,-184.59906)"
- id="g109132">
- <path
- transform="matrix(1.896061,0,0,1.896061,-382.19925,74.95322)"
- d="m 339.53775,378.05789 a 13.966679,13.966679 0 1 1 -27.93335,0 13.966679,13.966679 0 1 1 27.93335,0 z"
- sodipodi:ry="13.966679"
- sodipodi:rx="13.966679"
- sodipodi:cy="378.05789"
- sodipodi:cx="325.57108"
- id="path109134"
- style="fill:#b4281c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.625;marker:none;visibility:visible;display:inline;overflow:visible"
- sodipodi:type="arc" />
- <path
- transform="matrix(1.731185,0,0,1.731185,-328.52075,137.28542)"
- d="m 339.53775,378.05789 a 13.966679,13.966679 0 1 1 -27.93335,0 13.966679,13.966679 0 1 1 27.93335,0 z"
- sodipodi:ry="13.966679"
- sodipodi:rx="13.966679"
- sodipodi:cy="378.05789"
- sodipodi:cx="325.57108"
- id="path109136"
- style="fill:url(#linearGradient89661);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.32492188;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
- sodipodi:type="arc" />
- <path
- id="path109138"
- d="m 221.63805,783.36141 c -0.22285,0.22282 -0.18093,0.57323 0.0419,0.79604 l 7.58343,7.58343 -7.62531,7.62533 c -0.22285,0.22283 -0.22285,0.61512 0,0.83795 l 5.02769,5.02769 c 0.22282,0.22284 0.57323,0.18092 0.79604,-0.0419 l 7.62533,-7.62533 7.62533,7.62533 c 0.22283,0.22283 0.57322,0.26469 0.79604,0.0419 l 5.02769,-5.02769 c 0.22285,-0.22283 0.22285,-0.61512 0,-0.83795 l -7.62531,-7.62533 7.62531,-7.62533 c 0.22285,-0.22283 0.22281,-0.53132 0,-0.75414 l -5.02769,-5.02769 c -0.22282,-0.22285 -0.57323,-0.26475 -0.79604,-0.0419 l -7.62533,7.62534 -7.58343,-7.58343 c -0.22282,-0.22285 -0.61512,-0.22285 -0.83794,0 l -5.02769,5.02769 z"
- style="fill:url(#linearGradient89663);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61607176;marker:none;visibility:visible;display:inline;overflow:visible" />
- <path
- id="path109140"
- d="m 235.08711,767.608 c -13.34675,0 -24.1748,10.82803 -24.17478,24.17478 0,6.41257 2.61694,12.14291 6.69547,16.47203 2.11885,-17.50049 16.88952,-31.10725 34.95862,-31.10725 0.48721,0 0.93961,0.099 1.42205,0.1185 -4.42143,-5.75069 -11.09207,-9.65806 -18.90136,-9.65806 z"
- style="fill:url(#linearGradient89665);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61607176;marker:none;visibility:visible;display:inline;overflow:visible" />
- </g>
- </g>
- <g
- transform="translate(-1073.6433,295.56044)"
- id="g3346">
- <g
- transform="translate(897.38434,-46.491083)"
- id="g117421">
- <g
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)"
- inkscape:label="Calque 1"
- id="g117423">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117425" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117427" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117429" />
- <g
- id="g117431">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- id="path117433" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- id="path117435" />
- <path
- style="fill:url(#linearGradient89667);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- id="path117437"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117439"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117441"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117443"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117445"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117447"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117449"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117451"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:url(#radialGradient89669);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- id="path117453"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path117455"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117457"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117459"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117461"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117463"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117465"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- </g>
- <g
- style="fill:#00ff00;fill-opacity:1"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- id="g109152"
- inkscape:label="Calque 1">
- <path
- id="path109154"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)"
- d="m 214.80157,698.03149 a 30.68594,17.716536 0 1 1 -61.37188,0 30.68594,17.716536 0 1 1 61.37188,0 z"
- sodipodi:ry="17.716536"
- sodipodi:rx="30.68594"
- sodipodi:cy="698.03149"
- sodipodi:cx="184.11563"
- id="path109156"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:type="arc" />
- </g>
- </g>
- <g
- transform="translate(23.967614,920.33811)"
- id="g3462">
- <g
- id="g108629"
- transform="translate(134.05913,35.984128)">
- <g
- id="g4883"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path4885"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path4887"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path4889"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g4891">
- <path
- id="path4893"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path4895"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4897"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient89671);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path4899"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path4901" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path4903"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path4905" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path4907"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path4909" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path4911" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4913"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient89673);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path4915" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path4917" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path4919"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path4921" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path4923" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path4925" />
- </g>
- </g>
- </g>
- <g
- transform="translate(15.21711,1.7214477)"
- id="g3159">
- <rect
- transform="matrix(0.8944272,-0.4472136,0,1,0,0)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.75346398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect109160"
- width="36.695312"
- height="35.799278"
- x="395.43951"
- y="330.15076"
- ry="8.8706169" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path109162"
- d="m 372.22665,145.64754 -0.13558,32.8959 -2.71818,1.81754 0,-33.0536 2.85376,-1.65984 z"
- style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path109164"
- d="m 385.06359,155.06606 0.16889,4.18009 -30.14532,15.26938 0.34578,-4.66405 29.63065,-14.78542 z"
- style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="cccccccccccccccccccccc"
- id="path109166"
- d="m 373.89476,146.06666 0.18935,0.85117 2.46154,10.52408 8.33137,-6.09926 0.22711,2.41718 -8.55848,6.65757 -0.94674,0.61318 -0.37871,-1.43183 -1.70413,-7.38993 -2.65089,23.5191 -0.18936,2.39483 -1.32544,-2.17115 -5.68048,-9.30487 -9.13434,3.64409 0.25777,-2.59705 8.68723,-3.52121 0.56805,-0.42199 0.56804,0.93049 4.73373,7.75407 2.84024,-25.91394 0,-0.541 1.70414,0.0865 z"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- transform="translate(-1086.3477,882.01165)"
- id="g3408">
- <g
- id="g117789"
- transform="translate(910.08874,75.719118)">
- <g
- id="g117791"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path117793"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117795"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117797"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g117799">
- <path
- id="path117801"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117803"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117805"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient89675);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path117807"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path117809" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path117811"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path117813" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path117815"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path117817" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path117819" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117821"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient89677);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path117823" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path117825" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path117827"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path117829" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path117831" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path117833" />
- </g>
- </g>
- </g>
- <path
- id="path117855"
- d="m 1162.9818,171.48314 c -0.6741,0.33705 -1.3556,0.72418 -2.0094,1.15981 l -0.1629,0.81846 0,0.34911 0.3259,3.40575 -3.4213,3.02948 -0.9775,-2.84717 -0.1086,-0.25601 -0.3801,-0.31421 c -1.2465,1.38745 -2.403,2.96448 -3.4756,4.64702 l 0.1086,0.64391 0.1086,0.25601 1.5477,2.05781 -2.5252,4.87005 -1.9821,-1.21995 -0.2173,-0.0465 -0.4887,0.0892 c -0.8024,1.93355 -1.5015,3.93523 -2.0365,5.98332 l 0.353,0.36657 0.2172,0.0465 2.3352,0.22887 -0.9232,5.34909 -2.4981,0.78357 -0.2444,0.12218 -0.5159,0.49068 c -0.076,0.97201 -0.1086,1.96181 -0.1086,2.92475 0,0.96297 0.033,1.8815 0.1086,2.77735 l 0.5159,-0.0252 0.2444,-0.12218 2.4981,-1.71451 0.9232,4.46471 -2.3352,2.52521 -0.2172,0.30256 -0.3258,0.70598 c 0.5378,1.51081 1.2313,2.81882 2.0364,3.94685 l 0.4616,-0.38596 0.2173,-0.30256 1.9821,-3.20209 2.5252,2.34484 -1.5477,3.64429 -0.1086,0.36463 -0.1086,0.75251 c 1.0633,0.60459 2.2142,1.00228 3.4484,1.14625 l 0.4073,-0.70792 0.1086,-0.36462 0.9775,-3.78588 3.4213,-0.39177 -0.3259,3.69278 0,0.38789 0.1629,0.61677 c 0.6538,-0.21809 1.3353,-0.51246 2.0094,-0.8495 0.674,-0.33703 1.3284,-0.7106 1.9821,-1.14624 l 0.1629,-0.77967 0,-0.38789 -0.3258,-3.36696 3.4484,-3.04306 0.9504,2.82195 0.1357,0.24244 0.3802,0.3142 c 1.246,-1.39144 2.4039,-2.96071 3.4755,-4.64701 l -0.1086,-0.60513 -0.1358,-0.24243 -1.5477,-2.09659 2.5253,-4.87005 2.0093,1.20636 0.2172,0.0853 0.4616,-0.0756 c 0.8053,-1.93359 1.4986,-3.93425 2.0365,-5.98332 l -0.353,-0.36656 -0.2173,-0.0853 -2.308,-0.20365 0.9232,-5.3879 2.471,-0.76998 0.2715,-0.13576 0.4887,-0.47711 c 0.076,-0.97198 0.1086,-1.92301 0.1086,-2.88597 0,-0.96294 -0.032,-1.92028 -0.1086,-2.81613 l -0.4887,0.0117 -0.2715,0.13576 -2.471,1.70092 -0.9232,-4.4259 2.308,-2.55043 0.2173,-0.26376 0.353,-0.75835 c -0.5328,-1.49679 -1.214,-2.80035 -2.0094,-3.92164 l -0.4887,0.39953 -0.2172,0.26376 -2.0093,3.21568 -2.5253,-2.34484 1.5477,-3.60551 0.1358,-0.37821 0.1086,-0.71372 c -1.0714,-0.61452 -2.2297,-1.02602 -3.4755,-1.17145 l -0.3802,0.65555 -0.1357,0.37819 -0.9504,3.8111 -3.4484,0.40535 0.3258,-3.73157 0,-0.34911 -0.1629,-0.65556 c -0.6537,0.21813 -1.3081,0.4989 -1.9821,0.83593 z m 0,11.13266 c 5.1162,-2.5581 9.2591,1.28891 9.2591,8.59776 0,7.30887 -4.1429,15.33755 -9.2591,17.89564 -5.1162,2.55808 -9.2863,-1.31411 -9.2863,-8.62295 0,-7.30884 4.1701,-15.31235 9.2863,-17.87045 z"
- style="fill:url(#linearGradient89679);fill-opacity:1;stroke:#000000;stroke-width:1.03852296" />
- </g>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="129.39964"
- y="178.27731"
- id="text19155"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="129.39964"
- y="178.27731"
- id="tspan19157">WEB SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19159"
- sodipodi:role="line"
- x="129.39964"
- y="195.77731">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="135.7863"
- y="337.26468"
- id="text19161"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="135.7863"
- y="337.26468"
- id="tspan19163">DB SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19165"
- sodipodi:role="line"
- x="135.7863"
- y="354.76468">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="133.80254"
- y="510.69449"
- id="text19167"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="133.80254"
- y="510.69449"
- id="tspan19169">MAIL SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19171"
- sodipodi:role="line"
- x="133.80254"
- y="528.19446">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="139.84511"
- y="689.52734"
- id="text19173"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="139.84511"
- y="689.52734"
- id="tspan19175">FTP SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19177"
- sodipodi:role="line"
- x="139.84511"
- y="707.02734">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="132.80513"
- y="864.51697"
- id="text19179"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="132.80513"
- y="864.51697"
- id="tspan19181">DOC SERVER (storage)</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19183"
- sodipodi:role="line"
- x="132.80513"
- y="882.01697">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="136.19527"
- y="1045.7178"
- id="text19185"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="136.19527"
- y="1045.7178"
- id="tspan19187">VIRTUAL SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19189"
- sodipodi:role="line"
- x="136.19527"
- y="1063.2178">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="460.03769"
- y="1054.0387"
- id="text19191"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="460.03769"
- y="1054.0387"
- id="tspan19193">MONITOR SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19195"
- sodipodi:role="line"
- x="460.03769"
- y="1071.5387">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="480.84525"
- y="870.1098"
- id="text19209"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="480.84525"
- y="870.1098"
- id="tspan19211">SPARE</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19213"
- sodipodi:role="line"
- x="480.84525"
- y="887.6098">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="477.48007"
- y="730.09216"
- id="text19215"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="477.48007"
- y="730.09216"
- id="tspan19217">APP SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19219"
- sodipodi:role="line"
- x="477.48007"
- y="747.59216">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="451.39609"
- y="530.78418"
- id="text19221"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="451.39609"
- y="530.78418"
- id="tspan19223">DW SERVER</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19225"
- sodipodi:role="line"
- x="451.39609"
- y="548.28418">IP: 192.168.12.10</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="451.39609"
- y="362.48529"
- id="text19227"><tspan
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- sodipodi:role="line"
- x="451.39609"
- y="362.48529"
- id="tspan19229">SMS OPERATORE</tspan><tspan
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold"
- id="tspan19231"
- sodipodi:role="line"
- x="451.39609"
- y="379.98529">IP: 192.168.12.10</tspan></text>
- <text
- id="text19091"
- y="201.98724"
- x="451.39609"
- style="font-size:14px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- xml:space="preserve"><tspan
- id="tspan19093"
- y="201.98724"
- x="451.39609"
- sodipodi:role="line"
- style="font-weight:bold;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold">INFO CLIENTE</tspan><tspan
- y="219.48724"
- x="451.39609"
- sodipodi:role="line"
- id="tspan19095"
- style="font-weight:normal;text-align:start;text-anchor:start;-inkscape-font-specification:Bitstream Vera Sans Bold">IP: 192.168.12.10</tspan></text>
- <g
- transform="translate(-97.747788,289.40683)"
- id="g6894">
- <g
- transform="translate(-78.51118,124.89176)"
- id="g7145">
- <g
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)"
- inkscape:label="Calque 1"
- id="g3410">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path3412" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path3414" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path3416" />
- <g
- id="g3418">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- id="path3420" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- id="path3422" />
- <path
- style="fill:url(#linearGradient89681);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- id="path3424"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3426"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3428"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3430"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3432"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3434"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3436"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3438"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:url(#radialGradient89683);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- id="path3440"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path3442"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3444"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3446"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3448"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3450"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3452"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- </g>
- <g
- id="g108994"
- transform="matrix(0.2668516,-0.1334258,0,0.3812166,147.18815,234.03981)">
- <g
- transform="matrix(0.810875,0,0,0.810875,5.90968,-403.3576)"
- id="g108996">
- <rect
- y="560.36218"
- x="30"
- width="158"
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
- ry="3"
- rx="3"
- id="rect108998"
- height="100" />
- <path
- style="fill:none;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path109000"
- d="m 32,658.36218 76,-56 80,58" />
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path109002"
- d="M 31.935135,561.05047 107.7045,621.01804 186,560.39461 31.935135,561.05047 z" />
- </g>
- </g>
- </g>
- <g
- transform="translate(461.68849,275.96747)"
- id="g6826">
- <g
- id="g3466"
- transform="translate(-315.66572,-16.46302)">
- <g
- id="g3468"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path3470"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path3472"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path3474"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g3476">
- <path
- id="path3478"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3480"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3482"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient89685);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path3484"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path3486" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path3488"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path3490" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path3492"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path3494" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path3496" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3498"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient89687);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path3500" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path3502" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path3504"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path3506" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path3508" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path3510" />
- </g>
- </g>
- </g>
- <g
- id="g109004"
- v:mID="0"
- v:index="1"
- v:groupContext="foregroundPage"
- transform="matrix(0.3732139,-0.1866069,0,0.5331627,-81.489401,110.20827)">
- <title
- id="title109006">P gina-1</title>
- <v:pageProperties
- v:shadowOffsetY="-8.50394"
- v:shadowOffsetX="8.50394"
- v:pageScale="0.0393701"
- v:drawingUnits="24"
- v:drawingScale="0.0393701" />
- <g
- v:mID="14"
- v:groupContext="shape"
- transform="translate(0.24,-0.24)"
- id="g109008">
- <title
- id="title109010">Hoja.14</title>
- <path
- id="path109012"
- d="m 0,57.17 93.54,0 0,-56.69 -74.83,0 L 0,20.32 0,57.17 z"
- class="st1"
- style="fill:#ff0000;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="2"
- v:groupContext="group"
- transform="translate(31.4211,-7.49015)"
- id="g109014">
- <title
- id="title109016">Hoja.2</title>
- <g
- v:mID="1"
- v:groupContext="shape"
- transform="translate(0,-21.5869)"
- id="g109018">
- <title
- id="title109020">Box</title>
- <v:userDefs>
- <v:ud
- v:val="VT0(11):26"
- v:nameU="visVersion" />
- </v:userDefs>
- <rect
- id="rect109022"
- y="47.360699"
- x="0"
- width="19.6245"
- height="9.8122396"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="3"
- v:groupContext="shape"
- transform="translate(0,-10.7935)"
- id="g109024">
- <title
- id="title109026">Box.3</title>
- <v:userDefs>
- <v:ud
- v:val="VT0(11):26"
- v:nameU="visVersion" />
- </v:userDefs>
- <rect
- id="rect109028"
- y="47.360699"
- x="0"
- width="19.6245"
- height="9.8122396"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="4"
- v:groupContext="shape"
- transform="translate(0,-32.3804)"
- id="g109030">
- <title
- id="title109032">Hoja.4</title>
- <path
- id="path109034"
- d="m 0,57.17 19.62,0 0,-9.81 -15.7,0 -3.92,3.43 0,6.38 z"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="5"
- v:groupContext="shape"
- transform="matrix(1,0,0,-1,0,104.534)"
- id="g109036">
- <title
- id="title109038">Hoja.5</title>
- <path
- id="path109040"
- d="m 0,57.17 19.62,0 0,-9.81 -15.7,0 -3.92,3.43 0,6.38 z"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="6"
- v:groupContext="shape"
- transform="translate(20.6057,0)"
- id="g109042">
- <title
- id="title109044">Box.6</title>
- <v:userDefs>
- <v:ud
- v:val="VT0(11):26"
- v:nameU="visVersion" />
- </v:userDefs>
- <rect
- id="rect109046"
- y="14.9803"
- x="0"
- width="9.8122396"
- height="42.1926"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="7"
- v:groupContext="shape"
- transform="matrix(-1,0,0,-1,51.0236,104.534)"
- id="g109048">
- <title
- id="title109050">Hoja.7</title>
- <path
- id="path109052"
- d="m 0,57.17 19.62,0 0,-9.81 -15.7,0 -3.92,3.43 0,6.38 z"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="8"
- v:groupContext="shape"
- transform="matrix(-1,0,0,1,51.0236,-32.3804)"
- id="g109054">
- <title
- id="title109056">Hoja.8</title>
- <path
- id="path109058"
- d="m 0,57.17 20.61,0 0,-9.81 -16.49,0 -4.12,3.43 0,6.38 z"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="9"
- v:groupContext="shape"
- transform="translate(31.3992,-10.7935)"
- id="g109060">
- <title
- id="title109062">Box.9</title>
- <v:userDefs>
- <v:ud
- v:val="VT0(11):26"
- v:nameU="visVersion" />
- </v:userDefs>
- <rect
- id="rect109064"
- y="47.360699"
- x="0"
- width="19.6245"
- height="9.8122396"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="10"
- v:groupContext="shape"
- transform="translate(31.3992,-21.5869)"
- id="g109066">
- <title
- id="title109068">Box.10</title>
- <v:userDefs>
- <v:ud
- v:val="VT0(11):26"
- v:nameU="visVersion" />
- </v:userDefs>
- <rect
- id="rect109070"
- y="47.360699"
- x="0"
- width="19.6245"
- height="9.8122396"
- class="st2"
- style="fill:#ffff99;stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="11"
- v:groupContext="shape"
- transform="translate(24.5306,-32.3804)"
- id="g109072">
- <title
- id="title109074">Box.11</title>
- <v:userDefs>
- <v:ud
- v:val="VT0(11):26"
- v:nameU="visVersion" />
- </v:userDefs>
- <rect
- id="rect109076"
- y="47.360699"
- x="0"
- width="8.8310099"
- height="9.8122396"
- class="st3"
- style="fill:#ffff99;stroke:none" />
- </g>
- <g
- v:mID="12"
- v:groupContext="shape"
- transform="translate(20.6057,-42.1926)"
- id="g109078">
- <title
- id="title109080">Hoja.12</title>
- <path
- id="path109082"
- d="m 0,57.17 12.76,0"
- class="st4"
- style="stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- <g
- v:mID="13"
- v:groupContext="shape"
- transform="translate(30.4179,-32.3804)"
- id="g109084">
- <title
- id="title109086">Hoja.13</title>
- <path
- id="path109088"
- d="m 0,57.17 20.61,0"
- class="st4"
- style="stroke:#000000;stroke-width:0.23999999;stroke-linecap:round;stroke-linejoin:round" />
- </g>
- </g>
- </g>
- </g>
- <g
- transform="translate(-695.86116,680.88905)"
- id="g8215">
- <g
- id="g117071"
- transform="translate(519.60219,-104.51902)">
- <g
- id="g117073"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path117075"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117077"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117079"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g117081">
- <path
- id="path117083"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117085"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117087"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient89689);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path117089"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path117091" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path117093"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path117095" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path117097"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path117099" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path117101" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117103"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient89691);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path117105" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path117107" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path117109"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path117111" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path117113" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path117115" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.2910011,-0.1455006,0,0.4157158,726.80853,-83.694828)"
- id="g109114"
- inkscape:label="Warstwa 1">
- <g
- id="g109116">
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:#333333;stroke-width:3.51475525;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 201.29393,277.81602 0,83.33892 c 0,3.30324 -2.65929,5.96253 -5.96253,5.96253 l -70.92274,-1e-5 c -3.30324,1e-5 -5.96253,-2.65928 -5.96253,-5.96252 l 0,-104.18739 c 0,-3.30324 2.65929,-5.96253 5.96253,-5.96253 l 0,0 51.51028,0"
- id="path109118" />
- <path
- style="fill:none;stroke:#333333;stroke-width:3.51475525;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 200.66629,278.44365 -19.41245,0 c -3.30325,0 -5.96254,-2.65929 -5.96254,-5.96253 l 0,-20.84846"
- id="path109120" />
- <rect
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:#888888;stroke-width:3.51475525;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect109122"
- width="59.625309"
- height="7.5316181"
- x="130.05737"
- y="298.91449" />
- <rect
- y="320.46329"
- x="130.05737"
- height="7.5316181"
- width="59.625309"
- id="rect109124"
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:#888888;stroke-width:3.51475525;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:#888888;stroke-width:3.51475525;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect109126"
- width="59.625309"
- height="7.5316181"
- x="129.42973"
- y="342.01205" />
- <rect
- y="276.95511"
- x="129.64677"
- height="8.3528175"
- width="31.575304"
- id="rect109128"
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:#888888;stroke-width:2.69355536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:none;stroke:#333333;stroke-width:3.55898809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 174.47857,250.37988 27.11315,28.70931"
- id="path109130"
- sodipodi:nodetypes="cc" />
- </g>
- </g>
- </g>
- <g
- transform="translate(-2067.4755,229.85634)"
- id="g14851">
- <g
- transform="translate(2213.4983,196.38493)"
- id="g6628">
- <g
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)"
- inkscape:label="Calque 1"
- id="g6630">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path6632" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path6634" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path6636" />
- <g
- id="g6638">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- id="path6640" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- id="path6642" />
- <path
- style="fill:url(#linearGradient89693);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- id="path6644"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path6646"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6648"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path6650"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6652"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path6654"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6656"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6658"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:url(#radialGradient89695);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- id="path6660"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path6662"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6664"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path6666"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6668"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6670"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6672"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(1.1666667,-0.5833333,0,1.6666667,2447.9468,308.67784)"
- inkscape:label="Calque 1"
- id="g109090">
- <rect
- style="fill:#427bc3;fill-opacity:1;stroke:none"
- id="rect109092"
- width="6"
- height="0"
- x="16"
- y="12.5"
- ry="0" />
- <g
- id="g109094">
- <path
- id="path109096"
- d="M 8,2 15,2 15,27 8,27 8,2 z"
- style="fill:#4e9a06;fill-opacity:1;stroke:none" />
- <path
- id="path109098"
- d="m 15,9 7,0 0,18 -7,0 0,-18 z"
- style="fill:#f57900;fill-opacity:1;stroke:none" />
- <path
- id="path109100"
- d="m 22,18 7,0 0,9 -7,0 0,-9 z"
- style="fill:#cc0000;fill-opacity:1;stroke:none" />
- <path
- id="path109102"
- d="M 9,3 14,3 14,27 9,27 9,3 z"
- style="fill:#8ae234;fill-opacity:1;stroke:none" />
- <path
- id="path109104"
- d="m 16,10 5,0 0,17 -5,0 0,-17 z"
- style="fill:#fcaf3e;fill-opacity:1;stroke:none" />
- <path
- id="path109106"
- d="m 23,19 5,0 0,8 -5,0 0,-8 z"
- style="fill:#ef2929;fill-opacity:1;stroke:none" />
- <path
- id="path109108"
- d="M 1,13 8,13 8,27 1,27 1,13 z"
- style="fill:#204a87;fill-opacity:1;stroke:none" />
- <path
- id="path109110"
- d="M 2,14 7,14 7,27 2,27 2,14 z"
- style="fill:#729fcf;fill-opacity:1;stroke:none" />
- <path
- id="path109112"
- d="m 0.5,27 29,0 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 l -29,0 C 0.223,28 0,27.777 0,27.5 0,27.223 0.223,27 0.5,27 z"
- style="fill:#555753;fill-opacity:1;stroke:none" />
- </g>
- </g>
- </g>
- <g
- transform="translate(55.376622,226.89494)"
- id="g3940">
- <g
- id="g6928"
- transform="translate(90.64615,-128.51935)">
- <g
- id="g6930"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path6932"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path6934"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path6936"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g6938">
- <path
- id="path6940"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path6942"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path6944"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient89697);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path6946"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path6948" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path6950"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path6952" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path6954"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path6956" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path6958" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path6960"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient89699);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path6962" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path6964" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path6966"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path6968" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path6970" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path6972" />
- </g>
- </g>
- </g>
- <g
- id="g7116"
- transform="matrix(0.5539927,-0.2769963,0,0.7914182,69.441655,-494.70209)">
- <rect
- style="fill:#166496;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68594635;marker:none;visibility:visible;display:inline;overflow:visible"
- id="rect7118"
- width="48.180401"
- height="48.180401"
- x="882.70941"
- y="188.84785"
- rx="6.0000076"
- ry="6.0000076"
- transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,0,0)" />
- <rect
- style="fill:url(#linearGradient89701);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.18750143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
- id="rect7120"
- width="42.856983"
- height="42.856983"
- x="885.3714"
- y="191.50948"
- rx="3.0000038"
- ry="3.0000038"
- transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,0,0)" />
- <path
- style="font-size:47.54045868px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient89703);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;font-family:URW Bookman L"
- d="m 493.74763,784.00094 -1.61638,0 c -2.89996,0.52294 -4.4688,0.76064 -6.98845,0.95081 l 0,1.42621 0.95081,0.0951 c 2.4721,0.2377 3.13767,1.09343 3.13767,3.94586 l 0,11.17201 c 0,2.61472 -0.85573,3.70815 -2.94751,3.94586 l -1.18851,0.0951 0,1.42621 12.74085,0 0,-1.42621 -1.14098,-0.0951 c -2.13931,-0.23771 -2.9475,-1.33114 -2.9475,-3.94586 l 0,-17.58997 m -2.18686,-8.03434 c -1.61638,0 -2.89997,1.28359 -2.89997,2.85243 0,1.61637 1.28359,2.89997 2.85242,2.89997 1.61638,0 2.89997,-1.2836 2.89997,-2.85243 0,-1.56884 -1.28359,-2.89997 -2.85242,-2.89997"
- id="path7122" />
- <path
- style="fill:url(#linearGradient89705);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.18749964;marker:none;visibility:visible;display:inline;overflow:visible"
- d="m 490.63046,762.7053 c -0.76686,0 -1.53738,0.2874 -2.125,0.875 l -26.0625,26.0625 c -1.17521,1.17521 -1.17521,3.07478 0,4.25 l 16.65625,16.65625 c 0.0426,-17.36725 11.74174,-31.56494 26.8125,-33.8125 L 492.75546,763.5803 c -0.58761,-0.58761 -1.35814,-0.875 -2.125,-0.875 z"
- id="path7124" />
- </g>
- </g>
- <g
- transform="translate(-2204.5921,828.95657)"
- id="g14796">
- <g
- transform="translate(2350.6149,-222.65428)"
- id="g117371">
- <g
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)"
- inkscape:label="Calque 1"
- id="g117373">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117375" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117377" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117379" />
- <g
- id="g117381">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- id="path117383" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- id="path117385" />
- <path
- style="fill:url(#linearGradient89707);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- id="path117387"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117389"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117391"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117393"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117395"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117397"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117399"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117401"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:url(#radialGradient89709);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- id="path117403"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path117405"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117407"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117409"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117411"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117413"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117415"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- </g>
- <g
- id="g119362"
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)">
- <rect
- y="293.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119364"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119366"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119368"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119370"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119372"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119374"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119376"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119378"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119380"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119382"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="303.20496" />
- <rect
- y="313.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119384"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119386"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119388"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119390"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119392"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119394"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119396"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119398"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119400"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119402"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="323.20496" />
- <rect
- y="333.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119404"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119406"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119408"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect119410"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect119412"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </g>
- </g>
- </g>
- <path
- id="path91016"
- d="M 591.58063,780.69364 1453.3182,1219.7707"
- style="fill:none;stroke:#e68080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#d58080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 1279.7263,1216.7279 1979.6754,860.08563"
- id="path3533-3" />
- </g>
- <g
- inkscape:label="diagram"
- inkscape:groupmode="layer"
- id="layer1"
- transform="translate(-83.461244,-149.71426)"
- sodipodi:insensitive="true">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117863" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117865" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path117867" />
- <path
- id="path118257-3"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118259-1"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118261-4"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path3356"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path3358"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path3360"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="203.22742"
- y="1254.4452"
- id="text3547"><tspan
- sodipodi:role="line"
- id="tspan3549"
- x="203.22742"
- y="1254.4452" /></text>
- <path
- id="path6262"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path6264"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path6266"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="225.9373"
- y="214.30464"
- id="text12366"><tspan
- sodipodi:role="line"
- x="227.67558"
- y="214.30464"
- id="tspan12370"
- style="font-weight:bold">A) Cinder running on 1 Hardware node </tspan><tspan
- sodipodi:role="line"
- x="225.9373"
- y="226.80464"
- id="tspan40327" /></text>
- <flowRoot
- xml:space="preserve"
- id="flowRoot12372"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"><flowRegion
- id="flowRegion12374"><rect
- id="rect12376"
- width="277.79196"
- height="248.49753"
- x="40.406101"
- y="25.037045" /></flowRegion><flowPara
- id="flowPara12378" /></flowRoot> <path
- id="path28160"
- d="m 315.22338,426.34039 91.36936,46.55496"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 380.6955,469.21927 91.36934,-46.55506"
- id="path20157" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 185.78351,323.11038 137.40741,72.74725"
- id="path27639-3" />
- <g
- transform="matrix(0.65694308,0,0,0.65694308,-1522.2473,382.17184)"
- id="g11976">
- <g
- transform="translate(2350.6149,-222.65428)"
- id="g11978">
- <g
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)"
- inkscape:label="Calque 1"
- id="g11980">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path11982" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path11984" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path11986" />
- <g
- id="g11988">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- id="path11990" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- id="path11992" />
- <path
- style="fill:url(#linearGradient12076);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- id="path11994"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path11996"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path11998"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path12000"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path12002"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path12004"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path12006"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path12008"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:url(#radialGradient12078);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- id="path12010"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path12012"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path12014"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path12016"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path12018"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path12020"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path12022"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- </g>
- <g
- id="g12024"
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)">
- <rect
- y="293.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12026"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12028"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12030"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12032"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12034"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12036"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12038"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12040"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12042"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12044"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="303.20496" />
- <rect
- y="313.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12046"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12048"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12050"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12052"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12054"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12056"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12058"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12060"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12062"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12064"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="323.20496" />
- <rect
- y="333.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12066"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12068"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12070"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12072"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12074"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </g>
- </g>
- <g
- transform="matrix(1.4935386,0,0,1.4935386,-380.65184,167.40421)"
- id="g12102">
- <g
- id="g12104">
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12106"
- d="m 452.22752,154.79534 c -1.32987,4.3593 0.97442,13.06343 4.32672,7.29809 0.55883,-4.21566 0.16853,-13.66849 -4.32672,-7.29809 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12108"
- d="m 459.05645,154.87353 c -5.73123,-1.99396 -4.37255,6.82514 -3.10169,8.88804 4.41472,0.3139 8.88448,0.68282 7.08957,-5.21292 -0.15325,-2.39014 -1.62637,-3.78967 -3.98788,-3.67512 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12110"
- d="m 461.48045,154.95173 c -1.09246,1.9721 -0.88144,8.20841 3.07563,8.75771 7.13327,0.55239 -1.24277,-5.48505 3.0235,-5.57782 1.36821,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12112"
- d="m 469.14346,154.84748 c -6.26267,0.075 -4.66384,10.71977 1.4292,8.95932 4.83425,0.31308 3.44625,-9.88021 -1.4292,-8.95932 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12114"
- d="m 468.85674,155.68154 c -5.85015,2.68836 -2.79296,6.6586 2.86712,4.84803 3.28424,0.8454 -0.45596,-6.36406 -2.86712,-4.84803 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12116"
- d="m 475.63355,154.84748 c -5.82517,-1.97942 -4.54812,6.74301 -3.23202,8.91409 4.84187,0.18324 3.39963,-5.16968 5.70816,-6.35977 0.24428,-2.37476 -0.19418,-2.73428 -2.47614,-2.55432 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12118"
- d="m 479.49112,154.87353 c -5.77442,-2.02369 -4.43922,6.79664 -3.15383,8.88804 4.41473,0.3139 8.88448,0.68282 7.08958,-5.21292 -0.15836,-2.36396 -1.59101,-3.77955 -3.93575,-3.67512 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12120"
- d="m 485.56417,154.84748 c -6.19598,0.15033 -4.65067,10.675 1.42942,8.96143 4.93021,0.35507 3.48048,-9.89643 -1.42942,-8.96143 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12122"
- d="m 485.30352,155.68154 c -5.85015,2.68836 -2.79297,6.6586 2.86711,4.84803 3.28424,0.8454 -0.45595,-6.36406 -2.86711,-4.84803 z" />
- <path
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="path12124"
- d="m 488.0403,154.95173 c -1.06389,1.96915 -0.92086,8.22865 3.04957,8.75771 7.16539,0.57531 -1.21095,-5.48429 3.04956,-5.57782 1.3682,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z" />
- <path
- transform="matrix(-0.179335,0,0,0.149728,502.1893,-24.02897)"
- style="opacity:0.17777776;fill:url(#linearGradient12182);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- inkscape:tile-w="105.36077"
- inkscape:tile-h="104.60061"
- inkscape:tile-cy="1057.5979"
- inkscape:tile-cx="150.57283"
- id="path12126"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.284001,0,0,0.193224,407.7236,-73.15871)"
- style="opacity:0.17777776;fill:url(#linearGradient12184);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12128"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.340554,0,0,0.231701,396.3144,-88.95173)"
- style="opacity:0.17777776;fill:url(#linearGradient12186);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12130"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.249954,0,0,0.170059,406.7992,-32.10751)"
- style="opacity:0.17777776;fill:url(#linearGradient12188);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12132"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(0.260403,0,0,0.177168,412.2819,-25.25605)"
- style="opacity:0.17777776;fill:url(#linearGradient12190);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12134"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.104126,-0.150834,-0.146719,0.07084417,668.335,91.43843)"
- style="opacity:0.17777776;fill:url(#linearGradient12192);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12136"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.154671,-0.224051,-0.217939,0.105233,738.2325,88.88709)"
- style="opacity:0.17777776;fill:url(#linearGradient12194);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12138"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.138006,-0.19991,-0.194457,0.09389457,722.8067,97.77468)"
- style="opacity:0.17777776;fill:url(#linearGradient12196);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12140"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.117791,-0.170629,-0.165973,0.08014087,677.6847,122.0894)"
- style="opacity:0.17777776;fill:url(#linearGradient12198);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12142"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.09614486,-0.139271,-0.135472,0.06541328,635.5166,142.1226)"
- style="opacity:0.17777776;fill:url(#linearGradient12200);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12144"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.164683,-0.238552,0.232045,-0.112044,265.1906,314.0698)"
- style="opacity:0.17777776;fill:url(#linearGradient12202);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12146"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.172846,-0.250377,0.243546,-0.117597,239.7257,330.3731)"
- style="opacity:0.17777776;fill:url(#linearGradient12204);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12148"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.177232,-0.256733,0.249729,-0.120583,225.1178,318.3329)"
- style="opacity:0.17777776;fill:url(#linearGradient12206);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12150"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.166524,-0.241221,0.23464,-0.113297,227.7161,329.1711)"
- style="opacity:0.17777776;fill:url(#linearGradient12208);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12152"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.112183,-0.162505,0.158072,-0.07632533,314.1776,290.1886)"
- style="opacity:0.17777776;fill:url(#linearGradient12210);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12154"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.11826,0.171307,0.166634,0.08045988,311.5686,16.07786)"
- style="opacity:0.17777776;fill:url(#linearGradient12212);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12156"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.0943583,0.136684,0.132956,0.06419815,331.8395,50.2111)"
- style="opacity:0.17777776;fill:url(#linearGradient12214);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12158"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.114364,0.165662,0.161143,0.07780872,322.2702,30.08746)"
- style="opacity:0.17777776;fill:url(#linearGradient12216);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12160"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.140702,0.203815,0.198255,0.09572832,286.7172,18.15027)"
- style="opacity:0.17777776;fill:url(#linearGradient12218);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12162"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.162185,0.234935,0.228526,0.110345,259.9411,6.05945)"
- style="opacity:0.17777776;fill:url(#linearGradient12220);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12164"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.160583,0.232613,-0.226269,-0.109254,748.0707,211.5833)"
- style="opacity:0.17777776;fill:url(#linearGradient12222);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12166"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.12628,0.182922,-0.177934,-0.08591606,697.8146,196.7379)"
- style="opacity:0.17777776;fill:url(#linearGradient12224);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12168"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.137748,0.199537,-0.194093,-0.09371803,714.1281,221.8225)"
- style="opacity:0.17777776;fill:url(#linearGradient12226);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12170"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.120979,0.175247,-0.170466,-0.08231039,662.6019,207.1803)"
- style="opacity:0.17777776;fill:url(#linearGradient12228);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12172"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- <path
- transform="matrix(-0.14434,0.209086,-0.203383,-0.09820396,735.5011,232.5166)"
- style="opacity:0.17777776;fill:url(#linearGradient12230);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:start="0.32872637"
- sodipodi:ry="52.289352"
- sodipodi:rx="52.660198"
- sodipodi:open="true"
- sodipodi:end="6.478369"
- sodipodi:cy="1057.5979"
- sodipodi:cx="150.56367"
- id="path12174"
- d="m 200.40415,1074.4789 a 52.660198,52.289352 0 1 1 1.81981,-6.7397" />
- </g>
- <path
- transform="matrix(1.155532,0,0,1.155532,26.16756,-503.197)"
- style="fill:url(#radialGradient12232);fill-opacity:1;fill-rule:nonzero;stroke:none"
- sodipodi:type="arc"
- sodipodi:ry="24.998358"
- sodipodi:rx="24.998358"
- sodipodi:cy="571.95715"
- sodipodi:cx="384.69696"
- id="path12176"
- d="m 409.69532,571.95715 a 24.998358,24.998358 0 1 1 -49.99672,0 24.998358,24.998358 0 1 1 49.99672,0 z" />
- <text
- y="161.44913"
- xml:space="preserve"
- x="469.55161"
- style="font-size:10.00881386px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#9f0021;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- id="text12178"><tspan
- y="161.44913"
- x="469.55161"
- sodipodi:role="line"
- id="tspan12180">Internet</tspan></text>
- </g>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="538.89154"
- y="215.79129"
- id="text13881"><tspan
- sodipodi:role="line"
- x="538.89154"
- y="215.79129"
- id="tspan14065"
- style="font-weight:bold">B) Cloud of 2-4 servers in one cluster</tspan><tspan
- sodipodi:role="line"
- x="538.89154"
- y="228.29129"
- id="tspan29240">Self-contained storage solution</tspan><tspan
- sodipodi:role="line"
- x="538.89154"
- y="240.79129"
- id="tspan6068">Typical smallest private cloud</tspan><tspan
- sodipodi:role="line"
- x="538.89154"
- y="253.29129"
- id="tspan29232" /><tspan
- sodipodi:role="line"
- x="538.89154"
- y="265.79129"
- id="tspan14069" /></text>
- <g
- transform="matrix(0.65694308,0,0,0.65694308,409.13381,29.158398)"
- id="g14000">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)"
- inkscape:label="Calque 1"
- id="g14002">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14004" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14006" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14008" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g14010">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path14012" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path14014" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path14016"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient14034);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path14018"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)"
- id="g14020">
- <path
- id="path14022"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- id="g14024"
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(705.44117,-218.9829)">
- <path
- id="path14026"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- id="path14028" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path14030" />
- <path
- id="path14032"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 403.08993,404.14504 138.94378,71.0712"
- id="path27639" />
- <path
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 608.79612,390.33518 91.36933,-46.55506"
- id="path27641" />
- <path
- id="path91031"
- d="m 608.68499,296.87805 138.94378,71.0712"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <path
- id="path27643"
- d="m 563.28267,366.85747 91.36934,-46.55505"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- id="path27645"
- d="m 495.86167,451.62164 91.36934,-46.55506"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 654.30956,413.81288 745.6789,367.25782"
- id="path27647" />
- <path
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 450.34043,428.08107 91.36934,-46.55506"
- id="path27649" />
- <path
- id="path27651"
- d="m 541.38287,475.16213 91.36934,-46.55506"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 404.81919,404.54058 91.36935,-46.55506"
- id="path27653" />
- <g
- id="g27655"
- transform="matrix(0.65694308,0,0,0.65694308,391.71742,31.819328)">
- <g
- id="g27657"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,488.78696,875.42775)">
- <path
- id="path27659"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27661"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27663"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g27665"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path27667"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path27669"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27671"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27673"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient28127);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-338.72869,1082.8342)"
- id="g27675">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1081.1367,402.39569 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- id="path27677" />
- <g
- id="g27679"
- transform="translate(456.4439,-26.889185)"
- style="fill:#00ffff;stroke:#ffffff">
- <path
- id="path27681"
- d="m 660.00267,458.32498 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 668.28911,465.32717 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path27683" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 660.00267,472.20199 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path27685" />
- <path
- id="path27687"
- d="m 668.28911,479.13574 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- <path
- id="path27689"
- d="m 517.76922,343.37971 91.36935,-46.55506"
- style="fill:none;stroke:#808080;stroke-width:3.28471541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <g
- id="g27691"
- transform="matrix(0.65694308,0,0,0.65694308,-1189.4227,405.31085)">
- <g
- id="g27693"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g27695"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path27697"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27699"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27701"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g27703">
- <path
- id="path27705"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path27707"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27709"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient28129);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path27711"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path27713" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path27715"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path27717" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path27719"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path27721" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path27723" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27725"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient28131);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path27727" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path27729" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path27731"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path27733" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path27735" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path27737" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g27739">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27741"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27743"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27745"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27747"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27749"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27751"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27753"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27755"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27757"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27759"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27761"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27763"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27765"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27767"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27769"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27771"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27773"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27775"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27777"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27779"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27781"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27783"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27785"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27787"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27789"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g27791"
- transform="matrix(0.65694308,0,0,0.65694308,-1143.4472,428.64223)">
- <g
- id="g27793"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g27795"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path27797"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27799"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27801"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g27803">
- <path
- id="path27805"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path27807"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27809"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient28133);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path27811"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path27813" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path27815"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path27817" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path27819"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path27821" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path27823" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27825"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient28135);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path27827" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path27829" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path27831"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path27833" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path27835" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path27837" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g27839">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27841"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27843"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27845"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27847"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27849"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27851"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27853"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27855"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27857"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27859"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27861"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27863"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27865"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27867"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27869"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27871"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27873"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27875"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27877"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27879"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27881"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27883"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27885"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27887"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27889"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g27891"
- transform="matrix(0.65694308,0,0,0.65694308,-1097.4717,451.97365)">
- <g
- id="g27893"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g27895"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path27897"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27899"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27901"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g27903">
- <path
- id="path27905"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path27907"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27909"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient28137);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path27911"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path27913" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path27915"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path27917" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path27919"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path27921" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path27923" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path27925"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient28139);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path27927" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path27929" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path27931"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path27933" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path27935" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path27937" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g27939">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27941"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27943"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27945"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27947"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27949"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27951"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27953"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27955"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27957"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27959"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27961"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27963"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27965"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27967"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27969"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27971"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27973"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27975"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27977"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27979"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27981"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27983"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27985"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect27987"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect27989"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g27991"
- transform="matrix(0.65694308,0,0,0.65694308,-1051.4962,475.30499)">
- <g
- id="g27993"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g27995"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path27997"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path27999"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path28001"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g28003">
- <path
- id="path28005"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path28007"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path28009"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient28141);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path28011"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path28013" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path28015"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path28017" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path28019"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path28021" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path28023" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path28025"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient28143);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path28027" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path28029" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path28031"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path28033" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path28035" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path28037" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g28039">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28041"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28043"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28045"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28047"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28049"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28051"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28053"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28055"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28057"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28059"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28061"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28063"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28065"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28067"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28069"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28071"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28073"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28075"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28077"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28079"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28081"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28083"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28085"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect28087"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28089"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- transform="matrix(0.65694308,0,0,0.65694308,594.78291,-79.667593)"
- id="g28093">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,488.78696,875.42775)"
- inkscape:label="Calque 1"
- id="g28095">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path28097" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path28099" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path28101" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g28103">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path28105" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path28107" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path28109"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient28145);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path28111"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- id="g28113"
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-338.72869,1082.8342)">
- <path
- id="path28115"
- d="m 1081.1367,402.39569 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(456.4439,-26.889185)"
- id="g28117">
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 660.00267,458.32498 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path28119" />
- <path
- id="path28121"
- d="m 668.28911,465.32717 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- id="path28123"
- d="m 660.00267,472.20199 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 668.28911,479.13574 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path28125" />
- </g>
- </g>
- </g>
- </g>
-</svg>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448819"
- height="1052.3622047"
- id="svg2"
- inkscape:label="PozadÃ"
- version="1.1"
- inkscape:version="0.47 r22583"
- sodipodi:docname="CINDER_clouds_C1_C2.svg"
- inkscape:export-filename="/var/www/alekiba/cinder/CINDER_clouds_C1_C2.svg.png"
- inkscape:export-xdpi="120"
- inkscape:export-ydpi="120">
- <defs
- id="defs7744">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7750" />
- <inkscape:perspective
- id="perspective6086"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient104830"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-53">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-2" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-4" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient104832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6095">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6097" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6099" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient104834"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-51">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-42" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-82" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient104836"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6106">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6108" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6110" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient104838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-7">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-64" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-23" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient104840"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6117">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6119" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6121" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient104842"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-87">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-5" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-40" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient104844"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6128">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6130" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6132" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-59"
- id="linearGradient104846"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-59">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-33" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-0" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6042-6"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6024-8"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-5"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-6" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6040-9"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6143"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6038-2"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6150"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6036-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6157"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6034-1"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6164"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6032-6"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6171"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6030-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6178"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-8"
- id="pattern6028-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-5"
- id="pattern6185"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-32"
- id="linearGradient104848"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-32">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-47" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-85" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6042-3"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6024-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-9"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-63" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6040-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6200"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6038-8"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6207"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6036-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6214"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6034-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6221"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6032-9"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6228"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6030-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6235"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-0"
- id="pattern6028-1"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-9"
- id="pattern6242"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-90"
- id="linearGradient104850"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-90">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-56" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6042-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6024-6"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-4"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-5" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6040-7"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6257"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6038-27"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6264"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6036-2"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6271"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6034-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6278"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6032-3"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6285"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6030-42"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6292"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-6"
- id="pattern6028-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-4"
- id="pattern6299"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-52"
- id="linearGradient104852"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-52">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-54" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-55" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6042-7"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6024-2"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-92"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-9" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6040-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6314"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6038-6"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6321"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6036-8"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6328"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6034-0"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6335"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6032-4"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6342"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6030-5"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6349"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-2"
- id="pattern6028-7"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-92"
- id="pattern6356"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-19"
- id="linearGradient104854"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,575.71683,124.9737)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-19">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-7" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-06" />
- </linearGradient>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6042-2"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6024-67"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="30.066020"
- height="5.1805778"
- id="Wavy-6"
- inkscape:stockid="Wavy">
- <path
- style="fill:black;stroke:none;"
- d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
- id="path6343-7" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6040-43"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6371"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6038-7"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6378"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6036-83"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6385"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6034-16"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6392"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6032-92"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6399"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6030-6"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6406"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern6024-67"
- id="pattern6028-2"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,719.32799,775.7824)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#Wavy-6"
- id="pattern6413"
- patternTransform="matrix(0.562565,0.3226862,-0.3226862,0.562565,37.897429,823.71177)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient104856"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient2202-19">
- <stop
- id="stop2204-02"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-3"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient104858"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient6424">
- <stop
- id="stop6426"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6428"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104860"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient4068-4">
- <stop
- id="stop4070-2"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop4490-5"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop4492-2"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop4072-4"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104862"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6437">
- <stop
- id="stop6439"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6441"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6443"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6445"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104864"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6448">
- <stop
- id="stop6450"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6452"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6454"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6456"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104866"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6459">
- <stop
- id="stop6461"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6463"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6465"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6467"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104868"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6470">
- <stop
- id="stop6472"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6474"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6476"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6478"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6481">
- <stop
- id="stop6483"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6485"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6487"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6489"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104872"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6492">
- <stop
- id="stop6494"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6496"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6498"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6500"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104874"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6503">
- <stop
- id="stop6505"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6507"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6509"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6511"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104876"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6514">
- <stop
- id="stop6516"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6518"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6520"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6522"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104878"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6525">
- <stop
- id="stop6527"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6529"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6531"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6533"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104880"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6536">
- <stop
- id="stop6538"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6540"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6542"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6544"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104882"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6547">
- <stop
- id="stop6549"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6551"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6553"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6555"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104884"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6558">
- <stop
- id="stop6560"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6562"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6564"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6566"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104886"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6569">
- <stop
- id="stop6571"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6573"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6575"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6577"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104888"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6580">
- <stop
- id="stop6582"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6584"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6586"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6588"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104890"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6591">
- <stop
- id="stop6593"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6595"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6597"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6599"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104892"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6602">
- <stop
- id="stop6604"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6606"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6608"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6610"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104894"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6613">
- <stop
- id="stop6615"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6617"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6619"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6621"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104896"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6624">
- <stop
- id="stop6626"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6628"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6630"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6632"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104898"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6635">
- <stop
- id="stop6637"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6639"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6641"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6643"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104900"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6646">
- <stop
- id="stop6648"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6650"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6652"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6654"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104902"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6657">
- <stop
- id="stop6659"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6661"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6663"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6665"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104904"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6668">
- <stop
- id="stop6670"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6672"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6674"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6676"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104906"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6679">
- <stop
- id="stop6681"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6683"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6685"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6687"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient104908"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- id="linearGradient6690">
- <stop
- id="stop6692"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop6694"
- offset="0.67741936"
- style="stop-color:#000000;stop-opacity:0.49803922;" />
- <stop
- id="stop6696"
- offset="0.86472428"
- style="stop-color:#000000;stop-opacity:0.24705882;" />
- <stop
- id="stop6698"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient104910"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <linearGradient
- id="linearGradient5178-3">
- <stop
- id="stop5180-4"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop5186-9"
- offset="0.89021850"
- style="stop-color:#ffffff;stop-opacity:0.49803922;" />
- <stop
- id="stop5188-2"
- offset="0.95396262"
- style="stop-color:#ffffff;stop-opacity:0.24705882;" />
- <stop
- id="stop5182-7"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="linearGradient104912"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-54">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-57" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-52" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-54"
- id="radialGradient104914"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6711">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6713" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6715" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient414-2"
- id="linearGradient104916"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5806141,-0.290307,0,0.8294487,1235.5061,-245.10175)"
- x1="-137.36061"
- y1="472.52106"
- x2="-124.93314"
- y2="487.91693" />
- <linearGradient
- id="linearGradient414-2">
- <stop
- id="stop415-6"
- offset="0.00000000"
- style="stop-color:#ffd800;stop-opacity:1.0000000;" />
- <stop
- id="stop416-0"
- offset="1.0000000"
- style="stop-color:#e77900;stop-opacity:1.0000000;" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient104918"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient2202-19-1">
- <stop
- id="stop2204-02-4"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-3-1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient104920"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-31">
- <stop
- id="stop2204-2"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-99"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient104922"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6730">
- <stop
- id="stop6732"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6734"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <pattern
- patternTransform="matrix(0,5.5342899,-7.4864232,0,521.74506,337.35904)"
- id="pattern118687-0"
- xlink:href="#Strips1_1-6"
- inkscape:collect="always" />
- <pattern
- inkscape:collect="always"
- patternUnits="userSpaceOnUse"
- width="2"
- height="1"
- patternTransform="matrix(0,5.5342899,-7.4864229,0,31.668795,357.00572)"
- id="Strips1_1-6"
- inkscape:stockid="Stripes 1:1">
- <rect
- style="fill:black;stroke:none"
- x="0"
- y="-0.5"
- width="1"
- height="2"
- id="rect5260-9" />
- </pattern>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="linearGradient104924"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-95">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-72" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-406" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="radialGradient104926"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6744">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6746" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6748" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient104928"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient2202-2-1-25">
- <stop
- id="stop2204-6-0-41"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop2206-6-0-8"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient104930"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-5-4-2">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-8-4-5" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-5-2-1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient104932"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6759">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6761" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6763" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient104934"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-8-3-0">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-1-4-2" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-2-7-6" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient104936"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6770">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6772" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6774" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient104938"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-9-8-0">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-4-0-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-8-1-3" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient104940"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6781">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6783" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6785" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient104942"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient2202-1-93-3-2">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop2204-5-6-1-0" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop2206-5-21-0-1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient104944"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6792">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6794" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6796" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient104946"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient6799">
- <stop
- id="stop6801"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6803"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient6805"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient6807">
- <stop
- id="stop6809"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6811"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient6813"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6815">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6817" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6819" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient6821"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6823">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6825" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6827" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient6829"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6831">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6833" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6835" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient6837"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6839">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6841" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6843" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient6845"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6847">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6849" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6851" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient6853"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6855">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6857" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6859" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient6861"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6863">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6865" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6867" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient6869"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6871">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6873" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6875" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient6877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient6879">
- <stop
- id="stop6881"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6883"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient6885"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient6887">
- <stop
- id="stop6889"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6891"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient6893"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6895">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6897" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6899" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient6901"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6903">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6905" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6907" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient6909"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6911">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6913" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6915" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient6917"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6919">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6921" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6923" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient6925"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6927">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6929" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6931" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient6933"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6935">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6937" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6939" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient6941"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6943">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6945" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6947" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient6949"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6951">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6953" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6955" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient6957"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient6959">
- <stop
- id="stop6961"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6963"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient6965"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient6967">
- <stop
- id="stop6969"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop6971"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient6973"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6975">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6977" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6979" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient6981"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6983">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6985" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6987" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient6989"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient6991">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop6993" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop6995" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient6997"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient6999">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop7001" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop7003" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient7005"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient7007">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop7009" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop7011" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient7013"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient7015">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop7017" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop7019" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient7021"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <linearGradient
- id="linearGradient7023">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop7025" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop7027" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient7029"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- id="linearGradient7031">
- <stop
- offset="0"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- id="stop7033" />
- <stop
- offset="1"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- id="stop7035" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient7037"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- id="linearGradient7039">
- <stop
- id="stop7041"
- style="stop-color: rgb(121, 121, 121); stop-opacity: 1;"
- offset="0" />
- <stop
- id="stop7043"
- style="stop-color: rgb(203, 203, 203); stop-opacity: 1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="linearGradient14934"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-53"
- id="radialGradient14936"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="linearGradient14938"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-51"
- id="radialGradient14940"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="linearGradient14942"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-7"
- id="radialGradient14944"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="linearGradient14946"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-87"
- id="radialGradient14948"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient14960"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19"
- id="radialGradient14962"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14964"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14966"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14968"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14970"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14972"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14974"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14976"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14978"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14980"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14982"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14984"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14986"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14988"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14990"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14992"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14994"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14996"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient14998"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient15000"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient15002"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient15004"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient15006"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient15008"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient15010"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4068-4"
- id="linearGradient15012"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.003627,0.996386)"
- spreadMethod="reflect"
- x1="145.52031"
- y1="993.39124"
- x2="191.89183"
- y2="1061.9722" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5178-3"
- id="radialGradient15014"
- gradientUnits="userSpaceOnUse"
- cx="384.69696"
- cy="571.95715"
- fx="384.69696"
- fy="571.95715"
- r="24.998358" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-19-1"
- id="radialGradient15022"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="linearGradient15024"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,2.7721412,177.55089,360.10086)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-31"
- id="radialGradient15026"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.7721412,0,0,4.3122209,343.74329,-552.89392)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="linearGradient15028"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-95"
- id="radialGradient15030"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient15032"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient15034"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient15036"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient15038"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient15040"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient15042"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient15044"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient15046"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient15048"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient15050"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient16536"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="linearGradient16538"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-5-4-2"
- id="radialGradient16540"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="linearGradient16542"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-8-3-0"
- id="radialGradient16544"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="linearGradient16546"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-9-8-0"
- id="radialGradient16548"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="linearGradient16550"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-153,-176.36218)"
- x1="175"
- y1="207.36218"
- x2="195"
- y2="207.36218" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-1-93-3-2"
- id="radialGradient16552"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,1.555556,-93.049086,-505.7086)"
- cx="109"
- cy="349.86218"
- fx="109"
- fy="349.86218"
- r="4.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2202-2-1-25"
- id="radialGradient16554"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(3.4620994,1.6838767,-1.3244276,2.7230693,24.214335,-863.95328)"
- cx="97.48214"
- cy="265.86209"
- fx="97.48214"
- fy="265.86209"
- r="3" />
- <inkscape:perspective
- id="perspective16564"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <filter
- inkscape:collect="always"
- id="filter5401">
- <feGaussianBlur
- inkscape:collect="always"
- stdDeviation="26.597254"
- id="feGaussianBlur5403" />
- </filter>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.7"
- inkscape:cx="200.23028"
- inkscape:cy="680.6443"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="false"
- borderlayer="true"
- inkscape:window-width="1325"
- inkscape:window-height="958"
- inkscape:window-x="289"
- inkscape:window-y="44"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata7747">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- <cc:license
- rdf:resource="" />
- <dc:creator>
- <cc:Agent>
- <dc:title>David Pravec <alekibango@danix.org></dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:rights>
- <cc:Agent>
- <dc:title>released under terms of Apache License</dc:title>
- </cc:Agent>
- </dc:rights>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Layer">
- <rect
- style="opacity:1;fill:#fffbff;fill-opacity:1;stroke:#808080;stroke-width:1.92965995999999995;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter5401)"
- id="rect4606"
- width="720.59534"
- height="1052.5549"
- x="7.3978581"
- y="4.8459768" />
- </g>
- <g
- inkscape:label="Vrstva 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="display:inline">
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="145.14323"
- y="24.228884"
- id="text40315"><tspan
- sodipodi:role="line"
- id="tspan40317"
- x="145.14323"
- y="24.228884"
- style="font-weight:bold">C) More computers, but still only 1 cluster,</tspan><tspan
- sodipodi:role="line"
- x="145.14323"
- y="36.728882"
- id="tspan40319"
- style="font-weight:bold">not distributed geographically</tspan></text>
- <g
- transform="matrix(0.96760451,0,0,0.96760451,-73.224015,-53.928306)"
- id="g27482">
- <path
- id="path27117-4"
- d="m 738.35469,914.58244 60.1019,-30.62352"
- style="fill:none;stroke:#808080;stroke-width:2.16065431;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 532.25111,996.69188 478.6698,1023.993"
- id="path32493" />
- <path
- id="path32495"
- d="m 405.72169,932.61984 -53.58133,27.30109"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 279.19222,868.5478 -53.58134,27.30108"
- id="path32497" />
- <path
- id="path32499"
- d="M 152.66277,804.47575 99.081434,831.77684"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- id="path32501"
- d="M 477.68954,1024.0781 98.420334,831.26468"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 487.64197,1117.5452 218.34365,981.27825"
- id="path36366" />
- <path
- id="path31410"
- d="M 618.80039,800.81053 388.38639,683.59107"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(-1.9553878,0.27934112)"
- id="g92765">
- <path
- id="path31406"
- d="m 443.70447,656.64984 -53.58134,27.30109"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 466.14451,668.13188 -53.58134,27.30109"
- id="path31408" />
- <path
- id="path31634"
- d="M 488.58463,679.61391 435.00328,706.915"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 511.02467,691.09594 -53.58134,27.30109"
- id="path31636" />
- </g>
- <g
- transform="matrix(0.38524834,0,0,0.38524834,1.9170441,-0.21929845)"
- id="g31422">
- <g
- id="g3346-3"
- transform="translate(45.388822,1591.2158)">
- <g
- id="g117421-5"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g117423-9"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path117425-2"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117427-6"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117429-7"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g117431-5">
- <path
- id="path117433-6"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117435-3"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117437-1"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient104830);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path117439-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path117441-9" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path117443-5"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path117445-2" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path117447-8"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path117449-9" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path117451-2" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117453-8"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient104832);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path117455-2" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path117457-0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path117459-5"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path117461-4" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path117463-1" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path117465-0" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g109152-0"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path109154-2" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path109156-5"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- <g
- id="g3346-1"
- transform="translate(105.4361,1621.5028)">
- <g
- id="g117421-9"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g117423-8"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path117425-5"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117427-7"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117429-3"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g117431-54">
- <path
- id="path117433-9"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117435-8"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117437-4"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient104834);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path117439-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path117441-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path117443-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path117445-4" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path117447-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path117449-4" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path117451-8" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117453-9"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient104836);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path117455-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path117457-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path117459-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path117461-9" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path117463-7" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path117465-3" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g109152-2"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path109154-5" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path109156-53"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- <g
- id="g3346-0"
- transform="translate(167.06359,1653.3699)">
- <g
- id="g117421-6"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g117423-6"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path117425-3"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117427-8"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117429-1"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g117431-3">
- <path
- id="path117433-4"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117435-1"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117437-48"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient104838);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path117439-6"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path117441-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path117443-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path117445-5" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path117447-1"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path117449-93" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path117451-83" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117453-94"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient104840);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path117455-25" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path117457-9" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path117459-4"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path117461-1" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path117463-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path117465-4" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g109152-1"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path109154-7" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path109156-7"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- <g
- id="g3346-03"
- transform="translate(228.69107,1685.2371)">
- <g
- id="g117421-1"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g117423-1"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path117425-6"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117427-2"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117429-6"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g117431-6">
- <path
- id="path117433-68"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117435-37"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117437-5"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient104842);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path117439-4"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path117441-6" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path117443-1"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path117445-7" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path117447-3"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path117449-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path117451-9" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117453-99"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient104844);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path117455-9" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path117457-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path117459-6"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path117461-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path117463-88" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path117465-6" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g109152-6"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path109154-8" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path109156-8"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- </g>
- <g
- id="g92776">
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 578.38131,725.14266 -53.58134,27.30108"
- id="path31688" />
- <path
- id="path31690"
- d="m 601.64743,737.31493 -53.58134,27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 624.91356,749.4872 -53.58134,27.30108"
- id="path31692" />
- <path
- id="path31694"
- d="m 648.17965,761.65948 -53.58134,27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 671.26968,773.91981 618.04053,801.0448"
- id="path31696"
- sodipodi:nodetypes="cc" />
- </g>
- <g
- transform="matrix(0.38524834,0,0,0.38524834,155.17354,602.47061)"
- id="g3925-3">
- <g
- id="g108584-1"
- transform="translate(59.882331,-420.31793)">
- <g
- id="g92198-5">
- <path
- id="path5361-5"
- d="m 1005.3987,644.36812 55.4428,-27.72141 55.4429,27.72141 -55.4429,27.72142 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path5363-3"
- d="m 1005.3987,644.36812 0,83.16424 55.4428,27.72141 0,-83.16423 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path5365-3"
- d="m 1060.8415,755.25377 55.4429,-27.72141 0,-83.16424 -55.4429,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient104846);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 1060.8415,615.08738 -0.6064,0.34652 -55.4428,27.72141 -0.7797,0.34652 0,0.86629 0,83.16424 0,0.86629 0.7797,0.34652 55.4428,27.72141 0.6064,0.34652 0.6064,-0.34652 55.4429,-27.72141 0.7796,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.7796,-0.34652 -55.4429,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.0568,27.02838 0,81.43165 -54.0568,27.02837 -54.0567,-27.02837 0,-81.43165 54.0567,-27.02838 z"
- id="path5391-6" />
- <path
- style="fill:url(#pattern6042-6);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1010.0335,651.21095 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4979-5"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6040-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1022.9003,658.59748 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4981-4"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6038-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1035.7672,665.26918 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4983-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4985-3"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4977-8"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6036-5);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4987-5"
- d="m 1010.0335,689.81151 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6034-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4989-8"
- d="m 1022.9003,697.19804 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6032-6);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4991-6"
- d="m 1035.7672,703.86974 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6030-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:url(#pattern6028-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1048.3958,710.30317 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4993-0"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.4481573,-0.2240787,0,0.6402247,1001.8024,-178.48439)"
- id="g108970-7">
- <path
- d="m 314.09476,861.04125 c -1.56438,0.834 -3.6901,0.50384 -4.68956,-1.58568 -0.84011,-1.93879 -15.12073,-31.80949 -15.51636,-32.75301 -1.17184,-2.57186 -0.21709,-4.29384 1.44804,-5.1975 2.29126,-1.26473 21.81453,-11.77888 23.51292,-12.64626 1.86955,-1.02115 3.89506,-0.88867 5.13133,1.65883 0.9779,2.05018 14.86956,31.16397 15.69988,32.85344 0.87451,1.81637 0.0508,3.97006 -1.72579,4.83701 -1.32383,0.66683 -22.9908,12.34832 -23.86046,12.83317 z"
- id="path108972-9"
- style="font-size:12px;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.74380612" />
- <path
- d="m 314.23273,847.2469 c -1.75078,-0.007 -3.50603,-1.32081 -3.50687,-3.66398 0.0771,-2.13226 0.0716,-35.62533 0.12093,-36.65668 0.051,-2.85603 1.63653,-3.93391 3.50687,-3.94111 2.5827,-0.0289 24.47747,-0.0411 26.36202,0 2.10274,-0.0139 3.85286,1.07587 3.8697,3.94111 -0.002,2.29773 -0.0205,34.9291 -2e-5,36.8343 0.006,2.03958 -1.64681,3.56538 -3.60097,3.48636 -1.46498,-0.0403 -25.76932,-0.0153 -26.75166,0 z"
- id="path108974-5"
- style="font-size:12px;fill:#ffffeb;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- <path
- d="m 322.93888,855.54573 c -1.47013,-1.00866 -2.27836,-3.12041 -1.08622,-5.09293 1.15034,-1.7504 18.19628,-29.94194 18.7628,-30.78168 1.49688,-2.37446 3.37999,-2.37319 4.95778,-1.30763 2.18836,1.45544 20.62163,13.98988 22.18679,15.10424 1.77679,1.19305 2.69491,3.113 1.25047,5.53408 -1.17108,1.93287 -17.79882,29.38525 -18.75145,31.00043 -1.03344,1.71987 -3.20105,2.05714 -4.80547,0.87102 -1.21244,-0.8733 -21.68017,-14.77752 -22.5147,-15.32753 z"
- id="path108976-7"
- style="font-size:12px;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- </g>
- </g>
- <g
- transform="matrix(0.38524834,0,0,0.38524834,179.01425,614.60464)"
- id="g3925-5">
- <g
- id="g108584-0"
- transform="translate(59.882331,-420.31793)">
- <g
- id="g92198-1">
- <path
- id="path5361-58"
- d="m 1005.3987,644.36812 55.4428,-27.72141 55.4429,27.72141 -55.4429,27.72142 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path5363-6"
- d="m 1005.3987,644.36812 0,83.16424 55.4428,27.72141 0,-83.16423 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path5365-0"
- d="m 1060.8415,755.25377 55.4429,-27.72141 0,-83.16424 -55.4429,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient104848);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 1060.8415,615.08738 -0.6064,0.34652 -55.4428,27.72141 -0.7797,0.34652 0,0.86629 0,83.16424 0,0.86629 0.7797,0.34652 55.4428,27.72141 0.6064,0.34652 0.6064,-0.34652 55.4429,-27.72141 0.7796,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.7796,-0.34652 -55.4429,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.0568,27.02838 0,81.43165 -54.0568,27.02837 -54.0567,-27.02837 0,-81.43165 54.0567,-27.02838 z"
- id="path5391-1" />
- <path
- style="fill:url(#pattern6042-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1010.0335,651.21095 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4979-0"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6040-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1022.9003,658.59748 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4981-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6038-8);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1035.7672,665.26918 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4983-1"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4985-7"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4977-0"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6036-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4987-3"
- d="m 1010.0335,689.81151 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6034-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4989-9"
- d="m 1022.9003,697.19804 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6032-9);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4991-8"
- d="m 1035.7672,703.86974 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6030-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:url(#pattern6028-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1048.3958,710.30317 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4993-6"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.4481573,-0.2240787,0,0.6402247,1001.8024,-178.48439)"
- id="g108970-5">
- <path
- d="m 314.09476,861.04125 c -1.56438,0.834 -3.6901,0.50384 -4.68956,-1.58568 -0.84011,-1.93879 -15.12073,-31.80949 -15.51636,-32.75301 -1.17184,-2.57186 -0.21709,-4.29384 1.44804,-5.1975 2.29126,-1.26473 21.81453,-11.77888 23.51292,-12.64626 1.86955,-1.02115 3.89506,-0.88867 5.13133,1.65883 0.9779,2.05018 14.86956,31.16397 15.69988,32.85344 0.87451,1.81637 0.0508,3.97006 -1.72579,4.83701 -1.32383,0.66683 -22.9908,12.34832 -23.86046,12.83317 z"
- id="path108972-1"
- style="font-size:12px;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.74380612" />
- <path
- d="m 314.23273,847.2469 c -1.75078,-0.007 -3.50603,-1.32081 -3.50687,-3.66398 0.0771,-2.13226 0.0716,-35.62533 0.12093,-36.65668 0.051,-2.85603 1.63653,-3.93391 3.50687,-3.94111 2.5827,-0.0289 24.47747,-0.0411 26.36202,0 2.10274,-0.0139 3.85286,1.07587 3.8697,3.94111 -0.002,2.29773 -0.0205,34.9291 -2e-5,36.8343 0.006,2.03958 -1.64681,3.56538 -3.60097,3.48636 -1.46498,-0.0403 -25.76932,-0.0153 -26.75166,0 z"
- id="path108974-4"
- style="font-size:12px;fill:#ffffeb;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- <path
- d="m 322.93888,855.54573 c -1.47013,-1.00866 -2.27836,-3.12041 -1.08622,-5.09293 1.15034,-1.7504 18.19628,-29.94194 18.7628,-30.78168 1.49688,-2.37446 3.37999,-2.37319 4.95778,-1.30763 2.18836,1.45544 20.62163,13.98988 22.18679,15.10424 1.77679,1.19305 2.69491,3.113 1.25047,5.53408 -1.17108,1.93287 -17.79882,29.38525 -18.75145,31.00043 -1.03344,1.71987 -3.20105,2.05714 -4.80547,0.87102 -1.21244,-0.8733 -21.68017,-14.77752 -22.5147,-15.32753 z"
- id="path108976-5"
- style="font-size:12px;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- </g>
- </g>
- <g
- transform="matrix(0.38524834,0,0,0.38524834,202.85484,626.73869)"
- id="g3925-1">
- <g
- id="g108584-7"
- transform="translate(59.882331,-420.31793)">
- <g
- id="g92198-4">
- <path
- id="path5361-2"
- d="m 1005.3987,644.36812 55.4428,-27.72141 55.4429,27.72141 -55.4429,27.72142 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path5363-7"
- d="m 1005.3987,644.36812 0,83.16424 55.4428,27.72141 0,-83.16423 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path5365-5"
- d="m 1060.8415,755.25377 55.4429,-27.72141 0,-83.16424 -55.4429,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient104850);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 1060.8415,615.08738 -0.6064,0.34652 -55.4428,27.72141 -0.7797,0.34652 0,0.86629 0,83.16424 0,0.86629 0.7797,0.34652 55.4428,27.72141 0.6064,0.34652 0.6064,-0.34652 55.4429,-27.72141 0.7796,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.7796,-0.34652 -55.4429,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.0568,27.02838 0,81.43165 -54.0568,27.02837 -54.0567,-27.02837 0,-81.43165 54.0567,-27.02838 z"
- id="path5391-5" />
- <path
- style="fill:url(#pattern6042-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1010.0335,651.21095 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4979-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6040-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1022.9003,658.59748 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4981-1"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6038-27);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1035.7672,665.26918 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4983-3"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4985-77"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4977-85"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6036-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4987-6"
- d="m 1010.0335,689.81151 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6034-5);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4989-5"
- d="m 1022.9003,697.19804 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6032-3);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4991-7"
- d="m 1035.7672,703.86974 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6030-42);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:url(#pattern6028-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1048.3958,710.30317 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4993-4"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.4481573,-0.2240787,0,0.6402247,1001.8024,-178.48439)"
- id="g108970-1">
- <path
- d="m 314.09476,861.04125 c -1.56438,0.834 -3.6901,0.50384 -4.68956,-1.58568 -0.84011,-1.93879 -15.12073,-31.80949 -15.51636,-32.75301 -1.17184,-2.57186 -0.21709,-4.29384 1.44804,-5.1975 2.29126,-1.26473 21.81453,-11.77888 23.51292,-12.64626 1.86955,-1.02115 3.89506,-0.88867 5.13133,1.65883 0.9779,2.05018 14.86956,31.16397 15.69988,32.85344 0.87451,1.81637 0.0508,3.97006 -1.72579,4.83701 -1.32383,0.66683 -22.9908,12.34832 -23.86046,12.83317 z"
- id="path108972-2"
- style="font-size:12px;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.74380612" />
- <path
- d="m 314.23273,847.2469 c -1.75078,-0.007 -3.50603,-1.32081 -3.50687,-3.66398 0.0771,-2.13226 0.0716,-35.62533 0.12093,-36.65668 0.051,-2.85603 1.63653,-3.93391 3.50687,-3.94111 2.5827,-0.0289 24.47747,-0.0411 26.36202,0 2.10274,-0.0139 3.85286,1.07587 3.8697,3.94111 -0.002,2.29773 -0.0205,34.9291 -2e-5,36.8343 0.006,2.03958 -1.64681,3.56538 -3.60097,3.48636 -1.46498,-0.0403 -25.76932,-0.0153 -26.75166,0 z"
- id="path108974-46"
- style="font-size:12px;fill:#ffffeb;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- <path
- d="m 322.93888,855.54573 c -1.47013,-1.00866 -2.27836,-3.12041 -1.08622,-5.09293 1.15034,-1.7504 18.19628,-29.94194 18.7628,-30.78168 1.49688,-2.37446 3.37999,-2.37319 4.95778,-1.30763 2.18836,1.45544 20.62163,13.98988 22.18679,15.10424 1.77679,1.19305 2.69491,3.113 1.25047,5.53408 -1.17108,1.93287 -17.79882,29.38525 -18.75145,31.00043 -1.03344,1.71987 -3.20105,2.05714 -4.80547,0.87102 -1.21244,-0.8733 -21.68017,-14.77752 -22.5147,-15.32753 z"
- id="path108976-1"
- style="font-size:12px;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- </g>
- </g>
- <g
- transform="matrix(0.38524834,0,0,0.38524834,227.30424,638.87277)"
- id="g3925-4">
- <g
- id="g108584-5"
- transform="translate(58.302139,-420.31793)">
- <g
- id="g92198-0">
- <path
- id="path5361-29"
- d="m 1005.3987,644.36812 55.4428,-27.72141 55.4429,27.72141 -55.4429,27.72142 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path5363-5"
- d="m 1005.3987,644.36812 0,83.16424 55.4428,27.72141 0,-83.16423 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path5365-7"
- d="m 1060.8415,755.25377 55.4429,-27.72141 0,-83.16424 -55.4429,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient104852);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 1060.8415,615.08738 -0.6064,0.34652 -55.4428,27.72141 -0.7797,0.34652 0,0.86629 0,83.16424 0,0.86629 0.7797,0.34652 55.4428,27.72141 0.6064,0.34652 0.6064,-0.34652 55.4429,-27.72141 0.7796,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.7796,-0.34652 -55.4429,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.0568,27.02838 0,81.43165 -54.0568,27.02837 -54.0567,-27.02837 0,-81.43165 54.0567,-27.02838 z"
- id="path5391-4" />
- <path
- style="fill:url(#pattern6042-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1010.0335,651.21095 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4979-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6040-5);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1022.9003,658.59748 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4981-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6038-6);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1035.7672,665.26918 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4983-19"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4985-6"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4977-1"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6036-8);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4987-1"
- d="m 1010.0335,689.81151 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6034-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4989-7"
- d="m 1022.9003,697.19804 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6032-4);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4991-80"
- d="m 1035.7672,703.86974 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6030-5);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:url(#pattern6028-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1048.3958,710.30317 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4993-66"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.4481573,-0.2240787,0,0.6402247,1001.8024,-178.48439)"
- id="g108970-3">
- <path
- d="m 314.09476,861.04125 c -1.56438,0.834 -3.6901,0.50384 -4.68956,-1.58568 -0.84011,-1.93879 -15.12073,-31.80949 -15.51636,-32.75301 -1.17184,-2.57186 -0.21709,-4.29384 1.44804,-5.1975 2.29126,-1.26473 21.81453,-11.77888 23.51292,-12.64626 1.86955,-1.02115 3.89506,-0.88867 5.13133,1.65883 0.9779,2.05018 14.86956,31.16397 15.69988,32.85344 0.87451,1.81637 0.0508,3.97006 -1.72579,4.83701 -1.32383,0.66683 -22.9908,12.34832 -23.86046,12.83317 z"
- id="path108972-7"
- style="font-size:12px;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.74380612" />
- <path
- d="m 314.23273,847.2469 c -1.75078,-0.007 -3.50603,-1.32081 -3.50687,-3.66398 0.0771,-2.13226 0.0716,-35.62533 0.12093,-36.65668 0.051,-2.85603 1.63653,-3.93391 3.50687,-3.94111 2.5827,-0.0289 24.47747,-0.0411 26.36202,0 2.10274,-0.0139 3.85286,1.07587 3.8697,3.94111 -0.002,2.29773 -0.0205,34.9291 -2e-5,36.8343 0.006,2.03958 -1.64681,3.56538 -3.60097,3.48636 -1.46498,-0.0403 -25.76932,-0.0153 -26.75166,0 z"
- id="path108974-1"
- style="font-size:12px;fill:#ffffeb;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- <path
- d="m 322.93888,855.54573 c -1.47013,-1.00866 -2.27836,-3.12041 -1.08622,-5.09293 1.15034,-1.7504 18.19628,-29.94194 18.7628,-30.78168 1.49688,-2.37446 3.37999,-2.37319 4.95778,-1.30763 2.18836,1.45544 20.62163,13.98988 22.18679,15.10424 1.77679,1.19305 2.69491,3.113 1.25047,5.53408 -1.17108,1.93287 -17.79882,29.38525 -18.75145,31.00043 -1.03344,1.71987 -3.20105,2.05714 -4.80547,0.87102 -1.21244,-0.8733 -21.68017,-14.77752 -22.5147,-15.32753 z"
- id="path108976-3"
- style="font-size:12px;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- </g>
- </g>
- <g
- transform="matrix(0.38524834,0,0,0.38524834,250.53613,651.0068)"
- id="g3925-54">
- <g
- id="g108584-02"
- transform="translate(59.882331,-420.31793)">
- <g
- id="g92198-47">
- <path
- id="path5361-4"
- d="m 1005.3987,644.36812 55.4428,-27.72141 55.4429,27.72141 -55.4429,27.72142 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path5363-2"
- d="m 1005.3987,644.36812 0,83.16424 55.4428,27.72141 0,-83.16423 -55.4428,-27.72142 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path5365-6"
- d="m 1060.8415,755.25377 55.4429,-27.72141 0,-83.16424 -55.4429,27.72142 0,83.16423 z"
- style="fill:url(#linearGradient104854);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 1060.8415,615.08738 -0.6064,0.34652 -55.4428,27.72141 -0.7797,0.34652 0,0.86629 0,83.16424 0,0.86629 0.7797,0.34652 55.4428,27.72141 0.6064,0.34652 0.6064,-0.34652 55.4429,-27.72141 0.7796,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.7796,-0.34652 -55.4429,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.0568,27.02838 0,81.43165 -54.0568,27.02837 -54.0567,-27.02837 0,-81.43165 54.0567,-27.02838 z"
- id="path5391-3" />
- <path
- style="fill:url(#pattern6042-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1010.0335,651.21095 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4979-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6040-43);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1022.9003,658.59748 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4981-0"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#pattern6038-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1035.7672,665.26918 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4983-6"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4985-39"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4977-6"
- d="m 1048.3958,671.70261 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6036-83);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4987-8"
- d="m 1010.0335,689.81151 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6034-16);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4989-79"
- d="m 1022.9003,697.19804 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6032-92);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4991-68"
- d="m 1035.7672,703.86974 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- style="fill:url(#pattern6030-6);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:url(#pattern6028-2);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- d="m 1048.3958,710.30317 0,32.47914 8.3164,4.39648 0,-32.7174 -8.3164,-4.15822 z"
- id="path4993-04"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.4481573,-0.2240787,0,0.6402247,1001.8024,-178.48439)"
- id="g108970-2">
- <path
- d="m 314.09476,861.04125 c -1.56438,0.834 -3.6901,0.50384 -4.68956,-1.58568 -0.84011,-1.93879 -15.12073,-31.80949 -15.51636,-32.75301 -1.17184,-2.57186 -0.21709,-4.29384 1.44804,-5.1975 2.29126,-1.26473 21.81453,-11.77888 23.51292,-12.64626 1.86955,-1.02115 3.89506,-0.88867 5.13133,1.65883 0.9779,2.05018 14.86956,31.16397 15.69988,32.85344 0.87451,1.81637 0.0508,3.97006 -1.72579,4.83701 -1.32383,0.66683 -22.9908,12.34832 -23.86046,12.83317 z"
- id="path108972-0"
- style="font-size:12px;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.74380612" />
- <path
- d="m 314.23273,847.2469 c -1.75078,-0.007 -3.50603,-1.32081 -3.50687,-3.66398 0.0771,-2.13226 0.0716,-35.62533 0.12093,-36.65668 0.051,-2.85603 1.63653,-3.93391 3.50687,-3.94111 2.5827,-0.0289 24.47747,-0.0411 26.36202,0 2.10274,-0.0139 3.85286,1.07587 3.8697,3.94111 -0.002,2.29773 -0.0205,34.9291 -2e-5,36.8343 0.006,2.03958 -1.64681,3.56538 -3.60097,3.48636 -1.46498,-0.0403 -25.76932,-0.0153 -26.75166,0 z"
- id="path108974-8"
- style="font-size:12px;fill:#ffffeb;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- <path
- d="m 322.93888,855.54573 c -1.47013,-1.00866 -2.27836,-3.12041 -1.08622,-5.09293 1.15034,-1.7504 18.19628,-29.94194 18.7628,-30.78168 1.49688,-2.37446 3.37999,-2.37319 4.95778,-1.30763 2.18836,1.45544 20.62163,13.98988 22.18679,15.10424 1.77679,1.19305 2.69491,3.113 1.25047,5.53408 -1.17108,1.93287 -17.79882,29.38525 -18.75145,31.00043 -1.03344,1.71987 -3.20105,2.05714 -4.80547,0.87102 -1.21244,-0.8733 -21.68017,-14.77752 -22.5147,-15.32753 z"
- id="path108976-18"
- style="font-size:12px;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#005800;stroke-width:1.743806" />
- </g>
- </g>
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 226.42238,966.71583 53.58135,-27.3011"
- id="path32503" />
- <path
- id="path29436-1"
- d="M 325.99984,687.25962 463.42976,757.4159"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <path
- id="path29430"
- d="m 285.13466,729.79622 53.58132,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- id="path29432-6"
- d="m 449.34827,770.11285 53.58134,-27.30109"
- style="fill:none;stroke:#808080;stroke-width:1.926;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 410.54673,794.05451 53.58133,-27.30108"
- id="path29324-0" />
- <path
- id="path29432"
- d="m 535.95881,858.31276 53.58134,-27.30109"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 661.3709,922.57103 53.58134,-27.30108"
- id="path29434" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 337.70005,702.46435 819.51686,948.23104"
- id="path29436" />
- <g
- transform="matrix(0.38524834,0,0,0.38524834,476.30036,510.44216)"
- id="g3259-9">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)"
- inkscape:label="Calque 1"
- id="g118215-8">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path118217-0" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path118219-3" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path118221-1" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g118223-5">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path118225-7" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path118227-7" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path118229-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient104856);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path118231-0"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)"
- id="g2662-9">
- <path
- id="path2664-8"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- id="g2666-0"
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(705.44117,-218.9829)">
- <path
- id="path2668-3"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- id="path2670-1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path2672-4" />
- <path
- id="path2674-8"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- id="path27123"
- d="m 742.14931,988.34183 77.31228,-39.64335"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <g
- id="g32453"
- transform="matrix(0.38524834,0,0,0.38524834,303.1066,676.24416)">
- <g
- id="g32455"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)">
- <path
- id="path32457"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path32459"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path32461"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g32463"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path32465"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path32467"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path32469"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path32471"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient104858);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- id="g32473"
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- id="path32475" />
- <g
- transform="translate(705.44117,-218.9829)"
- style="fill:#00ffff;stroke:#ffffff"
- id="g32477">
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- id="path32479" />
- <path
- id="path32481"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- id="path32483"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path32485" />
- </g>
- </g>
- </g>
- <g
- id="g32288"
- transform="matrix(0.87584947,0,0,0.87584947,-199.57545,837.53626)">
- <g
- id="g32290">
- <path
- d="m 452.22752,154.79534 c -1.32987,4.3593 0.97442,13.06343 4.32672,7.29809 0.55883,-4.21566 0.16853,-13.66849 -4.32672,-7.29809 z"
- id="path32292"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 459.05645,154.87353 c -5.73123,-1.99396 -4.37255,6.82514 -3.10169,8.88804 4.41472,0.3139 8.88448,0.68282 7.08957,-5.21292 -0.15325,-2.39014 -1.62637,-3.78967 -3.98788,-3.67512 z"
- id="path32294"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 461.48045,154.95173 c -1.09246,1.9721 -0.88144,8.20841 3.07563,8.75771 7.13327,0.55239 -1.24277,-5.48505 3.0235,-5.57782 1.36821,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z"
- id="path32296"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 469.14346,154.84748 c -6.26267,0.075 -4.66384,10.71977 1.4292,8.95932 4.83425,0.31308 3.44625,-9.88021 -1.4292,-8.95932 z"
- id="path32298"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 468.85674,155.68154 c -5.85015,2.68836 -2.79296,6.6586 2.86712,4.84803 3.28424,0.8454 -0.45596,-6.36406 -2.86712,-4.84803 z"
- id="path32300"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 475.63355,154.84748 c -5.82517,-1.97942 -4.54812,6.74301 -3.23202,8.91409 4.84187,0.18324 3.39963,-5.16968 5.70816,-6.35977 0.24428,-2.37476 -0.19418,-2.73428 -2.47614,-2.55432 z"
- id="path32302"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 479.49112,154.87353 c -5.77442,-2.02369 -4.43922,6.79664 -3.15383,8.88804 4.41473,0.3139 8.88448,0.68282 7.08958,-5.21292 -0.15836,-2.36396 -1.59101,-3.77955 -3.93575,-3.67512 z"
- id="path32304"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 485.56417,154.84748 c -6.19598,0.15033 -4.65067,10.675 1.42942,8.96143 4.93021,0.35507 3.48048,-9.89643 -1.42942,-8.96143 z"
- id="path32306"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 485.30352,155.68154 c -5.85015,2.68836 -2.79297,6.6586 2.86711,4.84803 3.28424,0.8454 -0.45595,-6.36406 -2.86711,-4.84803 z"
- id="path32308"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 488.0403,154.95173 c -1.06389,1.96915 -0.92086,8.22865 3.04957,8.75771 7.16539,0.57531 -1.21095,-5.48429 3.04956,-5.57782 1.3682,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z"
- id="path32310"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32312"
- inkscape:tile-cx="150.57283"
- inkscape:tile-cy="1057.5979"
- inkscape:tile-h="104.60061"
- inkscape:tile-w="105.36077"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104860);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.179335,0,0,0.149728,502.1893,-24.02897)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32314"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104862);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.284001,0,0,0.193224,407.7236,-73.15871)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32316"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104864);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.340554,0,0,0.231701,396.3144,-88.95173)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32318"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104866);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.249954,0,0,0.170059,406.7992,-32.10751)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32320"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104868);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.260403,0,0,0.177168,412.2819,-25.25605)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32322"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104870);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.104126,-0.150834,-0.146719,0.07084417,668.335,91.43843)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32324"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104872);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.154671,-0.224051,-0.217939,0.105233,738.2325,88.88709)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32326"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104874);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.138006,-0.19991,-0.194457,0.09389457,722.8067,97.77468)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32328"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104876);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.117791,-0.170629,-0.165973,0.08014087,677.6847,122.0894)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32330"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104878);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.09614486,-0.139271,-0.135472,0.06541328,635.5166,142.1226)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32332"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104880);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.164683,-0.238552,0.232045,-0.112044,265.1906,314.0698)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32334"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104882);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.172846,-0.250377,0.243546,-0.117597,239.7257,330.3731)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32336"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104884);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.177232,-0.256733,0.249729,-0.120583,225.1178,318.3329)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32338"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104886);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.166524,-0.241221,0.23464,-0.113297,227.7161,329.1711)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32340"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104888);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.112183,-0.162505,0.158072,-0.07632533,314.1776,290.1886)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32342"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104890);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.11826,0.171307,0.166634,0.08045988,311.5686,16.07786)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32344"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104892);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.0943583,0.136684,0.132956,0.06419815,331.8395,50.2111)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32346"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104894);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.114364,0.165662,0.161143,0.07780872,322.2702,30.08746)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32348"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104896);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.140702,0.203815,0.198255,0.09572832,286.7172,18.15027)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32350"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104898);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.162185,0.234935,0.228526,0.110345,259.9411,6.05945)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32352"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104900);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.160583,0.232613,-0.226269,-0.109254,748.0707,211.5833)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32354"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104902);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.12628,0.182922,-0.177934,-0.08591606,697.8146,196.7379)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32356"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104904);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.137748,0.199537,-0.194093,-0.09371803,714.1281,221.8225)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32358"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104906);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.120979,0.175247,-0.170466,-0.08231039,662.6019,207.1803)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path32360"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient104908);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.14434,0.209086,-0.203383,-0.09820396,735.5011,232.5166)" />
- </g>
- <path
- d="m 409.69532,571.95715 c 0,13.80622 -11.19215,24.99836 -24.99836,24.99836 -13.80621,0 -24.99836,-11.19214 -24.99836,-24.99836 0,-13.80621 11.19215,-24.99835 24.99836,-24.99835 13.80621,0 24.99836,11.19214 24.99836,24.99835 z"
- id="path32362"
- sodipodi:cx="384.69696"
- sodipodi:cy="571.95715"
- sodipodi:rx="24.998358"
- sodipodi:ry="24.998358"
- sodipodi:type="arc"
- style="fill:url(#radialGradient104910);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1.155532,0,0,1.155532,26.16756,-503.197)" />
- <text
- id="text32364"
- style="font-size:10.00881386px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#9f0021;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="469.55161"
- xml:space="preserve"
- y="161.44913"><tspan
- id="tspan32366"
- sodipodi:role="line"
- x="469.55161"
- y="161.44913">Internet</tspan></text>
- </g>
- <text
- id="text32505"
- y="620.82263"
- x="542.62994"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="620.82263"
- x="542.62994"
- id="tspan32507"
- sodipodi:role="line">HA Database</tspan><tspan
- id="tspan40323"
- y="633.32263"
- x="542.62994"
- sodipodi:role="line" /></text>
- <text
- id="text32509"
- y="666.54858"
- x="708.54053"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="666.54858"
- x="708.54053"
- id="tspan32511"
- sodipodi:role="line">HA storage</tspan><tspan
- id="tspan40321"
- y="679.04858"
- x="708.54053"
- sodipodi:role="line">(SAN, SheepDog ?)</tspan></text>
- <text
- id="text35139"
- y="683.30566"
- x="176.33803"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="683.30566"
- x="177.92982"
- id="tspan35141"
- sodipodi:role="line">Diskless servers </tspan><tspan
- id="tspan40139"
- y="695.80566"
- x="176.33803"
- sodipodi:role="line">running</tspan><tspan
- id="tspan40137"
- y="708.30566"
- x="176.33803"
- sodipodi:role="line"> virtual guests</tspan></text>
- <g
- transform="matrix(0.24965474,0,0,0.24965474,35.709234,628.79112)"
- id="g3408-9">
- <g
- id="g117789-2"
- transform="translate(910.08874,75.719118)">
- <g
- id="g117791-7"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path117793-4"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117795-0"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path117797-3"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g117799-8">
- <path
- id="path117801-4"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path117803-4"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117805-7"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient104912);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path117807-5"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path117809-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path117811-8"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path117813-7" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path117815-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path117817-2" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path117819-7" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path117821-9"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient104914);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path117823-6" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path117825-6" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path117827-4"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path117829-2" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path117831-1" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path117833-4" />
- </g>
- </g>
- </g>
- <path
- id="path117855-7"
- d="m 1162.9818,171.48314 c -0.6741,0.33705 -1.3556,0.72418 -2.0094,1.15981 l -0.1629,0.81846 0,0.34911 0.3259,3.40575 -3.4213,3.02948 -0.9775,-2.84717 -0.1086,-0.25601 -0.3801,-0.31421 c -1.2465,1.38745 -2.403,2.96448 -3.4756,4.64702 l 0.1086,0.64391 0.1086,0.25601 1.5477,2.05781 -2.5252,4.87005 -1.9821,-1.21995 -0.2173,-0.0465 -0.4887,0.0892 c -0.8024,1.93355 -1.5015,3.93523 -2.0365,5.98332 l 0.353,0.36657 0.2172,0.0465 2.3352,0.22887 -0.9232,5.34909 -2.4981,0.78357 -0.2444,0.12218 -0.5159,0.49068 c -0.076,0.97201 -0.1086,1.96181 -0.1086,2.92475 0,0.96297 0.033,1.8815 0.1086,2.77735 l 0.5159,-0.0252 0.2444,-0.12218 2.4981,-1.71451 0.9232,4.46471 -2.3352,2.52521 -0.2172,0.30256 -0.3258,0.70598 c 0.5378,1.51081 1.2313,2.81882 2.0364,3.94685 l 0.4616,-0.38596 0.2173,-0.30256 1.9821,-3.20209 2.5252,2.34484 -1.5477,3.64429 -0.1086,0.36463 -0.1086,0.75251 c 1.0633,0.60459 2.2142,1.00228 3.4484,1.14625 l 0.4073,-0.70792 0.1086,-0.36462 0.9775,-3.78588 3.4213,-0.39177 -0.3259,3.69278 0,0.38789 0.1629,0.61677 c 0.6538,-0.21809 1.3353,-0.51246 2.0094,-0.8495 0.674,-0.33703 1.3284,-0.7106 1.9821,-1.14624 l 0.1629,-0.77967 0,-0.38789 -0.3258,-3.36696 3.4484,-3.04306 0.9504,2.82195 0.1357,0.24244 0.3802,0.3142 c 1.246,-1.39144 2.4039,-2.96071 3.4755,-4.64701 l -0.1086,-0.60513 -0.1358,-0.24243 -1.5477,-2.09659 2.5253,-4.87005 2.0093,1.20636 0.2172,0.0853 0.4616,-0.0756 c 0.8053,-1.93359 1.4986,-3.93425 2.0365,-5.98332 l -0.353,-0.36656 -0.2173,-0.0853 -2.308,-0.20365 0.9232,-5.3879 2.471,-0.76998 0.2715,-0.13576 0.4887,-0.47711 c 0.076,-0.97198 0.1086,-1.92301 0.1086,-2.88597 0,-0.96294 -0.032,-1.92028 -0.1086,-2.81613 l -0.4887,0.0117 -0.2715,0.13576 -2.471,1.70092 -0.9232,-4.4259 2.308,-2.55043 0.2173,-0.26376 0.353,-0.75835 c -0.5328,-1.49679 -1.214,-2.80035 -2.0094,-3.92164 l -0.4887,0.39953 -0.2172,0.26376 -2.0093,3.21568 -2.5253,-2.34484 1.5477,-3.60551 0.1358,-0.37821 0.1086,-0.71372 c -1.0714,-0.61452 -2.2297,-1.02602 -3.4755,-1.17145 l -0.3802,0.65555 -0.1357,0.37819 -0.9504,3.8111 -3.4484,0.40535 0.3258,-3.73157 0,-0.34911 -0.1629,-0.65556 c -0.6537,0.21813 -1.3081,0.4989 -1.9821,0.83593 z m 0,11.13266 c 5.1162,-2.5581 9.2591,1.28891 9.2591,8.59776 0,7.30887 -4.1429,15.33755 -9.2591,17.89564 -5.1162,2.55808 -9.2863,-1.31411 -9.2863,-8.62295 0,-7.30884 4.1701,-15.31235 9.2863,-17.87045 z"
- style="fill:url(#linearGradient104916);fill-opacity:1;stroke:#000000;stroke-width:1.03852296" />
- </g>
- <g
- transform="matrix(0.38524834,0,0,0.38524834,753.78404,653.08086)"
- id="g3259-9-0">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)"
- inkscape:label="Calque 1"
- id="g118215-8-4">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path118217-0-3" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path118219-3-8" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path118221-1-6" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g118223-5-1">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path118225-7-9" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path118227-7-8" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path118229-7-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient104918);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path118231-0-0"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)"
- id="g2662-9-8">
- <path
- id="path2664-8-0"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- id="g2666-0-5"
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(705.44117,-218.9829)">
- <path
- id="path2668-3-0"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- id="path2670-1-5" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path2672-4-0" />
- <path
- id="path2674-8-8"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 487.391,1117.5952 729.80147,994.37212"
- id="path36364" />
- <g
- transform="matrix(0.38241385,0,0,0.38241385,625.80509,774.48224)"
- id="g3513-6">
- <g
- transform="translate(-369.48339,-385.43051)"
- id="g3767-8">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 607.23277,879.49528 55.44283,-27.72141 55.44282,27.72141 -55.44282,27.72142 -55.44283,-27.72142 z"
- id="path3769-7" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 607.23277,879.49528 0,83.16424 55.44283,27.72141 0,-83.16423 -55.44283,-27.72142 z"
- id="path3771-8" />
- <path
- style="fill:url(#linearGradient104920);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 662.6756,990.38093 55.44282,-27.72141 0,-83.16424 -55.44282,27.72142 0,83.16423 z"
- id="path3773-3"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient104922);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 634.81813,937.76977 22.17713,11.08857 0,24.94927 -22.17713,-11.08856 0,-24.94928 z"
- id="path3775-5"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path3777-7"
- d="m 633.56811,935.45788 0,2.25237 0,24.94927 0,0.86629 0.77967,0.34652 22.17713,11.08857 1.99247,1.03955 0,-2.25237 0,-24.94927 0,-0.86629 -0.77966,-0.34652 -22.17713,-11.08856 -1.99248,-1.03956 z m 2.77214,4.50473 19.40499,9.7025 0,21.83061 -19.40499,-9.70249 0,-21.83062 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3779-7"
- d="m 611.39098,891.10362 0,2.25237 0,66.53139 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99248,1.03955 0,-2.25236 0,-66.53139 0,-0.86629 -0.77967,-0.34652 -5.54428,-2.77214 -1.99248,-1.03956 z m 2.77215,4.50473 2.77214,1.38607 0,63.41273 -2.77214,-1.38607 0,-63.41273 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3781-1"
- d="m 621.09348,895.26184 0,69.65004 8.31642,4.15822 0,-69.65005 -8.31642,-4.15821 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3783-5"
- d="m 633.56811,899.42005 0,2.25236 0,27.72141 0,0.8663 0.77967,0.34652 11.08856,5.54428 1.99248,1.03955 0,-2.25236 0,-27.72141 0,-0.8663 -0.77966,-0.34652 -11.08857,-5.54428 -1.99248,-1.03955 z m 2.77214,4.50473 8.31643,4.15821 0,24.60275 -8.31643,-4.15821 0,-24.60275 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3785-64"
- d="m 650.20096,907.73647 0,2.25237 0,30.49355 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99247,1.03956 0,-2.25237 0,-30.49355 0,-0.8663 -0.77966,-0.34651 -5.54428,-2.77215 -1.99248,-1.03955 z m 2.77214,4.50473 2.77214,1.38607 0,27.3749 -2.77214,-1.38607 0,-27.3749 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path3787-3"
- d="m 662.6756,850.21454 -0.60641,0.34652 -55.44282,27.72141 -0.77967,0.34652 0,0.86629 0,83.16424 0,0.86629 0.77967,0.34652 55.44282,27.72141 0.60641,0.34652 0.6064,-0.34652 55.44283,-27.72141 0.77966,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.77966,-0.34652 -55.44283,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.05675,27.02838 0,81.43165 -54.05675,27.02837 -54.05676,-27.02837 0,-81.43165 54.05676,-27.02838 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <rect
- style="opacity:0.5;fill:url(#pattern118687-0);fill-opacity:1;stroke:none"
- id="rect3789-22"
- width="47.62381"
- height="45.980042"
- x="747.37006"
- y="1269.7253"
- rx="0"
- ry="0"
- transform="matrix(0.8944272,-0.4472136,0,1,0,0)" />
- </g>
- <g
- id="g3863-52"
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-304.10649,883.79115)">
- <path
- id="path3865-0"
- d="m 1042.8959,100.2653 0,78.90625 78.9063,0 0,-78.90625 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(606.95622,-331.6564)"
- id="g3867-7">
- <path
- sodipodi:type="star"
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- id="path3869-55"
- sodipodi:sides="3"
- sodipodi:cx="241.13728"
- sodipodi:cy="609.1156"
- sodipodi:r1="15.395656"
- sodipodi:r2="7.6978278"
- sodipodi:arg1="0"
- sodipodi:arg2="1.0471976"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 256.53294,609.1156 -11.54674,6.66652 -11.54674,6.66651 0,-13.33303 0,-13.33303 11.54674,6.66652 11.54674,6.66651 z"
- transform="translate(212.65401,-137.99186)" />
- <rect
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- id="rect3871-8"
- width="7.6689839"
- height="34.386734"
- x="471.7662"
- y="454.18146" />
- <path
- transform="matrix(-1,0,0,1,738.13162,-137.99186)"
- d="m 256.53294,609.1156 -11.54674,6.66652 -11.54674,6.66651 0,-13.33303 0,-13.33303 11.54674,6.66652 11.54674,6.66651 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.0471976"
- sodipodi:arg1="0"
- sodipodi:r2="7.6978278"
- sodipodi:r1="15.395656"
- sodipodi:cy="609.1156"
- sodipodi:cx="241.13728"
- sodipodi:sides="3"
- id="path3873-8"
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- sodipodi:type="star" />
- </g>
- </g>
- </g>
- <text
- id="text37203"
- y="1019.5519"
- x="740.2865"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan37207"
- y="1019.5519"
- x="740.2865"
- sodipodi:role="line">FW/VPN</tspan><tspan
- id="tspan37215"
- y="1032.0519"
- x="740.2865"
- sodipodi:role="line">giving access to</tspan><tspan
- id="tspan37209"
- y="1044.5519"
- x="740.2865"
- sodipodi:role="line">cloud administrators</tspan></text>
- <text
- id="text35280"
- y="635.03723"
- x="317.2081"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="635.03723"
- x="317.2081"
- id="tspan35282"
- sodipodi:role="line">PXE</tspan><tspan
- id="tspan35284"
- y="647.53723"
- x="317.2081"
- sodipodi:role="line">Boot server</tspan></text>
- <g
- transform="matrix(0.39640924,0,0,0.39640924,641.89734,821.20523)"
- id="g3462-0">
- <g
- id="g108629-6"
- transform="translate(134.05913,35.984128)">
- <g
- id="g4883-79"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path4885-5"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path4887-6"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path4889-5"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g4891-9">
- <path
- id="path4893-1"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path4895-5"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4897-2"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient104924);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path4899-6"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path4901-5" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path4903-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path4905-5" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path4907-3"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path4909-1" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path4911-20" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path4913-13"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient104926);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path4915-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path4917-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path4919-4"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path4921-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path4923-2" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path4925-9" />
- </g>
- </g>
- </g>
- <g
- transform="translate(15.21711,1.7214477)"
- id="g3159-2">
- <rect
- transform="matrix(0.8944272,-0.4472136,0,1,0,0)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.75346398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect109160-4"
- width="36.695312"
- height="35.799278"
- x="395.43951"
- y="330.15076"
- ry="8.8706169" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path109162-5"
- d="m 372.22665,145.64754 -0.13558,32.8959 -2.71818,1.81754 0,-33.0536 2.85376,-1.65984 z"
- style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path109164-04"
- d="m 385.06359,155.06606 0.16889,4.18009 -30.14532,15.26938 0.34578,-4.66405 29.63065,-14.78542 z"
- style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="cccccccccccccccccccccc"
- id="path109166-3"
- d="m 373.89476,146.06666 0.18935,0.85117 2.46154,10.52408 8.33137,-6.09926 0.22711,2.41718 -8.55848,6.65757 -0.94674,0.61318 -0.37871,-1.43183 -1.70413,-7.38993 -2.65089,23.5191 -0.18936,2.39483 -1.32544,-2.17115 -5.68048,-9.30487 -9.13434,3.64409 0.25777,-2.59705 8.68723,-3.52121 0.56805,-0.42199 0.56804,0.93049 4.73373,7.75407 2.84024,-25.91394 0,-0.541 1.70414,0.0865 z"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <text
- id="text81085"
- y="841.72638"
- x="782.9314"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="841.72638"
- x="782.9314"
- id="tspan81087"
- sodipodi:role="line">Monitoring</tspan></text>
- <g
- transform="translate(-748.20118,35.875359)"
- id="g95384">
- <path
- id="path14972"
- d="m 872.99052,751.77872 80.99826,41.26416"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <path
- id="path14036-6"
- d="m 993.06325,743.40092 53.58135,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 966.37299,729.633 53.58131,-27.30109"
- id="path14038-4" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 926.45966,779.63802 53.58133,-27.30109"
- id="path3533-0-9-9" />
- <path
- id="path14040-8"
- d="m 1019.7535,757.16885 53.5813,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- id="path13103-4"
- d="m 899.81312,765.75453 53.58134,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 953.5252,793.2422 53.5813,-27.30108"
- id="path3533-0-7" />
- <path
- id="path13105-2"
- d="m 873.44593,751.73134 53.58134,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <g
- transform="matrix(0.38524834,0,0,0.38524834,864.78502,532.73899)"
- id="g20121-8">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,488.78696,875.42775)"
- inkscape:label="Calque 1"
- id="g20123-2">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path20125-8" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path20127-8" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path20129-7" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g20131-0">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path20133-1" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path20135-5" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path20137-0"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient16536);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path20139-8"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- id="g20141-0"
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-338.72869,1082.8342)">
- <path
- id="path20143-7"
- d="m 1081.1367,402.39569 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(456.4439,-26.889185)"
- id="g20145-1">
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 660.00267,458.32498 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path20147-5" />
- <path
- id="path20149-1"
- d="m 668.28911,465.32717 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- id="path20151-3"
- d="m 660.00267,472.20199 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 668.28911,479.13574 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path20153-3" />
- </g>
- </g>
- </g>
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 939.68273,715.86503 53.58134,-27.30109"
- id="path14042-7" />
- <g
- id="g95180">
- <g
- id="g11976-3-4"
- transform="matrix(0.38524834,0,0,0.38524834,-61.179222,752.04337)">
- <g
- id="g11978-3-4"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g11980-8-0"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path11982-9-5"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11984-5-6"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11986-5-0"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g11988-3-0">
- <path
- id="path11990-8-4"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path11992-6-0"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path11994-0-3"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient16538);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path11996-3-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path11998-3-0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path12000-6-8"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path12002-1-6" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path12004-8-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path12006-7-9" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path12008-0-2" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path12010-5-3"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient16540);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path12012-1-5" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path12014-1-4" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path12016-0-8"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path12018-3-1" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path12020-0-0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path12022-0-7" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g12024-4-2">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12026-5-4"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12028-4-9"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12030-2-9"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12032-4-2"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12034-9-3"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12036-9-6"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12038-9-6"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12040-4-7"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12042-9-7"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12044-8-4"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12046-1-6"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12048-6-9"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12050-3-6"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12052-9-0"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12054-3-9"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12056-3-9"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12058-4-5"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12060-6-1"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12062-1-7"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12064-5-3"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12066-6-0"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12068-1-8"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12070-7-5"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12072-2-4"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12074-2-3"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g11976-37-9"
- transform="matrix(0.38524834,0,0,0.38524834,-34.001281,765.86687)">
- <g
- id="g11978-7-4"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g11980-2-6"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path11982-3-2"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11984-7-3"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11986-2-8"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g11988-5-6">
- <path
- id="path11990-3-2"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path11992-7-7"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path11994-6-0"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient16542);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path11996-8-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path11998-1-6" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path12000-3-7"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path12002-6-4" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path12004-4-3"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path12006-0-1" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path12008-3-2" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path12010-58-4"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient16544);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path12012-5-7" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path12014-0-5" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path12016-9-5"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path12018-9-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path12020-8-0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path12022-02-7" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g12024-49-7">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12026-0-3"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12028-1-7"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12030-20-7"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12032-0-9"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12034-6-3"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12036-3-2"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12038-90-0"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12040-8-7"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12042-3-8"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12044-87-2"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12046-3-0"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12048-1-7"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12050-0-1"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12052-0-4"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12054-5-6"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12056-0-1"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12058-3-1"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12060-1-2"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12062-8-8"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12064-0-8"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12066-1-7"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12068-7-1"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12070-9-0"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12072-1-1"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12074-0-0"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g11976-0-7"
- transform="matrix(0.38524834,0,0,0.38524834,-6.8233912,779.69043)">
- <g
- id="g11978-30-9"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g11980-3-0"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path11982-37-7"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11984-9-6"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11986-4-9"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g11988-9-3">
- <path
- id="path11990-9-3"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path11992-1-6"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path11994-9-4"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient16546);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path11996-4-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path11998-2-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path12000-0-4"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path12002-65-6" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path12004-9-9"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path12006-5-9" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path12008-6-7" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path12010-1-8"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient16548);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path12012-14-0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path12014-3-1" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path12016-7-4"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path12018-2-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path12020-7-5" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path12022-3-9" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g12024-3-4">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12026-9-3"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12028-2-8"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12030-4-5"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12032-44-5"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12034-99-2"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12036-38-8"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12038-3-3"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12040-2-1"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12042-95-8"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12044-4-2"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12046-39-7"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12048-4-0"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12050-9-5"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12052-5-2"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12054-57-6"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12056-39-1"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12058-0-1"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12060-7-7"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12062-2-8"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12064-7-8"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12066-2-6"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12068-9-7"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12070-0-7"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12072-5-4"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12074-04-9"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g11976-8-0"
- transform="matrix(0.38524834,0,0,0.38524834,20.354516,793.51394)">
- <g
- id="g11978-8-0"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g11980-7-2"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path11982-0-7"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11984-52-1"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path11986-7-6"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g11988-91-2">
- <path
- id="path11990-96-0"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path11992-3-4"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path11994-68-8"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient16550);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path11996-46-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path11998-6-2" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path12000-7-3"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path12002-2-3" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path12004-7-2"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path12006-4-7" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path12008-1-2" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path12010-0-4"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient16552);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path12012-0-5" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path12014-6-4" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path12016-4-1"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path12018-4-6" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path12020-3-8" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path12022-7-0" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g12024-34-4">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12026-7-8"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12028-21-8"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12030-7-3"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12032-9-5"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12034-5-2"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12036-6-4"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12038-8-7"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12040-9-4"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12042-5-7"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12044-5-5"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12046-2-6"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12048-15-5"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12050-99-7"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12052-1-6"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12054-6-9"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12056-2-7"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12058-1-0"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12060-0-3"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12062-5-2"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12064-3-3"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12066-21-8"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12068-97-0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12070-6-5"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect12072-8-2"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12074-20-5"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- </g>
- <path
- id="path14972-4"
- d="m 993.20143,688.65267 80.25197,41.01585"
- style="fill:none;stroke:#808080;stroke-width:1.926;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <g
- id="g3279-2-1"
- transform="matrix(0.38524834,0,0,0.38524834,984.84554,467.7792)">
- <g
- id="g118255-9-1"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,488.78696,875.42775)">
- <path
- id="path118257-7-5"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118259-0-8"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path118261-3-9"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g118263-7-3"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path118265-2-3"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path118267-3-6"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118269-5-7"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path118271-1-8"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient16554);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-338.72869,1082.8342)"
- id="g3697-7-6">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1081.1367,402.39569 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- id="path3699-89-2" />
- <g
- id="g3701-4-5"
- transform="translate(456.4439,-26.889185)"
- style="fill:#00ffff;stroke:#ffffff">
- <path
- id="path3703-1-1"
- d="m 660.00267,458.32498 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 668.28911,465.32717 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path3705-6-0" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 660.00267,472.20199 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path3707-4-0" />
- <path
- id="path3709-3-0"
- d="m 668.28911,479.13574 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- </g>
- <use
- height="1052.3622"
- width="744.09448"
- transform="translate(126.63464,64.434701)"
- id="use95651"
- xlink:href="#g95384"
- y="0"
- x="0" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="translate(126.63461,64.434641)"
- id="use95653"
- xlink:href="#use95651"
- y="0"
- x="0" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="translate(126.63467,64.434708)"
- id="use95655"
- xlink:href="#use95653"
- y="0"
- x="0" />
- </g>
- <text
- xml:space="preserve"
- style="font-size:9.67604542px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="87.091499"
- y="542.59528"
- id="text6070"><tspan
- sodipodi:role="line"
- x="87.091499"
- y="542.59528"
- id="tspan6076"
- style="font-weight:bold">C2) using diskless nodes</tspan></text>
- <flowRoot
- xml:space="preserve"
- id="flowRoot13580"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"><flowRegion
- id="flowRegion13582"><rect
- id="rect13584"
- width="828.32507"
- height="466.69049"
- x="-67.680222"
- y="554.35699" /></flowRegion><flowPara
- id="flowPara13586" /></flowRoot> <text
- xml:space="preserve"
- style="font-size:9.67604542px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="779.40326"
- y="714.73633"
- id="text13588"><tspan
- sodipodi:role="line"
- id="tspan13590"
- x="779.40326"
- y="714.73633">t</tspan></text>
- <path
- id="path13594"
- d="M 633.15472,309.98105 691.30959,280.3496"
- style="fill:none;stroke:#808080;stroke-width:2.0906589;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 433.72797,389.43052 381.88245,415.8472"
- id="path13596" />
- <path
- id="path13598"
- d="M 311.29753,327.43412 259.452,353.85078"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 188.86705,265.43773 137.0215,291.85438"
- id="path13600" />
- <path
- id="path13602"
- d="M 66.43658,203.44132 14.591037,229.85798"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- id="path13604"
- d="M 380.93395,415.92955 13.951354,229.36241"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 390.56396,506.36873 129.9897,374.51622"
- id="path13606" />
- <g
- transform="matrix(0.96760451,0,0,0.96760451,-83.172647,-574.70275)"
- id="g13610">
- <path
- id="path13612"
- d="m 443.70447,656.64984 -53.58134,27.30109"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 466.14451,668.13188 -53.58134,27.30109"
- id="path13614" />
- <path
- id="path13616"
- d="M 488.58463,679.61391 435.00328,706.915"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 511.02467,691.09594 -53.58134,27.30109"
- id="path13618" />
- </g>
- <g
- transform="matrix(0.37276803,0,0,0.37276803,-79.425664,-575.18523)"
- id="g13620">
- <g
- id="g13622"
- transform="translate(45.388822,1591.2158)">
- <g
- id="g13624"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g13626"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path13628"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13630"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13632"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g13634">
- <path
- id="path13636"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path13638"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13640"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient14934);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path13642"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path13644" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path13646"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path13648" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path13650"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path13652" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path13654" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13656"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient14936);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path13658" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path13660" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path13662"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path13664" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path13666" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path13668" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g13670"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path13672" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path13674"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- <g
- id="g13676"
- transform="translate(105.4361,1621.5028)">
- <g
- id="g13678"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g13680"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path13682"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13684"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13686"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g13688">
- <path
- id="path13690"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path13692"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13694"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient14938);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path13696"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path13698" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path13700"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path13702" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path13704"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path13706" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path13708" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13710"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient14940);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path13712" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path13714" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path13716"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path13718" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path13720" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path13722" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g13724"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path13726" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path13728"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- <g
- id="g13730"
- transform="translate(167.06359,1653.3699)">
- <g
- id="g13732"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g13734"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path13736"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13738"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13740"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g13742">
- <path
- id="path13744"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path13746"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13748"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient14942);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path13750"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path13752" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path13754"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path13756" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path13758"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path13760" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path13762" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13764"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient14944);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path13766" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path13768" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path13770"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path13772" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path13774" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path13776" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g13778"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path13780" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path13782"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- <g
- id="g13784"
- transform="translate(228.69107,1685.2371)">
- <g
- id="g13786"
- transform="translate(897.38434,-46.491083)">
- <g
- id="g13788"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path13790"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13792"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path13794"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g13796">
- <path
- id="path13798"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path13800"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13802"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient14946);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path13804"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path13806" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path13808"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path13810" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path13812"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path13814" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path13816" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path13818"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient14948);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path13820" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path13822" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path13824"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path13826" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path13828" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path13830" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Calque 1"
- id="g13832"
- transform="matrix(0.2766711,-0.1383356,0,0.2555605,1099.9201,-86.84348)"
- style="fill:#00ff00;fill-opacity:1">
- <path
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 174.71965,639.58466 c -29.19719,0 -52.90625,13.34326 -52.90625,29.78125 l 0,119.125 c 0,16.43799 23.70907,29.78125 52.90625,29.78125 29.19719,-10e-6 52.90625,-13.34324 52.90625,-29.78125 l 0,-119.125 -0.0312,0 c 0,-16.43799 -23.67781,-29.78125 -52.875,-29.78125 z"
- id="path13834" />
- <path
- sodipodi:type="arc"
- style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.93746948;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path13836"
- sodipodi:cx="184.11563"
- sodipodi:cy="698.03149"
- sodipodi:rx="30.68594"
- sodipodi:ry="17.716536"
- d="m 214.80157,698.03149 c 0,9.78458 -13.73856,17.71654 -30.68594,17.71654 -16.94738,0 -30.68594,-7.93196 -30.68594,-17.71654 0,-9.78457 13.73856,-17.71653 30.68594,-17.71653 16.94738,0 30.68594,7.93196 30.68594,17.71653 z"
- transform="matrix(1.6638767,0,0,1.6225174,-131.61326,-463.20234)" />
- </g>
- </g>
- </g>
- <path
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 137.80671,360.42556 51.84556,-26.41667"
- id="path14050" />
- <path
- id="path14054"
- d="m 194.61698,131.18107 51.84553,-26.41664"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- id="path14056"
- d="m 353.51081,170.19163 51.84554,-26.41666"
- style="fill:none;stroke:#808080;stroke-width:1.86360633;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 315.96626,193.35769 367.8118,166.94104"
- id="path14058" />
- <path
- id="path14060"
- d="M 437.31556,255.53426 489.1611,229.1176"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 558.66486,317.71085 610.51041,291.2942"
- id="path14062" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 245.47949,104.73463 711.6876,342.53959"
- id="path14064" />
- <g
- transform="matrix(0.37276803,0,0,0.37276803,379.58977,-81.066902)"
- id="g14066">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)"
- inkscape:label="Calque 1"
- id="g14068">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14070" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14072" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14074" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g14076">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path14078" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path14080" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path14082"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient14960);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path14084"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)"
- id="g14086">
- <path
- id="path14088"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- id="g14090"
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(705.44117,-218.9829)">
- <path
- id="path14092"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- id="path14094" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path14096" />
- <path
- id="path14098"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- id="path14100"
- d="m 636.82641,381.35097 74.80771,-38.35908"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <g
- id="g14102"
- transform="matrix(0.37276803,0,0,0.37276803,212.00671,79.36386)">
- <g
- id="g14104"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)">
- <path
- id="path14106"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14108"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14110"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g14112"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path14114"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14116"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14118"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14120"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient14962);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- id="g14122"
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- id="path14124" />
- <g
- transform="translate(705.44117,-218.9829)"
- style="fill:#00ffff;stroke:#ffffff"
- id="g14126">
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- id="path14128" />
- <path
- id="path14130"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- id="path14132"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path14134" />
- </g>
- </g>
- </g>
- <g
- id="g14136"
- transform="matrix(0.84747589,0,0,0.84747589,-274.39071,235.43082)">
- <g
- id="g14138">
- <path
- d="m 452.22752,154.79534 c -1.32987,4.3593 0.97442,13.06343 4.32672,7.29809 0.55883,-4.21566 0.16853,-13.66849 -4.32672,-7.29809 z"
- id="path14140"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 459.05645,154.87353 c -5.73123,-1.99396 -4.37255,6.82514 -3.10169,8.88804 4.41472,0.3139 8.88448,0.68282 7.08957,-5.21292 -0.15325,-2.39014 -1.62637,-3.78967 -3.98788,-3.67512 z"
- id="path14142"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 461.48045,154.95173 c -1.09246,1.9721 -0.88144,8.20841 3.07563,8.75771 7.13327,0.55239 -1.24277,-5.48505 3.0235,-5.57782 1.36821,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z"
- id="path14144"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 469.14346,154.84748 c -6.26267,0.075 -4.66384,10.71977 1.4292,8.95932 4.83425,0.31308 3.44625,-9.88021 -1.4292,-8.95932 z"
- id="path14146"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 468.85674,155.68154 c -5.85015,2.68836 -2.79296,6.6586 2.86712,4.84803 3.28424,0.8454 -0.45596,-6.36406 -2.86712,-4.84803 z"
- id="path14148"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 475.63355,154.84748 c -5.82517,-1.97942 -4.54812,6.74301 -3.23202,8.91409 4.84187,0.18324 3.39963,-5.16968 5.70816,-6.35977 0.24428,-2.37476 -0.19418,-2.73428 -2.47614,-2.55432 z"
- id="path14150"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 479.49112,154.87353 c -5.77442,-2.02369 -4.43922,6.79664 -3.15383,8.88804 4.41473,0.3139 8.88448,0.68282 7.08958,-5.21292 -0.15836,-2.36396 -1.59101,-3.77955 -3.93575,-3.67512 z"
- id="path14152"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 485.56417,154.84748 c -6.19598,0.15033 -4.65067,10.675 1.42942,8.96143 4.93021,0.35507 3.48048,-9.89643 -1.42942,-8.96143 z"
- id="path14154"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 485.30352,155.68154 c -5.85015,2.68836 -2.79297,6.6586 2.86711,4.84803 3.28424,0.8454 -0.45595,-6.36406 -2.86711,-4.84803 z"
- id="path14156"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 488.0403,154.95173 c -1.06389,1.96915 -0.92086,8.22865 3.04957,8.75771 7.16539,0.57531 -1.21095,-5.48429 3.04956,-5.57782 1.3682,-3.25204 -5.37175,-7.28408 -6.09913,-3.17989 z"
- id="path14158"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:0.17777776;fill:#313235;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14160"
- inkscape:tile-cx="150.57283"
- inkscape:tile-cy="1057.5979"
- inkscape:tile-h="104.60061"
- inkscape:tile-w="105.36077"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14964);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.179335,0,0,0.149728,502.1893,-24.02897)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14162"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14966);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.284001,0,0,0.193224,407.7236,-73.15871)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14164"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14968);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.340554,0,0,0.231701,396.3144,-88.95173)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14166"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14970);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.249954,0,0,0.170059,406.7992,-32.10751)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14168"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14972);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(0.260403,0,0,0.177168,412.2819,-25.25605)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14170"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14974);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.104126,-0.150834,-0.146719,0.07084417,668.335,91.43843)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14172"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14976);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.154671,-0.224051,-0.217939,0.105233,738.2325,88.88709)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14174"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14978);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.138006,-0.19991,-0.194457,0.09389457,722.8067,97.77468)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14176"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14980);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.117791,-0.170629,-0.165973,0.08014087,677.6847,122.0894)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14178"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14982);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.09614486,-0.139271,-0.135472,0.06541328,635.5166,142.1226)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14180"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14984);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.164683,-0.238552,0.232045,-0.112044,265.1906,314.0698)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14182"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14986);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.172846,-0.250377,0.243546,-0.117597,239.7257,330.3731)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14184"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14988);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.177232,-0.256733,0.249729,-0.120583,225.1178,318.3329)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14186"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14990);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.166524,-0.241221,0.23464,-0.113297,227.7161,329.1711)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14188"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14992);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.112183,-0.162505,0.158072,-0.07632533,314.1776,290.1886)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14190"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14994);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.11826,0.171307,0.166634,0.08045988,311.5686,16.07786)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14192"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14996);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.0943583,0.136684,0.132956,0.06419815,331.8395,50.2111)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14194"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient14998);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.114364,0.165662,0.161143,0.07780872,322.2702,30.08746)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14196"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient15000);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.140702,0.203815,0.198255,0.09572832,286.7172,18.15027)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14198"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient15002);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.162185,0.234935,0.228526,0.110345,259.9411,6.05945)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14200"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient15004);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.160583,0.232613,-0.226269,-0.109254,748.0707,211.5833)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14202"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient15006);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.12628,0.182922,-0.177934,-0.08591606,697.8146,196.7379)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14204"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient15008);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.137748,0.199537,-0.194093,-0.09371803,714.1281,221.8225)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14206"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient15010);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.120979,0.175247,-0.170466,-0.08231039,662.6019,207.1803)" />
- <path
- d="m 200.40415,1074.4789 c -9.38924,27.3323 -39.31505,41.9316 -66.84118,32.6085 -27.52613,-9.3231 -42.228996,-39.0382 -32.83977,-66.3705 9.38924,-27.3323 39.31505,-41.93159 66.84118,-32.6085 24.96138,8.4544 39.77465,33.9403 34.65958,59.6308"
- id="path14208"
- sodipodi:cx="150.56367"
- sodipodi:cy="1057.5979"
- sodipodi:end="6.478369"
- sodipodi:open="true"
- sodipodi:rx="52.660198"
- sodipodi:ry="52.289352"
- sodipodi:start="0.32872637"
- sodipodi:type="arc"
- style="opacity:0.17777776;fill:url(#linearGradient15012);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(-0.14434,0.209086,-0.203383,-0.09820396,735.5011,232.5166)" />
- </g>
- <path
- d="m 409.69532,571.95715 c 0,13.80622 -11.19215,24.99836 -24.99836,24.99836 -13.80621,0 -24.99836,-11.19214 -24.99836,-24.99836 0,-13.80621 11.19215,-24.99835 24.99836,-24.99835 13.80621,0 24.99836,11.19214 24.99836,24.99835 z"
- id="path14210"
- sodipodi:cx="384.69696"
- sodipodi:cy="571.95715"
- sodipodi:rx="24.998358"
- sodipodi:ry="24.998358"
- sodipodi:type="arc"
- style="fill:url(#radialGradient15014);fill-opacity:1;fill-rule:nonzero;stroke:none"
- transform="matrix(1.155532,0,0,1.155532,26.16756,-503.197)" />
- <text
- id="text14212"
- style="font-size:10.00881386px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#9f0021;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
- x="469.55161"
- xml:space="preserve"
- y="161.44913"><tspan
- id="tspan14214"
- sodipodi:role="line"
- x="469.55161"
- y="161.44913">Internet</tspan></text>
- </g>
- <text
- id="text14216"
- y="25.73774"
- x="469.02438"
- style="font-size:9.67604542px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan14220"
- y="25.73774"
- x="469.02438"
- sodipodi:role="line">HA Database for</tspan><tspan
- y="37.832798"
- x="469.02438"
- sodipodi:role="line"
- id="tspan16599">OpenStack Compute</tspan></text>
- <text
- id="text14228"
- y="86.196609"
- x="89.344864"
- style="font-size:9.67604542px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan14232"
- y="86.196609"
- x="89.344864"
- sodipodi:role="line">Servers running</tspan><tspan
- y="98.291664"
- x="89.344864"
- sodipodi:role="line"
- id="tspan16603"> virtual guests</tspan></text>
- <g
- transform="matrix(0.37276803,0,0,0.37276803,648.08423,56.950946)"
- id="g14286">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,364.86909,935.55835)"
- inkscape:label="Calque 1"
- id="g14288">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14290" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14292" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14294" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g14296">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path14298" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path14300" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path14302"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient15022);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path14304"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,0.3181981,-0.6363961,0.3181981,-697.62009,289.09977)"
- id="g14306">
- <path
- id="path14308"
- d="m 1044.4209,-4.5996044 0,78.9062504 78.9063,0 0,-78.9062504 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823004 37,37.0000004 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 -10e-5,-20.41771 16.5823,-37.0000004 37,-37.0000004 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- id="g14310"
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(705.44117,-218.9829)">
- <path
- id="path14312"
- d="m 378.53666,218.814 -6.22099,11.28987 1.97176,0 0,18.4037 8.49847,0 0,-18.4037 1.95647,0 -6.20571,-11.28987 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 378.53666,288.85884 -6.22099,-11.28987 1.97176,0 0,-18.4037 8.49847,0 0,18.4037 1.95647,0 -6.20571,11.28987 z"
- id="path14314" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 343.41044,253.56675 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path14316" />
- <path
- id="path14318"
- d="m 413.45528,253.56675 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:1.86384022;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 390.32112,506.41711 624.87859,387.18591"
- id="path14320" />
- <g
- transform="matrix(0.37002536,0,0,0.37002536,524.25122,174.41947)"
- id="g14322">
- <g
- transform="translate(-369.48339,-385.43051)"
- id="g14324">
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 607.23277,879.49528 55.44283,-27.72141 55.44282,27.72141 -55.44282,27.72142 -55.44283,-27.72142 z"
- id="path14326" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 607.23277,879.49528 0,83.16424 55.44283,27.72141 0,-83.16423 -55.44283,-27.72142 z"
- id="path14328" />
- <path
- style="fill:url(#linearGradient15024);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 662.6756,990.38093 55.44282,-27.72141 0,-83.16424 -55.44282,27.72142 0,83.16423 z"
- id="path14330"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient15026);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 634.81813,937.76977 22.17713,11.08857 0,24.94927 -22.17713,-11.08856 0,-24.94928 z"
- id="path14332"
- sodipodi:nodetypes="ccccc" />
- <path
- id="path14334"
- d="m 633.56811,935.45788 0,2.25237 0,24.94927 0,0.86629 0.77967,0.34652 22.17713,11.08857 1.99247,1.03955 0,-2.25237 0,-24.94927 0,-0.86629 -0.77966,-0.34652 -22.17713,-11.08856 -1.99248,-1.03956 z m 2.77214,4.50473 19.40499,9.7025 0,21.83061 -19.40499,-9.70249 0,-21.83062 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14336"
- d="m 611.39098,891.10362 0,2.25237 0,66.53139 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99248,1.03955 0,-2.25236 0,-66.53139 0,-0.86629 -0.77967,-0.34652 -5.54428,-2.77214 -1.99248,-1.03956 z m 2.77215,4.50473 2.77214,1.38607 0,63.41273 -2.77214,-1.38607 0,-63.41273 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14338"
- d="m 621.09348,895.26184 0,69.65004 8.31642,4.15822 0,-69.65005 -8.31642,-4.15821 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14340"
- d="m 633.56811,899.42005 0,2.25236 0,27.72141 0,0.8663 0.77967,0.34652 11.08856,5.54428 1.99248,1.03955 0,-2.25236 0,-27.72141 0,-0.8663 -0.77966,-0.34652 -11.08857,-5.54428 -1.99248,-1.03955 z m 2.77214,4.50473 8.31643,4.15821 0,24.60275 -8.31643,-4.15821 0,-24.60275 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14342"
- d="m 650.20096,907.73647 0,2.25237 0,30.49355 0,0.86629 0.77967,0.34652 5.54428,2.77214 1.99247,1.03956 0,-2.25237 0,-30.49355 0,-0.8663 -0.77966,-0.34651 -5.54428,-2.77215 -1.99248,-1.03955 z m 2.77214,4.50473 2.77214,1.38607 0,27.3749 -2.77214,-1.38607 0,-27.3749 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14344"
- d="m 662.6756,850.21454 -0.60641,0.34652 -55.44282,27.72141 -0.77967,0.34652 0,0.86629 0,83.16424 0,0.86629 0.77967,0.34652 55.44282,27.72141 0.60641,0.34652 0.6064,-0.34652 55.44283,-27.72141 0.77966,-0.34652 0,-0.86629 0,-83.16424 0,-0.86629 -0.77966,-0.34652 -55.44283,-27.72141 -0.6064,-0.34652 z m 0,3.11866 54.05675,27.02838 0,81.43165 -54.05675,27.02837 -54.05676,-27.02837 0,-81.43165 54.05676,-27.02838 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <rect
- style="opacity:0.5;fill:url(#pattern118687-0);fill-opacity:1;stroke:none"
- id="rect14346"
- width="47.62381"
- height="45.980042"
- x="747.37006"
- y="1269.7253"
- rx="0"
- ry="0"
- transform="matrix(0.8944272,-0.4472136,0,1,0,0)" />
- </g>
- <g
- id="g14348"
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-304.10649,883.79115)">
- <path
- id="path14350"
- d="m 1042.8959,100.2653 0,78.90625 78.9063,0 0,-78.90625 -78.9063,0 z m 39.4688,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(606.95622,-331.6564)"
- id="g14352">
- <path
- sodipodi:type="star"
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- id="path14354"
- sodipodi:sides="3"
- sodipodi:cx="241.13728"
- sodipodi:cy="609.1156"
- sodipodi:r1="15.395656"
- sodipodi:r2="7.6978278"
- sodipodi:arg1="0"
- sodipodi:arg2="1.0471976"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 256.53294,609.1156 -11.54674,6.66652 -11.54674,6.66651 0,-13.33303 0,-13.33303 11.54674,6.66652 11.54674,6.66651 z"
- transform="translate(212.65401,-137.99186)" />
- <rect
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- id="rect14356"
- width="7.6689839"
- height="34.386734"
- x="471.7662"
- y="454.18146" />
- <path
- transform="matrix(-1,0,0,1,738.13162,-137.99186)"
- d="m 256.53294,609.1156 -11.54674,6.66652 -11.54674,6.66651 0,-13.33303 0,-13.33303 11.54674,6.66652 11.54674,6.66651 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.0471976"
- sodipodi:arg1="0"
- sodipodi:r2="7.6978278"
- sodipodi:r1="15.395656"
- sodipodi:cy="609.1156"
- sodipodi:cx="241.13728"
- sodipodi:sides="3"
- id="path14358"
- style="fill:#00ffff;fill-opacity:1;stroke:#ffffff;stroke-linecap:butt;stroke-linejoin:miter"
- sodipodi:type="star" />
- </g>
- </g>
- </g>
- <text
- id="text14360"
- y="411.54996"
- x="635.02393"
- style="font-size:9.67604542px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- id="tspan14362"
- y="411.54996"
- x="635.02393"
- sodipodi:role="line">FW/VPN</tspan><tspan
- id="tspan14364"
- y="423.64502"
- x="635.02393"
- sodipodi:role="line">giving access to</tspan><tspan
- id="tspan14366"
- y="435.74008"
- x="635.02393"
- sodipodi:role="line">cloud administrators</tspan></text>
- <g
- transform="matrix(0.38356737,0,0,0.38356737,539.82216,219.62884)"
- id="g14374">
- <g
- id="g14376"
- transform="translate(134.05913,35.984128)">
- <g
- id="g14378"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path14380"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14382"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14384"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g14386">
- <path
- id="path14388"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14390"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14392"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient15028);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path14394"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path14396" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path14398"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path14400" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path14402"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path14404" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path14406" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14408"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient15030);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path14410" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path14412" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path14414"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path14416" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path14418" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path14420" />
- </g>
- </g>
- </g>
- <g
- transform="translate(15.21711,1.7214477)"
- id="g14422">
- <rect
- transform="matrix(0.8944272,-0.4472136,0,1,0,0)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.75346398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14424"
- width="36.695312"
- height="35.799278"
- x="395.43951"
- y="330.15076"
- ry="8.8706169" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14426"
- d="m 372.22665,145.64754 -0.13558,32.8959 -2.71818,1.81754 0,-33.0536 2.85376,-1.65984 z"
- style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14428"
- d="m 385.06359,155.06606 0.16889,4.18009 -30.14532,15.26938 0.34578,-4.66405 29.63065,-14.78542 z"
- style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="cccccccccccccccccccccc"
- id="path14430"
- d="m 373.89476,146.06666 0.18935,0.85117 2.46154,10.52408 8.33137,-6.09926 0.22711,2.41718 -8.55848,6.65757 -0.94674,0.61318 -0.37871,-1.43183 -1.70413,-7.38993 -2.65089,23.5191 -0.18936,2.39483 -1.32544,-2.17115 -5.68048,-9.30487 -9.13434,3.64409 0.25777,-2.59705 8.68723,-3.52121 0.56805,-0.42199 0.56804,0.93049 4.73373,7.75407 2.84024,-25.91394 0,-0.541 1.70414,0.0865 z"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <text
- id="text14432"
- y="239.4852"
- x="676.28735"
- style="font-size:9.67604542px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- xml:space="preserve"><tspan
- y="239.4852"
- x="676.28735"
- id="tspan14434"
- sodipodi:role="line">Monitoring</tspan></text>
- <g
- transform="matrix(0.96760451,0,0,0.96760451,-805.24344,-540.25988)"
- id="g14436">
- <path
- id="path14438"
- d="m 872.99052,751.77872 80.99826,41.26416"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <path
- id="path14440"
- d="m 993.06325,743.40092 53.58135,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 966.37299,729.633 53.58131,-27.30109"
- id="path14442" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 926.45966,779.63802 53.58133,-27.30109"
- id="path14444" />
- <path
- id="path14446"
- d="m 1019.7535,757.16885 53.5813,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- id="path14448"
- d="m 899.81312,765.75453 53.58134,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 953.5252,793.2422 53.5813,-27.30108"
- id="path14450" />
- <path
- id="path14452"
- d="m 873.44593,751.73134 53.58134,-27.30108"
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <g
- transform="matrix(0.38524834,0,0,0.38524834,864.78502,532.73899)"
- id="g14454">
- <g
- transform="matrix(6.5383417,0,0,6.5383417,488.78696,875.42775)"
- inkscape:label="Calque 1"
- id="g14456">
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14458" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14460" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:none"
- d=""
- id="path14462" />
- <g
- transform="translate(-68.205597,-63.743549)"
- id="g14464">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- id="path14466" />
- <path
- sodipodi:nodetypes="ccccc"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- id="path14468" />
- <path
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- id="path14470"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#radialGradient15032);fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- id="path14472"
- sodipodi:nodetypes="ccccc" />
- </g>
- </g>
- <g
- id="g14474"
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-338.72869,1082.8342)">
- <path
- id="path14476"
- d="m 1081.1367,402.39569 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter" />
- <g
- style="fill:#00ffff;stroke:#ffffff"
- transform="translate(456.4439,-26.889185)"
- id="g14478">
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 660.00267,458.32498 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path14480" />
- <path
- id="path14482"
- d="m 668.28911,465.32717 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- id="path14484"
- d="m 660.00267,472.20199 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 668.28911,479.13574 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path14486" />
- </g>
- </g>
- </g>
- <path
- style="fill:none;stroke:#808080;stroke-width:1.92624176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 939.68273,715.86503 53.58134,-27.30109"
- id="path14488" />
- <g
- id="g14490">
- <g
- id="g14492"
- transform="matrix(0.38524834,0,0,0.38524834,-61.179222,752.04337)">
- <g
- id="g14494"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g14496"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path14498"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14500"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14502"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g14504">
- <path
- id="path14506"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14508"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14510"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient15034);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path14512"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path14514" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path14516"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path14518" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path14520"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path14522" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path14524" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14526"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient15036);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path14528" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path14530" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path14532"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path14534" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path14536" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path14538" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g14540">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14542"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14544"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14546"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14548"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14550"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14552"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14554"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14556"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14558"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14560"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14562"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14564"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14566"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14568"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14570"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14572"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14574"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14576"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14578"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14580"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14582"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14584"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14586"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14588"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14590"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g14592"
- transform="matrix(0.38524834,0,0,0.38524834,-34.001281,765.86687)">
- <g
- id="g14594"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g14596"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path14598"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14600"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14602"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g14604">
- <path
- id="path14606"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14608"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14610"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient15038);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path14612"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path14614" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path14616"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path14618" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path14620"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path14622" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path14624" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14626"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient15040);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path14628" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path14630" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path14632"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path14634" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path14636" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path14638" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g14640">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14642"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14644"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14646"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14648"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14650"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14652"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14654"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14656"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14658"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14660"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14662"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14664"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14666"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14668"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14670"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14672"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14674"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14676"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14678"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14680"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14682"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14684"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14686"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14688"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14690"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g14692"
- transform="matrix(0.38524834,0,0,0.38524834,-6.8233912,779.69043)">
- <g
- id="g14694"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g14696"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path14698"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14700"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14702"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g14704">
- <path
- id="path14706"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14708"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14710"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient15042);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path14712"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path14714" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path14716"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path14718" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path14720"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path14722" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path14724" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14726"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient15044);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path14728" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path14730" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path14732"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path14734" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path14736" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path14738" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g14740">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14742"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14744"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14746"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14748"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14750"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14752"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14754"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14756"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14758"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14760"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14762"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14764"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14766"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14768"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14770"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14772"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14774"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14776"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14778"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14780"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14782"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14784"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14786"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14788"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14790"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- <g
- id="g14792"
- transform="matrix(0.38524834,0,0,0.38524834,20.354516,793.51394)">
- <g
- id="g14794"
- transform="translate(2350.6149,-222.65428)">
- <g
- id="g14796"
- inkscape:label="Calque 1"
- transform="matrix(2.7721412,0,0,2.7721412,162.13246,32.470516)">
- <path
- id="path14798"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14800"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14802"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g14804">
- <path
- id="path14806"
- d="M 2,11 22,1 42,11 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14808"
- d="M 2,11 2,41 22,51 22,21 2,11 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14810"
- d="M 22,51 42,41 42,11 22,21 22,51 z"
- style="fill:url(#linearGradient15046);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 22,2.4375 18.875,4 22,5.5625 25.125,4 22,2.4375 z"
- id="path14812"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 26,4.4375 -0.21875,0.125 -2,1 L 22.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 29.125,6 28.21875,5.5625 l -2,-1 L 26,4.4375 z M 26,5.5625 26.90625,6 26,6.4375 25.09375,6 26,5.5625 z"
- id="path14814" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 30,6.4375 26.875,8 30,9.5625 33.125,8 30,6.4375 z"
- id="path14816"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 34,8.4375 -0.21875,0.125 -2,1 L 30.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 37.125,10 36.21875,9.5625 l -2,-1 L 34,8.4375 z M 34,9.5625 34.90625,10 34,10.4375 33.09375,10 34,9.5625 z"
- id="path14818" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="M 14,6.4375 10.875,8 14,9.5625 17.125,8 14,6.4375 z"
- id="path14820"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 18,4.4375 -0.21875,0.125 -2,1 L 14.875,6 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 21.125,6 20.21875,5.5625 l -2,-1 L 18,4.4375 z M 18,5.5625 18.90625,6 18,6.4375 17.09375,6 18,5.5625 z"
- id="path14822" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 10,8.4375 -0.21875,0.125 -2,1 L 6.875,10 l 0.90625,0.4375 2,1 0.21875,0.125 0.21875,-0.125 2,-1 L 13.125,10 12.21875,9.5625 l -2,-1 L 10,8.4375 z M 10,9.5625 10.90625,10 10,10.4375 9.09375,10 10,9.5625 z"
- id="path14824" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14826"
- d="m 11.95092,32.021472 8,4 0,9.000001 -8,-4 0,-9.000001 z"
- style="fill:url(#radialGradient15048);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,31.1875 0,0.8125 0,9 0,0.3125 0.28125,0.125 8,4 0.71875,0.375 0,-0.8125 0,-9 0,-0.3125 -0.28125,-0.125 -8,-4 L 11.5,31.1875 z m 1,1.625 7,3.5 0,7.875 -7,-3.5 0,-7.875 z"
- id="path14828" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 3.5,15.1875 0,0.8125 0,24 0,0.3125 0.28125,0.125 2,1 L 6.5,41.8125 6.5,41 l 0,-24 0,-0.3125 -0.28125,-0.125 -2,-1 L 3.5,15.1875 z m 1,1.625 1,0.5 0,22.875 -1,-0.5 0,-22.875 z"
- id="path14830" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 7,16.6875 0,25.125 3,1.5 0,-25.125 -3,-1.5 z"
- id="path14832"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 11.5,18.1875 0,0.8125 0,10 0,0.3125 0.28125,0.125 4,2 0.71875,0.375 0,-0.8125 0,-10 0,-0.3125 -0.28125,-0.125 -4,-2 L 11.5,18.1875 z m 1,1.625 3,1.5 0,8.875 -3,-1.5 0,-8.875 z"
- id="path14834" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 17.5,21.1875 0,0.8125 0,11 0,0.3125 0.28125,0.125 2,1 0.71875,0.375 0,-0.8125 0,-11 0,-0.3125 -0.28125,-0.125 -2,-1 L 17.5,21.1875 z m 1,1.625 1,0.5 0,9.875 -1,-0.5 0,-9.875 z"
- id="path14836" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 22,0.4375 -0.21875,0.125 -20,10 L 1.5,10.6875 1.5,11 l 0,30 0,0.3125 0.28125,0.125 20,10 0.21875,0.125 0.21875,-0.125 20,-10 0.28125,-0.125 0,-0.3125 0,-30 0,-0.3125 -0.28125,-0.125 -20,-10 L 22,0.4375 z m 0,1.125 19.5,9.75 0,29.375 -19.5,9.75 -19.5,-9.75 0,-29.375 19.5,-9.75 z"
- id="path14838" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.7,-0.35,0,1,2334.3228,-284.85697)"
- id="g14840">
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14842"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14844"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14846"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="293.20496" />
- <rect
- y="293.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14848"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14850"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="293.20496" />
- <rect
- y="303.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14852"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14854"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14856"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14858"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="303.20496" />
- <rect
- y="303.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14860"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14862"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14864"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14866"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="313.20496" />
- <rect
- y="313.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14868"
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14870"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="313.20496" />
- <rect
- y="323.20496"
- x="358.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14872"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14874"
- width="9.7841024"
- height="9.7841024"
- x="368.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="378.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14876"
- style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14878"
- width="9.7841024"
- height="9.7841024"
- x="388.0549"
- y="323.20496" />
- <rect
- y="323.20496"
- x="398.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14880"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14882"
- width="9.7841024"
- height="9.7841024"
- x="358.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="368.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14884"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14886"
- width="9.7841024"
- height="9.7841024"
- x="378.0549"
- y="333.20496" />
- <rect
- y="333.20496"
- x="388.0549"
- height="9.7841024"
- width="9.7841024"
- id="rect14888"
- style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21589765px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14890"
- width="9.7841024"
- height="9.7841024"
- x="398.0549"
- y="333.20496" />
- </g>
- </g>
- </g>
- <path
- id="path14892"
- d="m 993.20143,688.65267 80.25197,41.01585"
- style="fill:none;stroke:#808080;stroke-width:1.926;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- sodipodi:nodetypes="cc" />
- <g
- id="g14894"
- transform="matrix(0.38524834,0,0,0.38524834,984.84554,467.7792)">
- <g
- id="g14896"
- inkscape:label="Calque 1"
- transform="matrix(6.5383417,0,0,6.5383417,488.78696,875.42775)">
- <path
- id="path14898"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14900"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <path
- id="path14902"
- d=""
- style="fill:#888888;fill-opacity:1;stroke:none" />
- <g
- id="g14904"
- transform="translate(-68.205597,-63.743549)">
- <path
- id="path14906"
- d="m 7.6108945,14.642423 -0.3365653,0.168282 -8.07756781,4.038784 -0.33656529,0.168283 0,0.420707 0,4.038784 0,0.420706 0.33656529,0.168283 8.07756781,4.038784 0.3365653,0.168282 0.2944947,-0.168282 8.0775678,-4.038784 0.378636,-0.168283 0,-0.420706 0,-4.038784 0,-0.420707 -0.378636,-0.168283 -8.0775678,-4.038784 -0.2944947,-0.168282 z m 0,1.514544 7.4044375,3.702218 0,3.197371 -7.4044375,3.702218 -7.40443714,-3.702218 0,-3.197371 7.40443714,-3.702218 z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- id="path14908"
- d="M -0.48215529,19.441925 7.5954125,15.403141 15.67298,19.441925 7.5954125,23.480709 -0.48215529,19.441925 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none"
- sodipodi:nodetypes="ccccc" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14910"
- d="m -0.48215529,19.441925 0,4.038784 8.07756779,4.038784 0,-4.038784 -8.07756779,-4.038784 z"
- style="fill:#888888;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path14912"
- d="m 15.67298,19.441925 0,4.038784 -8.0775675,4.038784 0,-4.038784 8.0775675,-4.038784 z"
- style="fill:url(#radialGradient15050);fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <g
- transform="matrix(0.6363961,-0.3181981,-0.6363961,-0.3181981,-338.72869,1082.8342)"
- id="g14914">
- <path
- style="fill:#00ffff;fill-opacity:1;stroke:#00ffff;stroke-width:1.0990597;stroke-linecap:butt;stroke-linejoin:miter"
- d="m 1081.1367,402.39569 0,78.90625 78.9062,0 0,-78.90625 -78.9062,0 z m 39.4687,2.46875 c 20.4177,0 37,16.5823 37,37 0,20.4177 -16.5823,36.96875 -37,36.96875 -20.4177,0 -37,-16.55105 -37,-36.96875 0,-20.41771 16.5823,-37 37,-37 z"
- id="path14916" />
- <g
- id="g14918"
- transform="translate(456.4439,-26.889185)"
- style="fill:#00ffff;stroke:#ffffff">
- <path
- id="path14920"
- d="m 660.00267,458.32498 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 668.28911,465.32717 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- id="path14922" />
- <path
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 660.00267,472.20199 11.28987,6.22099 0,-1.97176 18.4037,0 0,-8.49847 -18.4037,0 0,-1.95647 -11.28987,6.20571 z"
- id="path14924" />
- <path
- id="path14926"
- d="m 668.28911,479.13574 -11.28987,6.22099 0,-1.97176 -18.4037,0 0,-8.49847 18.4037,0 0,-1.95647 11.28987,6.20571 z"
- style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.6164543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
- </g>
- </g>
- <use
- height="1052.3622"
- width="744.09448"
- transform="matrix(0.96760451,0,0,0.96760451,41.251644,-512.62573)"
- id="use14928"
- xlink:href="#g95384"
- y="0"
- x="0" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="matrix(0.96760451,0,0,0.96760451,41.251615,-512.62579)"
- id="use14930"
- xlink:href="#use95651"
- y="0"
- x="0" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="matrix(0.96760451,0,0,0.96760451,41.251673,-512.62572)"
- id="use14932"
- xlink:href="#use95653"
- y="0"
- x="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#808080;stroke-width:1.86360633;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="M 406.29099,143.32618 295.25689,86.594941"
- id="path15722" />
- <text
- xml:space="preserve"
- style="font-size:9.67604542px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="82.531303"
- y="55.793667"
- id="text6070-0"><tspan
- sodipodi:role="line"
- x="82.531303"
- y="55.793667"
- id="tspan6076-6"
- style="font-weight:bold">C1) Nodes with disks</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
- x="72.839729"
- y="1036.6479"
- id="text16591"><tspan
- sodipodi:role="line"
- id="tspan16593"
- x="72.839729"
- y="1036.6479">TODO: image store ?</tspan><tspan
- sodipodi:role="line"
- x="74.431526"
- y="1049.1479"
- id="tspan16595">multicluster... </tspan></text>
- </g>
-</svg>