diff --git a/content/architecture/platform-guide.md b/content/architecture/platform-guide.md
index 90304c3b03935c0610861b0fa6584e72b4e46f75..176e88a68a2fd57f085a5e85d69554204361eee0 100644
--- a/content/architecture/platform-guide.md
+++ b/content/architecture/platform-guide.md
@@ -13,71 +13,77 @@ aliases = [
 ]
 
 date = "2020-11-11"
+lastmod = "2021-04-29"
 +++
 
-Apertis is a versatile open source infrastructure tailored to the automotive
-needs and fit for a wide variety of electronic devices. Security and modularity
-are two of its primary strengths.  Apertis provides a feature-rich framework
-for add-on software and resilient upgrade capabilities.  Beyond an operating
-system, it offers new APIs, tools and cloud services.
+Apertis is a versatile open source distribution and associated infrastructure,
+originally tailored to automotive use cases, but which has grown to be a fit
+for a wide variety of electronic devices. While Apertis provides components
+both for deployment on target devices and to meet the needs of development
+workflows, these are clearly separated, with special care taken to ensure that
+components intended for deliverables are free from
+[problematic licensing constraints]({{< ref "license-expectations.md" >}}).
 
 Apertis is not just a Debian-derived GNU/Linux distribution. It comprises: code
 hosting; code review tools; package build and image generation services; and an
 automated testing infrastructure with the aim of providing a clean, reliable
 environment. This allows developers go from source to deployable system images
 in the most dependable way, ready to be hosted on the cloud and made available
-for OTA updates. It aims to be the integration point for different product
-lines with different goals and different schedules, but all sharing the same
-common core.
+for [over-the-air (OTA) updates]({{< ref "ostree.md" >}}).
 
-The set of packages shipped in Apertis provides a baseline that can be selected
-from to quickly create deployable images for different products.
-
-The goal of Apertis is to maximize the sharing across products, with the aim to
-improve time to market and reduce the efforts required for long-term
-maintenance, in particular to enable quick and consistent response times for
-security issues in internet-enabled products.
+![](/images/apertis-functional-view.svg)
 
 While the typical embedded workflow only supports one product line at a time,
-Apertis focuses on a collaborative development where multiple, independent
-teams participate with different goals and schedules, providing the tools to
-maximize the commonalities that can be shared across the lines of development,
-yet providing the ability to differentiate and experiment without impacting the
-shared core.
+Apertis focuses on a collaborative development, aiming to be the integration
+point for multiple different independent product lines, each with different
+goals and different schedules, but all able to share the same common core.
+
+Apertis provides the tools to needed to maximize the commonalities that can be
+shared across different lines of development, whilst also providing the ability
+for each product to experiment and differentiate without impacting the shared
+core.
 
 # Collaborative development
 
 Apertis is designed for a collaborative development model with the aim of
-sharing efforts across and between multiple independent participants: it offers
-tools to maximize the shared commonalities to reduce costs and increase
-development speed, in contrast to approaches where all participants are working
-towards a single joint goal moving forward on a discrete path.  While other
-workflows only focus on one team at a time, Apertis' strength is its ability to
-support many independent teams concurrently.
-
-The development infrastructure of Apertis runs as a service to provide shared
-access to all those independent product teams:
-- by connecting the software packages and the infrastructure through a
-  well-defined interface their mutual independence is guaranteed, which means
-  that in no case including an updated package requires changes to the
-  infrastructure and, vice-versa, infrastructural changes do not require
-  existing packages to be updated, reducing the maintenance burden over the
-  long term
-- common infrastructure is provided such that developers do not need to go
-  through the long and subtly error-prone process of setting up the build
-  environment
-- tests get run on every supported hardware device and variant automatically,
-  saving teams the burden of setting up their own test lab
-- what is tested is what ends up deployed on production devices
-- security patches in the core can be picked up by all products immediately
-  with no effort.
-
-On top of the shared core, each user has access to private areas for components
-that are not meant to be shared with other teams, both for experimentation and
-for product development.
-
-To contribute to the shared core Apertis follows the OSS best practices with
-it's [maintainer/contributor policies]( {{< ref "contributions.md" >}} )
+sharing efforts across and between multiple independent participants. It offers
+workflows and tools to maximize the shared commonalities, this reduces costs
+and increases development speed. This contrasts with approaches where
+participants of each development team are independently working towards there
+own goals, duplicating effort to implement common features.
+
+While other workflows only focus on one team at a time, Apertis' strength is
+its ability to support many independent teams concurrently. The development
+infrastructure of Apertis runs as a service to provide shared access to all
+those independent product teams:
+
+- **By connecting the software packages and the infrastructure through a
+  well-defined interface, their mutual independence is guaranteed**: This means
+  that there should be no case where including an updated package requires
+  changes to the infrastructure and, vice-versa, infrastructural changes do not
+  require existing packages to be updated, reducing the maintenance burden over
+  the long term
+- **Common infrastructure is provided to developers**: As a result developers
+  do not need to go through the long and subtly error-prone process of setting
+  up their own full build environment.
+- **Tests get run on supported hardware devices automatically**: By having
+  existing test infrastructure, development teams are saved the burden of
+  setting up their own test lab from scratch, enabling them to be running tests
+  automatically  on their supported hardware devices and device variants
+  quickly.
+- **What is tested is what ends up deployed on production devices**: Apertis
+  is able to run component unit tests as part of the centralized compilation
+  and packaging process with additional system testing performed on
+  automatically generated product images.
+
+On top of the shared core, each user has access to
+[dedicated project areas](contributions.md#dedicated-project-areas) for
+components that are not meant to be shared with other teams, both for
+experimentation and for product development.
+
+Contributions to the shared Apertis components follow Open Source Software
+(OSS) best practices with its
+[maintainer/contributor policies]( {{< ref "contributions.md" >}} )
 centered on code review and
 [continuous integration]( {{< ref "gitlab-based_packaging_workflow.md" >}} ).
 
@@ -86,411 +92,77 @@ centered on code review and
 The Apertis approach is driven by the need to increase safety and security by
 deploying updated software in the hands of users in a timely and efficient way.
 
-Urgent patches like those fixing exploitable CVEs are merged timely in the
-shared core and are immediately available for downstream products.  A quarterly
-release cycle provides a way for product teams to get access to a stable stream
-of less urgent updates.
-
-The optional OSTree-based update mechanism provides an efficient and safe
-update facility for the base platform, such that updates can be deployed often
-with minimal costs.
-
-Updates to application bundles can be deployed without re-deploying the whole
-platform, decoupling the release and update cycle of the base software from the
-one of each application.
-
-The package-centric solution and shared infrastructure offered by Apertis
-defines clear boundaries between modules. Those boundaries enable all the
-involved teams to maximize commonalities across products and limit the
-branching only in the areas where it is required: this reduces the
-rebasing/resync efforts and makes the frequent updates needed to ensure the
-safety of deployed products more economically sustainable in the long term.
-The ability to distinguish between hardware-independent ospacks and the
-hardware-specific recipes and the separation between platform applications and
-application bundles defines additional modularity boundaries that allow fixes
-to be deployed quickly without impacting the product stability.
-
-To be able to deliver recurrent updates efficiently a close relation to all the
-upstream projects, from the Linux kernel to Debian.  Aligning with Debian
-Stable and importing more up-to-date packages from Debian testing where
-relevant enables Apertis to directly benefit from its long term quality
+Apertis is primarily
+[built upon the latest Debian Stable]({{< ref "case-for-moving-to-debian.md" >}})
+sources enabling Apertis to directly benefit from its long term quality
 management, steady flow of fixes, compatibility and maturity, as shared by
-Debian and by its many derived distributions.  By closely tracking its
-upstreams, Apertis benefits from their well-defined CVE processes to identify
-urgent issues that affect packages hosted in the repositories and quickly act
-on those.
+Debian and by its many derived distributions. By closely tracking Debian and a
+few other key upstream components, Apertis benefits from their well-defined
+[CVE](http://cve.mitre.org) processes to identify urgent issues that affect
+packages hosted in their repositories and quickly act on those. Urgent patches
+like those fixing exploitable CVEs are merged timely into Apertis and are
+immediately available for downstream products.  A quarterly release cycle
+provides a way for product teams to get access to a
+[stable stream]({{< ref "release-flow.md#apertis-release-flow" >}}) of less
+urgent updates.
+
+The optional [OSTree-based update mechanism]({{< ref "ostree.md" >}}) provides
+an efficient and safe update facility for the base platform, such that updates
+can be deployed often with minimal costs. The
+[guide]({{< ref "deployment-management.md" >}}) and demonstration
+installation of [hawkBit](https://www.eclipse.org/hawkbit/) providing an
+example of how to implement fleet manangement.
+
+![hawkBit using OSTree static deltas for OTA update](/images/ostree-hawkbit-static-deltas.svg)
+
+Applications can be deployed and updated in
+[application bundles]({{< ref "canterbury-legacy-application-framework.md" >}})
+without re-deploying the whole platform, decoupling the release and update
+cycle of the base software from that of each application.
+
+A goal of Apertis is to reduce the efforts required for long-term maintenance,
+in particular to enable quick and consistent response times for security issues
+in internet-enabled products.  The package-centric solution and shared
+infrastructure offered by Apertis enable all the involved teams to maximize
+commonalities across products to ensure the safety of deployed products in a
+timely manner as part of an economically sustainable long term strategy.
 
 # Package-centric approach
 
-With Apertis, developer teams can focus on their differentiating components and
-rely on the shared core and shared operations for everything else.
-The key enabler for that is the package-centric approach, which is
-at the center of all activities, tools and processes.
-Development, customization and variant handling rely on packages, and
-deployable images are the result of combining binary packages belonging to a
-specific set in a post-process step.
-
-This enables infrastructure resources like compilation to be shared across all
-users, with changes getting processed once and resulting binaries being shared
-with all. These resources are immediately available to every team, since they
-are provided as a service they do not simply reside on a dedicated developer
-machine. This ensures reproducibility, traceability and consistency during the
-whole product life cycle.
-
-# From sources to deployment
-
-Apertis is built on top of Debian `deb` packages for their high quality and
-modularity.  All package source code is stored in
-[GitLab](https://gitlab.apertis.org/), where they are grouped into the
-following categories:
-
-- `target`: packages intended for use in product images
-- `development`: additional packages needed to build `target` and development
-  tools
-- `hmi`: packages for the current reference HMI on top of `target`
-- `sdk`: packages to build the SDK virtual machine recommended for development
-
-In case of common interests new packages can easily be introduce in the
-relevant GitLab groups. It is also possible to create additional projects in
-GitLab for e.g.  product specific software packages or product specific
-modifications that build on top of the common baselines but aren't suitable for
-more general inclusion.
-
-Automation implemented via GitLab CI/CD pipelines is provided to perform sanity
-check builds of the packages. CI/CD pipelines are also implemented to upload
-changes to the
-[Open Build Service -(OBS) instance](https://build.collabora.com) provided by
-Collabora.
-
-OBS takes care of automatically building the package sources for all the
-configured architectures (`x86_64`, `armv7l`, `aarch64`) and publishes the
-results as signed APT repositories. Each package is built in a closed,
-well-defined environment where OBS automatically installs all the build tools
-and resolves dependencies from a clean state using the packages it has built
-already: if any dependency is missing the build fails and the developer is
-notified. Build failures are reported back into the relevant GitLab pipeline.
-
-Most of the package sources get automatically updated from the latest Debian
-Stable release or have been manually picked from a later Debian release or
-straight from the project upstream when more up-to-date versions have been
-deemed beneficial (notably Apertis includes the
-[latest Linux LTS kernel]({{< ref "release-flow.md#linux-kernel-release-flow" >}})
-available when an Apertis release is made). This allows Apertis to share
-bug fixes and security fixes with the efforts done by the wider Debian
-community.
-
-After OBS has finished building a package, the results get published in a
-Debian package repository. The open-source packages from Apertis can be found
-in the public
-[Apertis Debian repositories](https://repositories.apertis.org/apertis/).
-
-The packages in these repositories can then be used to build images suitable
-for deployment onto a variety of targets, e.g. hardware boards (reference or
-product specific), virtual machines (e.g. for development), container images
-etc etc.
-
-The overall strategy for building these deployments is to separate it in
-various stages starting with early common stages (e.g. a common rootfs) and
-then further specializing in hardware or deployment specific additions (e.g.
-kernel and bootloader for a specific board). 
-
-Each stage is represented by a [Debos](https://github.com/go-debos/debos)
-recipes, and in particular the main stages in the
-[current image building pipeline](https://gitlab.apertis.org/infrastructure/apertis-image-recipes)
-are:
-
-- `ospack`: prepares the set of user space binary packages that are not
-  specific to a particular SoC/platform or deployment method, producing
-  tarballs
-- deployment method: applies the transformations needed to make updates
-  available through OSTree or with the
-  [`ade sysroot`]( {{< ref "ade.md" >}} ) tool
-- platform: contains the hardware-specific packages for a particular
-  SoC/platform, like bootloader, kernel, codecs, GL stack, etc., producing the
-  images meant to be booted on devices
-
-The reason for this split is that it allows the creation of just one SoC,
-platform or even board specific recipe which can be combined with a
-selection of ospacks. Typically Apertis has a `target` ospack with only the
-software meant to go into the final product and a `minimal` ospack which
-contains an even smaller subset, targeting headless systems.
-
-For instance the `target` and `minimal` ospacks for `arm64` could be combined
-with the U-Boot and Raspberry Pi recipes to generate four possible combinations
-of flashable images, targeting either the Renesas R-Car or Raspberry Pi
-platforms
-
-Generating images does not involve rebuilding all the packages from source and
-can thus be done quite quickly and flexibly.
-
-The whole pipeline is controlled through YAML files: configuring partitions,
-bootloaders; determining which packages gets installed, which overlays is to be
-applied; and arbitrary customization shell scripts to be run over the rootfs in
-a QEMU-based virtualized environment.
-
-This process is usually automatically run by GitLab CI/CD pipeline, but during
-development can be run on developers machines as well, fetching packages from
-the same OBS binary repositories.
-
-Once images are generated, the GitLab CI/CD pipeline will schedule a batch of tests on
-the [LAVA instance hosted by Collabora](https://lava.collabora.co.uk) which
-will take care of deploying the freshly generated images on actual target
-devices running in the Collabora device farm, and of controlling them over
-serial connections to run the defined test cases and gather the results.
-
-![](/images/apertis-functional-view.svg)
-
-# The workflow
-
-The key points in the workflow for Apertis components are thus:
-
-- the [VirtualBox-based Apertis SDK]( {{< ref "virtualbox.md" >}} ) is used for
-  development
-- sources are stored on the
-  [GitLab code hosting service](https://gitlab.apertis.org) with
-  [Debian-compatible](https://www.debian.org/doc/debian-policy/) packaging
-  instructions
-- GitLab is used for code review, with every branch automatically build tested
-  to provide quick feedback to the developer
-- the implemented GitLab CI/CD pipelines push new releases on release branches
-  to OBS
-- [OBS](https://build.collabora.co.uk) builds source packages and generates
-  binary packages in controlled environments
-- every night GitLab CI/CD pipelines generate ospacks from the repositories
-  built by OBS
-- the generated ospacks are combined with other recipes by GitLab CI/CD
-  pipelines to produce deployable images
-- on success, the pipeline triggers on-device tests on
-  [LAVA](https://lava.collabora.co.uk) to check the produced images
-- [Phabricator](https://phabricator.apertis.org) is used for project management
-
-## Software components packaging (deb)
-
-For all the software components meant to be included in the images Apertis uses
-the [`deb` packaging format](https://wiki.debian.org/Packaging) used by Debian.
-
-To package a component from scratch, Debian provides [a short guide to get
-started](https://wiki.debian.org/Packaging/Intro).
-
-The VirtualBox-based
-[Apertis SDK virtual machine images]( {{< ref "virtualbox.md" >}} ) ship with
-all the needed tools installed, providing a reliable, self-contained
-environment ready to be used.
-
-Once the component has been packaged, its sources can be uploaded to GitLab in
-a personal project, such that the developer is free to experiment and iterate
-until the component is ready to be submitted to the appropriate GitLab project.
-
-## Open Build Service (OBS)
-
-Open Build Service is the backbone of the package building infrastructure in
-Apertis.  It stores source packages and builds them in controlled environments
-for all the configured CPU architectures.
-
-The source packages, as uploaded by the GitLab CI/CD pipelines, are grouped in
-projects that can be stacked such that each stacked project will automatically
-share the packages in the underlying projects with all the other projects
-stacked on top of them.
+With Apertis, developers can focus on developing the components that provide
+their unique experience and rely on the shared core components and infrastructure
+for everything else.
 
-This provides a lot of flexibility to handle different groups working on
-different products with different schedules while still sharing a common core.
+Apertis builds on the proven practice, used by Debian and many other major
+distributions, separating the compilation of individual components into binary
+packages from the composition of images destined for target devices. This
+package-centric approach is the key enabler at the center of all activities,
+tools and processes in Apertis. The selection and selective customization of
+these binary packages enables deployable images to be created quickly and
+efficiently for a variety of different products and product variants via
+automated processes.
 
-## Code hosting and review process
+![Basic workflow from source to image](/images/workflow_basic-source-to-image.svg)
 
-Apertis heavily [relies on GitLab](https://gitlab.apertis.org) for the
-[development of components]( {{< ref "development_process.md" >}} ),
-with source code hosted on Apertis GitLab server being automatically submitted
-to OBS when releases are made.
-
-Each merge request should be
-[reviewed on GitLab]( {{< ref "contributions.md#review" >}} ) before it can
-land in one of the git repository release branches and thus on OBS.
-
-## GitLab CI/CD automation
-
-Automated tasks in Apertis are orchestrated by the CI/CD functionality provided
-by the [Apertis GitLab instance](https://gitlab.apertis.org/):
-
-- build-testing commits pushed to git branches
-- submitting release commits to OBS
-- running the pipeline to generate ospacks and deployable images
-- triggering tests on the devices attached to LAVA
-
-## Image creation
-
-Image creation is the point where a set of standard packages are combined to
-build a solution for a specific use case. This goal is accomplish thanks to
-[Debos](https://github.com/go-debos/debos), a flexible tool to configure the
-build of Debian-based operating systems. Debos uses tools like `debootstrap`
-already present in the environment and relies on virtualisation to securely do
-privileged operations without requiring root access.
-
-Ospacks and how they should be processed to generate images are defined through
-YAML files.
-
-This is an example configuration for an ARMv7 image, `image-armhf.yaml`:
-
-```
-architecture: armhf
-actions:
-  - action: unpack
-    file: ospack-armhf.tar.gz
-    compression: gz
-
-  - action: apt
-    description: Install hardware support packages
-    recommends: false
-    packages:
-      - linux-image-4.9.0-0.bpo.2-armmp-unsigned
-      - u-boot-common
-
-  - action: image-partition
-    imagename: "apertis-armhf.img"
-    imagesize: 4G
-    partitiontype: gpt
-    mountpoints:
-      - mountpoint: /
-        partition: root
-        flags: [ boot ]
-    partitions:
-      - name: root
-        fs: ext4
-        start: 0%
-        end: 100%
-
-  - action: filesystem-deploy
-    description: Deploy the filesystem onto the image
-
-  - action: run
-    chroot: true
-    command: update-u-boot
-
-  - action: run
-    description: Create bmap file
-    postprocess: true
-    command: bmaptool create apertis-armhf.img > apertis-armhf.img.bmap
-
-  - action: run
-    description: Compress image file
-    postprocess: true
-    command: gzip -f apertis-armhf.img
-```
-
-And this is the `ospack-armhf.yaml` configuration for the ARMv7 ospack:
-
-```
-architecture: armhf
-
-actions:
-  - action: debootstrap
-    suite: "17.06"
-    keyring-package: apertis-archive-keyring
-    components:
-      - target
-    mirror: https://repositories.apertis.org/apertis
-    variant: minbase
-
-  - action: apt
-    description: Install basic packages
-    packages: [ procps, sudo, openssh-server, adduser ]
-
-  - action: run
-    description: Setup user account
-    chroot: true
-    script: setup-user.sh
-
-  - action: run
-    description: Configure the hostname
-    chroot: true
-    command: echo apertis > /etc/hostname
-
-  - action: overlay
-    description: Overlay systemd-networkd configuration
-    source: networkd
-
-  - action: run
-    description: Configure network services
-    chroot: true
-    script: setup-networking.sh
-
-  - action: pack
-    compression: gz
-    file: ospack-armhf.tar.gz
-```
-
-Additionally at this stage customizations can be applied by using overlays.
-This process allows the default content of packages to be combined with
-custom modifications to provide the desired solution. A common case is to apply
-overlays to change some default system settings found in `/etc` such as default
-hostname or default package configuration.
-
-As an example of this mechanism, the following section is used to customize the
-behaviour of `dpkg`
-
-```
-  - action: overlay
-    source: overlays/dpkg-exclusions
-```
-
-Thanks to this action, the contents of the `overlays/dpkg-exclusions`
-directory will be applied to the image, which in this case consist of
-the file:
-
-    etc/dpkg/dpkg.cfg.d/apertis-exclusions
-
-This file will be added to the rootfs, which in this instance will change
-the default behaviour of dpkg to suit the needs of the image
-
-Collections of images are built every night and published on the
-[deployable image hosting website](https://images.apertis.org), such that
-developers can always download the latest image to deploy it to a target device
-and start using it immediately.
-
-## Automated testing with LAVA
-
-To ensure the continued quality of the generated images, a set of automated
-on-device tests is run for every image so issues can be found early if they arise
-and handled in a timely fashion by developers.
+The Apertis infrastructure enables the resources for processes like compilation
+to be shared across all users, with changes to common components getting
+processed once and resulting binaries being shared with all. These resources
+are available to every team and since they are provided as a service they do
+not need to be duplicated for each developer. This ensures reproducibility,
+traceability and consistency during the whole product life cycle.
 
 # Key technologies
 
-Apertis makes heavy use of some technologies for its purposes:
-
-- Debian packages
-- systemd for application life cycle tracking
-- AppArmor for policy enforcement
-- OSTree/Flatpak for safe and efficient deployments
-- D-Bus for privilege separation
-- Wayland for graphics
-- GStreamer for multimedia playback
-
-## OTA update strategies
-
-Apertis currently uses [OSTree]({{< ref "guides/ostree.md" >}}) for OTA
-updates. This solution:
-
-* works in containers
-* works on flash-specific file systems like UBIFS
-* results in small downloads
-
-## Application framework
-
-Apertis ships an
-[application framework]({{< ref "application-framework.md" >}}) that provides
-flexibility and modularity post-deployment:
-
-- deploying applications can be done independently from full system updates
-- network access, inter-process communications and file access policies are
-  enforced through AppArmor
-- failed application deployments are safely rolled back
-- works both on targets, virtual machines and containers
-- Flatpak-based application bundle file format
-- the `ade` command-line tool simplifies the generation of application bundles
-
-## Domain separation
-
-Apertis is designed to work in setups where tasks are split over different
-domains, which can be connected SoCs, virtual machines or containers, for
-instance on setups where a privileged domain has no direct Internet access but
-relies on a separated, more constrained domain to access network services and
-validate any communication.
+Apertis makes heavy use of many open source technologies to form a strong platform:
+
+- **Debian packages** provide a wide ecosystem of pre-packaged components, from
+  a project with a long history of providing a reliable, robust operating
+  system.
+- **systemd** for system and service management, as well providing many basic
+  services.
+- **AppArmor** adding Mandatory Access Control, providing policy enforcement of
+  applicaiton profiles.
+- **OSTree** and **Flatpak** for safe, efficient and modular deployments
+- **D-Bus** providing inter-process communications, enabling privilege separation between the various system services and applications.
+- **Wayland**-based compositor, providing a modern efficient display server.
+- **GStreamer** enabling multimedia playback
diff --git a/content/architecture/workflow-guide.md b/content/architecture/workflow-guide.md
new file mode 100644
index 0000000000000000000000000000000000000000..a95aadc35699c55c92805d88048990a75e5ac62b
--- /dev/null
+++ b/content/architecture/workflow-guide.md
@@ -0,0 +1,362 @@
++++
+title = "The Apertis Workflow: From Sources to Deployment"
+weight = 100
+
+date = "2021-04-29"
++++
+
+Apertis is built on top of Debian `deb` packages for their high quality and
+modularity.  All package source code is stored in
+[GitLab](https://gitlab.apertis.org/), where they are grouped into the
+following categories:
+
+- `target`: packages intended for use in product images
+- `development`: additional packages needed to build `target` and development
+  tools
+- `hmi`: packages for the current reference HMI on top of `target`
+- `sdk`: packages to build the SDK virtual machine recommended for development
+
+In case of common interests new packages can easily be introduce in the
+relevant GitLab groups. It is also possible to create additional projects in
+GitLab for e.g.  product specific software packages or product specific
+modifications that build on top of the common baselines but aren't suitable for
+more general inclusion.
+
+Automation implemented via GitLab CI/CD pipelines is provided to perform sanity
+check builds of the packages. CI/CD pipelines are also implemented to upload
+changes to the
+[Open Build Service -(OBS) instance](https://build.collabora.com) provided by
+Collabora.
+
+OBS takes care of automatically building the package sources for all the
+configured architectures (`x86_64`, `armv7l`, `aarch64`) and publishes the
+results as signed APT repositories. Each package is built in a closed,
+well-defined environment where OBS automatically installs all the build tools
+and resolves dependencies from a clean state using the packages it has built
+already: if any dependency is missing the build fails and the developer is
+notified. Build failures are reported back into the relevant GitLab pipeline.
+
+Most of the package sources get automatically updated from the latest Debian
+Stable release or have been manually picked from a later Debian release or
+straight from the project upstream when more up-to-date versions have been
+deemed beneficial (notably Apertis includes the
+[latest Linux LTS kernel]({{< ref "release-flow.md#linux-kernel-release-flow" >}})
+available when an Apertis release is made). This allows Apertis to share
+bug fixes and security fixes with the efforts done by the wider Debian
+community.
+
+After OBS has finished building a package, the results get published in a
+Debian package repository. The open-source packages from Apertis can be found
+in the public
+[Apertis Debian repositories](https://repositories.apertis.org/apertis/).
+
+The packages in these repositories can then be used to build images suitable
+for deployment onto a variety of targets, e.g. hardware boards (reference or
+product specific), virtual machines (e.g. for development), container images
+etc etc.
+
+The overall strategy for building these deployments is to separate it in
+various stages starting with early common stages (e.g. a common rootfs) and
+then further specializing in hardware or deployment specific additions (e.g.
+kernel and bootloader for a specific board). 
+
+Each stage is represented by a [Debos](https://github.com/go-debos/debos)
+recipes, and in particular the main stages in the
+[current image building pipeline](https://gitlab.apertis.org/infrastructure/apertis-image-recipes)
+are:
+
+- `ospack`: prepares the set of user space binary packages that are not
+  specific to a particular SoC/platform or deployment method, producing
+  tarballs
+- deployment method: applies the transformations needed to make updates
+  available through OSTree or with the
+  [`ade sysroot`]( {{< ref "ade.md" >}} ) tool
+- platform: contains the hardware-specific packages for a particular
+  SoC/platform, like bootloader, kernel, codecs, GL stack, etc., producing the
+  images meant to be booted on devices
+
+The reason for this split is that it allows the creation of just one SoC,
+platform or even board specific recipe which can be combined with a
+selection of ospacks. Typically Apertis has a `target` ospack with only the
+software meant to go into the final product and a `minimal` ospack which
+contains an even smaller subset, targeting headless systems.
+
+For instance the `target` and `minimal` ospacks for `arm64` could be combined
+with the U-Boot and Raspberry Pi recipes to generate four possible combinations
+of flashable images, targeting either the Renesas R-Car or Raspberry Pi
+platforms
+
+Generating images does not involve rebuilding all the packages from source and
+can thus be done quite quickly and flexibly.
+
+The whole pipeline is controlled through YAML files: configuring partitions,
+bootloaders; determining which packages gets installed, which overlays is to be
+applied; and arbitrary customization shell scripts to be run over the rootfs in
+a QEMU-based virtualized environment.
+
+This process is usually automatically run by GitLab CI/CD pipeline, but during
+development can be run on developers machines as well, fetching packages from
+the same OBS binary repositories.
+
+Once images are generated, the GitLab CI/CD pipeline will schedule a batch of tests on
+the [LAVA instance hosted by Collabora](https://lava.collabora.co.uk) which
+will take care of deploying the freshly generated images on actual target
+devices running in the Collabora device farm, and of controlling them over
+serial connections to run the defined test cases and gather the results.
+
+![](/images/apertis-functional-view.svg)
+
+# The workflow
+
+The key points in the workflow for Apertis components are thus:
+
+- the [VirtualBox-based Apertis SDK]( {{< ref "virtualbox.md" >}} ) is used for
+  development
+- sources are stored on the
+  [GitLab code hosting service](https://gitlab.apertis.org) with
+  [Debian-compatible](https://www.debian.org/doc/debian-policy/) packaging
+  instructions
+- GitLab is used for code review, with every branch automatically build tested
+  to provide quick feedback to the developer
+- the implemented GitLab CI/CD pipelines push new releases on release branches
+  to OBS
+- [OBS](https://build.collabora.co.uk) builds source packages and generates
+  binary packages in controlled environments
+- every night GitLab CI/CD pipelines generate ospacks from the repositories
+  built by OBS
+- the generated ospacks are combined with other recipes by GitLab CI/CD
+  pipelines to produce deployable images
+- on success, the pipeline triggers on-device tests on
+  [LAVA](https://lava.collabora.co.uk) to check the produced images
+- [Phabricator](https://phabricator.apertis.org) is used for project management
+
+## Software components packaging (deb)
+
+For all the software components meant to be included in the images Apertis uses
+the [`deb` packaging format](https://wiki.debian.org/Packaging) used by Debian.
+
+To package a component from scratch, Debian provides [a short guide to get
+started](https://wiki.debian.org/Packaging/Intro).
+
+The VirtualBox-based
+[Apertis SDK virtual machine images]( {{< ref "virtualbox.md" >}} ) ship with
+all the needed tools installed, providing a reliable, self-contained
+environment ready to be used.
+
+Once the component has been packaged, its sources can be uploaded to GitLab in
+a personal project, such that the developer is free to experiment and iterate
+until the component is ready to be submitted to the appropriate GitLab project.
+
+## Open Build Service (OBS)
+
+Open Build Service is the backbone of the package building infrastructure in
+Apertis.  It stores source packages and builds them in controlled environments
+for all the configured CPU architectures.
+
+The source packages, as uploaded by the GitLab CI/CD pipelines, are grouped in
+projects that can be stacked such that each stacked project will automatically
+share the packages in the underlying projects with all the other projects
+stacked on top of them.
+
+This provides a lot of flexibility to handle different groups working on
+different products with different schedules while still sharing a common core.
+
+## Code hosting and review process
+
+Apertis heavily [relies on GitLab](https://gitlab.apertis.org) for the
+[development of components]( {{< ref "development_process.md" >}} ),
+with source code hosted on Apertis GitLab server being automatically submitted
+to OBS when releases are made.
+
+Each merge request should be
+[reviewed on GitLab]( {{< ref "contributions.md#review" >}} ) before it can
+land in one of the git repository release branches and thus on OBS.
+
+## GitLab CI/CD automation
+
+Automated tasks in Apertis are orchestrated by the CI/CD functionality provided
+by the [Apertis GitLab instance](https://gitlab.apertis.org/):
+
+- build-testing commits pushed to git branches
+- submitting release commits to OBS
+- running the pipeline to generate ospacks and deployable images
+- triggering tests on the devices attached to LAVA
+
+## Image creation
+
+Image creation is the point where a set of standard packages are combined to
+build a solution for a specific use case. This goal is accomplish thanks to
+[Debos](https://github.com/go-debos/debos), a flexible tool to configure the
+build of Debian-based operating systems. Debos uses tools like `debootstrap`
+already present in the environment and relies on virtualisation to securely do
+privileged operations without requiring root access.
+
+Ospacks and how they should be processed to generate images are defined through
+YAML files.
+
+This is an example configuration for an ARMv7 image, `image-armhf.yaml`:
+
+```
+architecture: armhf
+actions:
+  - action: unpack
+    file: ospack-armhf.tar.gz
+    compression: gz
+
+  - action: apt
+    description: Install hardware support packages
+    recommends: false
+    packages:
+      - linux-image-4.9.0-0.bpo.2-armmp-unsigned
+      - u-boot-common
+
+  - action: image-partition
+    imagename: "apertis-armhf.img"
+    imagesize: 4G
+    partitiontype: gpt
+    mountpoints:
+      - mountpoint: /
+        partition: root
+        flags: [ boot ]
+    partitions:
+      - name: root
+        fs: ext4
+        start: 0%
+        end: 100%
+
+  - action: filesystem-deploy
+    description: Deploy the filesystem onto the image
+
+  - action: run
+    chroot: true
+    command: update-u-boot
+
+  - action: run
+    description: Create bmap file
+    postprocess: true
+    command: bmaptool create apertis-armhf.img > apertis-armhf.img.bmap
+
+  - action: run
+    description: Compress image file
+    postprocess: true
+    command: gzip -f apertis-armhf.img
+```
+
+And this is the `ospack-armhf.yaml` configuration for the ARMv7 ospack:
+
+```
+architecture: armhf
+
+actions:
+  - action: debootstrap
+    suite: "17.06"
+    keyring-package: apertis-archive-keyring
+    components:
+      - target
+    mirror: https://repositories.apertis.org/apertis
+    variant: minbase
+
+  - action: apt
+    description: Install basic packages
+    packages: [ procps, sudo, openssh-server, adduser ]
+
+  - action: run
+    description: Setup user account
+    chroot: true
+    script: setup-user.sh
+
+  - action: run
+    description: Configure the hostname
+    chroot: true
+    command: echo apertis > /etc/hostname
+
+  - action: overlay
+    description: Overlay systemd-networkd configuration
+    source: networkd
+
+  - action: run
+    description: Configure network services
+    chroot: true
+    script: setup-networking.sh
+
+  - action: pack
+    compression: gz
+    file: ospack-armhf.tar.gz
+```
+
+Additionally at this stage customizations can be applied by using overlays.
+This process allows the default content of packages to be combined with
+custom modifications to provide the desired solution. A common case is to apply
+overlays to change some default system settings found in `/etc` such as default
+hostname or default package configuration.
+
+As an example of this mechanism, the following section is used to customize the
+behaviour of `dpkg`
+
+```
+  - action: overlay
+    source: overlays/dpkg-exclusions
+```
+
+Thanks to this action, the contents of the `overlays/dpkg-exclusions`
+directory will be applied to the image, which in this case consist of
+the file:
+
+    etc/dpkg/dpkg.cfg.d/apertis-exclusions
+
+This file will be added to the rootfs, which in this instance will change
+the default behaviour of dpkg to suit the needs of the image
+
+Collections of images are built every night and published on the
+[deployable image hosting website](https://images.apertis.org), such that
+developers can always download the latest image to deploy it to a target device
+and start using it immediately.
+
+## Automated testing with LAVA
+
+To ensure the continued quality of the generated images, a set of automated
+on-device tests is run for every image so issues can be found early if they arise
+and handled in a timely fashion by developers.
+
+# Key technologies
+
+Apertis makes heavy use of some technologies for its purposes:
+
+- Debian packages
+- systemd for application life cycle tracking
+- AppArmor for policy enforcement
+- OSTree/Flatpak for safe and efficient deployments
+- D-Bus for privilege separation
+- Wayland for graphics
+- GStreamer for multimedia playback
+
+## OTA update strategies
+
+Apertis currently uses [OSTree]({{< ref "guides/ostree.md" >}}) for OTA
+updates. This solution:
+
+* works in containers
+* works on flash-specific file systems like UBIFS
+* results in small downloads
+
+## Application framework
+
+Apertis ships an
+[application framework]({{< ref "application-framework.md" >}}) that provides
+flexibility and modularity post-deployment:
+
+- deploying applications can be done independently from full system updates
+- network access, inter-process communications and file access policies are
+  enforced through AppArmor
+- failed application deployments are safely rolled back
+- works both on targets, virtual machines and containers
+- Flatpak-based application bundle file format
+- the `ade` command-line tool simplifies the generation of application bundles
+
+## Domain separation
+
+Apertis is designed to work in setups where tasks are split over different
+domains, which can be connected SoCs, virtual machines or containers, for
+instance on setups where a privileged domain has no direct Internet access but
+relies on a separated, more constrained domain to access network services and
+validate any communication.
diff --git a/dictionary.aspell b/dictionary.aspell
index a69cbcf4308fa5b2ca13bd95c3a8c1ba6ac62832..789943d6232e143343547cde9b043d3a757a9101 100644
--- a/dictionary.aspell
+++ b/dictionary.aspell
@@ -1,10 +1,12 @@
-personal_ws-1.1 en 72 utf-8
+personal_ws-1.1 en 83 utf-8
 ARMv
 ATF
 Apertis
 AppArmor
 CPUs
 Collabora
+CVE
+CVEs
 DAC
 Debos
 Flatpak
@@ -22,6 +24,8 @@ LFS
 LXC
 MAC
 MX
+OSTree
+OTA
 OpenSSL
 PDF
 PDFs
@@ -61,6 +65,7 @@ cryptographic
 decrypt
 deduplicate
 deduplicated
+deliverables
 deployable
 devkit
 dockerized
diff --git a/static/images/workflow_basic-source-to-image.svg b/static/images/workflow_basic-source-to-image.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2471681e6056a62b5e0cbd2bada0a9ff35df2fd0
--- /dev/null
+++ b/static/images/workflow_basic-source-to-image.svg
@@ -0,0 +1,3140 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="185.51mm" height="33.02mm" viewBox="1250 19749 18551 3302" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Bitstream Vera Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1905" descent="487"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1292" d="M 217,1008 L 217,1190 1499,725 1499,559 217,94 217,276 1247,641 217,1008 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1292" d="M 1499,1008 L 467,641 1499,276 1499,94 217,559 217,725 1499,1190 1499,1008 Z"/>
+   <glyph unicode="/" horiz-adv-x="700" d="M 520,1493 L 690,1493 170,-190 0,-190 520,1493 Z"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_2" horiz-adv-x="2048">
+   <font-face font-family="Bitstream Vera Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1905" descent="487"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="&gt;" horiz-adv-x="1292" d="M 217,973 L 217,1223 1499,760 1499,524 217,61 217,311 1182,641 217,973 Z"/>
+   <glyph unicode="&lt;" horiz-adv-x="1292" d="M 1499,973 L 535,641 1499,311 1499,61 217,524 217,760 1499,1223 1499,973 Z"/>
+   <glyph unicode="/" horiz-adv-x="763" d="M 526,1493 L 748,1493 221,-190 0,-190 526,1493 Z"/>
+  </font>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_3" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1863" descent="445"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="1" horiz-adv-x="975" d="M 129,0 L 129,209 478,209 478,1170 140,959 140,1180 493,1409 759,1409 759,209 1082,209 1082,0 129,0 Z"/>
+   <glyph unicode="0" horiz-adv-x="995" d="M 1055,705 C 1055,467 1014,287 933,164 851,41 728,-20 565,-20 242,-20 81,222 81,705 81,874 99,1011 134,1118 169,1225 222,1303 293,1354 364,1405 457,1430 573,1430 740,1430 862,1370 939,1249 1016,1128 1055,947 1055,705 Z M 773,705 C 773,835 767,936 754,1008 741,1080 721,1132 693,1163 665,1194 624,1210 571,1210 514,1210 472,1194 443,1163 414,1131 393,1079 381,1008 368,936 362,835 362,705 362,576 369,476 382,404 395,331 415,279 444,248 472,217 513,201 567,201 620,201 662,218 691,251 720,284 741,336 754,409 767,482 773,580 773,705 Z"/>
+   <glyph unicode=" " horiz-adv-x="572"/>
+  </font>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <g class="Page">
+  <g class="Group">
+   <g class="Graphic">
+    <g id="id3">
+     <rect class="BoundingBox" stroke="none" fill="none" x="1250" y="20017" width="2734" height="2734"/>
+     <defs>
+      <clipPath id="clip_path_1" clipPathUnits="userSpaceOnUse">
+       <path d="M 2910,20376 L 1851,20376 C 1811,20376 1778,20408 1778,20448 L 1778,22368 C 1778,22407 1811,22440 1851,22440 L 3437,22440 C 3478,22440 3511,22407 3511,22368 L 3511,20982 2910,20376 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_1)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2675,19778 L 2892,20090 1062,21359 846,21048 2675,19778 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2882,20076 L 2902,20104 1072,21374 1053,21346 2882,20076 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2892,20090 L 2912,20119 1082,21388 1063,21360 2892,20090 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2902,20105 L 2922,20133 1092,21403 1073,21374 2902,20105 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 2912,20119 L 2932,20147 1102,21417 1083,21389 2912,20119 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 2922,20134 L 2942,20162 1112,21431 1093,21403 2922,20134 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2932,20148 L 2952,20176 1122,21446 1103,21418 2932,20148 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2942,20163 L 2962,20191 1132,21460 1113,21432 2942,20163 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 2952,20177 L 2972,20205 1143,21475 1123,21447 2952,20177 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 2962,20191 L 2982,20220 1153,21489 1133,21461 2962,20191 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 2972,20206 L 2992,20234 1163,21504 1143,21475 2972,20206 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 2982,20220 L 3002,20248 1173,21518 1153,21490 2982,20220 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 2992,20235 L 3012,20263 1183,21532 1163,21504 2992,20235 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 3002,20249 L 3022,20277 1193,21547 1173,21519 3002,20249 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 3012,20263 L 3032,20292 1203,21561 1183,21533 3012,20263 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 3022,20278 L 3042,20306 1213,21576 1193,21547 3022,20278 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 3032,20292 L 3052,20321 1223,21590 1203,21562 3032,20292 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 3042,20307 L 3062,20335 1233,21604 1213,21576 3042,20307 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 3052,20321 L 3072,20349 1243,21619 1223,21591 3052,20321 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 3062,20336 L 3082,20364 1253,21633 1233,21605 3062,20336 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 3072,20350 L 3092,20378 1263,21648 1243,21620 3072,20350 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 3082,20364 L 3102,20393 1273,21662 1253,21634 3082,20364 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 3092,20379 L 3112,20407 1283,21677 1263,21648 3092,20379 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 3102,20393 L 3122,20421 1293,21691 1273,21663 3102,20393 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 3112,20408 L 3132,20436 1303,21705 1283,21677 3112,20408 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 3122,20422 L 3142,20450 1313,21720 1293,21692 3122,20422 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 3132,20437 L 3152,20465 1323,21734 1303,21706 3132,20437 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 3142,20451 L 3162,20479 1333,21749 1313,21721 3142,20451 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 3152,20465 L 3172,20494 1343,21763 1323,21735 3152,20465 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 3162,20480 L 3182,20508 1353,21778 1333,21749 3162,20480 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 3172,20494 L 3192,20522 1363,21792 1343,21764 3172,20494 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 3182,20509 L 3202,20537 1373,21806 1353,21778 3182,20509 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 3192,20523 L 3212,20551 1383,21821 1363,21793 3192,20523 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 3203,20538 L 3222,20566 1393,21835 1373,21807 3203,20538 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 3213,20552 L 3232,20580 1403,21850 1383,21822 3213,20552 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 3223,20566 L 3242,20595 1413,21864 1393,21836 3223,20566 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 3233,20581 L 3252,20609 1423,21879 1403,21850 3233,20581 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 3243,20595 L 3262,20623 1433,21893 1413,21865 3243,20595 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 3253,20610 L 3272,20638 1443,21907 1423,21879 3253,20610 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 3263,20624 L 3282,20652 1453,21922 1433,21894 3263,20624 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 3273,20639 L 3292,20667 1463,21936 1443,21908 3273,20639 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 3283,20653 L 3302,20681 1473,21951 1453,21923 3283,20653 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 3293,20667 L 3312,20696 1483,21965 1463,21937 3293,20667 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 3303,20682 L 3322,20710 1493,21980 1473,21951 3303,20682 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 3313,20696 L 3332,20724 1503,21994 1483,21966 3313,20696 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 3323,20711 L 3342,20739 1513,22008 1493,21980 3323,20711 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 3333,20725 L 3352,20753 1523,22023 1503,21995 3333,20725 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 3343,20740 L 3362,20768 1533,22037 1513,22009 3343,20740 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 3353,20754 L 3372,20782 1543,22052 1523,22024 3353,20754 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 3363,20768 L 3382,20797 1553,22066 1533,22038 3363,20768 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 3373,20783 L 3392,20811 1563,22081 1544,22052 3373,20783 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 3383,20797 L 3402,20825 1573,22095 1554,22067 3383,20797 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 3393,20812 L 3412,20840 1583,22109 1564,22081 3393,20812 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 3403,20826 L 3422,20854 1593,22124 1574,22096 3403,20826 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 3413,20841 L 3432,20869 1603,22138 1584,22110 3413,20841 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 3423,20855 L 3442,20883 1613,22153 1594,22125 3423,20855 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 3433,20869 L 3452,20898 1623,22167 1604,22139 3433,20869 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 3443,20884 L 3462,20912 1633,22182 1614,22153 3443,20884 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 3453,20898 L 3472,20926 1643,22196 1624,22168 3453,20898 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 3463,20913 L 3482,20941 1653,22210 1634,22182 3463,20913 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 3473,20927 L 3492,20955 1663,22225 1644,22197 3473,20927 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 3483,20942 L 3502,20970 1673,22239 1654,22211 3483,20942 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 3493,20956 L 3512,20984 1683,22254 1664,22226 3493,20956 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 3503,20970 L 3522,20999 1693,22268 1674,22240 3503,20970 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 3513,20985 L 3532,21013 1703,22283 1684,22254 3513,20985 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 3523,20999 L 3542,21027 1713,22297 1694,22269 3523,20999 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 3533,21014 L 3552,21042 1723,22311 1704,22283 3533,21014 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 3543,21028 L 3562,21056 1733,22326 1714,22298 3543,21028 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 3553,21043 L 3572,21071 1743,22340 1724,22312 3553,21043 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 3563,21057 L 3582,21085 1753,22355 1734,22327 3563,21057 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 3573,21071 L 3593,21100 1763,22369 1744,22341 3573,21071 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 3583,21086 L 3603,21114 1773,22384 1754,22355 3583,21086 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 3593,21100 L 3613,21128 1783,22398 1764,22370 3593,21100 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 3603,21115 L 3623,21143 1793,22412 1774,22384 3603,21115 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 3613,21129 L 3633,21157 1803,22427 1784,22399 3613,21129 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 3623,21144 L 3643,21172 1813,22441 1794,22413 3623,21144 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 3633,21158 L 3653,21186 1823,22456 1804,22428 3633,21158 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 3643,21172 L 3663,21201 1833,22470 1814,22442 3643,21172 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 3653,21187 L 3673,21215 1843,22485 1824,22456 3653,21187 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 3663,21201 L 3683,21229 1853,22499 1834,22471 3663,21201 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 3673,21216 L 3693,21244 1863,22513 1844,22485 3673,21216 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 3683,21230 L 3703,21258 1873,22528 1854,22500 3683,21230 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 3693,21244 L 3713,21273 1883,22542 1864,22514 3693,21244 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 3703,21259 L 3723,21287 1893,22557 1874,22528 3703,21259 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 3713,21273 L 3733,21302 1903,22571 1884,22543 3713,21273 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 3723,21288 L 3743,21316 1913,22585 1894,22557 3723,21288 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 3733,21302 L 3753,21330 1923,22600 1904,22572 3733,21302 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 3743,21317 L 3763,21345 1934,22614 1914,22586 3743,21317 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 3753,21331 L 3773,21359 1944,22629 1924,22601 3753,21331 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 3763,21345 L 3783,21374 1954,22643 1934,22615 3763,21345 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 3773,21360 L 3793,21388 1964,22658 1944,22629 3773,21360 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 3783,21374 L 3803,21402 1974,22672 1954,22644 3783,21374 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 3793,21389 L 3813,21417 1984,22686 1964,22658 3793,21389 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 3803,21403 L 3823,21431 1994,22701 1974,22673 3803,21403 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 3813,21418 L 3833,21446 2004,22715 1984,22687 3813,21418 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 3823,21432 L 3843,21460 2014,22730 1994,22702 3823,21432 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 3833,21446 L 3853,21475 2024,22744 2004,22716 3833,21446 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 3843,21461 L 3863,21489 2034,22759 2014,22730 3843,21461 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 3853,21475 L 3873,21503 2044,22773 2024,22745 3853,21475 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 3863,21490 L 3883,21518 2054,22787 2034,22759 3863,21490 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 3873,21504 L 3893,21532 2064,22802 2044,22774 3873,21504 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 3883,21519 L 3903,21547 2074,22816 2054,22788 3883,21519 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 3893,21533 L 3913,21561 2084,22831 2064,22803 3893,21533 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 3903,21547 L 3923,21576 2094,22845 2074,22817 3903,21547 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 3913,21562 L 3933,21590 2104,22860 2084,22831 3913,21562 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 3923,21576 L 3943,21604 2114,22874 2094,22846 3923,21576 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 3933,21591 L 3953,21619 2124,22888 2104,22860 3933,21591 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 3943,21605 L 3963,21633 2134,22903 2114,22875 3943,21605 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 3953,21620 L 3973,21648 2144,22917 2124,22889 3953,21620 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 3963,21634 L 3983,21662 2154,22932 2134,22904 3963,21634 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 3973,21648 L 3993,21677 2164,22946 2144,22918 3973,21648 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 3983,21663 L 4003,21691 2174,22961 2154,22932 3983,21663 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 3994,21677 L 4013,21705 2184,22975 2164,22947 3994,21677 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 4004,21692 L 4023,21720 2194,22989 2174,22961 4004,21692 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 4014,21706 L 4033,21734 2204,23004 2184,22976 4014,21706 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 4024,21721 L 4043,21749 2214,23018 2194,22990 4024,21721 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 4034,21735 L 4053,21763 2224,23033 2204,23005 4034,21735 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 4044,21749 L 4063,21778 2234,23047 2214,23019 4044,21749 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 4054,21764 L 4073,21792 2244,23062 2224,23033 4054,21764 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 4064,21778 L 4083,21806 2254,23076 2234,23048 4064,21778 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 4074,21793 L 4093,21821 2264,23090 2244,23062 4074,21793 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 4084,21807 L 4103,21835 2274,23105 2254,23077 4084,21807 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 4094,21822 L 4113,21850 2284,23119 2264,23091 4094,21822 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 4104,21836 L 4123,21864 2294,23134 2274,23106 4104,21836 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 4114,21850 L 4133,21879 2304,23148 2284,23120 4114,21850 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 4124,21865 L 4143,21893 2314,23163 2294,23134 4124,21865 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 4134,21879 L 4153,21907 2324,23177 2304,23149 4134,21879 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 4144,21894 L 4163,21922 2334,23191 2314,23163 4144,21894 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 4154,21908 L 4173,21936 2344,23206 2324,23178 4154,21908 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 4164,21923 L 4183,21951 2354,23220 2335,23192 4164,21923 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 4174,21937 L 4193,21965 2364,23235 2345,23207 4174,21937 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 4184,21951 L 4203,21980 2374,23249 2355,23221 4184,21951 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 4194,21966 L 4213,21994 2384,23264 2365,23235 4194,21966 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 4204,21980 L 4223,22008 2394,23278 2375,23250 4204,21980 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 4214,21995 L 4233,22023 2404,23292 2385,23264 4214,21995 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 4224,22009 L 4243,22037 2414,23307 2395,23279 4224,22009 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 4234,22024 L 4253,22052 2424,23321 2405,23293 4234,22024 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 4244,22038 L 4263,22066 2434,23336 2415,23308 4244,22038 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 4254,22052 L 4273,22081 2444,23350 2425,23322 4254,22052 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 4264,22067 L 4283,22095 2454,23365 2435,23336 4264,22067 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 4274,22081 L 4293,22109 2464,23379 2445,23351 4274,22081 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 4284,22096 L 4303,22124 2474,23393 2455,23365 4284,22096 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 4294,22110 L 4313,22138 2484,23408 2465,23380 4294,22110 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 4304,22125 L 4323,22153 2494,23422 2475,23394 4304,22125 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 4314,22139 L 4333,22167 2504,23437 2485,23409 4314,22139 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 4324,22153 L 4343,22182 2514,23451 2495,23423 4324,22153 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 4334,22168 L 4353,22196 2524,23466 2505,23437 4334,22168 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 4344,22182 L 4363,22210 2534,23480 2515,23452 4344,22182 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 4354,22197 L 4374,22225 2544,23494 2525,23466 4354,22197 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 4364,22211 L 4384,22239 2554,23509 2535,23481 4364,22211 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 4374,22226 L 4394,22254 2564,23523 2545,23495 4374,22226 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 4384,22240 L 4404,22268 2574,23538 2555,23509 4384,22240 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 4394,22254 L 4414,22283 2584,23552 2565,23524 4394,22254 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 4404,22269 L 4424,22297 2594,23566 2575,23538 4404,22269 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 4414,22283 L 4434,22311 2604,23581 2585,23553 4414,22283 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 4424,22298 L 4444,22326 2614,23595 2595,23567 4424,22298 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 4434,22312 L 4454,22340 2624,23610 2605,23582 4434,22312 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 4444,22326 L 4464,22355 2634,23624 2615,23596 4444,22326 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 4454,22341 L 4474,22369 2644,23639 2625,23610 4454,22341 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 4464,22355 L 4484,22383 2654,23653 2635,23625 4464,22355 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 4474,22370 L 4494,22398 2664,23667 2645,23639 4474,22370 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 4484,22384 L 4504,22412 2674,23682 2655,23654 4484,22384 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 4494,22399 L 4514,22427 2684,23696 2665,23668 4494,22399 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 4504,22413 L 4524,22441 2694,23711 2675,23683 4504,22413 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 4514,22427 L 4534,22456 2704,23725 2685,23697 4514,22427 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 4524,22442 L 4544,22470 2714,23740 2695,23711 4524,22442 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 4534,22456 L 4554,22484 2725,23754 2705,23726 4534,22456 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 4544,22471 L 4564,22499 2735,23768 2715,23740 4544,22471 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 4554,22485 L 4574,22513 2745,23783 2725,23755 4554,22485 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 4564,22500 L 4584,22528 2755,23797 2735,23769 4564,22500 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 4574,22514 L 4594,22542 2765,23812 2745,23784 4574,22514 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 4584,22528 L 4604,22557 2775,23826 2755,23798 4584,22528 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 4594,22543 L 4614,22571 2785,23841 2765,23812 4594,22543 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 4604,22557 L 4624,22585 2795,23855 2775,23827 4604,22557 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 4614,22572 L 4634,22600 2805,23869 2785,23841 4614,22572 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 4624,22586 L 4644,22614 2815,23884 2795,23856 4624,22586 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 4634,22601 L 4654,22629 2825,23898 2805,23870 4634,22601 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 4644,22615 L 4664,22643 2835,23913 2815,23885 4644,22615 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 4654,22629 L 4674,22658 2845,23927 2825,23899 4654,22629 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 4664,22644 L 4684,22672 2855,23942 2835,23913 4664,22644 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 4674,22658 L 4694,22686 2865,23956 2845,23928 4674,22658 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 4684,22673 L 4704,22701 2875,23970 2855,23942 4684,22673 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 4694,22687 L 4714,22715 2885,23985 2865,23957 4694,22687 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 4704,22702 L 4724,22730 2895,23999 2875,23971 4704,22702 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 4714,22716 L 4734,22744 2905,24014 2885,23986 4714,22716 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 4724,22730 L 4744,22759 2915,24028 2895,24000 4724,22730 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 4734,22745 L 4754,22773 2925,24043 2905,24014 4734,22745 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 4744,22759 L 4764,22787 2935,24057 2915,24029 4744,22759 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 4754,22774 L 4774,22802 2945,24071 2925,24043 4754,22774 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 4764,22788 L 4784,22816 2955,24086 2935,24058 4764,22788 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 4774,22803 L 4794,22831 2965,24100 2945,24072 4774,22803 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 4785,22817 L 4804,22845 2975,24115 2955,24087 4785,22817 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 4795,22831 L 4814,22860 2985,24129 2965,24101 4795,22831 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 4805,22846 L 4824,22874 2995,24144 2975,24115 4805,22846 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 4815,22860 L 4834,22888 3005,24158 2985,24130 4815,22860 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 4825,22875 L 4844,22903 3015,24172 2995,24144 4825,22875 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 4835,22889 L 4854,22917 3025,24187 3005,24159 4835,22889 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 4845,22904 L 4864,22932 3035,24201 3015,24173 4845,22904 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 4855,22918 L 4874,22946 3045,24216 3025,24188 4855,22918 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 4865,22932 L 4884,22961 3055,24230 3035,24202 4865,22932 Z"/>
+     </g>
+     <path fill="none" stroke="rgb(140,140,140)" stroke-width="50" stroke-linejoin="miter" d="M 2910,20376 L 1851,20376 C 1811,20376 1778,20408 1778,20448 L 1778,22368 C 1778,22407 1811,22440 1851,22440 L 3437,22440 C 3478,22440 3511,22407 3511,22368 L 3511,20982 2910,20376 Z"/>
+     <defs>
+      <clipPath id="clip_path_2" clipPathUnits="userSpaceOnUse">
+       <path d="M 1851,20351 C 1797,20351 1753,20394 1753,20448 L 1753,22368 C 1753,22421 1797,22465 1851,22465 L 3437,22465 C 3492,22465 3536,22421 3536,22368 L 3536,20971 2920,20351 1851,20351 1851,20351 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_2)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2683,19742 L 2903,20059 1031,21359 811,21041 2683,19742 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2894,20046 L 2913,20074 1041,21373 1022,21345 2894,20046 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2904,20060 L 2923,20089 1052,21388 1032,21360 2904,20060 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2914,20075 L 2934,20104 1062,21403 1042,21374 2914,20075 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 2924,20090 L 2944,20118 1072,21417 1052,21389 2924,20090 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 2934,20105 L 2954,20133 1082,21432 1063,21404 2934,20105 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2945,20119 L 2964,20148 1092,21447 1073,21418 2945,20119 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2955,20134 L 2975,20162 1103,21462 1083,21433 2955,20134 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 2965,20149 L 2985,20177 1113,21476 1093,21448 2965,20149 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 2975,20163 L 2995,20192 1123,21491 1103,21463 2975,20163 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 2985,20178 L 3005,20207 1133,21506 1114,21477 2985,20178 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 2996,20193 L 3015,20221 1143,21520 1124,21492 2996,20193 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 3006,20208 L 3026,20236 1154,21535 1134,21507 3006,20208 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 3016,20222 L 3036,20251 1164,21550 1144,21521 3016,20222 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 3026,20237 L 3046,20265 1174,21564 1154,21536 3026,20237 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 3036,20252 L 3056,20280 1184,21579 1165,21551 3036,20252 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 3047,20266 L 3066,20295 1194,21594 1175,21566 3047,20266 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 3057,20281 L 3077,20309 1205,21609 1185,21580 3057,20281 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 3067,20296 L 3087,20324 1215,21623 1195,21595 3067,20296 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 3077,20310 L 3097,20339 1225,21638 1205,21610 3077,20310 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 3087,20325 L 3107,20354 1235,21653 1216,21624 3087,20325 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 3098,20340 L 3117,20368 1246,21667 1226,21639 3098,20340 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 3108,20355 L 3128,20383 1256,21682 1236,21654 3108,20355 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 3118,20369 L 3138,20398 1266,21697 1246,21668 3118,20369 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 3128,20384 L 3148,20412 1276,21712 1256,21683 3128,20384 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 3139,20399 L 3158,20427 1286,21726 1267,21698 3139,20399 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 3149,20413 L 3168,20442 1297,21741 1277,21713 3149,20413 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 3159,20428 L 3179,20456 1307,21756 1287,21727 3159,20428 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 3169,20443 L 3189,20471 1317,21770 1297,21742 3169,20443 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 3179,20458 L 3199,20486 1327,21785 1307,21757 3179,20458 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 3190,20472 L 3209,20501 1337,21800 1318,21771 3190,20472 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 3200,20487 L 3219,20515 1348,21814 1328,21786 3200,20487 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 3210,20502 L 3230,20530 1358,21829 1338,21801 3210,20502 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 3220,20516 L 3240,20545 1368,21844 1348,21815 3220,20516 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 3230,20531 L 3250,20559 1378,21859 1358,21830 3230,20531 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 3241,20546 L 3260,20574 1388,21873 1369,21845 3241,20546 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 3251,20560 L 3270,20589 1399,21888 1379,21860 3251,20560 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 3261,20575 L 3281,20604 1409,21903 1389,21874 3261,20575 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 3271,20590 L 3291,20618 1419,21917 1399,21889 3271,20590 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 3281,20605 L 3301,20633 1429,21932 1410,21904 3281,20605 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 3292,20619 L 3311,20648 1439,21947 1420,21918 3292,20619 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 3302,20634 L 3321,20662 1450,21961 1430,21933 3302,20634 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 3312,20649 L 3332,20677 1460,21976 1440,21948 3312,20649 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 3322,20663 L 3342,20692 1470,21991 1450,21963 3322,20663 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 3332,20678 L 3352,20706 1480,22006 1461,21977 3332,20678 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 3343,20693 L 3362,20721 1490,22020 1471,21992 3343,20693 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 3353,20707 L 3373,20736 1501,22035 1481,22007 3353,20707 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 3363,20722 L 3383,20751 1511,22050 1491,22021 3363,20722 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 3373,20737 L 3393,20765 1521,22064 1501,22036 3373,20737 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 3383,20752 L 3403,20780 1531,22079 1512,22051 3383,20752 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 3394,20766 L 3413,20795 1541,22094 1522,22065 3394,20766 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 3404,20781 L 3424,20809 1552,22109 1532,22080 3404,20781 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 3414,20796 L 3434,20824 1562,22123 1542,22095 3414,20796 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 3424,20810 L 3444,20839 1572,22138 1552,22110 3424,20810 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 3434,20825 L 3454,20853 1582,22153 1563,22124 3434,20825 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 3445,20840 L 3464,20868 1592,22167 1573,22139 3445,20840 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 3455,20855 L 3475,20883 1603,22182 1583,22154 3455,20855 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 3465,20869 L 3485,20898 1613,22197 1593,22168 3465,20869 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 3475,20884 L 3495,20912 1623,22211 1603,22183 3475,20884 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 3485,20899 L 3505,20927 1633,22226 1614,22198 3485,20899 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 3496,20913 L 3515,20942 1644,22241 1624,22212 3496,20913 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 3506,20928 L 3526,20956 1654,22256 1634,22227 3506,20928 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 3516,20943 L 3536,20971 1664,22270 1644,22242 3516,20943 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 3526,20957 L 3546,20986 1674,22285 1654,22257 3526,20957 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 3537,20972 L 3556,21001 1684,22300 1665,22271 3537,20972 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 3547,20987 L 3566,21015 1695,22314 1675,22286 3547,20987 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 3557,21002 L 3577,21030 1705,22329 1685,22301 3557,21002 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 3567,21016 L 3587,21045 1715,22344 1695,22315 3567,21016 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 3577,21031 L 3597,21059 1725,22358 1705,22330 3577,21031 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 3588,21046 L 3607,21074 1735,22373 1716,22345 3588,21046 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 3598,21060 L 3617,21089 1746,22388 1726,22360 3598,21060 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 3608,21075 L 3628,21103 1756,22403 1736,22374 3608,21075 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 3618,21090 L 3638,21118 1766,22417 1746,22389 3618,21090 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 3628,21104 L 3648,21133 1776,22432 1757,22404 3628,21104 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 3639,21119 L 3658,21148 1786,22447 1767,22418 3639,21119 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 3649,21134 L 3668,21162 1797,22461 1777,22433 3649,21134 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 3659,21149 L 3679,21177 1807,22476 1787,22448 3659,21149 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 3669,21163 L 3689,21192 1817,22491 1797,22462 3669,21163 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 3679,21178 L 3699,21206 1827,22506 1808,22477 3679,21178 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 3690,21193 L 3709,21221 1837,22520 1818,22492 3690,21193 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 3700,21207 L 3719,21236 1848,22535 1828,22507 3700,21207 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 3710,21222 L 3730,21250 1858,22550 1838,22521 3710,21222 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 3720,21237 L 3740,21265 1868,22564 1848,22536 3720,21237 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 3730,21252 L 3750,21280 1878,22579 1859,22551 3730,21252 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 3741,21266 L 3760,21295 1888,22594 1869,22565 3741,21266 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 3751,21281 L 3771,21309 1899,22608 1879,22580 3751,21281 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 3761,21296 L 3781,21324 1909,22623 1889,22595 3761,21296 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 3771,21310 L 3791,21339 1919,22638 1899,22609 3771,21310 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 3781,21325 L 3801,21353 1929,22653 1910,22624 3781,21325 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 3792,21340 L 3811,21368 1939,22667 1920,22639 3792,21340 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 3802,21354 L 3822,21383 1950,22682 1930,22654 3802,21354 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 3812,21369 L 3832,21398 1960,22697 1940,22668 3812,21369 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 3822,21384 L 3842,21412 1970,22711 1950,22683 3822,21384 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 3832,21399 L 3852,21427 1980,22726 1961,22698 3832,21399 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 3843,21413 L 3862,21442 1990,22741 1971,22712 3843,21413 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 3853,21428 L 3873,21456 2001,22755 1981,22727 3853,21428 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 3863,21443 L 3883,21471 2011,22770 1991,22742 3863,21443 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 3873,21457 L 3893,21486 2021,22785 2001,22757 3873,21457 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 3883,21472 L 3903,21500 2031,22800 2012,22771 3883,21472 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 3894,21487 L 3913,21515 2042,22814 2022,22786 3894,21487 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 3904,21501 L 3924,21530 2052,22829 2032,22801 3904,21501 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 3914,21516 L 3934,21545 2062,22844 2042,22815 3914,21516 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 3924,21531 L 3944,21559 2072,22858 2052,22830 3924,21531 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 3935,21546 L 3954,21574 2082,22873 2063,22845 3935,21546 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 3945,21560 L 3964,21589 2093,22888 2073,22859 3945,21560 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 3955,21575 L 3975,21603 2103,22903 2083,22874 3955,21575 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 3965,21590 L 3985,21618 2113,22917 2093,22889 3965,21590 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 3975,21604 L 3995,21633 2123,22932 2103,22904 3975,21604 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 3986,21619 L 4005,21647 2133,22947 2114,22918 3986,21619 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 3996,21634 L 4015,21662 2144,22961 2124,22933 3996,21634 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 4006,21649 L 4026,21677 2154,22976 2134,22948 4006,21649 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 4016,21663 L 4036,21692 2164,22991 2144,22962 4016,21663 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 4026,21678 L 4046,21706 2174,23005 2155,22977 4026,21678 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 4037,21693 L 4056,21721 2184,23020 2165,22992 4037,21693 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 4047,21707 L 4066,21736 2195,23035 2175,23006 4047,21707 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 4057,21722 L 4077,21750 2205,23050 2185,23021 4057,21722 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 4067,21737 L 4087,21765 2215,23064 2195,23036 4067,21737 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 4077,21751 L 4097,21780 2225,23079 2206,23051 4077,21751 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 4088,21766 L 4107,21795 2235,23094 2216,23065 4088,21766 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 4098,21781 L 4117,21809 2246,23108 2226,23080 4098,21781 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 4108,21796 L 4128,21824 2256,23123 2236,23095 4108,21796 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 4118,21810 L 4138,21839 2266,23138 2246,23109 4118,21810 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 4128,21825 L 4148,21853 2276,23152 2257,23124 4128,21825 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 4139,21840 L 4158,21868 2286,23167 2267,23139 4139,21840 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 4149,21854 L 4169,21883 2297,23182 2277,23154 4149,21854 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 4159,21869 L 4179,21897 2307,23197 2287,23168 4159,21869 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 4169,21884 L 4189,21912 2317,23211 2297,23183 4169,21884 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 4179,21898 L 4199,21927 2327,23226 2308,23198 4179,21898 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 4190,21913 L 4209,21942 2337,23241 2318,23212 4190,21913 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 4200,21928 L 4220,21956 2348,23255 2328,23227 4200,21928 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 4210,21943 L 4230,21971 2358,23270 2338,23242 4210,21943 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 4220,21957 L 4240,21986 2368,23285 2348,23256 4220,21957 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 4230,21972 L 4250,22000 2378,23300 2359,23271 4230,21972 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 4241,21987 L 4260,22015 2389,23314 2369,23286 4241,21987 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 4251,22001 L 4271,22030 2399,23329 2379,23301 4251,22001 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 4261,22016 L 4281,22044 2409,23344 2389,23315 4261,22016 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 4271,22031 L 4291,22059 2419,23358 2399,23330 4271,22031 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 4281,22046 L 4301,22074 2429,23373 2410,23345 4281,22046 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 4292,22060 L 4311,22089 2440,23388 2420,23359 4292,22060 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 4302,22075 L 4322,22103 2450,23402 2430,23374 4302,22075 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 4312,22090 L 4332,22118 2460,23417 2440,23389 4312,22090 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 4322,22104 L 4342,22133 2470,23432 2450,23403 4322,22104 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 4333,22119 L 4352,22147 2480,23447 2461,23418 4333,22119 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 4343,22134 L 4362,22162 2491,23461 2471,23433 4343,22134 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 4353,22148 L 4373,22177 2501,23476 2481,23448 4353,22148 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 4363,22163 L 4383,22192 2511,23491 2491,23462 4363,22163 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 4373,22178 L 4393,22206 2521,23505 2501,23477 4373,22178 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 4384,22193 L 4403,22221 2531,23520 2512,23492 4384,22193 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 4394,22207 L 4413,22236 2542,23535 2522,23506 4394,22207 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 4404,22222 L 4424,22250 2552,23549 2532,23521 4404,22222 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 4414,22237 L 4434,22265 2562,23564 2542,23536 4414,22237 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 4424,22251 L 4444,22280 2572,23579 2553,23551 4424,22251 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 4435,22266 L 4454,22294 2582,23594 2563,23565 4435,22266 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 4445,22281 L 4464,22309 2593,23608 2573,23580 4445,22281 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 4455,22295 L 4475,22324 2603,23623 2583,23595 4455,22295 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 4465,22310 L 4485,22339 2613,23638 2593,23609 4465,22310 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 4475,22325 L 4495,22353 2623,23652 2604,23624 4475,22325 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 4486,22340 L 4505,22368 2633,23667 2614,23639 4486,22340 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 4496,22354 L 4515,22383 2644,23682 2624,23653 4496,22354 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 4506,22369 L 4526,22397 2654,23697 2634,23668 4506,22369 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 4516,22384 L 4536,22412 2664,23711 2644,23683 4516,22384 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 4526,22398 L 4546,22427 2674,23726 2655,23698 4526,22398 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 4537,22413 L 4556,22441 2684,23741 2665,23712 4537,22413 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 4547,22428 L 4567,22456 2695,23755 2675,23727 4547,22428 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 4557,22443 L 4577,22471 2705,23770 2685,23742 4557,22443 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 4567,22457 L 4587,22486 2715,23785 2695,23756 4567,22457 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 4577,22472 L 4597,22500 2725,23799 2706,23771 4577,22472 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 4588,22487 L 4607,22515 2735,23814 2716,23786 4588,22487 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 4598,22501 L 4618,22530 2746,23829 2726,23800 4598,22501 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 4608,22516 L 4628,22544 2756,23844 2736,23815 4608,22516 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 4618,22531 L 4638,22559 2766,23858 2746,23830 4618,22531 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 4628,22545 L 4648,22574 2776,23873 2757,23845 4628,22545 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 4639,22560 L 4658,22589 2787,23888 2767,23859 4639,22560 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 4649,22575 L 4669,22603 2797,23902 2777,23874 4649,22575 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 4659,22590 L 4679,22618 2807,23917 2787,23889 4659,22590 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 4669,22604 L 4689,22633 2817,23932 2797,23903 4669,22604 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 4679,22619 L 4699,22647 2827,23946 2808,23918 4679,22619 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 4690,22634 L 4709,22662 2838,23961 2818,23933 4690,22634 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 4700,22648 L 4720,22677 2848,23976 2828,23948 4700,22648 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 4710,22663 L 4730,22691 2858,23991 2838,23962 4710,22663 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 4720,22678 L 4740,22706 2868,24005 2848,23977 4720,22678 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 4731,22692 L 4750,22721 2878,24020 2859,23992 4731,22692 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 4741,22707 L 4760,22736 2889,24035 2869,24006 4741,22707 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 4751,22722 L 4771,22750 2899,24049 2879,24021 4751,22722 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 4761,22737 L 4781,22765 2909,24064 2889,24036 4761,22737 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 4771,22751 L 4791,22780 2919,24079 2899,24050 4771,22751 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 4782,22766 L 4801,22794 2929,24094 2910,24065 4782,22766 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 4792,22781 L 4811,22809 2940,24108 2920,24080 4792,22781 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 4802,22795 L 4822,22824 2950,24123 2930,24095 4802,22795 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 4812,22810 L 4832,22838 2960,24138 2940,24109 4812,22810 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 4822,22825 L 4842,22853 2970,24152 2951,24124 4822,22825 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 4833,22840 L 4852,22868 2980,24167 2961,24139 4833,22840 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 4843,22854 L 4862,22883 2991,24182 2971,24153 4843,22854 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 4853,22869 L 4873,22897 3001,24196 2981,24168 4853,22869 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 4863,22884 L 4883,22912 3011,24211 2991,24183 4863,22884 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 4873,22898 L 4893,22927 3021,24226 3002,24197 4873,22898 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 4884,22913 L 4903,22941 3031,24241 3012,24212 4884,22913 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 4894,22928 L 4913,22956 3042,24255 3022,24227 4894,22928 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 4904,22942 L 4924,22971 3052,24270 3032,24242 4904,22942 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 4914,22957 L 4934,22986 3062,24285 3042,24256 4914,22957 Z"/>
+     </g>
+     <path fill="rgb(140,140,140)" stroke="none" d="M 2931,20326 L 2910,20326 1851,20326 C 1783,20326 1728,20381 1728,20448 L 1728,22368 C 1728,22435 1783,22490 1851,22490 L 3437,22490 C 3505,22490 3561,22435 3561,22368 L 3561,20982 3561,20961 3546,20946 2945,20341 2931,20326 Z M 1778,20448 C 1778,20408 1811,20376 1851,20376 L 2910,20376 3511,20982 3511,22368 C 3511,22407 3478,22440 3437,22440 L 1851,22440 C 1811,22440 1778,22407 1778,22368 L 1778,20448 Z"/>
+     <defs>
+      <clipPath id="clip_path_3" clipPathUnits="userSpaceOnUse">
+       <path d="M 1791,20448 L 1791,22368 C 1791,22400 1818,22427 1851,22427 L 3437,22427 C 3471,22427 3498,22401 3498,22368 L 3498,20987 C 3491,20980 2912,20396 2904,20389 2894,20389 1851,20389 1851,20389 1818,20389 1791,20415 1791,20448 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_3)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2671,19796 L 2886,20105 1078,21360 864,21051 2671,19796 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2876,20091 L 2898,20123 1090,21378 1068,21346 2876,20091 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2889,20109 L 2911,20141 1103,21396 1081,21364 2889,20109 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2901,20127 L 2923,20159 1115,21414 1093,21382 2901,20127 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 2914,20145 L 2936,20177 1128,21432 1106,21400 2914,20145 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 2926,20163 L 2948,20195 1140,21450 1118,21418 2926,20163 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2939,20181 L 2961,20213 1153,21468 1131,21436 2939,20181 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2951,20199 L 2973,20231 1165,21486 1143,21454 2951,20199 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 2964,20217 L 2986,20249 1178,21504 1156,21472 2964,20217 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 2976,20235 L 2998,20267 1190,21522 1168,21490 2976,20235 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 2989,20253 L 3011,20285 1203,21540 1181,21508 2989,20253 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 3001,20271 L 3023,20303 1215,21558 1193,21526 3001,20271 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 3014,20289 L 3036,20321 1228,21576 1206,21544 3014,20289 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 3026,20307 L 3048,20339 1240,21594 1218,21562 3026,20307 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 3039,20325 L 3061,20357 1253,21612 1231,21580 3039,20325 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 3051,20343 L 3073,20375 1265,21630 1243,21598 3051,20343 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 3064,20361 L 3086,20393 1278,21648 1256,21616 3064,20361 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 3076,20379 L 3098,20411 1290,21666 1268,21634 3076,20379 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 3089,20397 L 3111,20429 1303,21684 1281,21652 3089,20397 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 3101,20415 L 3123,20447 1315,21701 1293,21670 3101,20415 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 3114,20433 L 3136,20465 1328,21719 1306,21688 3114,20433 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 3126,20451 L 3148,20483 1340,21737 1318,21706 3126,20451 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 3139,20469 L 3161,20501 1353,21755 1331,21724 3139,20469 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 3151,20487 L 3173,20519 1365,21773 1343,21742 3151,20487 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 3164,20505 L 3186,20537 1378,21791 1356,21760 3164,20505 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 3176,20523 L 3198,20555 1390,21809 1368,21778 3176,20523 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 3189,20541 L 3211,20573 1403,21827 1381,21796 3189,20541 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 3201,20559 L 3223,20591 1415,21845 1393,21814 3201,20559 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 3214,20577 L 3236,20609 1428,21863 1406,21832 3214,20577 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 3226,20595 L 3248,20627 1440,21881 1418,21850 3226,20595 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 3239,20613 L 3261,20645 1453,21899 1431,21868 3239,20613 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 3251,20631 L 3273,20663 1465,21917 1443,21886 3251,20631 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 3264,20649 L 3286,20681 1478,21935 1456,21904 3264,20649 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 3276,20667 L 3298,20699 1490,21953 1468,21922 3276,20667 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 3289,20685 L 3311,20717 1503,21971 1481,21940 3289,20685 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 3301,20703 L 3323,20735 1515,21989 1493,21958 3301,20703 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 3313,20721 L 3336,20753 1528,22007 1506,21976 3313,20721 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 3326,20739 L 3348,20771 1540,22025 1518,21994 3326,20739 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 3338,20757 L 3361,20789 1553,22043 1530,22012 3338,20757 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 3351,20775 L 3373,20807 1565,22061 1543,22030 3351,20775 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 3363,20793 L 3385,20825 1578,22079 1555,22048 3363,20793 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 3376,20811 L 3398,20843 1590,22097 1568,22066 3376,20811 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 3388,20829 L 3410,20861 1602,22115 1580,22084 3388,20829 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 3401,20847 L 3423,20879 1615,22133 1593,22102 3401,20847 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 3413,20865 L 3435,20897 1627,22151 1605,22120 3413,20865 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 3426,20883 L 3448,20915 1640,22169 1618,22138 3426,20883 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 3438,20901 L 3460,20933 1652,22187 1630,22156 3438,20901 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 3451,20919 L 3473,20951 1665,22205 1643,22174 3451,20919 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 3463,20937 L 3485,20969 1677,22223 1655,22192 3463,20937 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 3476,20955 L 3498,20987 1690,22241 1668,22210 3476,20955 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 3488,20973 L 3510,21005 1702,22259 1680,22228 3488,20973 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 3501,20991 L 3523,21023 1715,22277 1693,22246 3501,20991 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 3513,21009 L 3535,21041 1727,22295 1705,22264 3513,21009 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 3526,21027 L 3548,21059 1740,22313 1718,22282 3526,21027 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 3538,21045 L 3560,21077 1752,22331 1730,22300 3538,21045 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 3551,21063 L 3573,21095 1765,22349 1743,22318 3551,21063 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 3563,21081 L 3585,21113 1777,22367 1755,22336 3563,21081 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 3576,21099 L 3598,21131 1790,22385 1768,22354 3576,21099 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 3588,21117 L 3610,21149 1802,22403 1780,22372 3588,21117 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 3601,21135 L 3623,21167 1815,22421 1793,22390 3601,21135 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 3613,21153 L 3635,21185 1827,22439 1805,22408 3613,21153 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 3626,21171 L 3648,21203 1840,22457 1818,22426 3626,21171 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 3638,21189 L 3660,21221 1852,22475 1830,22444 3638,21189 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 3651,21207 L 3673,21239 1865,22493 1843,22462 3651,21207 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 3663,21225 L 3685,21257 1877,22511 1855,22480 3663,21225 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 3676,21243 L 3698,21275 1890,22529 1868,22498 3676,21243 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 3688,21261 L 3710,21293 1902,22547 1880,22516 3688,21261 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 3701,21279 L 3723,21310 1915,22565 1893,22534 3701,21279 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 3713,21297 L 3735,21328 1927,22583 1905,22552 3713,21297 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 3726,21315 L 3748,21346 1940,22601 1918,22570 3726,21315 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 3738,21333 L 3760,21364 1952,22619 1930,22588 3738,21333 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 3751,21351 L 3773,21382 1965,22637 1943,22606 3751,21351 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 3763,21369 L 3785,21400 1977,22655 1955,22624 3763,21369 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 3776,21387 L 3798,21418 1990,22673 1968,22642 3776,21387 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 3788,21405 L 3810,21436 2002,22691 1980,22660 3788,21405 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 3801,21423 L 3823,21454 2015,22709 1993,22678 3801,21423 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 3813,21441 L 3835,21472 2027,22727 2005,22696 3813,21441 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 3826,21459 L 3848,21490 2040,22745 2018,22714 3826,21459 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 3838,21477 L 3860,21508 2052,22763 2030,22732 3838,21477 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 3851,21495 L 3873,21526 2065,22781 2043,22750 3851,21495 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 3863,21513 L 3885,21544 2077,22799 2055,22768 3863,21513 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 3876,21531 L 3898,21562 2090,22817 2068,22786 3876,21531 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 3888,21549 L 3910,21580 2102,22835 2080,22804 3888,21549 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 3901,21567 L 3923,21598 2115,22853 2093,22822 3901,21567 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 3913,21585 L 3935,21616 2127,22871 2105,22840 3913,21585 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 3926,21603 L 3948,21634 2140,22889 2118,22858 3926,21603 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 3938,21621 L 3960,21652 2152,22907 2130,22876 3938,21621 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 3950,21639 L 3973,21670 2165,22925 2143,22894 3950,21639 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 3963,21657 L 3985,21688 2177,22943 2155,22912 3963,21657 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 3975,21675 L 3998,21706 2190,22961 2167,22929 3975,21675 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 3988,21693 L 4010,21724 2202,22979 2180,22947 3988,21693 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 4000,21711 L 4022,21742 2215,22997 2192,22965 4000,21711 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 4013,21729 L 4035,21760 2227,23015 2205,22983 4013,21729 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 4025,21747 L 4047,21778 2239,23033 2217,23001 4025,21747 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 4038,21765 L 4060,21796 2252,23051 2230,23019 4038,21765 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 4050,21783 L 4072,21814 2264,23069 2242,23037 4050,21783 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 4063,21801 L 4085,21832 2277,23087 2255,23055 4063,21801 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 4075,21819 L 4097,21850 2289,23105 2267,23073 4075,21819 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 4088,21837 L 4110,21868 2302,23123 2280,23091 4088,21837 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 4100,21855 L 4122,21886 2314,23141 2292,23109 4100,21855 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 4113,21873 L 4135,21904 2327,23159 2305,23127 4113,21873 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 4125,21891 L 4147,21922 2339,23177 2317,23145 4125,21891 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 4138,21909 L 4160,21940 2352,23195 2330,23163 4138,21909 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 4150,21927 L 4172,21958 2364,23213 2342,23181 4150,21927 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 4163,21945 L 4185,21976 2377,23231 2355,23199 4163,21945 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 4175,21963 L 4197,21994 2389,23249 2367,23217 4175,21963 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 4188,21981 L 4210,22012 2402,23267 2380,23235 4188,21981 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 4200,21999 L 4222,22030 2414,23285 2392,23253 4200,21999 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 4213,22017 L 4235,22048 2427,23303 2405,23271 4213,22017 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 4225,22035 L 4247,22066 2439,23321 2417,23289 4225,22035 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 4238,22053 L 4260,22084 2452,23339 2430,23307 4238,22053 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 4250,22071 L 4272,22102 2464,23357 2442,23325 4250,22071 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 4263,22089 L 4285,22120 2477,23375 2455,23343 4263,22089 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 4275,22107 L 4297,22138 2489,23393 2467,23361 4275,22107 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 4288,22125 L 4310,22156 2502,23411 2480,23379 4288,22125 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 4300,22143 L 4322,22174 2514,23429 2492,23397 4300,22143 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 4313,22161 L 4335,22192 2527,23447 2505,23415 4313,22161 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 4325,22179 L 4347,22210 2539,23465 2517,23433 4325,22179 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 4338,22197 L 4360,22228 2552,23483 2530,23451 4338,22197 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 4350,22215 L 4372,22246 2564,23501 2542,23469 4350,22215 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 4363,22233 L 4385,22264 2577,23519 2555,23487 4363,22233 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 4375,22251 L 4397,22282 2589,23537 2567,23505 4375,22251 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 4388,22269 L 4410,22300 2602,23555 2580,23523 4388,22269 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 4400,22287 L 4422,22318 2614,23573 2592,23541 4400,22287 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 4413,22305 L 4435,22336 2627,23591 2605,23559 4413,22305 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 4425,22323 L 4447,22354 2639,23609 2617,23577 4425,22323 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 4438,22341 L 4460,22372 2652,23627 2630,23595 4438,22341 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 4450,22359 L 4472,22390 2664,23645 2642,23613 4450,22359 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 4463,22377 L 4485,22408 2677,23663 2655,23631 4463,22377 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 4475,22395 L 4497,22426 2689,23681 2667,23649 4475,22395 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 4488,22413 L 4510,22444 2702,23699 2680,23667 4488,22413 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 4500,22431 L 4522,22462 2714,23717 2692,23685 4500,22431 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 4513,22449 L 4535,22480 2727,23735 2705,23703 4513,22449 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 4525,22467 L 4547,22498 2739,23753 2717,23721 4525,22467 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 4538,22485 L 4560,22516 2752,23771 2730,23739 4538,22485 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 4550,22503 L 4572,22534 2764,23789 2742,23757 4550,22503 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 4563,22521 L 4585,22552 2777,23807 2755,23775 4563,22521 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 4575,22539 L 4597,22570 2789,23825 2767,23793 4575,22539 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 4588,22556 L 4610,22588 2802,23843 2780,23811 4588,22556 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 4600,22574 L 4622,22606 2814,23861 2792,23829 4600,22574 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 4612,22592 L 4635,22624 2827,23879 2805,23847 4612,22592 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 4625,22610 L 4647,22642 2839,23897 2817,23865 4625,22610 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 4637,22628 L 4660,22660 2852,23915 2829,23883 4637,22628 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 4650,22646 L 4672,22678 2864,23933 2842,23901 4650,22646 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 4662,22664 L 4684,22696 2877,23951 2854,23919 4662,22664 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 4675,22682 L 4697,22714 2889,23969 2867,23937 4675,22682 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 4687,22700 L 4709,22732 2901,23987 2879,23955 4687,22700 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 4700,22718 L 4722,22750 2914,24005 2892,23973 4700,22718 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 4712,22736 L 4734,22768 2926,24023 2904,23991 4712,22736 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 4725,22754 L 4747,22786 2939,24041 2917,24009 4725,22754 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 4737,22772 L 4759,22804 2951,24059 2929,24027 4737,22772 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 4750,22790 L 4772,22822 2964,24077 2942,24045 4750,22790 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 4762,22808 L 4784,22840 2976,24095 2954,24063 4762,22808 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 4775,22826 L 4797,22858 2989,24113 2967,24081 4775,22826 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 4787,22844 L 4809,22876 3001,24131 2979,24099 4787,22844 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 4800,22862 L 4822,22894 3014,24149 2992,24117 4800,22862 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 4812,22880 L 4834,22912 3026,24167 3004,24135 4812,22880 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 4825,22898 L 4847,22930 3039,24185 3017,24153 4825,22898 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 4837,22916 L 4859,22948 3051,24203 3029,24171 4837,22916 Z"/>
+     </g>
+     <path fill="rgb(247,247,247)" stroke="none" d="M 2910,20376 L 1851,20376 C 1811,20376 1778,20408 1778,20448 L 1778,22368 C 1778,22407 1811,22440 1851,22440 L 3437,22440 C 3478,22440 3511,22407 3511,22368 L 3511,20982 2910,20376 Z M 1851,22414 C 1825,22414 1803,22394 1803,22368 L 1803,20448 C 1803,20422 1825,20401 1851,20401 L 2899,20401 3485,20992 3485,22368 C 3485,22394 3464,22414 3437,22414 L 1851,22414 Z"/>
+     <defs>
+      <clipPath id="clip_path_4" clipPathUnits="userSpaceOnUse">
+       <path d="M 2941,20390 L 2947,20896 C 2948,20909 2953,20922 2963,20932 2973,20942 2986,20947 3000,20947 3000,20947 3442,20941 3499,20940 3435,20876 2986,20427 2942,20383 2942,20385 2941,20387 2941,20389 L 2941,20390 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_4)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2677,20680 L 2698,20657 3286,21180 3266,21203 2677,20680 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 2696,20660 L 2700,20655 3288,21178 3284,21183 2696,20660 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2697,20658 L 2702,20653 3290,21176 3286,21181 2697,20658 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 2699,20656 L 2703,20651 3291,21174 3287,21179 2699,20656 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 2701,20654 L 2705,20649 3293,21172 3289,21177 2701,20654 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2703,20652 L 2707,20647 3295,21170 3291,21175 2703,20652 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 2704,20650 L 2709,20645 3297,21168 3293,21173 2704,20650 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 2706,20648 L 2710,20643 3299,21166 3294,21171 2706,20648 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 2708,20646 L 2712,20641 3300,21164 3296,21169 2708,20646 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 2710,20644 L 2714,20639 3302,21162 3298,21167 2710,20644 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 2711,20642 L 2716,20638 3304,21160 3300,21165 2711,20642 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 2713,20640 L 2717,20636 3306,21158 3301,21163 2713,20640 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 2715,20638 L 2719,20634 3307,21156 3303,21161 2715,20638 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 2717,20636 L 2721,20632 3309,21154 3305,21159 2717,20636 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 2718,20634 L 2723,20630 3311,21152 3307,21157 2718,20634 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 2720,20632 L 2724,20628 3313,21150 3308,21155 2720,20632 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 2722,20630 L 2726,20626 3314,21149 3310,21153 2722,20630 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 2724,20628 L 2728,20624 3316,21147 3312,21151 2724,20628 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 2726,20626 L 2730,20622 3318,21145 3314,21149 2726,20626 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 2727,20624 L 2731,20620 3320,21143 3315,21147 2727,20624 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 2729,20622 L 2733,20618 3321,21141 3317,21145 2729,20622 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 2731,20620 L 2735,20616 3323,21139 3319,21143 2731,20620 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 2733,20618 L 2737,20614 3325,21137 3321,21141 2733,20618 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 2734,20616 L 2738,20612 3327,21135 3323,21139 2734,20616 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 2736,20614 L 2740,20610 3328,21133 3324,21137 2736,20614 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 2738,20612 L 2742,20608 3330,21131 3326,21135 2738,20612 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 2740,20611 L 2744,20606 3332,21129 3328,21133 2740,20611 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 2741,20609 L 2745,20604 3334,21127 3330,21131 2741,20609 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 2743,20607 L 2747,20602 3335,21125 3331,21129 2743,20607 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 2745,20605 L 2749,20600 3337,21123 3333,21127 2745,20605 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 2747,20603 L 2751,20598 3339,21121 3335,21125 2747,20603 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 2748,20601 L 2752,20596 3341,21119 3337,21123 2748,20601 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 2750,20599 L 2754,20594 3342,21117 3338,21121 2750,20599 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 2752,20597 L 2756,20592 3344,21115 3340,21120 2752,20597 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 2754,20595 L 2758,20590 3346,21113 3342,21118 2754,20595 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 2755,20593 L 2759,20588 3348,21111 3344,21116 2755,20593 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 2757,20591 L 2761,20586 3349,21109 3345,21114 2757,20591 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 2759,20589 L 2763,20584 3351,21107 3347,21112 2759,20589 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 2761,20587 L 2765,20582 3353,21105 3349,21110 2761,20587 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 2762,20585 L 2766,20580 3355,21103 3351,21108 2762,20585 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 2764,20583 L 2768,20578 3356,21101 3352,21106 2764,20583 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 2766,20581 L 2770,20576 3358,21099 3354,21104 2766,20581 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 2768,20579 L 2772,20574 3360,21097 3356,21102 2768,20579 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 2769,20577 L 2773,20572 3362,21095 3358,21100 2769,20577 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 2771,20575 L 2775,20570 3363,21093 3359,21098 2771,20575 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 2773,20573 L 2777,20568 3365,21091 3361,21096 2773,20573 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 2775,20571 L 2779,20566 3367,21089 3363,21094 2775,20571 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 2776,20569 L 2781,20564 3369,21087 3365,21092 2776,20569 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 2778,20567 L 2782,20562 3371,21085 3366,21090 2778,20567 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 2780,20565 L 2784,20560 3372,21083 3368,21088 2780,20565 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 2782,20563 L 2786,20558 3374,21081 3370,21086 2782,20563 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 2783,20561 L 2788,20557 3376,21079 3372,21084 2783,20561 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 2785,20559 L 2789,20555 3378,21077 3373,21082 2785,20559 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 2787,20557 L 2791,20553 3379,21075 3375,21080 2787,20557 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 2789,20555 L 2793,20551 3381,21073 3377,21078 2789,20555 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 2790,20553 L 2795,20549 3383,21071 3379,21076 2790,20553 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 2792,20551 L 2796,20547 3385,21069 3380,21074 2792,20551 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 2794,20549 L 2798,20545 3386,21068 3382,21072 2794,20549 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 2796,20547 L 2800,20543 3388,21066 3384,21070 2796,20547 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 2797,20545 L 2802,20541 3390,21064 3386,21068 2797,20545 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 2799,20543 L 2803,20539 3392,21062 3387,21066 2799,20543 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 2801,20541 L 2805,20537 3393,21060 3389,21064 2801,20541 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 2803,20539 L 2807,20535 3395,21058 3391,21062 2803,20539 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 2805,20537 L 2809,20533 3397,21056 3393,21060 2805,20537 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 2806,20535 L 2810,20531 3399,21054 3395,21058 2806,20535 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 2808,20533 L 2812,20529 3400,21052 3396,21056 2808,20533 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 2810,20531 L 2814,20527 3402,21050 3398,21054 2810,20531 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 2812,20530 L 2816,20525 3404,21048 3400,21052 2812,20530 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 2813,20528 L 2817,20523 3406,21046 3402,21050 2813,20528 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 2815,20526 L 2819,20521 3407,21044 3403,21048 2815,20526 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 2817,20524 L 2821,20519 3409,21042 3405,21046 2817,20524 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 2819,20522 L 2823,20517 3411,21040 3407,21044 2819,20522 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 2820,20520 L 2824,20515 3413,21038 3409,21042 2820,20520 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 2822,20518 L 2826,20513 3414,21036 3410,21041 2822,20518 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 2824,20516 L 2828,20511 3416,21034 3412,21039 2824,20516 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 2826,20514 L 2830,20509 3418,21032 3414,21037 2826,20514 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 2827,20512 L 2831,20507 3420,21030 3416,21035 2827,20512 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 2829,20510 L 2833,20505 3421,21028 3417,21033 2829,20510 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 2831,20508 L 2835,20503 3423,21026 3419,21031 2831,20508 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 2833,20506 L 2837,20501 3425,21024 3421,21029 2833,20506 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 2834,20504 L 2838,20499 3427,21022 3423,21027 2834,20504 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 2836,20502 L 2840,20497 3428,21020 3424,21025 2836,20502 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 2838,20500 L 2842,20495 3430,21018 3426,21023 2838,20500 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 2840,20498 L 2844,20493 3432,21016 3428,21021 2840,20498 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 2841,20496 L 2845,20491 3434,21014 3430,21019 2841,20496 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 2843,20494 L 2847,20489 3435,21012 3431,21017 2843,20494 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 2845,20492 L 2849,20487 3437,21010 3433,21015 2845,20492 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 2847,20490 L 2851,20485 3439,21008 3435,21013 2847,20490 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 2848,20488 L 2853,20483 3441,21006 3437,21011 2848,20488 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 2850,20486 L 2854,20481 3442,21004 3438,21009 2850,20486 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 2852,20484 L 2856,20479 3444,21002 3440,21007 2852,20484 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 2854,20482 L 2858,20478 3446,21000 3442,21005 2854,20482 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 2855,20480 L 2860,20476 3448,20998 3444,21003 2855,20480 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 2857,20478 L 2861,20474 3450,20996 3445,21001 2857,20478 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 2859,20476 L 2863,20472 3451,20994 3447,20999 2859,20476 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 2861,20474 L 2865,20470 3453,20992 3449,20997 2861,20474 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 2862,20472 L 2867,20468 3455,20990 3451,20995 2862,20472 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 2864,20470 L 2868,20466 3457,20988 3452,20993 2864,20470 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 2866,20468 L 2870,20464 3458,20987 3454,20991 2866,20468 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 2868,20466 L 2872,20462 3460,20985 3456,20989 2868,20466 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 2869,20464 L 2874,20460 3462,20983 3458,20987 2869,20464 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 2871,20462 L 2875,20458 3464,20981 3459,20985 2871,20462 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 2873,20460 L 2877,20456 3465,20979 3461,20983 2873,20460 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 2875,20458 L 2879,20454 3467,20977 3463,20981 2875,20458 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 2877,20456 L 2881,20452 3469,20975 3465,20979 2877,20456 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 2878,20454 L 2882,20450 3471,20973 3466,20977 2878,20454 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 2880,20452 L 2884,20448 3472,20971 3468,20975 2880,20452 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 2882,20451 L 2886,20446 3474,20969 3470,20973 2882,20451 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 2884,20449 L 2888,20444 3476,20967 3472,20971 2884,20449 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 2885,20447 L 2889,20442 3478,20965 3474,20969 2885,20447 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 2887,20445 L 2891,20440 3479,20963 3475,20967 2887,20445 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 2889,20443 L 2893,20438 3481,20961 3477,20965 2889,20443 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 2891,20441 L 2895,20436 3483,20959 3479,20963 2891,20441 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 2892,20439 L 2896,20434 3485,20957 3481,20961 2892,20439 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 2894,20437 L 2898,20432 3486,20955 3482,20960 2894,20437 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 2896,20435 L 2900,20430 3488,20953 3484,20958 2896,20435 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 2898,20433 L 2902,20428 3490,20951 3486,20956 2898,20433 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 2899,20431 L 2903,20426 3492,20949 3488,20954 2899,20431 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 2901,20429 L 2905,20424 3493,20947 3489,20952 2901,20429 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 2903,20427 L 2907,20422 3495,20945 3491,20950 2903,20427 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 2905,20425 L 2909,20420 3497,20943 3493,20948 2905,20425 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 2906,20423 L 2910,20418 3499,20941 3495,20946 2906,20423 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 2908,20421 L 2912,20416 3500,20939 3496,20944 2908,20421 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 2910,20419 L 2914,20414 3502,20937 3498,20942 2910,20419 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 2912,20417 L 2916,20412 3504,20935 3500,20940 2912,20417 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 2913,20415 L 2917,20410 3506,20933 3502,20938 2913,20415 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 2915,20413 L 2919,20408 3507,20931 3503,20936 2915,20413 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 2917,20411 L 2921,20406 3509,20929 3505,20934 2917,20411 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 2919,20409 L 2923,20404 3511,20927 3507,20932 2919,20409 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 2920,20407 L 2924,20402 3513,20925 3509,20930 2920,20407 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 2922,20405 L 2926,20400 3514,20923 3510,20928 2922,20405 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 2924,20403 L 2928,20398 3516,20921 3512,20926 2924,20403 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 2926,20401 L 2930,20397 3518,20919 3514,20924 2926,20401 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 2927,20399 L 2932,20395 3520,20917 3516,20922 2927,20399 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 2929,20397 L 2933,20393 3522,20915 3517,20920 2929,20397 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 2931,20395 L 2935,20391 3523,20913 3519,20918 2931,20395 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 2933,20393 L 2937,20389 3525,20911 3521,20916 2933,20393 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 2934,20391 L 2939,20387 3527,20909 3523,20914 2934,20391 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 2936,20389 L 2940,20385 3529,20908 3524,20912 2936,20389 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 2938,20387 L 2942,20383 3530,20906 3526,20910 2938,20387 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 2940,20385 L 2944,20381 3532,20904 3528,20908 2940,20385 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 2941,20383 L 2946,20379 3534,20902 3530,20906 2941,20383 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 2943,20381 L 2947,20377 3536,20900 3531,20904 2943,20381 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 2945,20379 L 2949,20375 3537,20898 3533,20902 2945,20379 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 2947,20377 L 2951,20373 3539,20896 3535,20900 2947,20377 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 2948,20375 L 2953,20371 3541,20894 3537,20898 2948,20375 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 2950,20373 L 2954,20369 3543,20892 3538,20896 2950,20373 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 2952,20371 L 2956,20367 3544,20890 3540,20894 2952,20371 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 2954,20370 L 2958,20365 3546,20888 3542,20892 2954,20370 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 2956,20368 L 2960,20363 3548,20886 3544,20890 2956,20368 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 2957,20366 L 2961,20361 3550,20884 3546,20888 2957,20366 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 2959,20364 L 2963,20359 3551,20882 3547,20886 2959,20364 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 2961,20362 L 2965,20357 3553,20880 3549,20884 2961,20362 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 2963,20360 L 2967,20355 3555,20878 3551,20882 2963,20360 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 2964,20358 L 2968,20353 3557,20876 3553,20881 2964,20358 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 2966,20356 L 2970,20351 3558,20874 3554,20879 2966,20356 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 2968,20354 L 2972,20349 3560,20872 3556,20877 2968,20354 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 2970,20352 L 2974,20347 3562,20870 3558,20875 2970,20352 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 2971,20350 L 2975,20345 3564,20868 3560,20873 2971,20350 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 2973,20348 L 2977,20343 3565,20866 3561,20871 2973,20348 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 2975,20346 L 2979,20341 3567,20864 3563,20869 2975,20346 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 2977,20344 L 2981,20339 3569,20862 3565,20867 2977,20344 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 2978,20342 L 2982,20337 3571,20860 3567,20865 2978,20342 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 2980,20340 L 2984,20335 3572,20858 3568,20863 2980,20340 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 2982,20338 L 2986,20333 3574,20856 3570,20861 2982,20338 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 2984,20336 L 2988,20331 3576,20854 3572,20859 2984,20336 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 2985,20334 L 2989,20329 3578,20852 3574,20857 2985,20334 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 2987,20332 L 2991,20327 3579,20850 3575,20855 2987,20332 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 2989,20330 L 2993,20325 3581,20848 3577,20853 2989,20330 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 2991,20328 L 2995,20323 3583,20846 3579,20851 2991,20328 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 2992,20326 L 2996,20321 3585,20844 3581,20849 2992,20326 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 2994,20324 L 2998,20319 3586,20842 3582,20847 2994,20324 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 2996,20322 L 3000,20317 3588,20840 3584,20845 2996,20322 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 2998,20320 L 3002,20316 3590,20838 3586,20843 2998,20320 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 2999,20318 L 3003,20314 3592,20836 3588,20841 2999,20318 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 3001,20316 L 3005,20312 3593,20834 3589,20839 3001,20316 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 3003,20314 L 3007,20310 3595,20832 3591,20837 3003,20314 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 3005,20312 L 3009,20308 3597,20830 3593,20835 3005,20312 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 3006,20310 L 3011,20306 3599,20828 3595,20833 3006,20310 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 3008,20308 L 3012,20304 3601,20827 3596,20831 3008,20308 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 3010,20306 L 3014,20302 3602,20825 3598,20829 3010,20306 Z"/>
+     </g>
+     <path fill="rgb(140,140,140)" stroke="none" d="M 2935,20339 C 2923,20353 2916,20371 2916,20390 L 2916,20392 2922,20896 C 2923,20938 2957,20972 2999,20972 2999,20972 3000,20972 3000,20972 L 3489,20966 3527,20965 3532,20965 C 3540,20965 3548,20964 3556,20961 L 2935,20339 Z M 2999,20921 C 2985,20921 2973,20910 2973,20895 L 2967,20443 3439,20916 3000,20921 2999,20921 Z"/>
+    </g>
+   </g>
+   <g class="com.sun.star.drawing.TextShape">
+    <g id="id4">
+     <rect class="BoundingBox" stroke="none" fill="none" x="1751" y="21050" width="2000" height="989"/>
+     <text class="TextShape"><tspan class="TextParagraph" font-family="Bitstream Vera Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2001" y="21763"><tspan fill="rgb(58,90,128)" stroke="none">&lt;/&gt;</tspan></tspan></tspan></text>
+    </g>
+   </g>
+   <g class="com.sun.star.drawing.TextShape">
+    <g id="id5">
+     <rect class="BoundingBox" stroke="none" fill="none" x="1752" y="21051" width="2000" height="989"/>
+     <text class="TextShape"><tspan class="TextParagraph" font-family="Bitstream Vera Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="2002" y="21764"><tspan fill="rgb(58,90,128)" stroke="none">&lt;/&gt;</tspan></tspan></tspan></text>
+    </g>
+   </g>
+  </g>
+  <g class="Graphic">
+   <g id="id6">
+    <rect class="BoundingBox" stroke="none" fill="none" x="13787" y="20050" width="2364" height="3001"/>
+    <defs>
+     <clipPath id="clip_path_5" clipPathUnits="userSpaceOnUse">
+      <path d="M 13787,20050 L 16150,20050 16150,23050 13787,23050 13787,20050 Z"/>
+     </clipPath>
+    </defs>
+    <g clip-path="url(#clip_path_5)">
+     <path fill="rgb(49,81,128)" stroke="none" d="M 14631,20169 L 14495,20169 C 14453,20230 14450,20294 14448,20351 L 14317,20400 C 14277,20348 14235,20326 14144,20294 L 14047,20385 C 14081,20471 14104,20510 14159,20547 L 14107,20670 C 14047,20673 13979,20675 13913,20715 L 13913,20842 C 13979,20882 14047,20884 14107,20887 L 14159,21010 C 14104,21047 14081,21086 14047,21172 L 14144,21263 C 14235,21231 14277,21209 14317,21157 L 14448,21206 C 14450,21263 14453,21327 14495,21388 L 14631,21388 C 14673,21327 14675,21263 14678,21206 L 14809,21157 C 14848,21209 14890,21231 14982,21263 L 15079,21172 C 15045,21086 15021,21047 14966,21010 L 15019,20887 C 15079,20884 15147,20882 15213,20842 L 15213,20715 C 15147,20675 15079,20673 15019,20670 L 14966,20547 C 15021,20510 15045,20471 15079,20385 L 14982,20294 C 14890,20326 14848,20348 14809,20400 L 14678,20351 C 14675,20294 14673,20230 14631,20169 L 14631,20169 Z M 14563,20582 C 14678,20582 14772,20670 14772,20778 14772,20887 14678,20975 14563,20975 14448,20975 14353,20887 14353,20778 14353,20670 14448,20582 14563,20582 L 14563,20582 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 14631,20169 L 14495,20169 C 14453,20230 14450,20294 14448,20351 L 14317,20400 C 14277,20348 14235,20326 14144,20294 L 14047,20385 C 14081,20471 14104,20510 14159,20547 L 14107,20670 C 14047,20673 13979,20675 13913,20715 L 13913,20842 C 13979,20882 14047,20884 14107,20887 L 14159,21010 C 14104,21047 14081,21086 14047,21172 L 14144,21263 C 14235,21231 14277,21209 14317,21157 L 14448,21206 C 14450,21263 14453,21327 14495,21388 L 14631,21388 C 14673,21327 14675,21263 14678,21206 L 14809,21157 C 14848,21209 14890,21231 14982,21263 L 15079,21172 C 15045,21086 15021,21047 14966,21010 L 15019,20887 C 15079,20884 15147,20882 15213,20842 L 15213,20715 C 15147,20675 15079,20673 15019,20670 L 14966,20547 C 15021,20510 15045,20471 15079,20385 L 14982,20294 C 14890,20326 14848,20348 14809,20400 L 14678,20351 C 14675,20294 14673,20230 14631,20169 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 14563,20582 C 14678,20582 14772,20670 14772,20778 14772,20887 14678,20975 14563,20975 14448,20975 14353,20887 14353,20778 14353,20670 14448,20582 14563,20582 Z"/>
+     <path fill="rgb(90,90,90)" stroke="none" d="M 15696,21011 L 15570,20962 C 15507,21004 15478,21062 15453,21113 L 15312,21112 C 15296,21050 15267,21014 15195,20952 L 15068,21001 C 15065,21093 15070,21138 15106,21192 L 15008,21286 C 14951,21267 14887,21245 14811,21258 L 14758,21376 C 14803,21436 14865,21462 14919,21486 L 14918,21619 C 14852,21633 14814,21661 14748,21728 L 14800,21847 C 14898,21851 14945,21845 15003,21812 L 15104,21904 C 15083,21957 15060,22017 15073,22089 L 15199,22138 C 15263,22096 15291,22038 15317,21987 L 15458,21989 C 15473,22050 15503,22086 15575,22148 L 15701,22099 C 15705,22007 15699,21963 15663,21909 L 15762,21814 C 15818,21833 15882,21855 15959,21843 L 16011,21724 C 15967,21665 15905,21638 15850,21614 L 15852,21482 C 15918,21467 15955,21439 16022,21372 L 15970,21253 C 15872,21250 15824,21255 15767,21289 L 15666,21196 C 15686,21143 15710,21083 15696,21011 L 15696,21011 Z M 15465,21368 C 15571,21410 15622,21525 15578,21625 15534,21725 15411,21773 15305,21732 15198,21691 15147,21575 15191,21475 15235,21375 15358,21327 15465,21368 L 15465,21368 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 15696,21011 L 15570,20962 C 15507,21004 15478,21062 15453,21113 L 15312,21112 C 15296,21050 15267,21014 15195,20952 L 15068,21001 C 15065,21093 15070,21138 15106,21192 L 15008,21286 C 14951,21267 14887,21245 14811,21258 L 14758,21376 C 14803,21436 14865,21462 14919,21486 L 14918,21619 C 14852,21633 14814,21661 14748,21728 L 14800,21847 C 14898,21851 14945,21845 15003,21812 L 15104,21904 C 15083,21957 15060,22017 15073,22089 L 15199,22138 C 15263,22096 15291,22038 15317,21987 L 15458,21989 C 15473,22050 15503,22086 15575,22148 L 15701,22099 C 15705,22007 15699,21963 15663,21909 L 15762,21814 C 15818,21833 15882,21855 15959,21843 L 16011,21724 C 15967,21665 15905,21638 15850,21614 L 15852,21482 C 15918,21467 15955,21439 16022,21372 L 15970,21253 C 15872,21250 15824,21255 15767,21289 L 15666,21196 C 15686,21143 15710,21083 15696,21011 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 15465,21368 C 15571,21410 15622,21525 15578,21625 15534,21725 15411,21773 15305,21732 15198,21691 15147,21575 15191,21475 15235,21375 15358,21327 15465,21368 Z"/>
+     <path fill="rgb(230,125,30)" stroke="none" d="M 14631,21712 L 14495,21712 C 14453,21773 14450,21837 14448,21894 L 14317,21943 C 14277,21891 14235,21869 14144,21837 L 14047,21928 C 14081,22014 14104,22054 14159,22091 L 14107,22214 C 14047,22216 13979,22219 13913,22258 L 13913,22386 C 13979,22425 14047,22428 14107,22430 L 14159,22553 C 14104,22590 14081,22629 14047,22715 L 14144,22806 C 14235,22774 14277,22752 14317,22701 L 14448,22750 C 14450,22806 14453,22870 14495,22932 L 14631,22932 C 14673,22870 14675,22806 14678,22750 L 14809,22701 C 14848,22752 14890,22774 14982,22806 L 15079,22715 C 15045,22629 15021,22590 14966,22553 L 15019,22430 C 15079,22428 15147,22425 15213,22386 L 15213,22258 C 15147,22219 15079,22216 15019,22214 L 14966,22091 C 15021,22054 15045,22014 15079,21928 L 14982,21837 C 14890,21869 14848,21891 14809,21943 L 14678,21894 C 14675,21837 14673,21773 14631,21712 L 14631,21712 Z M 14563,22125 C 14678,22125 14772,22214 14772,22322 14772,22430 14678,22519 14563,22519 14448,22519 14353,22430 14353,22322 14353,22214 14448,22125 14563,22125 L 14563,22125 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 14631,21712 L 14495,21712 C 14453,21773 14450,21837 14448,21894 L 14317,21943 C 14277,21891 14235,21869 14144,21837 L 14047,21928 C 14081,22014 14104,22054 14159,22091 L 14107,22214 C 14047,22216 13979,22219 13913,22258 L 13913,22386 C 13979,22425 14047,22428 14107,22430 L 14159,22553 C 14104,22590 14081,22629 14047,22715 L 14144,22806 C 14235,22774 14277,22752 14317,22701 L 14448,22750 C 14450,22806 14453,22870 14495,22932 L 14631,22932 C 14673,22870 14675,22806 14678,22750 L 14809,22701 C 14848,22752 14890,22774 14982,22806 L 15079,22715 C 15045,22629 15021,22590 14966,22553 L 15019,22430 C 15079,22428 15147,22425 15213,22386 L 15213,22258 C 15147,22219 15079,22216 15019,22214 L 14966,22091 C 15021,22054 15045,22014 15079,21928 L 14982,21837 C 14890,21869 14848,21891 14809,21943 L 14678,21894 C 14675,21837 14673,21773 14631,21712 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 14563,22125 C 14678,22125 14772,22214 14772,22322 14772,22430 14678,22519 14563,22519 14448,22519 14353,22430 14353,22322 14353,22214 14448,22125 14563,22125 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="Graphic">
+   <g id="id7">
+    <rect class="BoundingBox" stroke="none" fill="none" x="4502" y="20048" width="2364" height="3001"/>
+    <defs>
+     <clipPath id="clip_path_6" clipPathUnits="userSpaceOnUse">
+      <path d="M 4502,20048 L 6865,20048 6865,23048 4502,23048 4502,20048 Z"/>
+     </clipPath>
+    </defs>
+    <g clip-path="url(#clip_path_6)">
+     <path fill="rgb(49,81,128)" stroke="none" d="M 5346,20167 L 5210,20167 C 5168,20228 5165,20292 5163,20349 L 5032,20398 C 4992,20346 4950,20324 4859,20292 L 4762,20383 C 4796,20469 4819,20508 4874,20545 L 4822,20668 C 4762,20671 4694,20673 4628,20713 L 4628,20840 C 4694,20880 4762,20882 4822,20885 L 4874,21008 C 4819,21045 4796,21084 4762,21170 L 4859,21261 C 4950,21229 4992,21207 5032,21155 L 5163,21204 C 5165,21261 5168,21325 5210,21386 L 5346,21386 C 5388,21325 5390,21261 5393,21204 L 5524,21155 C 5563,21207 5605,21229 5697,21261 L 5794,21170 C 5760,21084 5736,21045 5681,21008 L 5734,20885 C 5794,20882 5862,20880 5928,20840 L 5928,20713 C 5862,20673 5794,20671 5734,20668 L 5681,20545 C 5736,20508 5760,20469 5794,20383 L 5697,20292 C 5605,20324 5563,20346 5524,20398 L 5393,20349 C 5390,20292 5388,20228 5346,20167 L 5346,20167 Z M 5278,20580 C 5393,20580 5487,20668 5487,20776 5487,20885 5393,20973 5278,20973 5163,20973 5068,20885 5068,20776 5068,20668 5163,20580 5278,20580 L 5278,20580 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 5346,20167 L 5210,20167 C 5168,20228 5165,20292 5163,20349 L 5032,20398 C 4992,20346 4950,20324 4859,20292 L 4762,20383 C 4796,20469 4819,20508 4874,20545 L 4822,20668 C 4762,20671 4694,20673 4628,20713 L 4628,20840 C 4694,20880 4762,20882 4822,20885 L 4874,21008 C 4819,21045 4796,21084 4762,21170 L 4859,21261 C 4950,21229 4992,21207 5032,21155 L 5163,21204 C 5165,21261 5168,21325 5210,21386 L 5346,21386 C 5388,21325 5390,21261 5393,21204 L 5524,21155 C 5563,21207 5605,21229 5697,21261 L 5794,21170 C 5760,21084 5736,21045 5681,21008 L 5734,20885 C 5794,20882 5862,20880 5928,20840 L 5928,20713 C 5862,20673 5794,20671 5734,20668 L 5681,20545 C 5736,20508 5760,20469 5794,20383 L 5697,20292 C 5605,20324 5563,20346 5524,20398 L 5393,20349 C 5390,20292 5388,20228 5346,20167 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 5278,20580 C 5393,20580 5487,20668 5487,20776 5487,20885 5393,20973 5278,20973 5163,20973 5068,20885 5068,20776 5068,20668 5163,20580 5278,20580 Z"/>
+     <path fill="rgb(90,90,90)" stroke="none" d="M 6411,21009 L 6285,20960 C 6222,21002 6193,21060 6168,21111 L 6027,21110 C 6011,21048 5982,21012 5910,20950 L 5783,20999 C 5780,21091 5785,21136 5821,21190 L 5723,21284 C 5666,21265 5602,21243 5526,21256 L 5473,21374 C 5518,21434 5580,21460 5634,21484 L 5633,21617 C 5567,21631 5529,21659 5463,21726 L 5515,21845 C 5613,21849 5660,21843 5718,21810 L 5819,21902 C 5798,21955 5775,22015 5788,22087 L 5914,22136 C 5978,22094 6006,22036 6032,21985 L 6173,21987 C 6188,22048 6218,22084 6290,22146 L 6416,22097 C 6420,22005 6414,21961 6378,21907 L 6477,21812 C 6533,21831 6597,21853 6674,21841 L 6726,21722 C 6682,21663 6620,21636 6565,21612 L 6567,21480 C 6633,21465 6670,21437 6737,21370 L 6685,21251 C 6587,21248 6539,21253 6482,21287 L 6381,21194 C 6401,21141 6425,21081 6411,21009 L 6411,21009 Z M 6180,21366 C 6286,21408 6337,21523 6293,21623 6249,21723 6126,21771 6020,21730 5913,21689 5862,21573 5906,21473 5950,21373 6073,21325 6180,21366 L 6180,21366 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 6411,21009 L 6285,20960 C 6222,21002 6193,21060 6168,21111 L 6027,21110 C 6011,21048 5982,21012 5910,20950 L 5783,20999 C 5780,21091 5785,21136 5821,21190 L 5723,21284 C 5666,21265 5602,21243 5526,21256 L 5473,21374 C 5518,21434 5580,21460 5634,21484 L 5633,21617 C 5567,21631 5529,21659 5463,21726 L 5515,21845 C 5613,21849 5660,21843 5718,21810 L 5819,21902 C 5798,21955 5775,22015 5788,22087 L 5914,22136 C 5978,22094 6006,22036 6032,21985 L 6173,21987 C 6188,22048 6218,22084 6290,22146 L 6416,22097 C 6420,22005 6414,21961 6378,21907 L 6477,21812 C 6533,21831 6597,21853 6674,21841 L 6726,21722 C 6682,21663 6620,21636 6565,21612 L 6567,21480 C 6633,21465 6670,21437 6737,21370 L 6685,21251 C 6587,21248 6539,21253 6482,21287 L 6381,21194 C 6401,21141 6425,21081 6411,21009 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 6180,21366 C 6286,21408 6337,21523 6293,21623 6249,21723 6126,21771 6020,21730 5913,21689 5862,21573 5906,21473 5950,21373 6073,21325 6180,21366 Z"/>
+     <path fill="rgb(230,125,30)" stroke="none" d="M 5346,21710 L 5210,21710 C 5168,21771 5165,21835 5163,21892 L 5032,21941 C 4992,21889 4950,21867 4859,21835 L 4762,21926 C 4796,22012 4819,22052 4874,22089 L 4822,22212 C 4762,22214 4694,22217 4628,22256 L 4628,22384 C 4694,22423 4762,22426 4822,22428 L 4874,22551 C 4819,22588 4796,22627 4762,22713 L 4859,22804 C 4950,22772 4992,22750 5032,22699 L 5163,22748 C 5165,22804 5168,22868 5210,22930 L 5346,22930 C 5388,22868 5390,22804 5393,22748 L 5524,22699 C 5563,22750 5605,22772 5697,22804 L 5794,22713 C 5760,22627 5736,22588 5681,22551 L 5734,22428 C 5794,22426 5862,22423 5928,22384 L 5928,22256 C 5862,22217 5794,22214 5734,22212 L 5681,22089 C 5736,22052 5760,22012 5794,21926 L 5697,21835 C 5605,21867 5563,21889 5524,21941 L 5393,21892 C 5390,21835 5388,21771 5346,21710 L 5346,21710 Z M 5278,22123 C 5393,22123 5487,22212 5487,22320 5487,22428 5393,22517 5278,22517 5163,22517 5068,22428 5068,22320 5068,22212 5163,22123 5278,22123 L 5278,22123 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 5346,21710 L 5210,21710 C 5168,21771 5165,21835 5163,21892 L 5032,21941 C 4992,21889 4950,21867 4859,21835 L 4762,21926 C 4796,22012 4819,22052 4874,22089 L 4822,22212 C 4762,22214 4694,22217 4628,22256 L 4628,22384 C 4694,22423 4762,22426 4822,22428 L 4874,22551 C 4819,22588 4796,22627 4762,22713 L 4859,22804 C 4950,22772 4992,22750 5032,22699 L 5163,22748 C 5165,22804 5168,22868 5210,22930 L 5346,22930 C 5388,22868 5390,22804 5393,22748 L 5524,22699 C 5563,22750 5605,22772 5697,22804 L 5794,22713 C 5760,22627 5736,22588 5681,22551 L 5734,22428 C 5794,22426 5862,22423 5928,22384 L 5928,22256 C 5862,22217 5794,22214 5734,22212 L 5681,22089 C 5736,22052 5760,22012 5794,21926 L 5697,21835 C 5605,21867 5563,21889 5524,21941 L 5393,21892 C 5390,21835 5388,21771 5346,21710 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" stroke-width="23" stroke-linejoin="miter" d="M 5278,22123 C 5393,22123 5487,22212 5487,22320 5487,22428 5393,22517 5278,22517 5163,22517 5068,22428 5068,22320 5068,22212 5163,22123 5278,22123 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="Group">
+   <g class="com.sun.star.drawing.CustomShape">
+    <g id="id8">
+     <rect class="BoundingBox" stroke="none" fill="none" x="9249" y="19749" width="2254" height="3004"/>
+     <path fill="rgb(90,90,90)" stroke="none" d="M 10375,19750 C 9761,19750 9250,19920 9250,20125 L 9250,22375 C 9250,22580 9761,22751 10375,22751 10989,22751 11501,22580 11501,22375 L 11501,20125 C 11501,19920 10989,19750 10375,19750 L 10375,19750 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" d="M 10375,19750 C 9761,19750 9250,19920 9250,20125 L 9250,22375 C 9250,22580 9761,22751 10375,22751 10989,22751 11501,22580 11501,22375 L 11501,20125 C 11501,19920 10989,19750 10375,19750 Z"/>
+     <path fill="rgb(156,156,156)" stroke="none" d="M 10375,19750 C 9761,19750 9250,19920 9250,20125 9250,20329 9761,20500 10375,20500 10989,20500 11501,20329 11501,20125 11501,19920 10989,19750 10375,19750 L 10375,19750 Z"/>
+     <path fill="none" stroke="rgb(65,65,65)" d="M 10375,19750 C 9761,19750 9250,19920 9250,20125 9250,20329 9761,20500 10375,20500 10989,20500 11501,20329 11501,20125 11501,19920 10989,19750 10375,19750 Z"/>
+    </g>
+   </g>
+   <g class="Graphic">
+    <g id="id9">
+     <rect class="BoundingBox" stroke="none" fill="none" x="9650" y="20931" width="1351" height="1149"/>
+     <path fill="rgb(255,255,255)" stroke="none" d="M 10463,21595 C 10573,21614 10675,21654 10765,21712 L 10325,20952 9885,21712 C 9975,21654 10077,21614 10187,21595 L 10325,21356 10463,21595 Z"/>
+     <path fill="rgb(255,255,255)" stroke="none" d="M 10515,21684 C 10454,21668 10391,21659 10325,21659 10259,21659 10196,21668 10135,21684 10066,21703 10000,21731 9940,21768 9826,21838 9733,21939 9671,22058 L 9912,22058 C 10010,21938 10158,21861 10325,21861 10492,21861 10640,21938 10738,22058 L 10979,22058 C 10917,21939 10824,21838 10710,21768 10650,21731 10584,21703 10515,21684 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="Group">
+   <g class="Group">
+    <g class="Graphic">
+     <g id="id10">
+      <rect class="BoundingBox" stroke="none" fill="none" x="17050" y="20000" width="2751" height="2751"/>
+      <defs>
+       <clipPath id="clip_path_7" clipPathUnits="userSpaceOnUse">
+        <path d="M 18720,20361 L 17655,20361 C 17614,20361 17581,20394 17581,20433 L 17581,22366 C 17581,22405 17614,22438 17655,22438 L 19251,22438 C 19291,22438 19325,22405 19325,22366 L 19325,20971 18720,20361 Z"/>
+       </clipPath>
+      </defs>
+      <g clip-path="url(#clip_path_7)">
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18484,19760 L 18702,20073 16861,21351 16644,21037 18484,19760 Z"/>
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18692,20059 L 18712,20088 16871,21365 16852,21337 18692,20059 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18702,20074 L 18722,20102 16881,21380 16862,21351 18702,20074 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18712,20088 L 18732,20117 16891,21394 16872,21366 18712,20088 Z"/>
+       <path fill="rgb(253,253,253)" stroke="none" d="M 18723,20103 L 18742,20131 16902,21409 16882,21380 18723,20103 Z"/>
+       <path fill="rgb(253,253,253)" stroke="none" d="M 18733,20117 L 18752,20146 16912,21423 16892,21395 18733,20117 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18743,20132 L 18762,20160 16922,21438 16902,21409 18743,20132 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18753,20146 L 18772,20175 16932,21452 16912,21424 18753,20146 Z"/>
+       <path fill="rgb(251,251,251)" stroke="none" d="M 18763,20161 L 18782,20189 16942,21467 16922,21438 18763,20161 Z"/>
+       <path fill="rgb(250,250,250)" stroke="none" d="M 18773,20175 L 18792,20204 16952,21481 16932,21453 18773,20175 Z"/>
+       <path fill="rgb(250,250,250)" stroke="none" d="M 18783,20190 L 18803,20218 16962,21496 16942,21467 18783,20190 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18793,20205 L 18813,20233 16972,21510 16952,21482 18793,20205 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18803,20219 L 18823,20247 16982,21525 16963,21497 18803,20219 Z"/>
+       <path fill="rgb(248,248,248)" stroke="none" d="M 18813,20234 L 18833,20262 16992,21539 16973,21511 18813,20234 Z"/>
+       <path fill="rgb(247,247,247)" stroke="none" d="M 18823,20248 L 18843,20276 17002,21554 16983,21526 18823,20248 Z"/>
+       <path fill="rgb(247,247,247)" stroke="none" d="M 18833,20263 L 18853,20291 17012,21568 16993,21540 18833,20263 Z"/>
+       <path fill="rgb(246,246,246)" stroke="none" d="M 18843,20277 L 18863,20305 17022,21583 17003,21555 18843,20277 Z"/>
+       <path fill="rgb(246,246,246)" stroke="none" d="M 18853,20292 L 18873,20320 17032,21597 17013,21569 18853,20292 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18864,20306 L 18883,20334 17043,21612 17023,21584 18864,20306 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18874,20321 L 18893,20349 17053,21626 17033,21598 18874,20321 Z"/>
+       <path fill="rgb(244,244,244)" stroke="none" d="M 18884,20335 L 18903,20363 17063,21641 17043,21613 18884,20335 Z"/>
+       <path fill="rgb(243,243,243)" stroke="none" d="M 18894,20350 L 18913,20378 17073,21655 17053,21627 18894,20350 Z"/>
+       <path fill="rgb(243,243,243)" stroke="none" d="M 18904,20364 L 18923,20392 17083,21670 17063,21642 18904,20364 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18914,20379 L 18934,20407 17093,21684 17073,21656 18914,20379 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18924,20393 L 18944,20421 17103,21699 17083,21671 18924,20393 Z"/>
+       <path fill="rgb(241,241,241)" stroke="none" d="M 18934,20408 L 18954,20436 17113,21713 17093,21685 18934,20408 Z"/>
+       <path fill="rgb(241,241,241)" stroke="none" d="M 18944,20422 L 18964,20451 17123,21728 17104,21700 18944,20422 Z"/>
+       <path fill="rgb(240,240,240)" stroke="none" d="M 18954,20437 L 18974,20465 17133,21742 17114,21714 18954,20437 Z"/>
+       <path fill="rgb(239,239,239)" stroke="none" d="M 18964,20451 L 18984,20480 17143,21757 17124,21729 18964,20451 Z"/>
+       <path fill="rgb(239,239,239)" stroke="none" d="M 18974,20466 L 18994,20494 17153,21772 17134,21743 18974,20466 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 18984,20480 L 19004,20509 17163,21786 17144,21758 18984,20480 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 18995,20495 L 19014,20523 17174,21801 17154,21772 18995,20495 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 19005,20509 L 19024,20538 17184,21815 17164,21787 19005,20509 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 19015,20524 L 19034,20552 17194,21830 17174,21801 19015,20524 Z"/>
+       <path fill="rgb(236,236,236)" stroke="none" d="M 19025,20538 L 19044,20567 17204,21844 17184,21816 19025,20538 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 19035,20553 L 19054,20581 17214,21859 17194,21830 19035,20553 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 19045,20567 L 19065,20596 17224,21873 17204,21845 19045,20567 Z"/>
+       <path fill="rgb(234,234,234)" stroke="none" d="M 19055,20582 L 19075,20610 17234,21888 17214,21859 19055,20582 Z"/>
+       <path fill="rgb(234,234,234)" stroke="none" d="M 19065,20596 L 19085,20625 17244,21902 17224,21874 19065,20596 Z"/>
+       <path fill="rgb(233,233,233)" stroke="none" d="M 19075,20611 L 19095,20639 17254,21917 17235,21888 19075,20611 Z"/>
+       <path fill="rgb(232,232,232)" stroke="none" d="M 19085,20625 L 19105,20654 17264,21931 17245,21903 19085,20625 Z"/>
+       <path fill="rgb(232,232,232)" stroke="none" d="M 19095,20640 L 19115,20668 17274,21946 17255,21917 19095,20640 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 19105,20655 L 19125,20683 17284,21960 17265,21932 19105,20655 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 19115,20669 L 19135,20697 17294,21975 17275,21947 19115,20669 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 19126,20684 L 19145,20712 17305,21989 17285,21961 19126,20684 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 19136,20698 L 19155,20726 17315,22004 17295,21976 19136,20698 Z"/>
+       <path fill="rgb(229,229,229)" stroke="none" d="M 19146,20713 L 19165,20741 17325,22018 17305,21990 19146,20713 Z"/>
+       <path fill="rgb(228,228,228)" stroke="none" d="M 19156,20727 L 19175,20755 17335,22033 17315,22005 19156,20727 Z"/>
+       <path fill="rgb(228,228,228)" stroke="none" d="M 19166,20742 L 19185,20770 17345,22047 17325,22019 19166,20742 Z"/>
+       <path fill="rgb(227,227,227)" stroke="none" d="M 19176,20756 L 19195,20784 17355,22062 17335,22034 19176,20756 Z"/>
+       <path fill="rgb(227,227,227)" stroke="none" d="M 19186,20771 L 19206,20799 17365,22076 17345,22048 19186,20771 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 19196,20785 L 19216,20813 17375,22091 17355,22063 19196,20785 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 19206,20800 L 19226,20828 17385,22105 17366,22077 19206,20800 Z"/>
+       <path fill="rgb(225,225,225)" stroke="none" d="M 19216,20814 L 19236,20842 17395,22120 17376,22092 19216,20814 Z"/>
+       <path fill="rgb(224,224,224)" stroke="none" d="M 19226,20829 L 19246,20857 17405,22134 17386,22106 19226,20829 Z"/>
+       <path fill="rgb(224,224,224)" stroke="none" d="M 19236,20843 L 19256,20871 17415,22149 17396,22121 19236,20843 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 19246,20858 L 19266,20886 17425,22163 17406,22135 19246,20858 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 19256,20872 L 19276,20901 17435,22178 17416,22150 19256,20872 Z"/>
+       <path fill="rgb(222,222,222)" stroke="none" d="M 19267,20887 L 19286,20915 17446,22192 17426,22164 19267,20887 Z"/>
+       <path fill="rgb(221,221,221)" stroke="none" d="M 19277,20901 L 19296,20930 17456,22207 17436,22179 19277,20901 Z"/>
+       <path fill="rgb(221,221,221)" stroke="none" d="M 19287,20916 L 19306,20944 17466,22222 17446,22193 19287,20916 Z"/>
+       <path fill="rgb(220,220,220)" stroke="none" d="M 19297,20930 L 19316,20959 17476,22236 17456,22208 19297,20930 Z"/>
+       <path fill="rgb(220,220,220)" stroke="none" d="M 19307,20945 L 19326,20973 17486,22251 17466,22222 19307,20945 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 19317,20959 L 19337,20988 17496,22265 17476,22237 19317,20959 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 19327,20974 L 19347,21002 17506,22280 17486,22251 19327,20974 Z"/>
+       <path fill="rgb(218,218,218)" stroke="none" d="M 19337,20988 L 19357,21017 17516,22294 17496,22266 19337,20988 Z"/>
+       <path fill="rgb(217,217,217)" stroke="none" d="M 19347,21003 L 19367,21031 17526,22309 17507,22280 19347,21003 Z"/>
+       <path fill="rgb(217,217,217)" stroke="none" d="M 19357,21017 L 19377,21046 17536,22323 17517,22295 19357,21017 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 19367,21032 L 19387,21060 17546,22338 17527,22309 19367,21032 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 19377,21046 L 19397,21075 17556,22352 17537,22324 19377,21046 Z"/>
+       <path fill="rgb(215,215,215)" stroke="none" d="M 19387,21061 L 19407,21089 17566,22367 17547,22338 19387,21061 Z"/>
+       <path fill="rgb(215,215,215)" stroke="none" d="M 19398,21075 L 19417,21104 17577,22381 17557,22353 19398,21075 Z"/>
+       <path fill="rgb(214,214,214)" stroke="none" d="M 19408,21090 L 19427,21118 17587,22396 17567,22367 19408,21090 Z"/>
+       <path fill="rgb(213,213,213)" stroke="none" d="M 19418,21105 L 19437,21133 17597,22410 17577,22382 19418,21105 Z"/>
+       <path fill="rgb(213,213,213)" stroke="none" d="M 19428,21119 L 19447,21147 17607,22425 17587,22397 19428,21119 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 19438,21134 L 19457,21162 17617,22439 17597,22411 19438,21134 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 19448,21148 L 19468,21176 17627,22454 17607,22426 19448,21148 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 19458,21163 L 19478,21191 17637,22468 17617,22440 19458,21163 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 19468,21177 L 19488,21205 17647,22483 17627,22455 19468,21177 Z"/>
+       <path fill="rgb(210,210,210)" stroke="none" d="M 19478,21192 L 19498,21220 17657,22497 17638,22469 19478,21192 Z"/>
+       <path fill="rgb(209,209,209)" stroke="none" d="M 19488,21206 L 19508,21234 17667,22512 17648,22484 19488,21206 Z"/>
+       <path fill="rgb(209,209,209)" stroke="none" d="M 19498,21221 L 19518,21249 17677,22526 17658,22498 19498,21221 Z"/>
+       <path fill="rgb(208,208,208)" stroke="none" d="M 19508,21235 L 19528,21263 17687,22541 17668,22513 19508,21235 Z"/>
+       <path fill="rgb(208,208,208)" stroke="none" d="M 19518,21250 L 19538,21278 17697,22555 17678,22527 19518,21250 Z"/>
+       <path fill="rgb(207,207,207)" stroke="none" d="M 19529,21264 L 19548,21292 17708,22570 17688,22542 19529,21264 Z"/>
+       <path fill="rgb(206,206,206)" stroke="none" d="M 19539,21279 L 19558,21307 17718,22584 17698,22556 19539,21279 Z"/>
+       <path fill="rgb(206,206,206)" stroke="none" d="M 19549,21293 L 19568,21321 17728,22599 17708,22571 19549,21293 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 19559,21308 L 19578,21336 17738,22613 17718,22585 19559,21308 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 19569,21322 L 19588,21351 17748,22628 17728,22600 19569,21322 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 19579,21337 L 19598,21365 17758,22642 17738,22614 19579,21337 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 19589,21351 L 19609,21380 17768,22657 17748,22629 19589,21351 Z"/>
+       <path fill="rgb(203,203,203)" stroke="none" d="M 19599,21366 L 19619,21394 17778,22672 17758,22643 19599,21366 Z"/>
+       <path fill="rgb(202,202,202)" stroke="none" d="M 19609,21380 L 19629,21409 17788,22686 17769,22658 19609,21380 Z"/>
+       <path fill="rgb(202,202,202)" stroke="none" d="M 19619,21395 L 19639,21423 17798,22701 17779,22672 19619,21395 Z"/>
+       <path fill="rgb(201,201,201)" stroke="none" d="M 19629,21409 L 19649,21438 17808,22715 17789,22687 19629,21409 Z"/>
+       <path fill="rgb(201,201,201)" stroke="none" d="M 19639,21424 L 19659,21452 17818,22730 17799,22701 19639,21424 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 19649,21438 L 19669,21467 17828,22744 17809,22716 19649,21438 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 19659,21453 L 19679,21481 17838,22759 17819,22730 19659,21453 Z"/>
+       <path fill="rgb(199,199,199)" stroke="none" d="M 19670,21467 L 19689,21496 17849,22773 17829,22745 19670,21467 Z"/>
+       <path fill="rgb(198,198,198)" stroke="none" d="M 19680,21482 L 19699,21510 17859,22788 17839,22759 19680,21482 Z"/>
+       <path fill="rgb(198,198,198)" stroke="none" d="M 19690,21496 L 19709,21525 17869,22802 17849,22774 19690,21496 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 19700,21511 L 19719,21539 17879,22817 17859,22788 19700,21511 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 19710,21526 L 19729,21554 17889,22831 17869,22803 19710,21526 Z"/>
+       <path fill="rgb(196,196,196)" stroke="none" d="M 19720,21540 L 19740,21568 17899,22846 17879,22817 19720,21540 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 19730,21555 L 19750,21583 17909,22860 17889,22832 19730,21555 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 19740,21569 L 19760,21597 17919,22875 17899,22847 19740,21569 Z"/>
+       <path fill="rgb(194,194,194)" stroke="none" d="M 19750,21584 L 19770,21612 17929,22889 17910,22861 19750,21584 Z"/>
+       <path fill="rgb(194,194,194)" stroke="none" d="M 19760,21598 L 19780,21626 17939,22904 17920,22876 19760,21598 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 19770,21613 L 19790,21641 17949,22918 17930,22890 19770,21613 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 19780,21627 L 19800,21655 17959,22933 17940,22905 19780,21627 Z"/>
+       <path fill="rgb(192,192,192)" stroke="none" d="M 19790,21642 L 19810,21670 17969,22947 17950,22919 19790,21642 Z"/>
+       <path fill="rgb(191,191,191)" stroke="none" d="M 19801,21656 L 19820,21684 17980,22962 17960,22934 19801,21656 Z"/>
+       <path fill="rgb(191,191,191)" stroke="none" d="M 19811,21671 L 19830,21699 17990,22976 17970,22948 19811,21671 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 19821,21685 L 19840,21713 18000,22991 17980,22963 19821,21685 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 19831,21700 L 19850,21728 18010,23005 17990,22977 19831,21700 Z"/>
+       <path fill="rgb(189,189,189)" stroke="none" d="M 19841,21714 L 19860,21742 18020,23020 18000,22992 19841,21714 Z"/>
+       <path fill="rgb(189,189,189)" stroke="none" d="M 19851,21729 L 19871,21757 18030,23034 18010,23006 19851,21729 Z"/>
+       <path fill="rgb(188,188,188)" stroke="none" d="M 19861,21743 L 19881,21771 18040,23049 18020,23021 19861,21743 Z"/>
+       <path fill="rgb(187,187,187)" stroke="none" d="M 19871,21758 L 19891,21786 18050,23063 18030,23035 19871,21758 Z"/>
+       <path fill="rgb(187,187,187)" stroke="none" d="M 19881,21772 L 19901,21801 18060,23078 18041,23050 19881,21772 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 19891,21787 L 19911,21815 18070,23092 18051,23064 19891,21787 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 19901,21801 L 19921,21830 18080,23107 18061,23079 19901,21801 Z"/>
+       <path fill="rgb(185,185,185)" stroke="none" d="M 19911,21816 L 19931,21844 18090,23122 18071,23093 19911,21816 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 19921,21830 L 19941,21859 18100,23136 18081,23108 19921,21830 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 19932,21845 L 19951,21873 18111,23151 18091,23122 19932,21845 Z"/>
+       <path fill="rgb(183,183,183)" stroke="none" d="M 19942,21859 L 19961,21888 18121,23165 18101,23137 19942,21859 Z"/>
+       <path fill="rgb(183,183,183)" stroke="none" d="M 19952,21874 L 19971,21902 18131,23180 18111,23151 19952,21874 Z"/>
+       <path fill="rgb(182,182,182)" stroke="none" d="M 19962,21888 L 19981,21917 18141,23194 18121,23166 19962,21888 Z"/>
+       <path fill="rgb(182,182,182)" stroke="none" d="M 19972,21903 L 19991,21931 18151,23209 18131,23180 19972,21903 Z"/>
+       <path fill="rgb(181,181,181)" stroke="none" d="M 19982,21917 L 20001,21946 18161,23223 18141,23195 19982,21917 Z"/>
+       <path fill="rgb(180,180,180)" stroke="none" d="M 19992,21932 L 20012,21960 18171,23238 18151,23209 19992,21932 Z"/>
+       <path fill="rgb(180,180,180)" stroke="none" d="M 20002,21946 L 20022,21975 18181,23252 18161,23224 20002,21946 Z"/>
+       <path fill="rgb(179,179,179)" stroke="none" d="M 20012,21961 L 20032,21989 18191,23267 18172,23238 20012,21961 Z"/>
+       <path fill="rgb(179,179,179)" stroke="none" d="M 20022,21976 L 20042,22004 18201,23281 18182,23253 20022,21976 Z"/>
+       <path fill="rgb(178,178,178)" stroke="none" d="M 20032,21990 L 20052,22018 18211,23296 18192,23267 20032,21990 Z"/>
+       <path fill="rgb(178,178,178)" stroke="none" d="M 20042,22005 L 20062,22033 18221,23310 18202,23282 20042,22005 Z"/>
+       <path fill="rgb(177,177,177)" stroke="none" d="M 20052,22019 L 20072,22047 18231,23325 18212,23297 20052,22019 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 20062,22034 L 20082,22062 18241,23339 18222,23311 20062,22034 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 20073,22048 L 20092,22076 18252,23354 18232,23326 20073,22048 Z"/>
+       <path fill="rgb(175,175,175)" stroke="none" d="M 20083,22063 L 20102,22091 18262,23368 18242,23340 20083,22063 Z"/>
+       <path fill="rgb(175,175,175)" stroke="none" d="M 20093,22077 L 20112,22105 18272,23383 18252,23355 20093,22077 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 20103,22092 L 20122,22120 18282,23397 18262,23369 20103,22092 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 20113,22106 L 20132,22134 18292,23412 18272,23384 20113,22106 Z"/>
+       <path fill="rgb(173,173,173)" stroke="none" d="M 20123,22121 L 20143,22149 18302,23426 18282,23398 20123,22121 Z"/>
+       <path fill="rgb(172,172,172)" stroke="none" d="M 20133,22135 L 20153,22163 18312,23441 18292,23413 20133,22135 Z"/>
+       <path fill="rgb(172,172,172)" stroke="none" d="M 20143,22150 L 20163,22178 18322,23455 18302,23427 20143,22150 Z"/>
+       <path fill="rgb(171,171,171)" stroke="none" d="M 20153,22164 L 20173,22192 18332,23470 18313,23442 20153,22164 Z"/>
+       <path fill="rgb(171,171,171)" stroke="none" d="M 20163,22179 L 20183,22207 18342,23484 18323,23456 20163,22179 Z"/>
+       <path fill="rgb(170,170,170)" stroke="none" d="M 20173,22193 L 20193,22221 18352,23499 18333,23471 20173,22193 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 20183,22208 L 20203,22236 18362,23513 18343,23485 20183,22208 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 20193,22222 L 20213,22251 18372,23528 18353,23500 20193,22222 Z"/>
+       <path fill="rgb(168,168,168)" stroke="none" d="M 20204,22237 L 20223,22265 18383,23542 18363,23514 20204,22237 Z"/>
+       <path fill="rgb(168,168,168)" stroke="none" d="M 20214,22251 L 20233,22280 18393,23557 18373,23529 20214,22251 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 20224,22266 L 20243,22294 18403,23572 18383,23543 20224,22266 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 20234,22280 L 20253,22309 18413,23586 18393,23558 20234,22280 Z"/>
+       <path fill="rgb(166,166,166)" stroke="none" d="M 20244,22295 L 20263,22323 18423,23601 18403,23572 20244,22295 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 20254,22309 L 20273,22338 18433,23615 18413,23587 20254,22309 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 20264,22324 L 20284,22352 18443,23630 18423,23601 20264,22324 Z"/>
+       <path fill="rgb(164,164,164)" stroke="none" d="M 20274,22338 L 20294,22367 18453,23644 18433,23616 20274,22338 Z"/>
+       <path fill="rgb(164,164,164)" stroke="none" d="M 20284,22353 L 20304,22381 18463,23659 18444,23630 20284,22353 Z"/>
+       <path fill="rgb(163,163,163)" stroke="none" d="M 20294,22367 L 20314,22396 18473,23673 18454,23645 20294,22367 Z"/>
+       <path fill="rgb(163,163,163)" stroke="none" d="M 20304,22382 L 20324,22410 18483,23688 18464,23659 20304,22382 Z"/>
+       <path fill="rgb(162,162,162)" stroke="none" d="M 20314,22396 L 20334,22425 18493,23702 18474,23674 20314,22396 Z"/>
+       <path fill="rgb(161,161,161)" stroke="none" d="M 20324,22411 L 20344,22439 18503,23717 18484,23688 20324,22411 Z"/>
+       <path fill="rgb(161,161,161)" stroke="none" d="M 20335,22426 L 20354,22454 18513,23731 18494,23703 20335,22426 Z"/>
+       <path fill="rgb(160,160,160)" stroke="none" d="M 20345,22440 L 20364,22468 18524,23746 18504,23717 20345,22440 Z"/>
+       <path fill="rgb(160,160,160)" stroke="none" d="M 20355,22455 L 20374,22483 18534,23760 18514,23732 20355,22455 Z"/>
+       <path fill="rgb(159,159,159)" stroke="none" d="M 20365,22469 L 20384,22497 18544,23775 18524,23747 20365,22469 Z"/>
+       <path fill="rgb(158,158,158)" stroke="none" d="M 20375,22484 L 20394,22512 18554,23789 18534,23761 20375,22484 Z"/>
+       <path fill="rgb(158,158,158)" stroke="none" d="M 20385,22498 L 20404,22526 18564,23804 18544,23776 20385,22498 Z"/>
+       <path fill="rgb(157,157,157)" stroke="none" d="M 20395,22513 L 20415,22541 18574,23818 18554,23790 20395,22513 Z"/>
+       <path fill="rgb(157,157,157)" stroke="none" d="M 20405,22527 L 20425,22555 18584,23833 18564,23805 20405,22527 Z"/>
+       <path fill="rgb(156,156,156)" stroke="none" d="M 20415,22542 L 20435,22570 18594,23847 18574,23819 20415,22542 Z"/>
+       <path fill="rgb(156,156,156)" stroke="none" d="M 20425,22556 L 20445,22584 18604,23862 18585,23834 20425,22556 Z"/>
+       <path fill="rgb(155,155,155)" stroke="none" d="M 20435,22571 L 20455,22599 18614,23876 18595,23848 20435,22571 Z"/>
+       <path fill="rgb(154,154,154)" stroke="none" d="M 20445,22585 L 20465,22613 18624,23891 18605,23863 20445,22585 Z"/>
+       <path fill="rgb(154,154,154)" stroke="none" d="M 20455,22600 L 20475,22628 18634,23905 18615,23877 20455,22600 Z"/>
+       <path fill="rgb(153,153,153)" stroke="none" d="M 20465,22614 L 20485,22642 18644,23920 18625,23892 20465,22614 Z"/>
+       <path fill="rgb(153,153,153)" stroke="none" d="M 20476,22629 L 20495,22657 18655,23934 18635,23906 20476,22629 Z"/>
+       <path fill="rgb(152,152,152)" stroke="none" d="M 20486,22643 L 20505,22671 18665,23949 18645,23921 20486,22643 Z"/>
+       <path fill="rgb(152,152,152)" stroke="none" d="M 20496,22658 L 20515,22686 18675,23963 18655,23935 20496,22658 Z"/>
+       <path fill="rgb(151,151,151)" stroke="none" d="M 20506,22672 L 20525,22701 18685,23978 18665,23950 20506,22672 Z"/>
+       <path fill="rgb(150,150,150)" stroke="none" d="M 20516,22687 L 20535,22715 18695,23993 18675,23964 20516,22687 Z"/>
+       <path fill="rgb(150,150,150)" stroke="none" d="M 20526,22701 L 20546,22730 18705,24007 18685,23979 20526,22701 Z"/>
+       <path fill="rgb(149,149,149)" stroke="none" d="M 20536,22716 L 20556,22744 18715,24022 18695,23993 20536,22716 Z"/>
+       <path fill="rgb(149,149,149)" stroke="none" d="M 20546,22730 L 20566,22759 18725,24036 18705,24008 20546,22730 Z"/>
+       <path fill="rgb(148,148,148)" stroke="none" d="M 20556,22745 L 20576,22773 18735,24051 18716,24022 20556,22745 Z"/>
+       <path fill="rgb(148,148,148)" stroke="none" d="M 20566,22759 L 20586,22788 18745,24065 18726,24037 20566,22759 Z"/>
+       <path fill="rgb(147,147,147)" stroke="none" d="M 20576,22774 L 20596,22802 18755,24080 18736,24051 20576,22774 Z"/>
+       <path fill="rgb(146,146,146)" stroke="none" d="M 20586,22788 L 20606,22817 18765,24094 18746,24066 20586,22788 Z"/>
+       <path fill="rgb(146,146,146)" stroke="none" d="M 20596,22803 L 20616,22831 18775,24109 18756,24080 20596,22803 Z"/>
+       <path fill="rgb(145,145,145)" stroke="none" d="M 20607,22817 L 20626,22846 18786,24123 18766,24095 20607,22817 Z"/>
+       <path fill="rgb(145,145,145)" stroke="none" d="M 20617,22832 L 20636,22860 18796,24138 18776,24109 20617,22832 Z"/>
+       <path fill="rgb(144,144,144)" stroke="none" d="M 20627,22846 L 20646,22875 18806,24152 18786,24124 20627,22846 Z"/>
+       <path fill="rgb(143,143,143)" stroke="none" d="M 20637,22861 L 20656,22889 18816,24167 18796,24138 20637,22861 Z"/>
+       <path fill="rgb(143,143,143)" stroke="none" d="M 20647,22876 L 20666,22904 18826,24181 18806,24153 20647,22876 Z"/>
+       <path fill="rgb(142,142,142)" stroke="none" d="M 20657,22890 L 20676,22918 18836,24196 18816,24167 20657,22890 Z"/>
+       <path fill="rgb(142,142,142)" stroke="none" d="M 20667,22905 L 20687,22933 18846,24210 18826,24182 20667,22905 Z"/>
+       <path fill="rgb(141,141,141)" stroke="none" d="M 20677,22919 L 20697,22947 18856,24225 18836,24197 20677,22919 Z"/>
+       <path fill="rgb(141,141,141)" stroke="none" d="M 20687,22934 L 20707,22962 18866,24239 18847,24211 20687,22934 Z"/>
+      </g>
+      <path fill="none" stroke="rgb(140,140,140)" stroke-width="51" stroke-linejoin="miter" d="M 18720,20361 L 17655,20361 C 17614,20361 17581,20394 17581,20433 L 17581,22366 C 17581,22405 17614,22438 17655,22438 L 19251,22438 C 19291,22438 19325,22405 19325,22366 L 19325,20971 18720,20361 Z"/>
+      <defs>
+       <clipPath id="clip_path_8" clipPathUnits="userSpaceOnUse">
+        <path d="M 17655,20336 C 17600,20336 17556,20380 17556,20433 L 17556,22366 C 17556,22419 17600,22463 17655,22463 L 19251,22463 C 19306,22463 19350,22419 19350,22366 L 19350,20960 18731,20336 17655,20336 17655,20336 Z"/>
+       </clipPath>
+      </defs>
+      <g clip-path="url(#clip_path_8)">
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18492,19723 L 18713,20043 16830,21350 16608,21031 18492,19723 Z"/>
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18704,20029 L 18724,20057 16840,21365 16820,21336 18704,20029 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18714,20044 L 18734,20072 16850,21380 16831,21351 18714,20044 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18724,20059 L 18744,20087 16861,21394 16841,21366 18724,20059 Z"/>
+       <path fill="rgb(253,253,253)" stroke="none" d="M 18735,20073 L 18754,20102 16871,21409 16851,21381 18735,20073 Z"/>
+       <path fill="rgb(253,253,253)" stroke="none" d="M 18745,20088 L 18765,20117 16881,21424 16861,21395 18745,20088 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18755,20103 L 18775,20131 16891,21439 16872,21410 18755,20103 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18765,20118 L 18785,20146 16902,21453 16882,21425 18765,20118 Z"/>
+       <path fill="rgb(251,251,251)" stroke="none" d="M 18776,20133 L 18795,20161 16912,21468 16892,21440 18776,20133 Z"/>
+       <path fill="rgb(250,250,250)" stroke="none" d="M 18786,20147 L 18806,20176 16922,21483 16902,21455 18786,20147 Z"/>
+       <path fill="rgb(250,250,250)" stroke="none" d="M 18796,20162 L 18816,20191 16933,21498 16913,21469 18796,20162 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18807,20177 L 18826,20205 16943,21513 16923,21484 18807,20177 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18817,20192 L 18837,20220 16953,21527 16933,21499 18817,20192 Z"/>
+       <path fill="rgb(248,248,248)" stroke="none" d="M 18827,20207 L 18847,20235 16963,21542 16944,21514 18827,20207 Z"/>
+       <path fill="rgb(247,247,247)" stroke="none" d="M 18837,20221 L 18857,20250 16974,21557 16954,21529 18837,20221 Z"/>
+       <path fill="rgb(247,247,247)" stroke="none" d="M 18848,20236 L 18867,20265 16984,21572 16964,21543 18848,20236 Z"/>
+       <path fill="rgb(246,246,246)" stroke="none" d="M 18858,20251 L 18878,20279 16994,21587 16974,21558 18858,20251 Z"/>
+       <path fill="rgb(246,246,246)" stroke="none" d="M 18868,20266 L 18888,20294 17004,21601 16985,21573 18868,20266 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18878,20281 L 18898,20309 17015,21616 16995,21588 18878,20281 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18889,20295 L 18908,20324 17025,21631 17005,21603 18889,20295 Z"/>
+       <path fill="rgb(244,244,244)" stroke="none" d="M 18899,20310 L 18919,20339 17035,21646 17015,21617 18899,20310 Z"/>
+       <path fill="rgb(243,243,243)" stroke="none" d="M 18909,20325 L 18929,20353 17045,21661 17026,21632 18909,20325 Z"/>
+       <path fill="rgb(243,243,243)" stroke="none" d="M 18919,20340 L 18939,20368 17056,21675 17036,21647 18919,20340 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18930,20355 L 18950,20383 17066,21690 17046,21662 18930,20355 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18940,20369 L 18960,20398 17076,21705 17057,21677 18940,20369 Z"/>
+       <path fill="rgb(241,241,241)" stroke="none" d="M 18950,20384 L 18970,20413 17087,21720 17067,21691 18950,20384 Z"/>
+       <path fill="rgb(241,241,241)" stroke="none" d="M 18961,20399 L 18980,20427 17097,21735 17077,21706 18961,20399 Z"/>
+       <path fill="rgb(240,240,240)" stroke="none" d="M 18971,20414 L 18991,20442 17107,21749 17087,21721 18971,20414 Z"/>
+       <path fill="rgb(239,239,239)" stroke="none" d="M 18981,20428 L 19001,20457 17117,21764 17098,21736 18981,20428 Z"/>
+       <path fill="rgb(239,239,239)" stroke="none" d="M 18991,20443 L 19011,20472 17128,21779 17108,21751 18991,20443 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 19002,20458 L 19021,20487 17138,21794 17118,21765 19002,20458 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 19012,20473 L 19032,20501 17148,21809 17128,21780 19012,20473 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 19022,20488 L 19042,20516 17158,21823 17139,21795 19022,20488 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 19032,20502 L 19052,20531 17169,21838 17149,21810 19032,20502 Z"/>
+       <path fill="rgb(236,236,236)" stroke="none" d="M 19043,20517 L 19062,20546 17179,21853 17159,21825 19043,20517 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 19053,20532 L 19073,20561 17189,21868 17169,21839 19053,20532 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 19063,20547 L 19083,20575 17199,21883 17180,21854 19063,20547 Z"/>
+       <path fill="rgb(234,234,234)" stroke="none" d="M 19074,20562 L 19093,20590 17210,21897 17190,21869 19074,20562 Z"/>
+       <path fill="rgb(234,234,234)" stroke="none" d="M 19084,20576 L 19104,20605 17220,21912 17200,21884 19084,20576 Z"/>
+       <path fill="rgb(233,233,233)" stroke="none" d="M 19094,20591 L 19114,20620 17230,21927 17211,21898 19094,20591 Z"/>
+       <path fill="rgb(232,232,232)" stroke="none" d="M 19104,20606 L 19124,20634 17241,21942 17221,21913 19104,20606 Z"/>
+       <path fill="rgb(232,232,232)" stroke="none" d="M 19115,20621 L 19134,20649 17251,21957 17231,21928 19115,20621 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 19125,20636 L 19145,20664 17261,21971 17241,21943 19125,20636 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 19135,20650 L 19155,20679 17271,21986 17252,21958 19135,20650 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 19145,20665 L 19165,20694 17282,22001 17262,21972 19145,20665 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 19156,20680 L 19175,20708 17292,22016 17272,21987 19156,20680 Z"/>
+       <path fill="rgb(229,229,229)" stroke="none" d="M 19166,20695 L 19186,20723 17302,22031 17282,22002 19166,20695 Z"/>
+       <path fill="rgb(228,228,228)" stroke="none" d="M 19176,20710 L 19196,20738 17312,22045 17293,22017 19176,20710 Z"/>
+       <path fill="rgb(228,228,228)" stroke="none" d="M 19186,20724 L 19206,20753 17323,22060 17303,22032 19186,20724 Z"/>
+       <path fill="rgb(227,227,227)" stroke="none" d="M 19197,20739 L 19216,20768 17333,22075 17313,22046 19197,20739 Z"/>
+       <path fill="rgb(227,227,227)" stroke="none" d="M 19207,20754 L 19227,20782 17343,22090 17324,22061 19207,20754 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 19217,20769 L 19237,20797 17354,22104 17334,22076 19217,20769 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 19228,20784 L 19247,20812 17364,22119 17344,22091 19228,20784 Z"/>
+       <path fill="rgb(225,225,225)" stroke="none" d="M 19238,20798 L 19258,20827 17374,22134 17354,22106 19238,20798 Z"/>
+       <path fill="rgb(224,224,224)" stroke="none" d="M 19248,20813 L 19268,20842 17384,22149 17365,22120 19248,20813 Z"/>
+       <path fill="rgb(224,224,224)" stroke="none" d="M 19258,20828 L 19278,20856 17395,22164 17375,22135 19258,20828 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 19269,20843 L 19288,20871 17405,22178 17385,22150 19269,20843 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 19279,20858 L 19299,20886 17415,22193 17395,22165 19279,20858 Z"/>
+       <path fill="rgb(222,222,222)" stroke="none" d="M 19289,20872 L 19309,20901 17425,22208 17406,22180 19289,20872 Z"/>
+       <path fill="rgb(221,221,221)" stroke="none" d="M 19299,20887 L 19319,20916 17436,22223 17416,22194 19299,20887 Z"/>
+       <path fill="rgb(221,221,221)" stroke="none" d="M 19310,20902 L 19329,20930 17446,22238 17426,22209 19310,20902 Z"/>
+       <path fill="rgb(220,220,220)" stroke="none" d="M 19320,20917 L 19340,20945 17456,22252 17436,22224 19320,20917 Z"/>
+       <path fill="rgb(220,220,220)" stroke="none" d="M 19330,20932 L 19350,20960 17466,22267 17447,22239 19330,20932 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 19340,20946 L 19360,20975 17477,22282 17457,22254 19340,20946 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 19351,20961 L 19371,20990 17487,22297 17467,22268 19351,20961 Z"/>
+       <path fill="rgb(218,218,218)" stroke="none" d="M 19361,20976 L 19381,21004 17497,22312 17478,22283 19361,20976 Z"/>
+       <path fill="rgb(217,217,217)" stroke="none" d="M 19371,20991 L 19391,21019 17508,22326 17488,22298 19371,20991 Z"/>
+       <path fill="rgb(217,217,217)" stroke="none" d="M 19382,21006 L 19401,21034 17518,22341 17498,22313 19382,21006 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 19392,21020 L 19412,21049 17528,22356 17508,22328 19392,21020 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 19402,21035 L 19422,21064 17538,22371 17519,22342 19402,21035 Z"/>
+       <path fill="rgb(215,215,215)" stroke="none" d="M 19412,21050 L 19432,21078 17549,22386 17529,22357 19412,21050 Z"/>
+       <path fill="rgb(215,215,215)" stroke="none" d="M 19423,21065 L 19442,21093 17559,22400 17539,22372 19423,21065 Z"/>
+       <path fill="rgb(214,214,214)" stroke="none" d="M 19433,21079 L 19453,21108 17569,22415 17549,22387 19433,21079 Z"/>
+       <path fill="rgb(213,213,213)" stroke="none" d="M 19443,21094 L 19463,21123 17579,22430 17560,22402 19443,21094 Z"/>
+       <path fill="rgb(213,213,213)" stroke="none" d="M 19453,21109 L 19473,21138 17590,22445 17570,22416 19453,21109 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 19464,21124 L 19483,21152 17600,22460 17580,22431 19464,21124 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 19474,21139 L 19494,21167 17610,22474 17590,22446 19474,21139 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 19484,21153 L 19504,21182 17621,22489 17601,22461 19484,21153 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 19495,21168 L 19514,21197 17631,22504 17611,22475 19495,21168 Z"/>
+       <path fill="rgb(210,210,210)" stroke="none" d="M 19505,21183 L 19525,21212 17641,22519 17621,22490 19505,21183 Z"/>
+       <path fill="rgb(209,209,209)" stroke="none" d="M 19515,21198 L 19535,21226 17651,22534 17632,22505 19515,21198 Z"/>
+       <path fill="rgb(209,209,209)" stroke="none" d="M 19525,21213 L 19545,21241 17662,22548 17642,22520 19525,21213 Z"/>
+       <path fill="rgb(208,208,208)" stroke="none" d="M 19536,21227 L 19555,21256 17672,22563 17652,22535 19536,21227 Z"/>
+       <path fill="rgb(208,208,208)" stroke="none" d="M 19546,21242 L 19566,21271 17682,22578 17662,22549 19546,21242 Z"/>
+       <path fill="rgb(207,207,207)" stroke="none" d="M 19556,21257 L 19576,21285 17692,22593 17673,22564 19556,21257 Z"/>
+       <path fill="rgb(206,206,206)" stroke="none" d="M 19566,21272 L 19586,21300 17703,22608 17683,22579 19566,21272 Z"/>
+       <path fill="rgb(206,206,206)" stroke="none" d="M 19577,21287 L 19596,21315 17713,22622 17693,22594 19577,21287 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 19587,21301 L 19607,21330 17723,22637 17703,22609 19587,21301 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 19597,21316 L 19617,21345 17733,22652 17714,22623 19597,21316 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 19607,21331 L 19627,21359 17744,22667 17724,22638 19607,21331 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 19618,21346 L 19637,21374 17754,22681 17734,22653 19618,21346 Z"/>
+       <path fill="rgb(203,203,203)" stroke="none" d="M 19628,21361 L 19648,21389 17764,22696 17745,22668 19628,21361 Z"/>
+       <path fill="rgb(202,202,202)" stroke="none" d="M 19638,21375 L 19658,21404 17775,22711 17755,22683 19638,21375 Z"/>
+       <path fill="rgb(202,202,202)" stroke="none" d="M 19649,21390 L 19668,21419 17785,22726 17765,22697 19649,21390 Z"/>
+       <path fill="rgb(201,201,201)" stroke="none" d="M 19659,21405 L 19679,21433 17795,22741 17775,22712 19659,21405 Z"/>
+       <path fill="rgb(201,201,201)" stroke="none" d="M 19669,21420 L 19689,21448 17805,22755 17786,22727 19669,21420 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 19679,21435 L 19699,21463 17816,22770 17796,22742 19679,21435 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 19690,21449 L 19709,21478 17826,22785 17806,22757 19690,21449 Z"/>
+       <path fill="rgb(199,199,199)" stroke="none" d="M 19700,21464 L 19720,21493 17836,22800 17816,22771 19700,21464 Z"/>
+       <path fill="rgb(198,198,198)" stroke="none" d="M 19710,21479 L 19730,21507 17846,22815 17827,22786 19710,21479 Z"/>
+       <path fill="rgb(198,198,198)" stroke="none" d="M 19720,21494 L 19740,21522 17857,22829 17837,22801 19720,21494 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 19731,21509 L 19750,21537 17867,22844 17847,22816 19731,21509 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 19741,21523 L 19761,21552 17877,22859 17857,22831 19741,21523 Z"/>
+       <path fill="rgb(196,196,196)" stroke="none" d="M 19751,21538 L 19771,21567 17887,22874 17868,22845 19751,21538 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 19762,21553 L 19781,21581 17898,22889 17878,22860 19762,21553 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 19772,21568 L 19792,21596 17908,22903 17888,22875 19772,21568 Z"/>
+       <path fill="rgb(194,194,194)" stroke="none" d="M 19782,21583 L 19802,21611 17918,22918 17899,22890 19782,21583 Z"/>
+       <path fill="rgb(194,194,194)" stroke="none" d="M 19792,21597 L 19812,21626 17929,22933 17909,22905 19792,21597 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 19803,21612 L 19822,21641 17939,22948 17919,22919 19803,21612 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 19813,21627 L 19833,21655 17949,22963 17929,22934 19813,21627 Z"/>
+       <path fill="rgb(192,192,192)" stroke="none" d="M 19823,21642 L 19843,21670 17959,22977 17940,22949 19823,21642 Z"/>
+       <path fill="rgb(191,191,191)" stroke="none" d="M 19833,21656 L 19853,21685 17970,22992 17950,22964 19833,21656 Z"/>
+       <path fill="rgb(191,191,191)" stroke="none" d="M 19844,21671 L 19863,21700 17980,23007 17960,22979 19844,21671 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 19854,21686 L 19874,21715 17990,23022 17970,22993 19854,21686 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 19864,21701 L 19884,21729 18000,23037 17981,23008 19864,21701 Z"/>
+       <path fill="rgb(189,189,189)" stroke="none" d="M 19874,21716 L 19894,21744 18011,23051 17991,23023 19874,21716 Z"/>
+       <path fill="rgb(189,189,189)" stroke="none" d="M 19885,21730 L 19904,21759 18021,23066 18001,23038 19885,21730 Z"/>
+       <path fill="rgb(188,188,188)" stroke="none" d="M 19895,21745 L 19915,21774 18031,23081 18012,23053 19895,21745 Z"/>
+       <path fill="rgb(187,187,187)" stroke="none" d="M 19905,21760 L 19925,21789 18042,23096 18022,23067 19905,21760 Z"/>
+       <path fill="rgb(187,187,187)" stroke="none" d="M 19916,21775 L 19935,21803 18052,23111 18032,23082 19916,21775 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 19926,21790 L 19946,21818 18062,23125 18042,23097 19926,21790 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 19936,21804 L 19956,21833 18072,23140 18053,23112 19936,21804 Z"/>
+       <path fill="rgb(185,185,185)" stroke="none" d="M 19946,21819 L 19966,21848 18083,23155 18063,23126 19946,21819 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 19957,21834 L 19976,21863 18093,23170 18073,23141 19957,21834 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 19967,21849 L 19987,21877 18103,23185 18083,23156 19967,21849 Z"/>
+       <path fill="rgb(183,183,183)" stroke="none" d="M 19977,21864 L 19997,21892 18113,23199 18094,23171 19977,21864 Z"/>
+       <path fill="rgb(183,183,183)" stroke="none" d="M 19987,21878 L 20007,21907 18124,23214 18104,23186 19987,21878 Z"/>
+       <path fill="rgb(182,182,182)" stroke="none" d="M 19998,21893 L 20017,21922 18134,23229 18114,23200 19998,21893 Z"/>
+       <path fill="rgb(182,182,182)" stroke="none" d="M 20008,21908 L 20028,21936 18144,23244 18124,23215 20008,21908 Z"/>
+       <path fill="rgb(181,181,181)" stroke="none" d="M 20018,21923 L 20038,21951 18154,23259 18135,23230 20018,21923 Z"/>
+       <path fill="rgb(180,180,180)" stroke="none" d="M 20028,21938 L 20048,21966 18165,23273 18145,23245 20028,21938 Z"/>
+       <path fill="rgb(180,180,180)" stroke="none" d="M 20039,21952 L 20059,21981 18175,23288 18155,23260 20039,21952 Z"/>
+       <path fill="rgb(179,179,179)" stroke="none" d="M 20049,21967 L 20069,21996 18185,23303 18166,23274 20049,21967 Z"/>
+       <path fill="rgb(179,179,179)" stroke="none" d="M 20059,21982 L 20079,22010 18196,23318 18176,23289 20059,21982 Z"/>
+       <path fill="rgb(178,178,178)" stroke="none" d="M 20070,21997 L 20089,22025 18206,23332 18186,23304 20070,21997 Z"/>
+       <path fill="rgb(178,178,178)" stroke="none" d="M 20080,22012 L 20100,22040 18216,23347 18196,23319 20080,22012 Z"/>
+       <path fill="rgb(177,177,177)" stroke="none" d="M 20090,22026 L 20110,22055 18226,23362 18207,23334 20090,22026 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 20100,22041 L 20120,22070 18237,23377 18217,23348 20100,22041 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 20111,22056 L 20130,22084 18247,23392 18227,23363 20111,22056 Z"/>
+       <path fill="rgb(175,175,175)" stroke="none" d="M 20121,22071 L 20141,22099 18257,23406 18237,23378 20121,22071 Z"/>
+       <path fill="rgb(175,175,175)" stroke="none" d="M 20131,22086 L 20151,22114 18267,23421 18248,23393 20131,22086 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 20141,22100 L 20161,22129 18278,23436 18258,23408 20141,22100 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 20152,22115 L 20171,22144 18288,23451 18268,23422 20152,22115 Z"/>
+       <path fill="rgb(173,173,173)" stroke="none" d="M 20162,22130 L 20182,22158 18298,23466 18278,23437 20162,22130 Z"/>
+       <path fill="rgb(172,172,172)" stroke="none" d="M 20172,22145 L 20192,22173 18309,23480 18289,23452 20172,22145 Z"/>
+       <path fill="rgb(172,172,172)" stroke="none" d="M 20183,22160 L 20202,22188 18319,23495 18299,23467 20183,22160 Z"/>
+       <path fill="rgb(171,171,171)" stroke="none" d="M 20193,22174 L 20213,22203 18329,23510 18309,23482 20193,22174 Z"/>
+       <path fill="rgb(171,171,171)" stroke="none" d="M 20203,22189 L 20223,22218 18339,23525 18320,23496 20203,22189 Z"/>
+       <path fill="rgb(170,170,170)" stroke="none" d="M 20213,22204 L 20233,22232 18350,23540 18330,23511 20213,22204 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 20224,22219 L 20243,22247 18360,23554 18340,23526 20224,22219 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 20234,22234 L 20254,22262 18370,23569 18350,23541 20234,22234 Z"/>
+       <path fill="rgb(168,168,168)" stroke="none" d="M 20244,22248 L 20264,22277 18380,23584 18361,23556 20244,22248 Z"/>
+       <path fill="rgb(168,168,168)" stroke="none" d="M 20254,22263 L 20274,22292 18391,23599 18371,23570 20254,22263 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 20265,22278 L 20284,22306 18401,23614 18381,23585 20265,22278 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 20275,22293 L 20295,22321 18411,23628 18391,23600 20275,22293 Z"/>
+       <path fill="rgb(166,166,166)" stroke="none" d="M 20285,22307 L 20305,22336 18421,23643 18402,23615 20285,22307 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 20295,22322 L 20315,22351 18432,23658 18412,23630 20295,22322 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 20306,22337 L 20325,22366 18442,23673 18422,23644 20306,22337 Z"/>
+       <path fill="rgb(164,164,164)" stroke="none" d="M 20316,22352 L 20336,22380 18452,23688 18433,23659 20316,22352 Z"/>
+       <path fill="rgb(164,164,164)" stroke="none" d="M 20326,22367 L 20346,22395 18463,23702 18443,23674 20326,22367 Z"/>
+       <path fill="rgb(163,163,163)" stroke="none" d="M 20337,22381 L 20356,22410 18473,23717 18453,23689 20337,22381 Z"/>
+       <path fill="rgb(163,163,163)" stroke="none" d="M 20347,22396 L 20367,22425 18483,23732 18463,23704 20347,22396 Z"/>
+       <path fill="rgb(162,162,162)" stroke="none" d="M 20357,22411 L 20377,22440 18493,23747 18474,23718 20357,22411 Z"/>
+       <path fill="rgb(161,161,161)" stroke="none" d="M 20367,22426 L 20387,22454 18504,23762 18484,23733 20367,22426 Z"/>
+       <path fill="rgb(161,161,161)" stroke="none" d="M 20378,22441 L 20397,22469 18514,23776 18494,23748 20378,22441 Z"/>
+       <path fill="rgb(160,160,160)" stroke="none" d="M 20388,22455 L 20408,22484 18524,23791 18504,23763 20388,22455 Z"/>
+       <path fill="rgb(160,160,160)" stroke="none" d="M 20398,22470 L 20418,22499 18534,23806 18515,23777 20398,22470 Z"/>
+       <path fill="rgb(159,159,159)" stroke="none" d="M 20408,22485 L 20428,22513 18545,23821 18525,23792 20408,22485 Z"/>
+       <path fill="rgb(158,158,158)" stroke="none" d="M 20419,22500 L 20438,22528 18555,23836 18535,23807 20419,22500 Z"/>
+       <path fill="rgb(158,158,158)" stroke="none" d="M 20429,22515 L 20449,22543 18565,23850 18545,23822 20429,22515 Z"/>
+       <path fill="rgb(157,157,157)" stroke="none" d="M 20439,22529 L 20459,22558 18575,23865 18556,23837 20439,22529 Z"/>
+       <path fill="rgb(157,157,157)" stroke="none" d="M 20450,22544 L 20469,22573 18586,23880 18566,23851 20450,22544 Z"/>
+       <path fill="rgb(156,156,156)" stroke="none" d="M 20460,22559 L 20480,22587 18596,23895 18576,23866 20460,22559 Z"/>
+       <path fill="rgb(156,156,156)" stroke="none" d="M 20470,22574 L 20490,22602 18606,23910 18587,23881 20470,22574 Z"/>
+       <path fill="rgb(155,155,155)" stroke="none" d="M 20480,22589 L 20500,22617 18617,23924 18597,23896 20480,22589 Z"/>
+       <path fill="rgb(154,154,154)" stroke="none" d="M 20491,22603 L 20510,22632 18627,23939 18607,23911 20491,22603 Z"/>
+       <path fill="rgb(154,154,154)" stroke="none" d="M 20501,22618 L 20521,22647 18637,23954 18617,23925 20501,22618 Z"/>
+       <path fill="rgb(153,153,153)" stroke="none" d="M 20511,22633 L 20531,22661 18647,23969 18628,23940 20511,22633 Z"/>
+       <path fill="rgb(153,153,153)" stroke="none" d="M 20521,22648 L 20541,22676 18658,23983 18638,23955 20521,22648 Z"/>
+       <path fill="rgb(152,152,152)" stroke="none" d="M 20532,22663 L 20551,22691 18668,23998 18648,23970 20532,22663 Z"/>
+       <path fill="rgb(152,152,152)" stroke="none" d="M 20542,22677 L 20562,22706 18678,24013 18658,23985 20542,22677 Z"/>
+       <path fill="rgb(151,151,151)" stroke="none" d="M 20552,22692 L 20572,22721 18688,24028 18669,23999 20552,22692 Z"/>
+       <path fill="rgb(150,150,150)" stroke="none" d="M 20562,22707 L 20582,22735 18699,24043 18679,24014 20562,22707 Z"/>
+       <path fill="rgb(150,150,150)" stroke="none" d="M 20573,22722 L 20592,22750 18709,24057 18689,24029 20573,22722 Z"/>
+       <path fill="rgb(149,149,149)" stroke="none" d="M 20583,22737 L 20603,22765 18719,24072 18700,24044 20583,22737 Z"/>
+       <path fill="rgb(149,149,149)" stroke="none" d="M 20593,22751 L 20613,22780 18730,24087 18710,24059 20593,22751 Z"/>
+       <path fill="rgb(148,148,148)" stroke="none" d="M 20604,22766 L 20623,22795 18740,24102 18720,24073 20604,22766 Z"/>
+       <path fill="rgb(148,148,148)" stroke="none" d="M 20614,22781 L 20634,22809 18750,24117 18730,24088 20614,22781 Z"/>
+       <path fill="rgb(147,147,147)" stroke="none" d="M 20624,22796 L 20644,22824 18760,24131 18741,24103 20624,22796 Z"/>
+       <path fill="rgb(146,146,146)" stroke="none" d="M 20634,22811 L 20654,22839 18771,24146 18751,24118 20634,22811 Z"/>
+       <path fill="rgb(146,146,146)" stroke="none" d="M 20645,22825 L 20664,22854 18781,24161 18761,24133 20645,22825 Z"/>
+       <path fill="rgb(145,145,145)" stroke="none" d="M 20655,22840 L 20675,22869 18791,24176 18771,24147 20655,22840 Z"/>
+       <path fill="rgb(145,145,145)" stroke="none" d="M 20665,22855 L 20685,22883 18801,24191 18782,24162 20665,22855 Z"/>
+       <path fill="rgb(144,144,144)" stroke="none" d="M 20675,22870 L 20695,22898 18812,24205 18792,24177 20675,22870 Z"/>
+       <path fill="rgb(143,143,143)" stroke="none" d="M 20686,22885 L 20705,22913 18822,24220 18802,24192 20686,22885 Z"/>
+       <path fill="rgb(143,143,143)" stroke="none" d="M 20696,22899 L 20716,22928 18832,24235 18812,24207 20696,22899 Z"/>
+       <path fill="rgb(142,142,142)" stroke="none" d="M 20706,22914 L 20726,22943 18842,24250 18823,24221 20706,22914 Z"/>
+       <path fill="rgb(142,142,142)" stroke="none" d="M 20716,22929 L 20736,22957 18853,24265 18833,24236 20716,22929 Z"/>
+       <path fill="rgb(141,141,141)" stroke="none" d="M 20727,22944 L 20747,22972 18863,24279 18843,24251 20727,22944 Z"/>
+       <path fill="rgb(141,141,141)" stroke="none" d="M 20737,22958 L 20757,22987 18873,24294 18854,24266 20737,22958 Z"/>
+      </g>
+      <path fill="rgb(140,140,140)" stroke="none" d="M 18741,20311 L 18720,20311 17655,20311 C 17586,20311 17531,20366 17531,20433 L 17531,22366 C 17531,22433 17586,22488 17655,22488 L 19251,22488 C 19320,22488 19375,22433 19375,22366 L 19375,20971 19375,20950 19361,20935 18756,20326 18741,20311 Z M 17581,20433 C 17581,20394 17614,20362 17655,20362 L 18720,20362 19325,20971 19325,22366 C 19325,22405 19291,22438 19251,22438 L 17655,22438 C 17614,22438 17581,22405 17581,22366 L 17581,20433 Z"/>
+      <defs>
+       <clipPath id="clip_path_9" clipPathUnits="userSpaceOnUse">
+        <path d="M 17594,20433 L 17594,22366 C 17594,22398 17621,22425 17655,22425 L 19251,22425 C 19285,22425 19312,22398 19312,22366 L 19312,20976 C 19305,20969 18722,20382 18715,20374 18704,20374 17655,20374 17655,20374 17621,20374 17594,20401 17594,20433 Z"/>
+       </clipPath>
+      </defs>
+      <g clip-path="url(#clip_path_9)">
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18480,19778 L 18696,20088 16877,21351 16661,21040 18480,19778 Z"/>
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18686,20074 L 18709,20106 16889,21369 16867,21337 18686,20074 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18699,20093 L 18721,20124 16902,21387 16880,21355 18699,20093 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18712,20111 L 18734,20143 16914,21405 16892,21373 18712,20111 Z"/>
+       <path fill="rgb(253,253,253)" stroke="none" d="M 18724,20129 L 18746,20161 16927,21423 16905,21391 18724,20129 Z"/>
+       <path fill="rgb(253,253,253)" stroke="none" d="M 18737,20147 L 18759,20179 16940,21441 16918,21410 18737,20147 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18749,20165 L 18771,20197 16952,21460 16930,21428 18749,20165 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18762,20183 L 18784,20215 16965,21478 16943,21446 18762,20183 Z"/>
+       <path fill="rgb(251,251,251)" stroke="none" d="M 18774,20201 L 18797,20233 16977,21496 16955,21464 18774,20201 Z"/>
+       <path fill="rgb(250,250,250)" stroke="none" d="M 18787,20219 L 18809,20251 16990,21514 16968,21482 18787,20219 Z"/>
+       <path fill="rgb(250,250,250)" stroke="none" d="M 18800,20237 L 18822,20269 17002,21532 16980,21500 18800,20237 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18812,20256 L 18834,20287 17015,21550 16993,21518 18812,20256 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18825,20274 L 18847,20306 17028,21568 17005,21536 18825,20274 Z"/>
+       <path fill="rgb(248,248,248)" stroke="none" d="M 18837,20292 L 18859,20324 17040,21586 17018,21554 18837,20292 Z"/>
+       <path fill="rgb(248,248,248)" stroke="none" d="M 18850,20310 L 18872,20342 17053,21604 17031,21573 18850,20310 Z"/>
+       <path fill="rgb(247,247,247)" stroke="none" d="M 18862,20328 L 18885,20360 17065,21622 17043,21591 18862,20328 Z"/>
+       <path fill="rgb(246,246,246)" stroke="none" d="M 18875,20346 L 18897,20378 17078,21641 17056,21609 18875,20346 Z"/>
+       <path fill="rgb(246,246,246)" stroke="none" d="M 18888,20364 L 18910,20396 17090,21659 17068,21627 18888,20364 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18900,20382 L 18922,20414 17103,21677 17081,21645 18900,20382 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18913,20400 L 18935,20432 17116,21695 17093,21663 18913,20400 Z"/>
+       <path fill="rgb(244,244,244)" stroke="none" d="M 18925,20419 L 18947,20450 17128,21713 17106,21681 18925,20419 Z"/>
+       <path fill="rgb(243,243,243)" stroke="none" d="M 18938,20437 L 18960,20469 17141,21731 17119,21699 18938,20437 Z"/>
+       <path fill="rgb(243,243,243)" stroke="none" d="M 18950,20455 L 18973,20487 17153,21749 17131,21717 18950,20455 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18963,20473 L 18985,20505 17166,21767 17144,21736 18963,20473 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18976,20491 L 18998,20523 17178,21785 17156,21754 18976,20491 Z"/>
+       <path fill="rgb(241,241,241)" stroke="none" d="M 18988,20509 L 19010,20541 17191,21804 17169,21772 18988,20509 Z"/>
+       <path fill="rgb(241,241,241)" stroke="none" d="M 19001,20527 L 19023,20559 17204,21822 17181,21790 19001,20527 Z"/>
+       <path fill="rgb(240,240,240)" stroke="none" d="M 19013,20545 L 19035,20577 17216,21840 17194,21808 19013,20545 Z"/>
+       <path fill="rgb(239,239,239)" stroke="none" d="M 19026,20563 L 19048,20595 17229,21858 17207,21826 19026,20563 Z"/>
+       <path fill="rgb(239,239,239)" stroke="none" d="M 19038,20582 L 19060,20613 17241,21876 17219,21844 19038,20582 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 19051,20600 L 19073,20631 17254,21894 17232,21862 19051,20600 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 19064,20618 L 19086,20650 17266,21912 17244,21880 19064,20618 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 19076,20636 L 19098,20668 17279,21930 17257,21898 19076,20636 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 19089,20654 L 19111,20686 17292,21948 17269,21917 19089,20654 Z"/>
+       <path fill="rgb(236,236,236)" stroke="none" d="M 19101,20672 L 19123,20704 17304,21967 17282,21935 19101,20672 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 19114,20690 L 19136,20722 17317,21985 17295,21953 19114,20690 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 19126,20708 L 19148,20740 17329,22003 17307,21971 19126,20708 Z"/>
+       <path fill="rgb(234,234,234)" stroke="none" d="M 19139,20726 L 19161,20758 17342,22021 17320,21989 19139,20726 Z"/>
+       <path fill="rgb(234,234,234)" stroke="none" d="M 19151,20745 L 19174,20776 17354,22039 17332,22007 19151,20745 Z"/>
+       <path fill="rgb(233,233,233)" stroke="none" d="M 19164,20763 L 19186,20794 17367,22057 17345,22025 19164,20763 Z"/>
+       <path fill="rgb(233,233,233)" stroke="none" d="M 19177,20781 L 19199,20813 17380,22075 17357,22043 19177,20781 Z"/>
+       <path fill="rgb(232,232,232)" stroke="none" d="M 19189,20799 L 19211,20831 17392,22093 17370,22061 19189,20799 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 19202,20817 L 19224,20849 17405,22111 17383,22080 19202,20817 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 19214,20835 L 19236,20867 17417,22130 17395,22098 19214,20835 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 19227,20853 L 19249,20885 17430,22148 17408,22116 19227,20853 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 19239,20871 L 19262,20903 17442,22166 17420,22134 19239,20871 Z"/>
+       <path fill="rgb(229,229,229)" stroke="none" d="M 19252,20889 L 19274,20921 17455,22184 17433,22152 19252,20889 Z"/>
+       <path fill="rgb(229,229,229)" stroke="none" d="M 19265,20907 L 19287,20939 17467,22202 17445,22170 19265,20907 Z"/>
+       <path fill="rgb(228,228,228)" stroke="none" d="M 19277,20926 L 19299,20957 17480,22220 17458,22188 19277,20926 Z"/>
+       <path fill="rgb(227,227,227)" stroke="none" d="M 19290,20944 L 19312,20976 17493,22238 17471,22206 19290,20944 Z"/>
+       <path fill="rgb(227,227,227)" stroke="none" d="M 19302,20962 L 19324,20994 17505,22256 17483,22224 19302,20962 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 19315,20980 L 19337,21012 17518,22274 17496,22243 19315,20980 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 19327,20998 L 19350,21030 17530,22293 17508,22261 19327,20998 Z"/>
+       <path fill="rgb(225,225,225)" stroke="none" d="M 19340,21016 L 19362,21048 17543,22311 17521,22279 19340,21016 Z"/>
+       <path fill="rgb(224,224,224)" stroke="none" d="M 19353,21034 L 19375,21066 17555,22329 17533,22297 19353,21034 Z"/>
+       <path fill="rgb(224,224,224)" stroke="none" d="M 19365,21052 L 19387,21084 17568,22347 17546,22315 19365,21052 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 19378,21070 L 19400,21102 17581,22365 17558,22333 19378,21070 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 19390,21089 L 19412,21120 17593,22383 17571,22351 19390,21089 Z"/>
+       <path fill="rgb(222,222,222)" stroke="none" d="M 19403,21107 L 19425,21139 17606,22401 17584,22369 19403,21107 Z"/>
+       <path fill="rgb(222,222,222)" stroke="none" d="M 19415,21125 L 19438,21157 17618,22419 17596,22387 19415,21125 Z"/>
+       <path fill="rgb(221,221,221)" stroke="none" d="M 19428,21143 L 19450,21175 17631,22437 17609,22406 19428,21143 Z"/>
+       <path fill="rgb(220,220,220)" stroke="none" d="M 19441,21161 L 19463,21193 17643,22455 17621,22424 19441,21161 Z"/>
+       <path fill="rgb(220,220,220)" stroke="none" d="M 19453,21179 L 19475,21211 17656,22474 17634,22442 19453,21179 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 19466,21197 L 19488,21229 17669,22492 17646,22460 19466,21197 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 19478,21215 L 19500,21247 17681,22510 17659,22478 19478,21215 Z"/>
+       <path fill="rgb(218,218,218)" stroke="none" d="M 19491,21233 L 19513,21265 17694,22528 17672,22496 19491,21233 Z"/>
+       <path fill="rgb(218,218,218)" stroke="none" d="M 19503,21252 L 19526,21283 17706,22546 17684,22514 19503,21252 Z"/>
+       <path fill="rgb(217,217,217)" stroke="none" d="M 19516,21270 L 19538,21302 17719,22564 17697,22532 19516,21270 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 19529,21288 L 19551,21320 17731,22582 17709,22550 19529,21288 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 19541,21306 L 19563,21338 17744,22600 17722,22568 19541,21306 Z"/>
+       <path fill="rgb(215,215,215)" stroke="none" d="M 19554,21324 L 19576,21356 17757,22618 17734,22587 19554,21324 Z"/>
+       <path fill="rgb(215,215,215)" stroke="none" d="M 19566,21342 L 19588,21374 17769,22637 17747,22605 19566,21342 Z"/>
+       <path fill="rgb(214,214,214)" stroke="none" d="M 19579,21360 L 19601,21392 17782,22655 17760,22623 19579,21360 Z"/>
+       <path fill="rgb(214,214,214)" stroke="none" d="M 19591,21378 L 19613,21410 17794,22673 17772,22641 19591,21378 Z"/>
+       <path fill="rgb(213,213,213)" stroke="none" d="M 19604,21396 L 19626,21428 17807,22691 17785,22659 19604,21396 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 19617,21415 L 19639,21446 17819,22709 17797,22677 19617,21415 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 19629,21433 L 19651,21464 17832,22727 17810,22695 19629,21433 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 19642,21451 L 19664,21483 17845,22745 17822,22713 19642,21451 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 19654,21469 L 19676,21501 17857,22763 17835,22731 19654,21469 Z"/>
+       <path fill="rgb(210,210,210)" stroke="none" d="M 19667,21487 L 19689,21519 17870,22781 17848,22750 19667,21487 Z"/>
+       <path fill="rgb(210,210,210)" stroke="none" d="M 19679,21505 L 19701,21537 17882,22800 17860,22768 19679,21505 Z"/>
+       <path fill="rgb(209,209,209)" stroke="none" d="M 19692,21523 L 19714,21555 17895,22818 17873,22786 19692,21523 Z"/>
+       <path fill="rgb(208,208,208)" stroke="none" d="M 19704,21541 L 19727,21573 17907,22836 17885,22804 19704,21541 Z"/>
+       <path fill="rgb(208,208,208)" stroke="none" d="M 19717,21559 L 19739,21591 17920,22854 17898,22822 19717,21559 Z"/>
+       <path fill="rgb(207,207,207)" stroke="none" d="M 19730,21577 L 19752,21609 17933,22872 17910,22840 19730,21577 Z"/>
+       <path fill="rgb(207,207,207)" stroke="none" d="M 19742,21596 L 19764,21627 17945,22890 17923,22858 19742,21596 Z"/>
+       <path fill="rgb(206,206,206)" stroke="none" d="M 19755,21614 L 19777,21646 17958,22908 17936,22876 19755,21614 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 19767,21632 L 19789,21664 17970,22926 17948,22894 19767,21632 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 19780,21650 L 19802,21682 17983,22944 17961,22913 19780,21650 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 19792,21668 L 19815,21700 17995,22963 17973,22931 19792,21668 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 19805,21686 L 19827,21718 18008,22981 17986,22949 19805,21686 Z"/>
+       <path fill="rgb(203,203,203)" stroke="none" d="M 19818,21704 L 19840,21736 18020,22999 17998,22967 19818,21704 Z"/>
+       <path fill="rgb(203,203,203)" stroke="none" d="M 19830,21722 L 19852,21754 18033,23017 18011,22985 19830,21722 Z"/>
+       <path fill="rgb(202,202,202)" stroke="none" d="M 19843,21740 L 19865,21772 18046,23035 18024,23003 19843,21740 Z"/>
+       <path fill="rgb(201,201,201)" stroke="none" d="M 19855,21759 L 19877,21790 18058,23053 18036,23021 19855,21759 Z"/>
+       <path fill="rgb(201,201,201)" stroke="none" d="M 19868,21777 L 19890,21809 18071,23071 18049,23039 19868,21777 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 19880,21795 L 19903,21827 18083,23089 18061,23057 19880,21795 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 19893,21813 L 19915,21845 18096,23107 18074,23076 19893,21813 Z"/>
+       <path fill="rgb(199,199,199)" stroke="none" d="M 19906,21831 L 19928,21863 18108,23125 18086,23094 19906,21831 Z"/>
+       <path fill="rgb(199,199,199)" stroke="none" d="M 19918,21849 L 19940,21881 18121,23144 18099,23112 19918,21849 Z"/>
+       <path fill="rgb(198,198,198)" stroke="none" d="M 19931,21867 L 19953,21899 18134,23162 18111,23130 19931,21867 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 19943,21885 L 19965,21917 18146,23180 18124,23148 19943,21885 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 19956,21903 L 19978,21935 18159,23198 18137,23166 19956,21903 Z"/>
+       <path fill="rgb(196,196,196)" stroke="none" d="M 19968,21922 L 19991,21953 18171,23216 18149,23184 19968,21922 Z"/>
+       <path fill="rgb(196,196,196)" stroke="none" d="M 19981,21940 L 20003,21972 18184,23234 18162,23202 19981,21940 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 19994,21958 L 20016,21990 18196,23252 18174,23220 19994,21958 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 20006,21976 L 20028,22008 18209,23270 18187,23239 20006,21976 Z"/>
+       <path fill="rgb(194,194,194)" stroke="none" d="M 20019,21994 L 20041,22026 18222,23288 18199,23257 20019,21994 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 20031,22012 L 20053,22044 18234,23307 18212,23275 20031,22012 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 20044,22030 L 20066,22062 18247,23325 18225,23293 20044,22030 Z"/>
+       <path fill="rgb(192,192,192)" stroke="none" d="M 20056,22048 L 20079,22080 18259,23343 18237,23311 20056,22048 Z"/>
+       <path fill="rgb(192,192,192)" stroke="none" d="M 20069,22066 L 20091,22098 18272,23361 18250,23329 20069,22066 Z"/>
+       <path fill="rgb(191,191,191)" stroke="none" d="M 20082,22085 L 20104,22116 18284,23379 18262,23347 20082,22085 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 20094,22103 L 20116,22134 18297,23397 18275,23365 20094,22103 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 20107,22121 L 20129,22153 18310,23415 18287,23383 20107,22121 Z"/>
+       <path fill="rgb(189,189,189)" stroke="none" d="M 20119,22139 L 20141,22171 18322,23433 18300,23401 20119,22139 Z"/>
+       <path fill="rgb(189,189,189)" stroke="none" d="M 20132,22157 L 20154,22189 18335,23451 18313,23420 20132,22157 Z"/>
+       <path fill="rgb(188,188,188)" stroke="none" d="M 20144,22175 L 20166,22207 18347,23470 18325,23438 20144,22175 Z"/>
+       <path fill="rgb(188,188,188)" stroke="none" d="M 20157,22193 L 20179,22225 18360,23488 18338,23456 20157,22193 Z"/>
+       <path fill="rgb(187,187,187)" stroke="none" d="M 20170,22211 L 20192,22243 18372,23506 18350,23474 20170,22211 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 20182,22229 L 20204,22261 18385,23524 18363,23492 20182,22229 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 20195,22247 L 20217,22279 18398,23542 18375,23510 20195,22247 Z"/>
+       <path fill="rgb(185,185,185)" stroke="none" d="M 20207,22266 L 20229,22297 18410,23560 18388,23528 20207,22266 Z"/>
+       <path fill="rgb(185,185,185)" stroke="none" d="M 20220,22284 L 20242,22316 18423,23578 18401,23546 20220,22284 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 20232,22302 L 20254,22334 18435,23596 18413,23564 20232,22302 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 20245,22320 L 20267,22352 18448,23614 18426,23583 20245,22320 Z"/>
+       <path fill="rgb(183,183,183)" stroke="none" d="M 20257,22338 L 20280,22370 18460,23633 18438,23601 20257,22338 Z"/>
+       <path fill="rgb(182,182,182)" stroke="none" d="M 20270,22356 L 20292,22388 18473,23651 18451,23619 20270,22356 Z"/>
+       <path fill="rgb(182,182,182)" stroke="none" d="M 20283,22374 L 20305,22406 18486,23669 18463,23637 20283,22374 Z"/>
+       <path fill="rgb(181,181,181)" stroke="none" d="M 20295,22392 L 20317,22424 18498,23687 18476,23655 20295,22392 Z"/>
+       <path fill="rgb(181,181,181)" stroke="none" d="M 20308,22410 L 20330,22442 18511,23705 18489,23673 20308,22410 Z"/>
+       <path fill="rgb(180,180,180)" stroke="none" d="M 20320,22429 L 20342,22460 18523,23723 18501,23691 20320,22429 Z"/>
+       <path fill="rgb(180,180,180)" stroke="none" d="M 20333,22447 L 20355,22479 18536,23741 18514,23709 20333,22447 Z"/>
+       <path fill="rgb(179,179,179)" stroke="none" d="M 20345,22465 L 20368,22497 18548,23759 18526,23727 20345,22465 Z"/>
+       <path fill="rgb(178,178,178)" stroke="none" d="M 20358,22483 L 20380,22515 18561,23777 18539,23746 20358,22483 Z"/>
+       <path fill="rgb(178,178,178)" stroke="none" d="M 20371,22501 L 20393,22533 18573,23796 18551,23764 20371,22501 Z"/>
+       <path fill="rgb(177,177,177)" stroke="none" d="M 20383,22519 L 20405,22551 18586,23814 18564,23782 20383,22519 Z"/>
+       <path fill="rgb(177,177,177)" stroke="none" d="M 20396,22537 L 20418,22569 18599,23832 18577,23800 20396,22537 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 20408,22555 L 20430,22587 18611,23850 18589,23818 20408,22555 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 20421,22573 L 20443,22605 18624,23868 18602,23836 20421,22573 Z"/>
+       <path fill="rgb(175,175,175)" stroke="none" d="M 20433,22592 L 20456,22623 18636,23886 18614,23854 20433,22592 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 20446,22610 L 20468,22642 18649,23904 18627,23872 20446,22610 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 20459,22628 L 20481,22660 18661,23922 18639,23890 20459,22628 Z"/>
+       <path fill="rgb(173,173,173)" stroke="none" d="M 20471,22646 L 20493,22678 18674,23940 18652,23909 20471,22646 Z"/>
+       <path fill="rgb(173,173,173)" stroke="none" d="M 20484,22664 L 20506,22696 18687,23958 18664,23927 20484,22664 Z"/>
+       <path fill="rgb(172,172,172)" stroke="none" d="M 20496,22682 L 20518,22714 18699,23977 18677,23945 20496,22682 Z"/>
+       <path fill="rgb(171,171,171)" stroke="none" d="M 20509,22700 L 20531,22732 18712,23995 18690,23963 20509,22700 Z"/>
+       <path fill="rgb(171,171,171)" stroke="none" d="M 20521,22718 L 20544,22750 18724,24013 18702,23981 20521,22718 Z"/>
+       <path fill="rgb(170,170,170)" stroke="none" d="M 20534,22736 L 20556,22768 18737,24031 18715,23999 20534,22736 Z"/>
+       <path fill="rgb(170,170,170)" stroke="none" d="M 20547,22755 L 20569,22786 18749,24049 18727,24017 20547,22755 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 20559,22773 L 20581,22804 18762,24067 18740,24035 20559,22773 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 20572,22791 L 20594,22823 18775,24085 18752,24053 20572,22791 Z"/>
+       <path fill="rgb(168,168,168)" stroke="none" d="M 20584,22809 L 20606,22841 18787,24103 18765,24071 20584,22809 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 20597,22827 L 20619,22859 18800,24121 18778,24090 20597,22827 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 20609,22845 L 20631,22877 18812,24140 18790,24108 20609,22845 Z"/>
+       <path fill="rgb(166,166,166)" stroke="none" d="M 20622,22863 L 20644,22895 18825,24158 18803,24126 20622,22863 Z"/>
+       <path fill="rgb(166,166,166)" stroke="none" d="M 20635,22881 L 20657,22913 18837,24176 18815,24144 20635,22881 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 20647,22899 L 20669,22931 18850,24194 18828,24162 20647,22899 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 20660,22918 L 20682,22949 18863,24212 18840,24180 20660,22918 Z"/>
+      </g>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 18720,20361 L 17655,20361 C 17614,20361 17581,20394 17581,20433 L 17581,22366 C 17581,22405 17614,22438 17655,22438 L 19251,22438 C 19291,22438 19325,22405 19325,22366 L 19325,20971 18720,20361 Z M 17655,22412 C 17628,22412 17607,22391 17607,22366 L 17607,20433 C 17607,20408 17628,20387 17655,20387 L 18709,20387 19299,20981 19299,22366 C 19299,22391 19278,22412 19251,22412 L 17655,22412 Z"/>
+      <defs>
+       <clipPath id="clip_path_10" clipPathUnits="userSpaceOnUse">
+        <path d="M 18752,20375 L 18758,20884 C 18758,20898 18764,20911 18774,20921 18784,20930 18797,20936 18811,20935 18811,20935 19256,20930 19313,20929 19248,20864 18797,20412 18753,20368 18753,20370 18752,20372 18752,20374 L 18752,20375 Z"/>
+       </clipPath>
+      </defs>
+      <g clip-path="url(#clip_path_10)">
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18486,20668 L 18507,20644 19099,21170 19078,21194 18486,20668 Z"/>
+       <path fill="rgb(255,255,255)" stroke="none" d="M 18505,20647 L 18509,20642 19101,21168 19097,21173 18505,20647 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18506,20645 L 18511,20640 19102,21166 19098,21171 18506,20645 Z"/>
+       <path fill="rgb(254,254,254)" stroke="none" d="M 18508,20643 L 18512,20638 19104,21164 19100,21169 18508,20643 Z"/>
+       <path fill="rgb(253,253,253)" stroke="none" d="M 18510,20641 L 18514,20636 19106,21162 19102,21167 18510,20641 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18512,20639 L 18516,20634 19108,21160 19104,21165 18512,20639 Z"/>
+       <path fill="rgb(252,252,252)" stroke="none" d="M 18513,20637 L 18518,20632 19109,21158 19105,21163 18513,20637 Z"/>
+       <path fill="rgb(251,251,251)" stroke="none" d="M 18515,20635 L 18519,20630 19111,21157 19107,21161 18515,20635 Z"/>
+       <path fill="rgb(251,251,251)" stroke="none" d="M 18517,20633 L 18521,20628 19113,21155 19109,21159 18517,20633 Z"/>
+       <path fill="rgb(250,250,250)" stroke="none" d="M 18519,20631 L 18523,20626 19115,21153 19111,21157 18519,20631 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18520,20629 L 18525,20624 19116,21151 19112,21155 18520,20629 Z"/>
+       <path fill="rgb(249,249,249)" stroke="none" d="M 18522,20627 L 18526,20623 19118,21149 19114,21153 18522,20627 Z"/>
+       <path fill="rgb(248,248,248)" stroke="none" d="M 18524,20625 L 18528,20621 19120,21147 19116,21151 18524,20625 Z"/>
+       <path fill="rgb(247,247,247)" stroke="none" d="M 18526,20623 L 18530,20619 19122,21145 19118,21149 18526,20623 Z"/>
+       <path fill="rgb(247,247,247)" stroke="none" d="M 18527,20621 L 18532,20617 19123,21143 19119,21147 18527,20621 Z"/>
+       <path fill="rgb(246,246,246)" stroke="none" d="M 18529,20619 L 18533,20615 19125,21141 19121,21145 18529,20619 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18531,20617 L 18535,20613 19127,21139 19123,21143 18531,20617 Z"/>
+       <path fill="rgb(245,245,245)" stroke="none" d="M 18533,20615 L 18537,20611 19129,21137 19125,21141 18533,20615 Z"/>
+       <path fill="rgb(244,244,244)" stroke="none" d="M 18535,20613 L 18539,20609 19131,21135 19126,21139 18535,20613 Z"/>
+       <path fill="rgb(244,244,244)" stroke="none" d="M 18536,20611 L 18540,20607 19132,21133 19128,21137 18536,20611 Z"/>
+       <path fill="rgb(243,243,243)" stroke="none" d="M 18538,20609 L 18542,20605 19134,21131 19130,21135 18538,20609 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18540,20607 L 18544,20603 19136,21129 19132,21133 18540,20607 Z"/>
+       <path fill="rgb(242,242,242)" stroke="none" d="M 18542,20605 L 18546,20601 19138,21127 19133,21131 18542,20605 Z"/>
+       <path fill="rgb(241,241,241)" stroke="none" d="M 18543,20603 L 18547,20599 19139,21125 19135,21129 18543,20603 Z"/>
+       <path fill="rgb(240,240,240)" stroke="none" d="M 18545,20601 L 18549,20597 19141,21123 19137,21128 18545,20601 Z"/>
+       <path fill="rgb(240,240,240)" stroke="none" d="M 18547,20599 L 18551,20595 19143,21121 19139,21126 18547,20599 Z"/>
+       <path fill="rgb(239,239,239)" stroke="none" d="M 18549,20597 L 18553,20593 19145,21119 19140,21124 18549,20597 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 18550,20595 L 18554,20591 19146,21117 19142,21122 18550,20595 Z"/>
+       <path fill="rgb(238,238,238)" stroke="none" d="M 18552,20594 L 18556,20589 19148,21115 19144,21120 18552,20594 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 18554,20592 L 18558,20587 19150,21113 19146,21118 18554,20592 Z"/>
+       <path fill="rgb(237,237,237)" stroke="none" d="M 18556,20590 L 18560,20585 19152,21111 19148,21116 18556,20590 Z"/>
+       <path fill="rgb(236,236,236)" stroke="none" d="M 18557,20588 L 18561,20583 19153,21109 19149,21114 18557,20588 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 18559,20586 L 18563,20581 19155,21107 19151,21112 18559,20586 Z"/>
+       <path fill="rgb(235,235,235)" stroke="none" d="M 18561,20584 L 18565,20579 19157,21105 19153,21110 18561,20584 Z"/>
+       <path fill="rgb(234,234,234)" stroke="none" d="M 18563,20582 L 18567,20577 19159,21103 19155,21108 18563,20582 Z"/>
+       <path fill="rgb(233,233,233)" stroke="none" d="M 18564,20580 L 18568,20575 19160,21101 19156,21106 18564,20580 Z"/>
+       <path fill="rgb(233,233,233)" stroke="none" d="M 18566,20578 L 18570,20573 19162,21099 19158,21104 18566,20578 Z"/>
+       <path fill="rgb(232,232,232)" stroke="none" d="M 18568,20576 L 18572,20571 19164,21097 19160,21102 18568,20576 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 18570,20574 L 18574,20569 19166,21095 19162,21100 18570,20574 Z"/>
+       <path fill="rgb(231,231,231)" stroke="none" d="M 18571,20572 L 18576,20567 19167,21093 19163,21098 18571,20572 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 18573,20570 L 18577,20565 19169,21091 19165,21096 18573,20570 Z"/>
+       <path fill="rgb(230,230,230)" stroke="none" d="M 18575,20568 L 18579,20563 19171,21089 19167,21094 18575,20568 Z"/>
+       <path fill="rgb(229,229,229)" stroke="none" d="M 18577,20566 L 18581,20561 19173,21087 19169,21092 18577,20566 Z"/>
+       <path fill="rgb(228,228,228)" stroke="none" d="M 18578,20564 L 18583,20559 19174,21085 19170,21090 18578,20564 Z"/>
+       <path fill="rgb(228,228,228)" stroke="none" d="M 18580,20562 L 18584,20557 19176,21083 19172,21088 18580,20562 Z"/>
+       <path fill="rgb(227,227,227)" stroke="none" d="M 18582,20560 L 18586,20555 19178,21081 19174,21086 18582,20560 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 18584,20558 L 18588,20553 19180,21079 19176,21084 18584,20558 Z"/>
+       <path fill="rgb(226,226,226)" stroke="none" d="M 18585,20556 L 18590,20551 19181,21077 19177,21082 18585,20556 Z"/>
+       <path fill="rgb(225,225,225)" stroke="none" d="M 18587,20554 L 18591,20549 19183,21075 19179,21080 18587,20554 Z"/>
+       <path fill="rgb(225,225,225)" stroke="none" d="M 18589,20552 L 18593,20547 19185,21073 19181,21078 18589,20552 Z"/>
+       <path fill="rgb(224,224,224)" stroke="none" d="M 18591,20550 L 18595,20545 19187,21072 19183,21076 18591,20550 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 18593,20548 L 18597,20543 19188,21070 19184,21074 18593,20548 Z"/>
+       <path fill="rgb(223,223,223)" stroke="none" d="M 18594,20546 L 18598,20541 19190,21068 19186,21072 18594,20546 Z"/>
+       <path fill="rgb(222,222,222)" stroke="none" d="M 18596,20544 L 18600,20539 19192,21066 19188,21070 18596,20544 Z"/>
+       <path fill="rgb(221,221,221)" stroke="none" d="M 18598,20542 L 18602,20538 19194,21064 19190,21068 18598,20542 Z"/>
+       <path fill="rgb(221,221,221)" stroke="none" d="M 18600,20540 L 18604,20536 19196,21062 19191,21066 18600,20540 Z"/>
+       <path fill="rgb(220,220,220)" stroke="none" d="M 18601,20538 L 18605,20534 19197,21060 19193,21064 18601,20538 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 18603,20536 L 18607,20532 19199,21058 19195,21062 18603,20536 Z"/>
+       <path fill="rgb(219,219,219)" stroke="none" d="M 18605,20534 L 18609,20530 19201,21056 19197,21060 18605,20534 Z"/>
+       <path fill="rgb(218,218,218)" stroke="none" d="M 18607,20532 L 18611,20528 19203,21054 19198,21058 18607,20532 Z"/>
+       <path fill="rgb(218,218,218)" stroke="none" d="M 18608,20530 L 18612,20526 19204,21052 19200,21056 18608,20530 Z"/>
+       <path fill="rgb(217,217,217)" stroke="none" d="M 18610,20528 L 18614,20524 19206,21050 19202,21054 18610,20528 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 18612,20526 L 18616,20522 19208,21048 19204,21052 18612,20526 Z"/>
+       <path fill="rgb(216,216,216)" stroke="none" d="M 18614,20524 L 18618,20520 19210,21046 19205,21050 18614,20524 Z"/>
+       <path fill="rgb(215,215,215)" stroke="none" d="M 18615,20522 L 18619,20518 19211,21044 19207,21048 18615,20522 Z"/>
+       <path fill="rgb(214,214,214)" stroke="none" d="M 18617,20520 L 18621,20516 19213,21042 19209,21046 18617,20520 Z"/>
+       <path fill="rgb(214,214,214)" stroke="none" d="M 18619,20518 L 18623,20514 19215,21040 19211,21044 18619,20518 Z"/>
+       <path fill="rgb(213,213,213)" stroke="none" d="M 18621,20516 L 18625,20512 19217,21038 19213,21043 18621,20516 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 18622,20514 L 18626,20510 19218,21036 19214,21041 18622,20514 Z"/>
+       <path fill="rgb(212,212,212)" stroke="none" d="M 18624,20512 L 18628,20508 19220,21034 19216,21039 18624,20512 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 18626,20510 L 18630,20506 19222,21032 19218,21037 18626,20510 Z"/>
+       <path fill="rgb(211,211,211)" stroke="none" d="M 18628,20509 L 18632,20504 19224,21030 19220,21035 18628,20509 Z"/>
+       <path fill="rgb(210,210,210)" stroke="none" d="M 18629,20507 L 18633,20502 19225,21028 19221,21033 18629,20507 Z"/>
+       <path fill="rgb(209,209,209)" stroke="none" d="M 18631,20505 L 18635,20500 19227,21026 19223,21031 18631,20505 Z"/>
+       <path fill="rgb(209,209,209)" stroke="none" d="M 18633,20503 L 18637,20498 19229,21024 19225,21029 18633,20503 Z"/>
+       <path fill="rgb(208,208,208)" stroke="none" d="M 18635,20501 L 18639,20496 19231,21022 19227,21027 18635,20501 Z"/>
+       <path fill="rgb(207,207,207)" stroke="none" d="M 18636,20499 L 18641,20494 19232,21020 19228,21025 18636,20499 Z"/>
+       <path fill="rgb(207,207,207)" stroke="none" d="M 18638,20497 L 18642,20492 19234,21018 19230,21023 18638,20497 Z"/>
+       <path fill="rgb(206,206,206)" stroke="none" d="M 18640,20495 L 18644,20490 19236,21016 19232,21021 18640,20495 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 18642,20493 L 18646,20488 19238,21014 19234,21019 18642,20493 Z"/>
+       <path fill="rgb(205,205,205)" stroke="none" d="M 18643,20491 L 18648,20486 19239,21012 19235,21017 18643,20491 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 18645,20489 L 18649,20484 19241,21010 19237,21015 18645,20489 Z"/>
+       <path fill="rgb(204,204,204)" stroke="none" d="M 18647,20487 L 18651,20482 19243,21008 19239,21013 18647,20487 Z"/>
+       <path fill="rgb(203,203,203)" stroke="none" d="M 18649,20485 L 18653,20480 19245,21006 19241,21011 18649,20485 Z"/>
+       <path fill="rgb(202,202,202)" stroke="none" d="M 18650,20483 L 18655,20478 19246,21004 19242,21009 18650,20483 Z"/>
+       <path fill="rgb(202,202,202)" stroke="none" d="M 18652,20481 L 18656,20476 19248,21002 19244,21007 18652,20481 Z"/>
+       <path fill="rgb(201,201,201)" stroke="none" d="M 18654,20479 L 18658,20474 19250,21000 19246,21005 18654,20479 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 18656,20477 L 18660,20472 19252,20998 19248,21003 18656,20477 Z"/>
+       <path fill="rgb(200,200,200)" stroke="none" d="M 18658,20475 L 18662,20470 19254,20996 19249,21001 18658,20475 Z"/>
+       <path fill="rgb(199,199,199)" stroke="none" d="M 18659,20473 L 18663,20468 19255,20994 19251,20999 18659,20473 Z"/>
+       <path fill="rgb(198,198,198)" stroke="none" d="M 18661,20471 L 18665,20466 19257,20992 19253,20997 18661,20471 Z"/>
+       <path fill="rgb(198,198,198)" stroke="none" d="M 18663,20469 L 18667,20464 19259,20990 19255,20995 18663,20469 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 18665,20467 L 18669,20462 19261,20988 19256,20993 18665,20467 Z"/>
+       <path fill="rgb(197,197,197)" stroke="none" d="M 18666,20465 L 18670,20460 19262,20987 19258,20991 18666,20465 Z"/>
+       <path fill="rgb(196,196,196)" stroke="none" d="M 18668,20463 L 18672,20458 19264,20985 19260,20989 18668,20463 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 18670,20461 L 18674,20456 19266,20983 19262,20987 18670,20461 Z"/>
+       <path fill="rgb(195,195,195)" stroke="none" d="M 18672,20459 L 18676,20454 19268,20981 19263,20985 18672,20459 Z"/>
+       <path fill="rgb(194,194,194)" stroke="none" d="M 18673,20457 L 18677,20453 19269,20979 19265,20983 18673,20457 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 18675,20455 L 18679,20451 19271,20977 19267,20981 18675,20455 Z"/>
+       <path fill="rgb(193,193,193)" stroke="none" d="M 18677,20453 L 18681,20449 19273,20975 19269,20979 18677,20453 Z"/>
+       <path fill="rgb(192,192,192)" stroke="none" d="M 18679,20451 L 18683,20447 19275,20973 19270,20977 18679,20451 Z"/>
+       <path fill="rgb(191,191,191)" stroke="none" d="M 18680,20449 L 18684,20445 19276,20971 19272,20975 18680,20449 Z"/>
+       <path fill="rgb(191,191,191)" stroke="none" d="M 18682,20447 L 18686,20443 19278,20969 19274,20973 18682,20447 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 18684,20445 L 18688,20441 19280,20967 19276,20971 18684,20445 Z"/>
+       <path fill="rgb(190,190,190)" stroke="none" d="M 18686,20443 L 18690,20439 19282,20965 19278,20969 18686,20443 Z"/>
+       <path fill="rgb(189,189,189)" stroke="none" d="M 18687,20441 L 18691,20437 19283,20963 19279,20967 18687,20441 Z"/>
+       <path fill="rgb(188,188,188)" stroke="none" d="M 18689,20439 L 18693,20435 19285,20961 19281,20965 18689,20439 Z"/>
+       <path fill="rgb(188,188,188)" stroke="none" d="M 18691,20437 L 18695,20433 19287,20959 19283,20963 18691,20437 Z"/>
+       <path fill="rgb(187,187,187)" stroke="none" d="M 18693,20435 L 18697,20431 19289,20957 19285,20961 18693,20435 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 18694,20433 L 18698,20429 19290,20955 19286,20959 18694,20433 Z"/>
+       <path fill="rgb(186,186,186)" stroke="none" d="M 18696,20431 L 18700,20427 19292,20953 19288,20958 18696,20431 Z"/>
+       <path fill="rgb(185,185,185)" stroke="none" d="M 18698,20429 L 18702,20425 19294,20951 19290,20956 18698,20429 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 18700,20427 L 18704,20423 19296,20949 19292,20954 18700,20427 Z"/>
+       <path fill="rgb(184,184,184)" stroke="none" d="M 18701,20425 L 18706,20421 19297,20947 19293,20952 18701,20425 Z"/>
+       <path fill="rgb(183,183,183)" stroke="none" d="M 18703,20424 L 18707,20419 19299,20945 19295,20950 18703,20424 Z"/>
+       <path fill="rgb(183,183,183)" stroke="none" d="M 18705,20422 L 18709,20417 19301,20943 19297,20948 18705,20422 Z"/>
+       <path fill="rgb(182,182,182)" stroke="none" d="M 18707,20420 L 18711,20415 19303,20941 19299,20946 18707,20420 Z"/>
+       <path fill="rgb(181,181,181)" stroke="none" d="M 18708,20418 L 18713,20413 19304,20939 19300,20944 18708,20418 Z"/>
+       <path fill="rgb(181,181,181)" stroke="none" d="M 18710,20416 L 18714,20411 19306,20937 19302,20942 18710,20416 Z"/>
+       <path fill="rgb(180,180,180)" stroke="none" d="M 18712,20414 L 18716,20409 19308,20935 19304,20940 18712,20414 Z"/>
+       <path fill="rgb(179,179,179)" stroke="none" d="M 18714,20412 L 18718,20407 19310,20933 19306,20938 18714,20412 Z"/>
+       <path fill="rgb(179,179,179)" stroke="none" d="M 18715,20410 L 18720,20405 19311,20931 19307,20936 18715,20410 Z"/>
+       <path fill="rgb(178,178,178)" stroke="none" d="M 18717,20408 L 18721,20403 19313,20929 19309,20934 18717,20408 Z"/>
+       <path fill="rgb(177,177,177)" stroke="none" d="M 18719,20406 L 18723,20401 19315,20927 19311,20932 18719,20406 Z"/>
+       <path fill="rgb(177,177,177)" stroke="none" d="M 18721,20404 L 18725,20399 19317,20925 19313,20930 18721,20404 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 18723,20402 L 18727,20397 19319,20923 19314,20928 18723,20402 Z"/>
+       <path fill="rgb(176,176,176)" stroke="none" d="M 18724,20400 L 18728,20395 19320,20921 19316,20926 18724,20400 Z"/>
+       <path fill="rgb(175,175,175)" stroke="none" d="M 18726,20398 L 18730,20393 19322,20919 19318,20924 18726,20398 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 18728,20396 L 18732,20391 19324,20917 19320,20922 18728,20396 Z"/>
+       <path fill="rgb(174,174,174)" stroke="none" d="M 18730,20394 L 18734,20389 19326,20915 19321,20920 18730,20394 Z"/>
+       <path fill="rgb(173,173,173)" stroke="none" d="M 18731,20392 L 18735,20387 19327,20913 19323,20918 18731,20392 Z"/>
+       <path fill="rgb(172,172,172)" stroke="none" d="M 18733,20390 L 18737,20385 19329,20911 19325,20916 18733,20390 Z"/>
+       <path fill="rgb(172,172,172)" stroke="none" d="M 18735,20388 L 18739,20383 19331,20909 19327,20914 18735,20388 Z"/>
+       <path fill="rgb(171,171,171)" stroke="none" d="M 18737,20386 L 18741,20381 19333,20907 19328,20912 18737,20386 Z"/>
+       <path fill="rgb(170,170,170)" stroke="none" d="M 18738,20384 L 18742,20379 19334,20905 19330,20910 18738,20384 Z"/>
+       <path fill="rgb(170,170,170)" stroke="none" d="M 18740,20382 L 18744,20377 19336,20903 19332,20908 18740,20382 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 18742,20380 L 18746,20375 19338,20902 19334,20906 18742,20380 Z"/>
+       <path fill="rgb(169,169,169)" stroke="none" d="M 18744,20378 L 18748,20373 19340,20900 19335,20904 18744,20378 Z"/>
+       <path fill="rgb(168,168,168)" stroke="none" d="M 18745,20376 L 18749,20371 19341,20898 19337,20902 18745,20376 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 18747,20374 L 18751,20369 19343,20896 19339,20900 18747,20374 Z"/>
+       <path fill="rgb(167,167,167)" stroke="none" d="M 18749,20372 L 18753,20368 19345,20894 19341,20898 18749,20372 Z"/>
+       <path fill="rgb(166,166,166)" stroke="none" d="M 18751,20370 L 18755,20366 19347,20892 19343,20896 18751,20370 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 18752,20368 L 18756,20364 19348,20890 19344,20894 18752,20368 Z"/>
+       <path fill="rgb(165,165,165)" stroke="none" d="M 18754,20366 L 18758,20362 19350,20888 19346,20892 18754,20366 Z"/>
+       <path fill="rgb(164,164,164)" stroke="none" d="M 18756,20364 L 18760,20360 19352,20886 19348,20890 18756,20364 Z"/>
+       <path fill="rgb(164,164,164)" stroke="none" d="M 18758,20362 L 18762,20358 19354,20884 19350,20888 18758,20362 Z"/>
+       <path fill="rgb(163,163,163)" stroke="none" d="M 18759,20360 L 18764,20356 19355,20882 19351,20886 18759,20360 Z"/>
+       <path fill="rgb(162,162,162)" stroke="none" d="M 18761,20358 L 18765,20354 19357,20880 19353,20884 18761,20358 Z"/>
+       <path fill="rgb(162,162,162)" stroke="none" d="M 18763,20356 L 18767,20352 19359,20878 19355,20882 18763,20356 Z"/>
+       <path fill="rgb(161,161,161)" stroke="none" d="M 18765,20354 L 18769,20350 19361,20876 19357,20880 18765,20354 Z"/>
+       <path fill="rgb(160,160,160)" stroke="none" d="M 18766,20352 L 18771,20348 19362,20874 19358,20878 18766,20352 Z"/>
+       <path fill="rgb(160,160,160)" stroke="none" d="M 18768,20350 L 18772,20346 19364,20872 19360,20876 18768,20350 Z"/>
+       <path fill="rgb(159,159,159)" stroke="none" d="M 18770,20348 L 18774,20344 19366,20870 19362,20874 18770,20348 Z"/>
+       <path fill="rgb(158,158,158)" stroke="none" d="M 18772,20346 L 18776,20342 19368,20868 19364,20873 18772,20346 Z"/>
+       <path fill="rgb(158,158,158)" stroke="none" d="M 18773,20344 L 18778,20340 19369,20866 19365,20871 18773,20344 Z"/>
+       <path fill="rgb(157,157,157)" stroke="none" d="M 18775,20342 L 18779,20338 19371,20864 19367,20869 18775,20342 Z"/>
+       <path fill="rgb(157,157,157)" stroke="none" d="M 18777,20340 L 18781,20336 19373,20862 19369,20867 18777,20340 Z"/>
+       <path fill="rgb(156,156,156)" stroke="none" d="M 18779,20339 L 18783,20334 19375,20860 19371,20865 18779,20339 Z"/>
+       <path fill="rgb(155,155,155)" stroke="none" d="M 18780,20337 L 18785,20332 19376,20858 19372,20863 18780,20337 Z"/>
+       <path fill="rgb(155,155,155)" stroke="none" d="M 18782,20335 L 18786,20330 19378,20856 19374,20861 18782,20335 Z"/>
+       <path fill="rgb(154,154,154)" stroke="none" d="M 18784,20333 L 18788,20328 19380,20854 19376,20859 18784,20333 Z"/>
+       <path fill="rgb(153,153,153)" stroke="none" d="M 18786,20331 L 18790,20326 19382,20852 19378,20857 18786,20331 Z"/>
+       <path fill="rgb(153,153,153)" stroke="none" d="M 18788,20329 L 18792,20324 19384,20850 19379,20855 18788,20329 Z"/>
+       <path fill="rgb(152,152,152)" stroke="none" d="M 18789,20327 L 18793,20322 19385,20848 19381,20853 18789,20327 Z"/>
+       <path fill="rgb(151,151,151)" stroke="none" d="M 18791,20325 L 18795,20320 19387,20846 19383,20851 18791,20325 Z"/>
+       <path fill="rgb(151,151,151)" stroke="none" d="M 18793,20323 L 18797,20318 19389,20844 19385,20849 18793,20323 Z"/>
+       <path fill="rgb(150,150,150)" stroke="none" d="M 18795,20321 L 18799,20316 19391,20842 19386,20847 18795,20321 Z"/>
+       <path fill="rgb(150,150,150)" stroke="none" d="M 18796,20319 L 18800,20314 19392,20840 19388,20845 18796,20319 Z"/>
+       <path fill="rgb(149,149,149)" stroke="none" d="M 18798,20317 L 18802,20312 19394,20838 19390,20843 18798,20317 Z"/>
+       <path fill="rgb(148,148,148)" stroke="none" d="M 18800,20315 L 18804,20310 19396,20836 19392,20841 18800,20315 Z"/>
+       <path fill="rgb(148,148,148)" stroke="none" d="M 18802,20313 L 18806,20308 19398,20834 19393,20839 18802,20313 Z"/>
+       <path fill="rgb(147,147,147)" stroke="none" d="M 18803,20311 L 18807,20306 19399,20832 19395,20837 18803,20311 Z"/>
+       <path fill="rgb(146,146,146)" stroke="none" d="M 18805,20309 L 18809,20304 19401,20830 19397,20835 18805,20309 Z"/>
+       <path fill="rgb(146,146,146)" stroke="none" d="M 18807,20307 L 18811,20302 19403,20828 19399,20833 18807,20307 Z"/>
+       <path fill="rgb(145,145,145)" stroke="none" d="M 18809,20305 L 18813,20300 19405,20826 19401,20831 18809,20305 Z"/>
+       <path fill="rgb(144,144,144)" stroke="none" d="M 18810,20303 L 18814,20298 19406,20824 19402,20829 18810,20303 Z"/>
+       <path fill="rgb(144,144,144)" stroke="none" d="M 18812,20301 L 18816,20296 19408,20822 19404,20827 18812,20301 Z"/>
+       <path fill="rgb(143,143,143)" stroke="none" d="M 18814,20299 L 18818,20294 19410,20820 19406,20825 18814,20299 Z"/>
+       <path fill="rgb(143,143,143)" stroke="none" d="M 18816,20297 L 18820,20292 19412,20818 19408,20823 18816,20297 Z"/>
+       <path fill="rgb(142,142,142)" stroke="none" d="M 18817,20295 L 18821,20290 19413,20817 19409,20821 18817,20295 Z"/>
+       <path fill="rgb(141,141,141)" stroke="none" d="M 18819,20293 L 18823,20288 19415,20815 19411,20819 18819,20293 Z"/>
+       <path fill="rgb(141,141,141)" stroke="none" d="M 18821,20291 L 18825,20286 19417,20813 19413,20817 18821,20291 Z"/>
+      </g>
+      <path fill="rgb(140,140,140)" stroke="none" d="M 18745,20324 C 18733,20338 18726,20356 18726,20375 L 18726,20377 18733,20884 C 18733,20927 18768,20961 18810,20961 18810,20961 18811,20961 18811,20961 L 19303,20955 19341,20954 19346,20954 C 19354,20954 19362,20952 19370,20950 L 18745,20324 Z M 18810,20910 C 18795,20910 18784,20898 18783,20884 L 18778,20429 19253,20904 18810,20910 18810,20910 Z"/>
+     </g>
+    </g>
+    <g class="Graphic">
+     <g id="id11">
+      <rect class="BoundingBox" stroke="none" fill="none" x="17882" y="20939" width="1164" height="991"/>
+      <path fill="rgb(58,90,130)" stroke="none" d="M 18582,21511 C 18677,21528 18765,21563 18842,21613 L 18463,20957 18085,21613 C 18162,21563 18250,21528 18345,21511 L 18463,21306 18582,21511 Z"/>
+      <path fill="rgb(58,90,130)" stroke="none" d="M 18627,21588 C 18575,21574 18520,21567 18464,21567 18407,21567 18352,21574 18300,21588 18240,21604 18184,21629 18132,21661 18034,21721 17953,21808 17900,21911 L 18108,21911 C 18192,21807 18320,21741 18464,21741 18607,21741 18735,21807 18819,21911 L 19027,21911 C 18974,21808 18893,21721 18795,21661 18743,21629 18687,21604 18627,21588 Z"/>
+     </g>
+    </g>
+   </g>
+   <g class="Group">
+    <g class="Graphic">
+     <g id="id12">
+      <rect class="BoundingBox" stroke="none" fill="none" x="17207" y="20078" width="1113" height="1180"/>
+      <defs>
+       <clipPath id="clip_path_11" clipPathUnits="userSpaceOnUse">
+        <path d="M 17207,20078 L 18319,20078 18319,21257 17207,21257 17207,20078 Z"/>
+       </clipPath>
+      </defs>
+      <g clip-path="url(#clip_path_11)">
+       <path fill="rgb(190,190,190)" stroke="none" d="M 17763,21210 L 17413,21210 17413,20125 18113,20125 18113,21210 17763,21210 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="1" stroke-linejoin="miter" d="M 17763,21210 L 17413,21210 17413,20125 18113,20125 18113,21210 17763,21210 Z"/>
+       <path fill="rgb(58,90,128)" stroke="none" d="M 17437,21257 L 18089,21257 C 18124,21257 18153,21227 18153,21189 L 18153,20146 C 18153,20108 18124,20078 18089,20078 L 17437,20078 C 17402,20078 17373,20108 17373,20146 L 17373,21189 C 17373,21227 17402,21257 17437,21257 L 17437,21257 Z M 18043,21174 C 18022,21174 18004,21156 18004,21133 18004,21111 18022,21092 18043,21092 18064,21092 18081,21111 18081,21133 18081,21156 18064,21174 18043,21174 L 18043,21174 Z M 18043,20170 C 18064,20170 18081,20188 18081,20211 18081,20233 18064,20251 18043,20251 18022,20251 18004,20233 18004,20211 18004,20188 18022,20170 18043,20170 L 18043,20170 Z M 17763,20201 C 17929,20201 18063,20343 18063,20519 18063,20694 17929,20837 17763,20837 17737,20837 17712,20833 17687,20826 L 17744,20725 C 17761,20695 17728,20661 17700,20679 L 17569,20760 C 17569,20761 17569,20761 17569,20761 17504,20703 17463,20616 17463,20519 17463,20343 17597,20201 17763,20201 L 17763,20201 Z M 17491,20170 C 17512,20170 17529,20188 17529,20211 17529,20233 17512,20251 17491,20251 17470,20251 17453,20233 17453,20211 17453,20188 17470,20170 17491,20170 L 17491,20170 Z M 17491,21092 C 17512,21092 17529,21111 17529,21133 17529,21156 17512,21174 17491,21174 17470,21174 17453,21156 17453,21133 17453,21111 17470,21092 17491,21092 L 17491,21092 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="13" stroke-linejoin="miter" d="M 17437,21257 L 18089,21257 C 18124,21257 18153,21227 18153,21189 L 18153,20146 C 18153,20108 18124,20078 18089,20078 L 17437,20078 C 17402,20078 17373,20108 17373,20146 L 17373,21189 C 17373,21227 17402,21257 17437,21257 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="13" stroke-linejoin="miter" d="M 18043,21174 C 18022,21174 18004,21156 18004,21133 18004,21111 18022,21092 18043,21092 18064,21092 18081,21111 18081,21133 18081,21156 18064,21174 18043,21174 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="13" stroke-linejoin="miter" d="M 18043,20170 C 18064,20170 18081,20188 18081,20211 18081,20233 18064,20251 18043,20251 18022,20251 18004,20233 18004,20211 18004,20188 18022,20170 18043,20170 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="13" stroke-linejoin="miter" d="M 17763,20201 C 17929,20201 18063,20343 18063,20519 18063,20694 17929,20837 17763,20837 17737,20837 17712,20833 17687,20826 L 17744,20725 C 17761,20695 17728,20661 17700,20679 L 17569,20760 C 17569,20761 17569,20761 17569,20761 17504,20703 17463,20616 17463,20519 17463,20343 17597,20201 17763,20201 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="13" stroke-linejoin="miter" d="M 17491,20170 C 17512,20170 17529,20188 17529,20211 17529,20233 17512,20251 17491,20251 17470,20251 17453,20233 17453,20211 17453,20188 17470,20170 17491,20170 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="13" stroke-linejoin="miter" d="M 17491,21092 C 17512,21092 17529,21111 17529,21133 17529,21156 17512,21174 17491,21174 17470,21174 17453,21156 17453,21133 17453,21111 17470,21092 17491,21092 Z"/>
+       <path fill="rgb(58,90,128)" stroke="none" d="M 17843,20519 C 17843,20533 17839,20548 17832,20561 17825,20574 17815,20585 17803,20592 17791,20600 17777,20604 17763,20604 17749,20604 17735,20600 17723,20592 17711,20585 17701,20574 17694,20561 17687,20548 17683,20533 17683,20519 17683,20504 17687,20489 17694,20476 17701,20463 17711,20452 17723,20445 17735,20438 17749,20434 17763,20434 17777,20434 17791,20438 17803,20445 17815,20452 17825,20463 17832,20476 17839,20489 17843,20504 17843,20519 L 17843,20519 Z"/>
+       <path fill="none" stroke="rgb(65,65,65)" stroke-width="13" stroke-linejoin="miter" d="M 17843,20519 C 17843,20533 17839,20548 17832,20561 17825,20574 17815,20585 17803,20592 17791,20600 17777,20604 17763,20604 17749,20604 17735,20600 17723,20592 17711,20585 17701,20574 17694,20561 17687,20548 17683,20533 17683,20519 17683,20504 17687,20489 17694,20476 17701,20463 17711,20452 17723,20445 17735,20438 17749,20434 17763,20434 17777,20434 17791,20438 17803,20445 17815,20452 17825,20463 17832,20476 17839,20489 17843,20504 17843,20519 L 17843,20519 Z"/>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id13">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6800" y="21325" width="2301" height="351"/>
+    <path fill="none" stroke="rgb(58,90,128)" stroke-width="100" stroke-linejoin="round" d="M 8598,21500 L 6850,21500"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 9100,21500 L 8575,21325 8575,21675 9100,21500 Z"/>
+   </g>
+  </g>
+  <g class="Group">
+   <g class="Graphic">
+    <g id="id14">
+     <rect class="BoundingBox" stroke="none" fill="none" x="6850" y="20500" width="1751" height="1751"/>
+     <defs>
+      <clipPath id="clip_path_12" clipPathUnits="userSpaceOnUse">
+       <path d="M 7913,20730 L 7235,20730 C 7209,20730 7188,20751 7188,20776 L 7188,22005 C 7188,22031 7209,22051 7235,22051 L 8251,22051 C 8276,22051 8297,22031 8297,22005 L 8297,21118 7913,20730 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_12)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7761,20344 L 7903,20549 6732,21362 6590,21157 7761,20344 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7893,20535 L 7910,20559 6739,21372 6722,21348 7893,20535 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 7900,20546 L 7917,20570 6746,21382 6729,21358 7900,20546 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 7908,20556 L 7924,20580 6753,21393 6736,21369 7908,20556 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 7915,20566 L 7931,20590 6760,21403 6743,21379 7915,20566 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 7922,20576 L 7939,20600 6767,21413 6751,21389 7922,20576 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 7929,20587 L 7946,20611 6774,21424 6758,21400 7929,20587 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 7936,20597 L 7953,20621 6781,21434 6765,21410 7936,20597 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 7943,20607 L 7960,20631 6789,21444 6772,21420 7943,20607 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 7950,20617 L 7967,20641 6796,21454 6779,21430 7950,20617 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 7958,20628 L 7974,20652 6803,21465 6786,21441 7958,20628 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 7965,20638 L 7981,20662 6810,21475 6793,21451 7965,20638 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 7972,20648 L 7988,20672 6817,21485 6800,21461 7972,20648 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 7979,20659 L 7996,20683 6824,21495 6808,21471 7979,20659 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 7986,20669 L 8003,20693 6831,21506 6815,21482 7986,20669 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 7993,20679 L 8010,20703 6839,21516 6822,21492 7993,20679 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 8000,20689 L 8017,20713 6846,21526 6829,21502 8000,20689 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 8007,20700 L 8024,20724 6853,21537 6836,21513 8007,20700 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 8015,20710 L 8031,20734 6860,21547 6843,21523 8015,20710 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 8022,20720 L 8038,20744 6867,21557 6850,21533 8022,20720 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 8029,20730 L 8045,20754 6874,21567 6857,21543 8029,20730 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 8036,20741 L 8053,20765 6881,21578 6865,21554 8036,20741 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 8043,20751 L 8060,20775 6888,21588 6872,21564 8043,20751 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 8050,20761 L 8067,20785 6896,21598 6879,21574 8050,20761 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 8057,20771 L 8074,20795 6903,21608 6886,21584 8057,20771 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 8064,20782 L 8081,20806 6910,21619 6893,21595 8064,20782 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 8072,20792 L 8088,20816 6917,21629 6900,21605 8072,20792 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 8079,20802 L 8095,20826 6924,21639 6907,21615 8079,20802 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 8086,20813 L 8102,20837 6931,21649 6915,21625 8086,20813 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 8093,20823 L 8110,20847 6938,21660 6922,21636 8093,20823 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 8100,20833 L 8117,20857 6945,21670 6929,21646 8100,20833 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 8107,20843 L 8124,20867 6953,21680 6936,21656 8107,20843 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 8114,20854 L 8131,20878 6960,21691 6943,21667 8114,20854 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 8121,20864 L 8138,20888 6967,21701 6950,21677 8121,20864 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 8129,20874 L 8145,20898 6974,21711 6957,21687 8129,20874 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 8136,20884 L 8152,20908 6981,21721 6964,21697 8136,20884 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 8143,20895 L 8159,20919 6988,21732 6972,21708 8143,20895 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 8150,20905 L 8167,20929 6995,21742 6979,21718 8150,20905 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 8157,20915 L 8174,20939 7002,21752 6986,21728 8157,20915 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 8164,20926 L 8181,20950 7010,21762 6993,21738 8164,20926 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 8171,20936 L 8188,20960 7017,21773 7000,21749 8171,20936 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 8178,20946 L 8195,20970 7024,21783 7007,21759 8178,20946 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 8186,20956 L 8202,20980 7031,21793 7014,21769 8186,20956 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 8193,20967 L 8209,20991 7038,21804 7021,21780 8193,20967 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 8200,20977 L 8216,21001 7045,21814 7029,21790 8200,20977 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 8207,20987 L 8224,21011 7052,21824 7036,21800 8207,20987 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 8214,20997 L 8231,21021 7059,21834 7043,21810 8214,20997 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 8221,21008 L 8238,21032 7067,21845 7050,21821 8221,21008 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 8228,21018 L 8245,21042 7074,21855 7057,21831 8228,21018 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 8235,21028 L 8252,21052 7081,21865 7064,21841 8235,21028 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 8243,21038 L 8259,21062 7088,21875 7071,21851 8243,21038 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 8250,21049 L 8266,21073 7095,21886 7078,21862 8250,21049 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 8257,21059 L 8274,21083 7102,21896 7086,21872 8257,21059 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 8264,21069 L 8281,21093 7109,21906 7093,21882 8264,21069 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 8271,21080 L 8288,21104 7116,21917 7100,21893 8271,21080 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 8278,21090 L 8295,21114 7124,21927 7107,21903 8278,21090 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 8285,21100 L 8302,21124 7131,21937 7114,21913 8285,21100 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 8293,21110 L 8309,21134 7138,21947 7121,21923 8293,21110 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 8300,21121 L 8316,21145 7145,21958 7128,21934 8300,21121 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 8307,21131 L 8323,21155 7152,21968 7135,21944 8307,21131 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 8314,21141 L 8331,21165 7159,21978 7143,21954 8314,21141 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 8321,21151 L 8338,21175 7166,21988 7150,21964 8321,21151 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 8328,21162 L 8345,21186 7174,21999 7157,21975 8328,21162 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 8335,21172 L 8352,21196 7181,22009 7164,21985 8335,21172 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 8342,21182 L 8359,21206 7188,22019 7171,21995 8342,21182 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 8350,21193 L 8366,21217 7195,22029 7178,22005 8350,21193 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 8357,21203 L 8373,21227 7202,22040 7185,22016 8357,21203 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 8364,21213 L 8380,21237 7209,22050 7192,22026 8364,21213 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 8371,21223 L 8388,21247 7216,22060 7200,22036 8371,21223 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 8378,21234 L 8395,21258 7223,22071 7207,22047 8378,21234 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 8385,21244 L 8402,21268 7231,22081 7214,22057 8385,21244 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 8392,21254 L 8409,21278 7238,22091 7221,22067 8392,21254 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 8399,21264 L 8416,21288 7245,22101 7228,22077 8399,21264 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 8407,21275 L 8423,21299 7252,22112 7235,22088 8407,21275 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 8414,21285 L 8430,21309 7259,22122 7242,22098 8414,21285 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 8421,21295 L 8437,21319 7266,22132 7250,22108 8421,21295 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 8428,21306 L 8445,21330 7273,22142 7257,22118 8428,21306 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 8435,21316 L 8452,21340 7280,22153 7264,22129 8435,21316 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 8442,21326 L 8459,21350 7288,22163 7271,22139 8442,21326 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 8449,21336 L 8466,21360 7295,22173 7278,22149 8449,21336 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 8456,21347 L 8473,21371 7302,22184 7285,22160 8456,21347 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 8464,21357 L 8480,21381 7309,22194 7292,22170 8464,21357 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 8471,21367 L 8487,21391 7316,22204 7299,22180 8471,21367 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 8478,21377 L 8494,21401 7323,22214 7307,22190 8478,21377 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 8485,21388 L 8502,21412 7330,22225 7314,22201 8485,21388 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 8492,21398 L 8509,21422 7337,22235 7321,22211 8492,21398 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 8499,21408 L 8516,21432 7345,22245 7328,22221 8499,21408 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 8506,21418 L 8523,21442 7352,22255 7335,22231 8506,21418 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 8513,21429 L 8530,21453 7359,22266 7342,22242 8513,21429 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 8521,21439 L 8537,21463 7366,22276 7349,22252 8521,21439 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 8528,21449 L 8544,21473 7373,22286 7356,22262 8528,21449 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 8535,21460 L 8552,21484 7380,22296 7364,22272 8535,21460 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 8542,21470 L 8559,21494 7387,22307 7371,22283 8542,21470 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 8549,21480 L 8566,21504 7394,22317 7378,22293 8549,21480 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 8556,21490 L 8573,21514 7402,22327 7385,22303 8556,21490 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 8563,21501 L 8580,21525 7409,22338 7392,22314 8563,21501 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 8570,21511 L 8587,21535 7416,22348 7399,22324 8570,21511 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 8578,21521 L 8594,21545 7423,22358 7406,22334 8578,21521 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 8585,21531 L 8601,21555 7430,22368 7413,22344 8585,21531 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 8592,21542 L 8609,21566 7437,22379 7421,22355 8592,21542 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 8599,21552 L 8616,21576 7444,22389 7428,22365 8599,21552 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 8606,21562 L 8623,21586 7451,22399 7435,22375 8606,21562 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 8613,21573 L 8630,21597 7459,22409 7442,22385 8613,21573 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 8620,21583 L 8637,21607 7466,22420 7449,22396 8620,21583 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 8628,21593 L 8644,21617 7473,22430 7456,22406 8628,21593 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 8635,21603 L 8651,21627 7480,22440 7463,22416 8635,21603 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 8642,21614 L 8658,21638 7487,22451 7470,22427 8642,21614 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 8649,21624 L 8666,21648 7494,22461 7478,22437 8649,21624 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 8656,21634 L 8673,21658 7501,22471 7485,22447 8656,21634 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 8663,21644 L 8680,21668 7509,22481 7492,22457 8663,21644 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 8670,21655 L 8687,21679 7516,22492 7499,22468 8670,21655 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 8677,21665 L 8694,21689 7523,22502 7506,22478 8677,21665 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 8685,21675 L 8701,21699 7530,22512 7513,22488 8685,21675 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 8692,21685 L 8708,21709 7537,22522 7520,22498 8692,21685 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 8699,21696 L 8715,21720 7544,22533 7527,22509 8699,21696 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 8706,21706 L 8723,21730 7551,22543 7535,22519 8706,21706 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 8713,21716 L 8730,21740 7558,22553 7542,22529 8713,21716 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 8720,21727 L 8737,21751 7566,22563 7549,22540 8720,21727 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 8727,21737 L 8744,21761 7573,22574 7556,22550 8727,21737 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 8734,21747 L 8751,21771 7580,22584 7563,22560 8734,21747 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 8742,21757 L 8758,21781 7587,22594 7570,22570 8742,21757 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 8749,21768 L 8765,21792 7594,22605 7577,22581 8749,21768 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 8756,21778 L 8772,21802 7601,22615 7585,22591 8756,21778 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 8763,21788 L 8780,21812 7608,22625 7592,22601 8763,21788 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 8770,21798 L 8787,21822 7615,22635 7599,22611 8770,21798 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 8777,21809 L 8794,21833 7623,22646 7606,22622 8777,21809 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 8784,21819 L 8801,21843 7630,22656 7613,22632 8784,21819 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 8791,21829 L 8808,21853 7637,22666 7620,22642 8791,21829 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 8799,21840 L 8815,21864 7644,22676 7627,22652 8799,21840 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 8806,21850 L 8822,21874 7651,22687 7634,22663 8806,21850 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 8813,21860 L 8829,21884 7658,22697 7642,22673 8813,21860 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 8820,21870 L 8837,21894 7665,22707 7649,22683 8820,21870 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 8827,21881 L 8844,21905 7672,22718 7656,22694 8827,21881 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 8834,21891 L 8851,21915 7680,22728 7663,22704 8834,21891 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 8841,21901 L 8858,21925 7687,22738 7670,22714 8841,21901 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 8848,21911 L 8865,21935 7694,22748 7677,22724 8848,21911 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 8856,21922 L 8872,21946 7701,22759 7684,22735 8856,21922 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 8863,21932 L 8879,21956 7708,22769 7691,22745 8863,21932 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 8870,21942 L 8887,21966 7715,22779 7699,22755 8870,21942 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 8877,21953 L 8894,21976 7722,22789 7706,22765 8877,21953 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 8884,21963 L 8901,21987 7729,22800 7713,22776 8884,21963 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 8891,21973 L 8908,21997 7737,22810 7720,22786 8891,21973 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 8898,21983 L 8915,22007 7744,22820 7727,22796 8898,21983 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 8905,21994 L 8922,22018 7751,22831 7734,22807 8905,21994 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 8913,22004 L 8929,22028 7758,22841 7741,22817 8913,22004 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 8920,22014 L 8936,22038 7765,22851 7748,22827 8920,22014 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 8927,22024 L 8944,22048 7772,22861 7756,22837 8927,22024 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 8934,22035 L 8951,22059 7779,22872 7763,22848 8934,22035 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 8941,22045 L 8958,22069 7786,22882 7770,22858 8941,22045 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 8948,22055 L 8965,22079 7794,22892 7777,22868 8948,22055 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 8955,22065 L 8972,22089 7801,22902 7784,22878 8955,22065 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 8963,22076 L 8979,22100 7808,22913 7791,22889 8963,22076 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 8970,22086 L 8986,22110 7815,22923 7798,22899 8970,22086 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 8977,22096 L 8993,22120 7822,22933 7805,22909 8977,22096 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 8984,22107 L 9001,22131 7829,22943 7813,22919 8984,22107 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 8991,22117 L 9008,22141 7836,22954 7820,22930 8991,22117 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 8998,22127 L 9015,22151 7844,22964 7827,22940 8998,22127 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 9005,22137 L 9022,22161 7851,22974 7834,22950 9005,22137 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 9012,22148 L 9029,22172 7858,22985 7841,22961 9012,22148 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 9020,22158 L 9036,22182 7865,22995 7848,22971 9020,22158 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 9027,22168 L 9043,22192 7872,23005 7855,22981 9027,22168 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 9034,22178 L 9050,22202 7879,23015 7862,22991 9034,22178 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 9041,22189 L 9058,22213 7886,23026 7870,23002 9041,22189 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 9048,22199 L 9065,22223 7893,23036 7877,23012 9048,22199 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 9055,22209 L 9072,22233 7901,23046 7884,23022 9055,22209 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 9062,22220 L 9079,22244 7908,23056 7891,23032 9062,22220 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 9069,22230 L 9086,22254 7915,23067 7898,23043 9069,22230 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 9077,22240 L 9093,22264 7922,23077 7905,23053 9077,22240 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 9084,22250 L 9100,22274 7929,23087 7912,23063 9084,22250 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 9091,22261 L 9107,22285 7936,23098 7920,23074 9091,22261 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 9098,22271 L 9115,22295 7943,23108 7927,23084 9098,22271 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 9105,22281 L 9122,22305 7950,23118 7934,23094 9105,22281 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 9112,22291 L 9129,22315 7958,23128 7941,23104 9112,22291 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 9119,22302 L 9136,22326 7965,23139 7948,23115 9119,22302 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 9126,22312 L 9143,22336 7972,23149 7955,23125 9126,22312 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 9134,22322 L 9150,22346 7979,23159 7962,23135 9134,22322 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 9141,22332 L 9157,22356 7986,23169 7969,23145 9141,22332 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 9148,22343 L 9164,22367 7993,23180 7977,23156 9148,22343 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 9155,22353 L 9172,22377 8000,23190 7984,23166 9155,22353 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 9162,22363 L 9179,22387 8007,23200 7991,23176 9162,22363 Z"/>
+     </g>
+     <path fill="none" stroke="rgb(140,140,140)" stroke-width="32" stroke-linejoin="miter" d="M 7913,20730 L 7235,20730 C 7209,20730 7188,20751 7188,20776 L 7188,22005 C 7188,22031 7209,22051 7235,22051 L 8251,22051 C 8276,22051 8297,22031 8297,22005 L 8297,21118 7913,20730 Z"/>
+     <defs>
+      <clipPath id="clip_path_13" clipPathUnits="userSpaceOnUse">
+       <path d="M 7235,20714 C 7200,20714 7172,20742 7172,20776 L 7172,22005 C 7172,22040 7200,22067 7235,22067 L 8251,22067 C 8285,22067 8314,22040 8314,22005 L 8314,21111 7919,20714 7235,20714 7235,20714 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_13)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7766,20322 L 7910,20530 6712,21362 6567,21153 7766,20322 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7901,20516 L 7917,20540 6719,21372 6702,21348 7901,20516 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 7908,20526 L 7924,20550 6726,21382 6709,21358 7908,20526 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 7915,20536 L 7932,20560 6733,21392 6716,21368 7915,20536 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 7922,20547 L 7939,20571 6740,21402 6723,21379 7922,20547 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 7929,20557 L 7946,20581 6747,21413 6731,21389 7929,20557 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 7936,20567 L 7953,20591 6754,21423 6738,21399 7936,20567 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 7943,20577 L 7960,20601 6761,21433 6745,21409 7943,20577 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 7950,20588 L 7967,20612 6768,21443 6752,21420 7950,20588 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 7958,20598 L 7974,20622 6776,21454 6759,21430 7958,20598 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 7965,20608 L 7981,20632 6783,21464 6766,21440 7965,20608 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 7972,20618 L 7988,20642 6790,21474 6773,21450 7972,20618 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 7979,20629 L 7995,20653 6797,21484 6780,21460 7979,20629 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 7986,20639 L 8003,20663 6804,21495 6787,21471 7986,20639 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 7993,20649 L 8010,20673 6811,21505 6795,21481 7993,20649 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 8000,20659 L 8017,20683 6818,21515 6802,21491 8000,20659 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 8007,20670 L 8024,20693 6825,21525 6809,21501 8007,20670 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 8014,20680 L 8031,20704 6832,21536 6816,21512 8014,20680 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 8022,20690 L 8038,20714 6840,21546 6823,21522 8022,20690 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 8029,20700 L 8045,20724 6847,21556 6830,21532 8029,20700 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 8036,20711 L 8052,20734 6854,21566 6837,21542 8036,20711 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 8043,20721 L 8059,20745 6861,21577 6844,21553 8043,20721 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 8050,20731 L 8067,20755 6868,21587 6851,21563 8050,20731 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 8057,20741 L 8074,20765 6875,21597 6858,21573 8057,20741 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 8064,20751 L 8081,20775 6882,21607 6866,21583 8064,20751 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 8071,20762 L 8088,20786 6889,21617 6873,21594 8071,20762 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 8078,20772 L 8095,20796 6896,21628 6880,21604 8078,20772 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 8085,20782 L 8102,20806 6903,21638 6887,21614 8085,20782 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 8093,20792 L 8109,20816 6911,21648 6894,21624 8093,20792 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 8100,20803 L 8116,20827 6918,21658 6901,21635 8100,20803 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 8107,20813 L 8123,20837 6925,21669 6908,21645 8107,20813 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 8114,20823 L 8130,20847 6932,21679 6915,21655 8114,20823 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 8121,20833 L 8138,20857 6939,21689 6922,21665 8121,20833 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 8128,20844 L 8145,20868 6946,21699 6930,21675 8128,20844 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 8135,20854 L 8152,20878 6953,21710 6937,21686 8135,20854 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 8142,20864 L 8159,20888 6960,21720 6944,21696 8142,20864 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 8149,20874 L 8166,20898 6967,21730 6951,21706 8149,20874 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 8157,20885 L 8173,20908 6975,21740 6958,21716 8157,20885 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 8164,20895 L 8180,20919 6982,21751 6965,21727 8164,20895 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 8171,20905 L 8187,20929 6989,21761 6972,21737 8171,20905 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 8178,20915 L 8194,20939 6996,21771 6979,21747 8178,20915 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 8185,20926 L 8202,20949 7003,21781 6986,21757 8185,20926 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 8192,20936 L 8209,20960 7010,21792 6993,21768 8192,20936 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 8199,20946 L 8216,20970 7017,21802 7001,21778 8199,20946 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 8206,20956 L 8223,20980 7024,21812 7008,21788 8206,20956 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 8213,20966 L 8230,20990 7031,21822 7015,21798 8213,20966 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 8220,20977 L 8237,21001 7038,21832 7022,21809 8220,20977 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 8228,20987 L 8244,21011 7046,21843 7029,21819 8228,20987 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 8235,20997 L 8251,21021 7053,21853 7036,21829 8235,20997 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 8242,21007 L 8258,21031 7060,21863 7043,21839 8242,21007 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 8249,21018 L 8265,21042 7067,21873 7050,21850 8249,21018 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 8256,21028 L 8273,21052 7074,21884 7057,21860 8256,21028 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 8263,21038 L 8280,21062 7081,21894 7065,21870 8263,21038 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 8270,21048 L 8287,21072 7088,21904 7072,21880 8270,21048 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 8277,21059 L 8294,21083 7095,21914 7079,21890 8277,21059 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 8284,21069 L 8301,21093 7102,21925 7086,21901 8284,21069 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 8292,21079 L 8308,21103 7110,21935 7093,21911 8292,21079 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 8299,21089 L 8315,21113 7117,21945 7100,21921 8299,21089 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 8306,21100 L 8322,21123 7124,21955 7107,21931 8306,21100 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 8313,21110 L 8329,21134 7131,21966 7114,21942 8313,21110 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 8320,21120 L 8337,21144 7138,21976 7121,21952 8320,21120 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 8327,21130 L 8344,21154 7145,21986 7128,21962 8327,21130 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 8334,21141 L 8351,21164 7152,21996 7136,21972 8334,21141 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 8341,21151 L 8358,21175 7159,22007 7143,21983 8341,21151 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 8348,21161 L 8365,21185 7166,22017 7150,21993 8348,21161 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 8355,21171 L 8372,21195 7173,22027 7157,22003 8355,21171 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 8363,21181 L 8379,21205 7181,22037 7164,22013 8363,21181 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 8370,21192 L 8386,21216 7188,22047 7171,22024 8370,21192 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 8377,21202 L 8393,21226 7195,22058 7178,22034 8377,21202 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 8384,21212 L 8401,21236 7202,22068 7185,22044 8384,21212 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 8391,21222 L 8408,21246 7209,22078 7192,22054 8391,21222 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 8398,21233 L 8415,21257 7216,22088 7200,22065 8398,21233 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 8405,21243 L 8422,21267 7223,22099 7207,22075 8405,21243 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 8412,21253 L 8429,21277 7230,22109 7214,22085 8412,21253 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 8419,21263 L 8436,21287 7237,22119 7221,22095 8419,21263 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 8427,21274 L 8443,21298 7245,22129 7228,22105 8427,21274 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 8434,21284 L 8450,21308 7252,22140 7235,22116 8434,21284 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 8441,21294 L 8457,21318 7259,22150 7242,22126 8441,21294 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 8448,21304 L 8464,21328 7266,22160 7249,22136 8448,21304 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 8455,21315 L 8472,21338 7273,22170 7256,22146 8455,21315 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 8462,21325 L 8479,21349 7280,22181 7263,22157 8462,21325 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 8469,21335 L 8486,21359 7287,22191 7271,22167 8469,21335 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 8476,21345 L 8493,21369 7294,22201 7278,22177 8476,21345 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 8483,21356 L 8500,21379 7301,22211 7285,22187 8483,21356 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 8491,21366 L 8507,21390 7309,22222 7292,22198 8491,21366 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 8498,21376 L 8514,21400 7316,22232 7299,22208 8498,21376 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 8505,21386 L 8521,21410 7323,22242 7306,22218 8505,21386 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 8512,21396 L 8528,21420 7330,22252 7313,22228 8512,21396 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 8519,21407 L 8536,21431 7337,22263 7320,22239 8519,21407 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 8526,21417 L 8543,21441 7344,22273 7327,22249 8526,21417 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 8533,21427 L 8550,21451 7351,22283 7335,22259 8533,21427 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 8540,21437 L 8557,21461 7358,22293 7342,22269 8540,21437 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 8547,21448 L 8564,21472 7365,22303 7349,22280 8547,21448 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 8554,21458 L 8571,21482 7372,22314 7356,22290 8554,21458 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 8562,21468 L 8578,21492 7380,22324 7363,22300 8562,21468 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 8569,21478 L 8585,21502 7387,22334 7370,22310 8569,21478 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 8576,21489 L 8592,21513 7394,22344 7377,22321 8576,21489 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 8583,21499 L 8599,21523 7401,22355 7384,22331 8583,21499 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 8590,21509 L 8607,21533 7408,22365 7391,22341 8590,21509 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 8597,21519 L 8614,21543 7415,22375 7399,22351 8597,21519 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 8604,21530 L 8621,21553 7422,22385 7406,22361 8604,21530 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 8611,21540 L 8628,21564 7429,22396 7413,22372 8611,21540 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 8618,21550 L 8635,21574 7436,22406 7420,22382 8618,21550 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 8626,21560 L 8642,21584 7444,22416 7427,22392 8626,21560 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 8633,21571 L 8649,21594 7451,22426 7434,22402 8633,21571 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 8640,21581 L 8656,21605 7458,22437 7441,22413 8640,21581 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 8647,21591 L 8663,21615 7465,22447 7448,22423 8647,21591 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 8654,21601 L 8671,21625 7472,22457 7455,22433 8654,21601 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 8661,21611 L 8678,21635 7479,22467 7462,22443 8661,21611 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 8668,21622 L 8685,21646 7486,22478 7470,22454 8668,21622 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 8675,21632 L 8692,21656 7493,22488 7477,22464 8675,21632 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 8682,21642 L 8699,21666 7500,22498 7484,22474 8682,21642 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 8689,21652 L 8706,21676 7507,22508 7491,22484 8689,21652 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 8697,21663 L 8713,21687 7515,22518 7498,22495 8697,21663 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 8704,21673 L 8720,21697 7522,22529 7505,22505 8704,21673 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 8711,21683 L 8727,21707 7529,22539 7512,22515 8711,21683 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 8718,21693 L 8734,21717 7536,22549 7519,22525 8718,21693 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 8725,21704 L 8742,21728 7543,22559 7526,22536 8725,21704 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 8732,21714 L 8749,21738 7550,22570 7534,22546 8732,21714 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 8739,21724 L 8756,21748 7557,22580 7541,22556 8739,21724 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 8746,21734 L 8763,21758 7564,22590 7548,22566 8746,21734 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 8753,21745 L 8770,21768 7571,22600 7555,22576 8753,21745 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 8761,21755 L 8777,21779 7579,22611 7562,22587 8761,21755 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 8768,21765 L 8784,21789 7586,22621 7569,22597 8768,21765 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 8775,21775 L 8791,21799 7593,22631 7576,22607 8775,21775 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 8782,21786 L 8798,21809 7600,22641 7583,22617 8782,21786 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 8789,21796 L 8806,21820 7607,22652 7590,22628 8789,21796 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 8796,21806 L 8813,21830 7614,22662 7597,22638 8796,21806 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 8803,21816 L 8820,21840 7621,22672 7605,22648 8803,21816 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 8810,21826 L 8827,21850 7628,22682 7612,22658 8810,21826 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 8817,21837 L 8834,21861 7635,22693 7619,22669 8817,21837 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 8824,21847 L 8841,21871 7642,22703 7626,22679 8824,21847 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 8832,21857 L 8848,21881 7650,22713 7633,22689 8832,21857 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 8839,21867 L 8855,21891 7657,22723 7640,22699 8839,21867 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 8846,21878 L 8862,21902 7664,22733 7647,22710 8846,21878 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 8853,21888 L 8870,21912 7671,22744 7654,22720 8853,21888 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 8860,21898 L 8877,21922 7678,22754 7661,22730 8860,21898 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 8867,21908 L 8884,21932 7685,22764 7669,22740 8867,21908 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 8874,21919 L 8891,21943 7692,22774 7676,22751 8874,21919 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 8881,21929 L 8898,21953 7699,22785 7683,22761 8881,21929 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 8888,21939 L 8905,21963 7706,22795 7690,22771 8888,21939 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 8896,21949 L 8912,21973 7714,22805 7697,22781 8896,21949 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 8903,21960 L 8919,21983 7721,22815 7704,22791 8903,21960 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 8910,21970 L 8926,21994 7728,22826 7711,22802 8910,21970 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 8917,21980 L 8933,22004 7735,22836 7718,22812 8917,21980 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 8924,21990 L 8941,22014 7742,22846 7725,22822 8924,21990 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 8931,22001 L 8948,22024 7749,22856 7732,22832 8931,22001 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 8938,22011 L 8955,22035 7756,22867 7740,22843 8938,22011 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 8945,22021 L 8962,22045 7763,22877 7747,22853 8945,22021 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 8952,22031 L 8969,22055 7770,22887 7754,22863 8952,22031 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 8959,22041 L 8976,22065 7778,22897 7761,22873 8959,22041 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 8967,22052 L 8983,22076 7785,22908 7768,22884 8967,22052 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 8974,22062 L 8990,22086 7792,22918 7775,22894 8974,22062 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 8981,22072 L 8997,22096 7799,22928 7782,22904 8981,22072 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 8988,22082 L 9005,22106 7806,22938 7789,22914 8988,22082 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 8995,22093 L 9012,22117 7813,22948 7796,22925 8995,22093 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 9002,22103 L 9019,22127 7820,22959 7804,22935 9002,22103 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 9009,22113 L 9026,22137 7827,22969 7811,22945 9009,22113 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 9016,22123 L 9033,22147 7834,22979 7818,22955 9016,22123 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 9023,22134 L 9040,22158 7841,22989 7825,22966 9023,22134 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 9031,22144 L 9047,22168 7849,23000 7832,22976 9031,22144 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 9038,22154 L 9054,22178 7856,23010 7839,22986 9038,22154 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 9045,22164 L 9061,22188 7863,23020 7846,22996 9045,22164 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 9052,22175 L 9068,22199 7870,23030 7853,23006 9052,22175 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 9059,22185 L 9076,22209 7877,23041 7860,23017 9059,22185 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 9066,22195 L 9083,22219 7884,23051 7867,23027 9066,22195 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 9073,22205 L 9090,22229 7891,23061 7875,23037 9073,22205 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 9080,22216 L 9097,22239 7898,23071 7882,23047 9080,22216 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 9087,22226 L 9104,22250 7905,23082 7889,23058 9087,22226 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 9095,22236 L 9111,22260 7913,23092 7896,23068 9095,22236 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 9102,22246 L 9118,22270 7920,23102 7903,23078 9102,22246 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 9109,22257 L 9125,22280 7927,23112 7910,23088 9109,22257 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 9116,22267 L 9132,22291 7934,23123 7917,23099 9116,22267 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 9123,22277 L 9140,22301 7941,23133 7924,23109 9123,22277 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 9130,22287 L 9147,22311 7948,23143 7931,23119 9130,22287 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 9137,22297 L 9154,22321 7955,23153 7939,23129 9137,22297 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 9144,22308 L 9161,22332 7962,23163 7946,23140 9144,22308 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 9151,22318 L 9168,22342 7969,23174 7953,23150 9151,22318 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 9158,22328 L 9175,22352 7976,23184 7960,23160 9158,22328 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 9166,22338 L 9182,22362 7984,23194 7967,23170 9166,22338 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 9173,22349 L 9189,22373 7991,23204 7974,23181 9173,22349 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 9180,22359 L 9196,22383 7998,23215 7981,23191 9180,22359 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 9187,22369 L 9203,22393 8005,23225 7988,23201 9187,22369 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 9194,22379 L 9211,22403 8012,23235 7995,23211 9194,22379 Z"/>
+     </g>
+     <path fill="rgb(140,140,140)" stroke="none" d="M 7926,20698 L 7913,20698 7235,20698 C 7191,20698 7156,20733 7156,20776 L 7156,22005 C 7156,22048 7191,22083 7235,22083 L 8251,22083 C 8294,22083 8330,22048 8330,22005 L 8330,21118 8330,21105 8320,21095 7936,20707 7926,20698 Z M 7188,20776 C 7188,20751 7209,20730 7235,20730 L 7913,20730 8297,21118 8297,22005 C 8297,22031 8276,22051 8251,22051 L 7235,22051 C 7209,22051 7188,22031 7188,22005 L 7188,20776 Z"/>
+     <defs>
+      <clipPath id="clip_path_14" clipPathUnits="userSpaceOnUse">
+       <path d="M 7196,20776 L 7196,22005 C 7196,22026 7214,22043 7235,22043 L 8251,22043 C 8272,22043 8289,22026 8289,22005 L 8289,21121 C 8285,21117 7914,20743 7909,20738 7903,20738 7235,20738 7235,20738 7214,20738 7196,20755 7196,20776 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_14)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7758,20356 L 7899,20559 6742,21362 6601,21159 7758,20356 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7890,20545 L 7907,20570 6750,21374 6732,21348 7890,20545 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 7898,20556 L 7915,20582 6758,21385 6740,21360 7898,20556 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 7906,20568 L 7923,20593 6766,21397 6748,21371 7906,20568 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 7914,20579 L 7931,20605 6774,21408 6756,21383 7914,20579 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 7922,20591 L 7939,20616 6781,21420 6764,21394 7922,20591 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 7930,20603 L 7947,20628 6789,21431 6772,21406 7930,20603 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 7938,20614 L 7955,20639 6797,21443 6780,21418 7938,20614 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 7946,20626 L 7963,20651 6805,21454 6788,21429 7946,20626 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 7954,20637 L 7971,20662 6813,21466 6796,21441 7954,20637 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 7962,20649 L 7979,20674 6821,21477 6804,21452 7962,20649 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 7970,20660 L 7987,20685 6829,21489 6812,21464 7970,20660 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 7978,20672 L 7995,20697 6837,21500 6820,21475 7978,20672 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 7986,20683 L 8003,20708 6845,21512 6828,21487 7986,20683 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 7994,20695 L 8011,20720 6853,21523 6836,21498 7994,20695 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 8002,20706 L 8019,20732 6861,21535 6844,21510 8002,20706 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 8010,20718 L 8027,20743 6869,21547 6852,21521 8010,20718 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 8018,20729 L 8035,20755 6877,21558 6860,21533 8018,20729 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 8026,20741 L 8043,20766 6885,21570 6868,21544 8026,20741 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 8034,20752 L 8051,20778 6893,21581 6876,21556 8034,20752 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 8042,20764 L 8059,20789 6901,21593 6884,21567 8042,20764 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 8050,20775 L 8067,20801 6909,21604 6892,21579 8050,20775 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 8058,20787 L 8075,20812 6917,21616 6900,21590 8058,20787 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 8066,20798 L 8083,20824 6925,21627 6908,21602 8066,20798 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 8074,20810 L 8091,20835 6933,21639 6916,21613 8074,20810 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 8082,20821 L 8099,20847 6941,21650 6924,21625 8082,20821 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 8090,20833 L 8107,20858 6949,21662 6932,21636 8090,20833 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 8098,20845 L 8115,20870 6957,21673 6940,21648 8098,20845 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 8106,20856 L 8123,20881 6965,21685 6948,21660 8106,20856 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 8114,20868 L 8131,20893 6973,21696 6956,21671 8114,20868 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 8122,20879 L 8139,20904 6981,21708 6964,21683 8122,20879 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 8130,20891 L 8147,20916 6989,21719 6972,21694 8130,20891 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 8138,20902 L 8155,20927 6997,21731 6980,21706 8138,20902 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 8146,20914 L 8163,20939 7005,21742 6988,21717 8146,20914 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 8154,20925 L 8171,20950 7013,21754 6996,21729 8154,20925 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 8162,20937 L 8179,20962 7021,21765 7004,21740 8162,20937 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 8170,20948 L 8187,20974 7029,21777 7012,21752 8170,20948 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 8178,20960 L 8195,20985 7037,21789 7020,21763 8178,20960 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 8186,20971 L 8203,20997 7045,21800 7028,21775 8186,20971 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 8194,20983 L 8211,21008 7053,21812 7036,21786 8194,20983 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 8202,20994 L 8219,21020 7061,21823 7044,21798 8202,20994 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 8210,21006 L 8227,21031 7069,21835 7052,21809 8210,21006 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 8218,21017 L 8235,21043 7077,21846 7060,21821 8218,21017 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 8226,21029 L 8243,21054 7085,21858 7068,21832 8226,21029 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 8234,21040 L 8251,21066 7093,21869 7076,21844 8234,21040 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 8242,21052 L 8259,21077 7101,21881 7084,21855 8242,21052 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 8250,21063 L 8267,21089 7109,21892 7092,21867 8250,21063 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 8258,21075 L 8275,21100 7117,21904 7100,21878 8258,21075 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 8266,21087 L 8283,21112 7125,21915 7108,21890 8266,21087 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 8274,21098 L 8291,21123 7133,21927 7116,21902 8274,21098 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 8282,21110 L 8299,21135 7141,21938 7124,21913 8282,21110 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 8290,21121 L 8307,21146 7149,21950 7132,21925 8290,21121 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 8298,21133 L 8315,21158 7157,21961 7140,21936 8298,21133 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 8306,21144 L 8323,21169 7165,21973 7148,21948 8306,21144 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 8314,21156 L 8331,21181 7173,21984 7156,21959 8314,21156 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 8322,21167 L 8339,21192 7181,21996 7164,21971 8322,21167 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 8330,21179 L 8347,21204 7189,22007 7172,21982 8330,21179 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 8338,21190 L 8355,21215 7197,22019 7180,21994 8338,21190 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 8346,21202 L 8363,21227 7205,22031 7188,22005 8346,21202 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 8354,21213 L 8371,21239 7213,22042 7196,22017 8354,21213 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 8362,21225 L 8379,21250 7221,22054 7204,22028 8362,21225 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 8370,21236 L 8387,21262 7229,22065 7212,22040 8370,21236 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 8378,21248 L 8395,21273 7237,22077 7220,22051 8378,21248 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 8386,21259 L 8403,21285 7245,22088 7228,22063 8386,21259 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 8394,21271 L 8411,21296 7253,22100 7236,22074 8394,21271 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 8402,21282 L 8419,21308 7261,22111 7244,22086 8402,21282 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 8410,21294 L 8427,21319 7269,22123 7252,22097 8410,21294 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 8418,21305 L 8435,21331 7277,22134 7260,22109 8418,21305 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 8426,21317 L 8443,21342 7285,22146 7268,22120 8426,21317 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 8434,21329 L 8451,21354 7293,22157 7276,22132 8434,21329 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 8442,21340 L 8459,21365 7301,22169 7284,22144 8442,21340 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 8450,21352 L 8467,21377 7309,22180 7292,22155 8450,21352 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 8458,21363 L 8475,21388 7317,22192 7300,22167 8458,21363 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 8466,21375 L 8483,21400 7325,22203 7308,22178 8466,21375 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 8473,21386 L 8491,21411 7333,22215 7316,22190 8473,21386 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 8481,21398 L 8499,21423 7341,22226 7324,22201 8481,21398 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 8489,21409 L 8507,21434 7349,22238 7332,22213 8489,21409 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 8497,21421 L 8515,21446 7357,22249 7340,22224 8497,21421 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 8505,21432 L 8523,21457 7365,22261 7348,22236 8505,21432 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 8513,21444 L 8531,21469 7373,22273 7356,22247 8513,21444 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 8521,21455 L 8539,21481 7381,22284 7364,22259 8521,21455 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 8529,21467 L 8547,21492 7389,22296 7372,22270 8529,21467 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 8537,21478 L 8555,21504 7397,22307 7380,22282 8537,21478 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 8545,21490 L 8563,21515 7405,22319 7388,22293 8545,21490 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 8553,21501 L 8571,21527 7413,22330 7396,22305 8553,21501 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 8561,21513 L 8579,21538 7421,22342 7404,22316 8561,21513 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 8569,21524 L 8587,21550 7429,22353 7412,22328 8569,21524 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 8577,21536 L 8595,21561 7437,22365 7420,22339 8577,21536 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 8585,21547 L 8603,21573 7445,22376 7428,22351 8585,21547 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 8593,21559 L 8611,21584 7453,22388 7436,22362 8593,21559 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 8601,21570 L 8619,21596 7461,22399 7444,22374 8601,21570 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 8609,21582 L 8627,21607 7469,22411 7452,22386 8609,21582 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 8617,21594 L 8635,21619 7477,22422 7460,22397 8617,21594 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 8625,21605 L 8643,21630 7485,22434 7468,22409 8625,21605 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 8633,21617 L 8651,21642 7493,22445 7476,22420 8633,21617 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 8641,21628 L 8659,21653 7501,22457 7484,22432 8641,21628 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 8649,21640 L 8667,21665 7509,22468 7492,22443 8649,21640 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 8657,21651 L 8675,21676 7517,22480 7500,22455 8657,21651 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 8665,21663 L 8683,21688 7525,22491 7508,22466 8665,21663 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 8673,21674 L 8691,21699 7533,22503 7516,22478 8673,21674 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 8681,21686 L 8699,21711 7541,22514 7524,22489 8681,21686 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 8689,21697 L 8707,21723 7549,22526 7532,22501 8689,21697 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 8697,21709 L 8715,21734 7557,22538 7540,22512 8697,21709 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 8705,21720 L 8723,21746 7565,22549 7548,22524 8705,21720 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 8713,21732 L 8731,21757 7573,22561 7556,22535 8713,21732 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 8721,21743 L 8739,21769 7581,22572 7564,22547 8721,21743 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 8729,21755 L 8747,21780 7589,22584 7572,22558 8729,21755 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 8737,21766 L 8755,21792 7597,22595 7580,22570 8737,21766 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 8745,21778 L 8763,21803 7605,22607 7588,22581 8745,21778 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 8753,21789 L 8771,21815 7613,22618 7596,22593 8753,21789 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 8761,21801 L 8779,21826 7621,22630 7604,22604 8761,21801 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 8769,21812 L 8787,21838 7629,22641 7612,22616 8769,21812 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 8777,21824 L 8795,21849 7637,22653 7620,22628 8777,21824 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 8785,21836 L 8803,21861 7645,22664 7628,22639 8785,21836 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 8793,21847 L 8811,21872 7653,22676 7636,22651 8793,21847 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 8801,21859 L 8819,21884 7661,22687 7644,22662 8801,21859 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 8809,21870 L 8827,21895 7669,22699 7652,22674 8809,21870 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 8817,21882 L 8835,21907 7677,22710 7660,22685 8817,21882 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 8825,21893 L 8843,21918 7685,22722 7668,22697 8825,21893 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 8833,21905 L 8851,21930 7693,22733 7676,22708 8833,21905 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 8841,21916 L 8859,21941 7701,22745 7684,22720 8841,21916 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 8849,21928 L 8867,21953 7709,22756 7692,22731 8849,21928 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 8857,21939 L 8875,21965 7717,22768 7700,22743 8857,21939 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 8865,21951 L 8883,21976 7725,22780 7708,22754 8865,21951 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 8873,21962 L 8891,21988 7733,22791 7716,22766 8873,21962 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 8881,21974 L 8899,21999 7741,22803 7724,22777 8881,21974 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 8889,21985 L 8907,22011 7749,22814 7732,22789 8889,21985 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 8897,21997 L 8915,22022 7757,22826 7740,22800 8897,21997 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 8905,22008 L 8923,22034 7765,22837 7748,22812 8905,22008 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 8913,22020 L 8931,22045 7773,22849 7756,22823 8913,22020 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 8921,22031 L 8939,22057 7781,22860 7764,22835 8921,22031 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 8929,22043 L 8947,22068 7789,22872 7772,22846 8929,22043 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 8937,22054 L 8955,22080 7797,22883 7780,22858 8937,22054 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 8945,22066 L 8963,22091 7805,22895 7788,22869 8945,22066 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 8953,22078 L 8971,22103 7813,22906 7796,22881 8953,22078 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 8961,22089 L 8979,22114 7821,22918 7804,22893 8961,22089 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 8969,22101 L 8987,22126 7829,22929 7812,22904 8969,22101 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 8977,22112 L 8995,22137 7837,22941 7820,22916 8977,22112 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 8985,22124 L 9003,22149 7845,22952 7828,22927 8985,22124 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 8993,22135 L 9011,22160 7853,22964 7836,22939 8993,22135 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 9001,22147 L 9019,22172 7861,22975 7844,22950 9001,22147 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 9009,22158 L 9027,22183 7869,22987 7852,22962 9009,22158 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 9017,22170 L 9035,22195 7877,22998 7860,22973 9017,22170 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 9025,22181 L 9043,22207 7885,23010 7868,22985 9025,22181 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 9033,22193 L 9051,22218 7893,23022 7876,22996 9033,22193 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 9041,22204 L 9059,22230 7901,23033 7884,23008 9041,22204 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 9049,22216 L 9067,22241 7909,23045 7892,23019 9049,22216 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 9057,22227 L 9075,22253 7917,23056 7900,23031 9057,22227 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 9065,22239 L 9083,22264 7925,23068 7908,23042 9065,22239 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 9073,22250 L 9091,22276 7933,23079 7916,23054 9073,22250 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 9081,22262 L 9099,22287 7941,23091 7924,23065 9081,22262 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 9089,22273 L 9107,22299 7949,23102 7932,23077 9089,22273 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 9097,22285 L 9115,22310 7957,23114 7940,23088 9097,22285 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 9105,22296 L 9123,22322 7965,23125 7948,23100 9105,22296 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 9113,22308 L 9131,22333 7973,23137 7956,23111 9113,22308 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 9121,22320 L 9139,22345 7981,23148 7964,23123 9121,22320 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 9129,22331 L 9147,22356 7989,23160 7972,23135 9129,22331 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 9137,22343 L 9155,22368 7997,23171 7980,23146 9137,22343 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 9145,22354 L 9163,22379 8005,23183 7988,23158 9145,22354 Z"/>
+     </g>
+     <path fill="rgb(247,247,247)" stroke="none" d="M 7913,20730 L 7235,20730 C 7209,20730 7188,20751 7188,20776 L 7188,22005 C 7188,22031 7209,22051 7235,22051 L 8251,22051 C 8276,22051 8297,22031 8297,22005 L 8297,21118 7913,20730 Z M 7235,22035 C 7218,22035 7204,22022 7204,22005 L 7204,20776 C 7204,20759 7218,20746 7235,20746 L 7906,20746 8281,21124 8281,22005 C 8281,22022 8268,22035 8251,22035 L 7235,22035 Z"/>
+     <defs>
+      <clipPath id="clip_path_15" clipPathUnits="userSpaceOnUse">
+       <path d="M 7933,20739 L 7937,21063 C 7937,21071 7941,21080 7947,21086 7953,21092 7962,21095 7970,21095 7970,21095 8254,21092 8290,21091 8249,21050 7962,20762 7934,20734 7933,20735 7933,20737 7933,20738 L 7933,20739 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_15)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7764,20925 L 7778,20910 8154,21244 8140,21260 7764,20925 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 7775,20912 L 7779,20908 8156,21242 8152,21247 7775,20912 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 7777,20910 L 7781,20906 8158,21240 8154,21245 7777,20910 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 7779,20908 L 7783,20904 8160,21238 8155,21243 7779,20908 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 7781,20906 L 7785,20902 8161,21236 8157,21241 7781,20906 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 7782,20904 L 7786,20900 8163,21234 8159,21239 7782,20904 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 7784,20902 L 7788,20898 8165,21232 8161,21237 7784,20902 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 7786,20900 L 7790,20896 8167,21230 8162,21235 7786,20900 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 7788,20898 L 7792,20894 8168,21228 8164,21233 7788,20898 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 7789,20896 L 7793,20892 8170,21226 8166,21231 7789,20896 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 7791,20894 L 7795,20890 8172,21224 8168,21229 7791,20894 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 7793,20892 L 7797,20888 8174,21223 8170,21227 7793,20892 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 7795,20890 L 7799,20886 8175,21221 8171,21225 7795,20890 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 7796,20888 L 7800,20884 8177,21219 8173,21223 7796,20888 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 7798,20886 L 7802,20882 8179,21217 8175,21221 7798,20886 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 7800,20884 L 7804,20880 8181,21215 8177,21219 7800,20884 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 7802,20882 L 7806,20878 8182,21213 8178,21217 7802,20882 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 7803,20880 L 7808,20876 8184,21211 8180,21215 7803,20880 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 7805,20878 L 7809,20874 8186,21209 8182,21213 7805,20878 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 7807,20876 L 7811,20872 8188,21207 8184,21211 7807,20876 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 7809,20875 L 7813,20870 8189,21205 8185,21209 7809,20875 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 7810,20873 L 7815,20868 8191,21203 8187,21207 7810,20873 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 7812,20871 L 7816,20866 8193,21201 8189,21205 7812,20871 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 7814,20869 L 7818,20864 8195,21199 8191,21203 7814,20869 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 7816,20867 L 7820,20862 8196,21197 8192,21201 7816,20867 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 7817,20865 L 7822,20860 8198,21195 8194,21199 7817,20865 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 7819,20863 L 7823,20858 8200,21193 8196,21197 7819,20863 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 7821,20861 L 7825,20856 8202,21191 8198,21195 7821,20861 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 7823,20859 L 7827,20854 8204,21189 8199,21193 7823,20859 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 7825,20857 L 7829,20852 8205,21187 8201,21191 7825,20857 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 7826,20855 L 7830,20850 8207,21185 8203,21190 7826,20855 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 7828,20853 L 7832,20848 8209,21183 8205,21188 7828,20853 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 7830,20851 L 7834,20846 8211,21181 8206,21186 7830,20851 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 7832,20849 L 7836,20844 8212,21179 8208,21184 7832,20849 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 7833,20847 L 7837,20842 8214,21177 8210,21182 7833,20847 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 7835,20845 L 7839,20840 8216,21175 8212,21180 7835,20845 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 7837,20843 L 7841,20838 8218,21173 8214,21178 7837,20843 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 7839,20841 L 7843,20836 8219,21171 8215,21176 7839,20841 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 7840,20839 L 7844,20834 8221,21169 8217,21174 7840,20839 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 7842,20837 L 7846,20832 8223,21167 8219,21172 7842,20837 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 7844,20835 L 7848,20830 8225,21165 8221,21170 7844,20835 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 7846,20833 L 7850,20828 8226,21163 8222,21168 7846,20833 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 7847,20831 L 7852,20826 8228,21161 8224,21166 7847,20831 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 7849,20829 L 7853,20824 8230,21159 8226,21164 7849,20829 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 7851,20827 L 7855,20822 8232,21157 8228,21162 7851,20827 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 7853,20825 L 7857,20820 8233,21155 8229,21160 7853,20825 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 7854,20823 L 7859,20818 8235,21153 8231,21158 7854,20823 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 7856,20821 L 7860,20816 8237,21151 8233,21156 7856,20821 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 7858,20819 L 7862,20814 8239,21149 8235,21154 7858,20819 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 7860,20817 L 7864,20812 8240,21147 8236,21152 7860,20817 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 7861,20815 L 7866,20811 8242,21145 8238,21150 7861,20815 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 7863,20813 L 7867,20809 8244,21143 8240,21148 7863,20813 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 7865,20811 L 7869,20807 8246,21141 8242,21146 7865,20811 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 7867,20809 L 7871,20805 8248,21139 8243,21144 7867,20809 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 7869,20807 L 7873,20803 8249,21137 8245,21142 7869,20807 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 7870,20805 L 7874,20801 8251,21135 8247,21140 7870,20805 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 7872,20803 L 7876,20799 8253,21133 8249,21138 7872,20803 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 7874,20801 L 7878,20797 8255,21131 8250,21136 7874,20801 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 7876,20799 L 7880,20795 8256,21129 8252,21134 7876,20799 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 7877,20797 L 7881,20793 8258,21127 8254,21132 7877,20797 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 7879,20795 L 7883,20791 8260,21126 8256,21130 7879,20795 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 7881,20793 L 7885,20789 8262,21124 8258,21128 7881,20793 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 7883,20791 L 7887,20787 8263,21122 8259,21126 7883,20791 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 7884,20789 L 7888,20785 8265,21120 8261,21124 7884,20789 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 7886,20787 L 7890,20783 8267,21118 8263,21122 7886,20787 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 7888,20785 L 7892,20781 8269,21116 8265,21120 7888,20785 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 7890,20783 L 7894,20779 8270,21114 8266,21118 7890,20783 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 7891,20781 L 7896,20777 8272,21112 8268,21116 7891,20781 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 7893,20779 L 7897,20775 8274,21110 8270,21114 7893,20779 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 7895,20778 L 7899,20773 8276,21108 8272,21112 7895,20778 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 7897,20776 L 7901,20771 8277,21106 8273,21110 7897,20776 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 7898,20774 L 7903,20769 8279,21104 8275,21108 7898,20774 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 7900,20772 L 7904,20767 8281,21102 8277,21106 7900,20772 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 7902,20770 L 7906,20765 8283,21100 8279,21104 7902,20770 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 7904,20768 L 7908,20763 8284,21098 8280,21102 7904,20768 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 7905,20766 L 7910,20761 8286,21096 8282,21100 7905,20766 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 7907,20764 L 7911,20759 8288,21094 8284,21098 7907,20764 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 7909,20762 L 7913,20757 8290,21092 8286,21096 7909,20762 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 7911,20760 L 7915,20755 8292,21090 8287,21094 7911,20760 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 7913,20758 L 7917,20753 8293,21088 8289,21092 7913,20758 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 7914,20756 L 7918,20751 8295,21086 8291,21091 7914,20756 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 7916,20754 L 7920,20749 8297,21084 8293,21089 7916,20754 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 7918,20752 L 7922,20747 8299,21082 8294,21087 7918,20752 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 7920,20750 L 7924,20745 8300,21080 8296,21085 7920,20750 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 7921,20748 L 7925,20743 8302,21078 8298,21083 7921,20748 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 7923,20746 L 7927,20741 8304,21076 8300,21081 7923,20746 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 7925,20744 L 7929,20739 8306,21074 8302,21079 7925,20744 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 7927,20742 L 7931,20737 8307,21072 8303,21077 7927,20742 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 7928,20740 L 7932,20735 8309,21070 8305,21075 7928,20740 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 7930,20738 L 7934,20733 8311,21068 8307,21073 7930,20738 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 7932,20736 L 7936,20731 8313,21066 8309,21071 7932,20736 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 7934,20734 L 7938,20729 8314,21064 8310,21069 7934,20734 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 7935,20732 L 7939,20727 8316,21062 8312,21067 7935,20732 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 7937,20730 L 7941,20725 8318,21060 8314,21065 7937,20730 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 7939,20728 L 7943,20723 8320,21058 8316,21063 7939,20728 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 7941,20726 L 7945,20721 8321,21056 8317,21061 7941,20726 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 7942,20724 L 7947,20719 8323,21054 8319,21059 7942,20724 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 7944,20722 L 7948,20717 8325,21052 8321,21057 7944,20722 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 7946,20720 L 7950,20715 8327,21050 8323,21055 7946,20720 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 7948,20718 L 7952,20714 8328,21048 8324,21053 7948,20718 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 7949,20716 L 7954,20712 8330,21046 8326,21051 7949,20716 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 7951,20714 L 7955,20710 8332,21044 8328,21049 7951,20714 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 7953,20712 L 7957,20708 8334,21042 8330,21047 7953,20712 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 7955,20710 L 7959,20706 8336,21040 8331,21045 7955,20710 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 7957,20708 L 7961,20704 8337,21038 8333,21043 7957,20708 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 7958,20706 L 7962,20702 8339,21036 8335,21041 7958,20706 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 7960,20704 L 7964,20700 8341,21034 8337,21039 7960,20704 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 7962,20702 L 7966,20698 8343,21032 8338,21037 7962,20702 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 7964,20700 L 7968,20696 8344,21030 8340,21035 7964,20700 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 7965,20698 L 7969,20694 8346,21028 8342,21033 7965,20698 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 7967,20696 L 7971,20692 8348,21027 8344,21031 7967,20696 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 7969,20694 L 7973,20690 8350,21025 8345,21029 7969,20694 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 7971,20692 L 7975,20688 8351,21023 8347,21027 7971,20692 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 7972,20690 L 7976,20686 8353,21021 8349,21025 7972,20690 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 7974,20688 L 7978,20684 8355,21019 8351,21023 7974,20688 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 7976,20686 L 7980,20682 8357,21017 8353,21021 7976,20686 Z"/>
+     </g>
+     <path fill="rgb(140,140,140)" stroke="none" d="M 7929,20706 C 7921,20715 7917,20726 7917,20739 L 7917,20740 7921,21063 C 7921,21090 7943,21111 7970,21111 7970,21111 7970,21111 7971,21111 L 8284,21107 8308,21107 8311,21107 C 8316,21107 8321,21106 8326,21104 L 7929,20706 Z M 7970,21079 C 7961,21079 7953,21072 7953,21062 L 7949,20773 8252,21076 7970,21079 7970,21079 Z"/>
+    </g>
+   </g>
+   <g class="com.sun.star.drawing.TextShape">
+    <g id="id15">
+     <rect class="BoundingBox" stroke="none" fill="none" x="7026" y="20641" width="1501" height="1524"/>
+     <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7276" y="21024"><tspan fill="rgb(190,190,190)" stroke="none">1010 </tspan></tspan><tspan class="TextPosition" x="7276" y="21342"><tspan fill="rgb(190,190,190)" stroke="none">010101</tspan></tspan><tspan class="TextPosition" x="7276" y="21660"><tspan fill="rgb(190,190,190)" stroke="none">101010</tspan></tspan><tspan class="TextPosition" x="7276" y="21978"><tspan fill="rgb(190,190,190)" stroke="none">010101</tspan></tspan></tspan></text>
+    </g>
+   </g>
+   <g class="Graphic">
+    <g id="id16">
+     <rect class="BoundingBox" stroke="none" fill="none" x="7379" y="21098" width="742" height="631"/>
+     <path fill="rgb(58,90,130)" stroke="none" d="M 7825,21462 C 7885,21473 7941,21495 7991,21527 L 7749,21110 7508,21527 C 7558,21495 7614,21473 7674,21462 L 7749,21331 7825,21462 Z"/>
+     <path fill="rgb(58,90,130)" stroke="none" d="M 7854,21511 C 7820,21502 7786,21498 7750,21498 7714,21498 7679,21502 7645,21511 7607,21521 7571,21537 7538,21557 7476,21596 7425,21651 7391,21716 L 7523,21716 C 7576,21651 7658,21608 7750,21608 7841,21608 7923,21651 7976,21716 L 8108,21716 C 8074,21651 8023,21596 7961,21557 7928,21537 7892,21521 7854,21511 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id17">
+    <rect class="BoundingBox" stroke="none" fill="none" x="3700" y="21325" width="1051" height="351"/>
+    <path fill="none" stroke="rgb(58,90,128)" stroke-width="100" stroke-linejoin="round" d="M 4248,21500 L 3750,21500"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 4750,21500 L 4225,21325 4225,21675 4750,21500 Z"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id18">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11750" y="21325" width="2301" height="351"/>
+    <path fill="none" stroke="rgb(58,90,128)" stroke-width="100" stroke-linejoin="round" d="M 13548,21500 L 11800,21500"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 14050,21500 L 13525,21325 13525,21675 14050,21500 Z"/>
+   </g>
+  </g>
+  <g class="Group">
+   <g class="Graphic">
+    <g id="id19">
+     <rect class="BoundingBox" stroke="none" fill="none" x="11800" y="20500" width="1751" height="1751"/>
+     <defs>
+      <clipPath id="clip_path_16" clipPathUnits="userSpaceOnUse">
+       <path d="M 12863,20730 L 12185,20730 C 12159,20730 12138,20751 12138,20776 L 12138,22005 C 12138,22031 12159,22051 12185,22051 L 13201,22051 C 13226,22051 13247,22031 13247,22005 L 13247,21118 12863,20730 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_16)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12711,20344 L 12853,20549 11682,21362 11540,21157 12711,20344 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12843,20535 L 12860,20559 11689,21372 11672,21348 12843,20535 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 12850,20546 L 12867,20570 11696,21382 11679,21358 12850,20546 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 12858,20556 L 12874,20580 11703,21393 11686,21369 12858,20556 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 12865,20566 L 12881,20590 11710,21403 11693,21379 12865,20566 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 12872,20576 L 12889,20600 11717,21413 11701,21389 12872,20576 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 12879,20587 L 12896,20611 11724,21424 11708,21400 12879,20587 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 12886,20597 L 12903,20621 11731,21434 11715,21410 12886,20597 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 12893,20607 L 12910,20631 11739,21444 11722,21420 12893,20607 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 12900,20617 L 12917,20641 11746,21454 11729,21430 12900,20617 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 12908,20628 L 12924,20652 11753,21465 11736,21441 12908,20628 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 12915,20638 L 12931,20662 11760,21475 11743,21451 12915,20638 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 12922,20648 L 12938,20672 11767,21485 11750,21461 12922,20648 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 12929,20659 L 12946,20683 11774,21495 11758,21471 12929,20659 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 12936,20669 L 12953,20693 11781,21506 11765,21482 12936,20669 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 12943,20679 L 12960,20703 11789,21516 11772,21492 12943,20679 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 12950,20689 L 12967,20713 11796,21526 11779,21502 12950,20689 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 12957,20700 L 12974,20724 11803,21537 11786,21513 12957,20700 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 12965,20710 L 12981,20734 11810,21547 11793,21523 12965,20710 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 12972,20720 L 12988,20744 11817,21557 11800,21533 12972,20720 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 12979,20730 L 12995,20754 11824,21567 11807,21543 12979,20730 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 12986,20741 L 13003,20765 11831,21578 11815,21554 12986,20741 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 12993,20751 L 13010,20775 11838,21588 11822,21564 12993,20751 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 13000,20761 L 13017,20785 11846,21598 11829,21574 13000,20761 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 13007,20771 L 13024,20795 11853,21608 11836,21584 13007,20771 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 13014,20782 L 13031,20806 11860,21619 11843,21595 13014,20782 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 13022,20792 L 13038,20816 11867,21629 11850,21605 13022,20792 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 13029,20802 L 13045,20826 11874,21639 11857,21615 13029,20802 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 13036,20813 L 13052,20837 11881,21649 11865,21625 13036,20813 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 13043,20823 L 13060,20847 11888,21660 11872,21636 13043,20823 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 13050,20833 L 13067,20857 11895,21670 11879,21646 13050,20833 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 13057,20843 L 13074,20867 11903,21680 11886,21656 13057,20843 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 13064,20854 L 13081,20878 11910,21691 11893,21667 13064,20854 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 13071,20864 L 13088,20888 11917,21701 11900,21677 13071,20864 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 13079,20874 L 13095,20898 11924,21711 11907,21687 13079,20874 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 13086,20884 L 13102,20908 11931,21721 11914,21697 13086,20884 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 13093,20895 L 13109,20919 11938,21732 11922,21708 13093,20895 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 13100,20905 L 13117,20929 11945,21742 11929,21718 13100,20905 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 13107,20915 L 13124,20939 11952,21752 11936,21728 13107,20915 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 13114,20926 L 13131,20950 11960,21762 11943,21738 13114,20926 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 13121,20936 L 13138,20960 11967,21773 11950,21749 13121,20936 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 13128,20946 L 13145,20970 11974,21783 11957,21759 13128,20946 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 13136,20956 L 13152,20980 11981,21793 11964,21769 13136,20956 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 13143,20967 L 13159,20991 11988,21804 11971,21780 13143,20967 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 13150,20977 L 13166,21001 11995,21814 11979,21790 13150,20977 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 13157,20987 L 13174,21011 12002,21824 11986,21800 13157,20987 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 13164,20997 L 13181,21021 12009,21834 11993,21810 13164,20997 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 13171,21008 L 13188,21032 12017,21845 12000,21821 13171,21008 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 13178,21018 L 13195,21042 12024,21855 12007,21831 13178,21018 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 13185,21028 L 13202,21052 12031,21865 12014,21841 13185,21028 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 13193,21038 L 13209,21062 12038,21875 12021,21851 13193,21038 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 13200,21049 L 13216,21073 12045,21886 12028,21862 13200,21049 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 13207,21059 L 13224,21083 12052,21896 12036,21872 13207,21059 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 13214,21069 L 13231,21093 12059,21906 12043,21882 13214,21069 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 13221,21080 L 13238,21104 12066,21917 12050,21893 13221,21080 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 13228,21090 L 13245,21114 12074,21927 12057,21903 13228,21090 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 13235,21100 L 13252,21124 12081,21937 12064,21913 13235,21100 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 13243,21110 L 13259,21134 12088,21947 12071,21923 13243,21110 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 13250,21121 L 13266,21145 12095,21958 12078,21934 13250,21121 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 13257,21131 L 13273,21155 12102,21968 12085,21944 13257,21131 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 13264,21141 L 13281,21165 12109,21978 12093,21954 13264,21141 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 13271,21151 L 13288,21175 12116,21988 12100,21964 13271,21151 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 13278,21162 L 13295,21186 12124,21999 12107,21975 13278,21162 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 13285,21172 L 13302,21196 12131,22009 12114,21985 13285,21172 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 13292,21182 L 13309,21206 12138,22019 12121,21995 13292,21182 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 13300,21193 L 13316,21217 12145,22029 12128,22005 13300,21193 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 13307,21203 L 13323,21227 12152,22040 12135,22016 13307,21203 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 13314,21213 L 13330,21237 12159,22050 12142,22026 13314,21213 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 13321,21223 L 13338,21247 12166,22060 12150,22036 13321,21223 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 13328,21234 L 13345,21258 12173,22071 12157,22047 13328,21234 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 13335,21244 L 13352,21268 12181,22081 12164,22057 13335,21244 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 13342,21254 L 13359,21278 12188,22091 12171,22067 13342,21254 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 13349,21264 L 13366,21288 12195,22101 12178,22077 13349,21264 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 13357,21275 L 13373,21299 12202,22112 12185,22088 13357,21275 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 13364,21285 L 13380,21309 12209,22122 12192,22098 13364,21285 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 13371,21295 L 13387,21319 12216,22132 12200,22108 13371,21295 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 13378,21306 L 13395,21330 12223,22142 12207,22118 13378,21306 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 13385,21316 L 13402,21340 12230,22153 12214,22129 13385,21316 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 13392,21326 L 13409,21350 12238,22163 12221,22139 13392,21326 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 13399,21336 L 13416,21360 12245,22173 12228,22149 13399,21336 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 13406,21347 L 13423,21371 12252,22184 12235,22160 13406,21347 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 13414,21357 L 13430,21381 12259,22194 12242,22170 13414,21357 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 13421,21367 L 13437,21391 12266,22204 12249,22180 13421,21367 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 13428,21377 L 13444,21401 12273,22214 12257,22190 13428,21377 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 13435,21388 L 13452,21412 12280,22225 12264,22201 13435,21388 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 13442,21398 L 13459,21422 12287,22235 12271,22211 13442,21398 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 13449,21408 L 13466,21432 12295,22245 12278,22221 13449,21408 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 13456,21418 L 13473,21442 12302,22255 12285,22231 13456,21418 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 13463,21429 L 13480,21453 12309,22266 12292,22242 13463,21429 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 13471,21439 L 13487,21463 12316,22276 12299,22252 13471,21439 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 13478,21449 L 13494,21473 12323,22286 12306,22262 13478,21449 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 13485,21460 L 13502,21484 12330,22296 12314,22272 13485,21460 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 13492,21470 L 13509,21494 12337,22307 12321,22283 13492,21470 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 13499,21480 L 13516,21504 12344,22317 12328,22293 13499,21480 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 13506,21490 L 13523,21514 12352,22327 12335,22303 13506,21490 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 13513,21501 L 13530,21525 12359,22338 12342,22314 13513,21501 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 13520,21511 L 13537,21535 12366,22348 12349,22324 13520,21511 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 13528,21521 L 13544,21545 12373,22358 12356,22334 13528,21521 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 13535,21531 L 13551,21555 12380,22368 12363,22344 13535,21531 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 13542,21542 L 13559,21566 12387,22379 12371,22355 13542,21542 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 13549,21552 L 13566,21576 12394,22389 12378,22365 13549,21552 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 13556,21562 L 13573,21586 12401,22399 12385,22375 13556,21562 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 13563,21573 L 13580,21597 12409,22409 12392,22385 13563,21573 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 13570,21583 L 13587,21607 12416,22420 12399,22396 13570,21583 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 13578,21593 L 13594,21617 12423,22430 12406,22406 13578,21593 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 13585,21603 L 13601,21627 12430,22440 12413,22416 13585,21603 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 13592,21614 L 13608,21638 12437,22451 12420,22427 13592,21614 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 13599,21624 L 13616,21648 12444,22461 12428,22437 13599,21624 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 13606,21634 L 13623,21658 12451,22471 12435,22447 13606,21634 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 13613,21644 L 13630,21668 12459,22481 12442,22457 13613,21644 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 13620,21655 L 13637,21679 12466,22492 12449,22468 13620,21655 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 13627,21665 L 13644,21689 12473,22502 12456,22478 13627,21665 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 13635,21675 L 13651,21699 12480,22512 12463,22488 13635,21675 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 13642,21685 L 13658,21709 12487,22522 12470,22498 13642,21685 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 13649,21696 L 13665,21720 12494,22533 12477,22509 13649,21696 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 13656,21706 L 13673,21730 12501,22543 12485,22519 13656,21706 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 13663,21716 L 13680,21740 12508,22553 12492,22529 13663,21716 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 13670,21727 L 13687,21751 12516,22563 12499,22540 13670,21727 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 13677,21737 L 13694,21761 12523,22574 12506,22550 13677,21737 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 13684,21747 L 13701,21771 12530,22584 12513,22560 13684,21747 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 13692,21757 L 13708,21781 12537,22594 12520,22570 13692,21757 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 13699,21768 L 13715,21792 12544,22605 12527,22581 13699,21768 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 13706,21778 L 13722,21802 12551,22615 12535,22591 13706,21778 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 13713,21788 L 13730,21812 12558,22625 12542,22601 13713,21788 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 13720,21798 L 13737,21822 12565,22635 12549,22611 13720,21798 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 13727,21809 L 13744,21833 12573,22646 12556,22622 13727,21809 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 13734,21819 L 13751,21843 12580,22656 12563,22632 13734,21819 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 13741,21829 L 13758,21853 12587,22666 12570,22642 13741,21829 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 13749,21840 L 13765,21864 12594,22676 12577,22652 13749,21840 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 13756,21850 L 13772,21874 12601,22687 12584,22663 13756,21850 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 13763,21860 L 13779,21884 12608,22697 12592,22673 13763,21860 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 13770,21870 L 13787,21894 12615,22707 12599,22683 13770,21870 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 13777,21881 L 13794,21905 12622,22718 12606,22694 13777,21881 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 13784,21891 L 13801,21915 12630,22728 12613,22704 13784,21891 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 13791,21901 L 13808,21925 12637,22738 12620,22714 13791,21901 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 13798,21911 L 13815,21935 12644,22748 12627,22724 13798,21911 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 13806,21922 L 13822,21946 12651,22759 12634,22735 13806,21922 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 13813,21932 L 13829,21956 12658,22769 12641,22745 13813,21932 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 13820,21942 L 13837,21966 12665,22779 12649,22755 13820,21942 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 13827,21953 L 13844,21976 12672,22789 12656,22765 13827,21953 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 13834,21963 L 13851,21987 12679,22800 12663,22776 13834,21963 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 13841,21973 L 13858,21997 12687,22810 12670,22786 13841,21973 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 13848,21983 L 13865,22007 12694,22820 12677,22796 13848,21983 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 13855,21994 L 13872,22018 12701,22831 12684,22807 13855,21994 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 13863,22004 L 13879,22028 12708,22841 12691,22817 13863,22004 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 13870,22014 L 13886,22038 12715,22851 12698,22827 13870,22014 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 13877,22024 L 13894,22048 12722,22861 12706,22837 13877,22024 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 13884,22035 L 13901,22059 12729,22872 12713,22848 13884,22035 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 13891,22045 L 13908,22069 12736,22882 12720,22858 13891,22045 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 13898,22055 L 13915,22079 12744,22892 12727,22868 13898,22055 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 13905,22065 L 13922,22089 12751,22902 12734,22878 13905,22065 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 13913,22076 L 13929,22100 12758,22913 12741,22889 13913,22076 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 13920,22086 L 13936,22110 12765,22923 12748,22899 13920,22086 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 13927,22096 L 13943,22120 12772,22933 12755,22909 13927,22096 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 13934,22107 L 13951,22131 12779,22943 12763,22919 13934,22107 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 13941,22117 L 13958,22141 12786,22954 12770,22930 13941,22117 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 13948,22127 L 13965,22151 12794,22964 12777,22940 13948,22127 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 13955,22137 L 13972,22161 12801,22974 12784,22950 13955,22137 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 13962,22148 L 13979,22172 12808,22985 12791,22961 13962,22148 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 13970,22158 L 13986,22182 12815,22995 12798,22971 13970,22158 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 13977,22168 L 13993,22192 12822,23005 12805,22981 13977,22168 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 13984,22178 L 14000,22202 12829,23015 12812,22991 13984,22178 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 13991,22189 L 14008,22213 12836,23026 12820,23002 13991,22189 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 13998,22199 L 14015,22223 12843,23036 12827,23012 13998,22199 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 14005,22209 L 14022,22233 12851,23046 12834,23022 14005,22209 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 14012,22220 L 14029,22244 12858,23056 12841,23032 14012,22220 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 14019,22230 L 14036,22254 12865,23067 12848,23043 14019,22230 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 14027,22240 L 14043,22264 12872,23077 12855,23053 14027,22240 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 14034,22250 L 14050,22274 12879,23087 12862,23063 14034,22250 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 14041,22261 L 14057,22285 12886,23098 12870,23074 14041,22261 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 14048,22271 L 14065,22295 12893,23108 12877,23084 14048,22271 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 14055,22281 L 14072,22305 12900,23118 12884,23094 14055,22281 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 14062,22291 L 14079,22315 12908,23128 12891,23104 14062,22291 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 14069,22302 L 14086,22326 12915,23139 12898,23115 14069,22302 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 14076,22312 L 14093,22336 12922,23149 12905,23125 14076,22312 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 14084,22322 L 14100,22346 12929,23159 12912,23135 14084,22322 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 14091,22332 L 14107,22356 12936,23169 12919,23145 14091,22332 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 14098,22343 L 14114,22367 12943,23180 12927,23156 14098,22343 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 14105,22353 L 14122,22377 12950,23190 12934,23166 14105,22353 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 14112,22363 L 14129,22387 12957,23200 12941,23176 14112,22363 Z"/>
+     </g>
+     <path fill="none" stroke="rgb(140,140,140)" stroke-width="32" stroke-linejoin="miter" d="M 12863,20730 L 12185,20730 C 12159,20730 12138,20751 12138,20776 L 12138,22005 C 12138,22031 12159,22051 12185,22051 L 13201,22051 C 13226,22051 13247,22031 13247,22005 L 13247,21118 12863,20730 Z"/>
+     <defs>
+      <clipPath id="clip_path_17" clipPathUnits="userSpaceOnUse">
+       <path d="M 12185,20714 C 12150,20714 12122,20742 12122,20776 L 12122,22005 C 12122,22040 12150,22067 12185,22067 L 13201,22067 C 13235,22067 13264,22040 13264,22005 L 13264,21111 12869,20714 12185,20714 12185,20714 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_17)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12716,20322 L 12860,20530 11662,21362 11517,21153 12716,20322 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12851,20516 L 12867,20540 11669,21372 11652,21348 12851,20516 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 12858,20526 L 12874,20550 11676,21382 11659,21358 12858,20526 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 12865,20536 L 12882,20560 11683,21392 11666,21368 12865,20536 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 12872,20547 L 12889,20571 11690,21402 11673,21379 12872,20547 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 12879,20557 L 12896,20581 11697,21413 11681,21389 12879,20557 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 12886,20567 L 12903,20591 11704,21423 11688,21399 12886,20567 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 12893,20577 L 12910,20601 11711,21433 11695,21409 12893,20577 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 12900,20588 L 12917,20612 11718,21443 11702,21420 12900,20588 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 12908,20598 L 12924,20622 11726,21454 11709,21430 12908,20598 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 12915,20608 L 12931,20632 11733,21464 11716,21440 12915,20608 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 12922,20618 L 12938,20642 11740,21474 11723,21450 12922,20618 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 12929,20629 L 12945,20653 11747,21484 11730,21460 12929,20629 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 12936,20639 L 12953,20663 11754,21495 11737,21471 12936,20639 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 12943,20649 L 12960,20673 11761,21505 11745,21481 12943,20649 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 12950,20659 L 12967,20683 11768,21515 11752,21491 12950,20659 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 12957,20670 L 12974,20693 11775,21525 11759,21501 12957,20670 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 12964,20680 L 12981,20704 11782,21536 11766,21512 12964,20680 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 12972,20690 L 12988,20714 11790,21546 11773,21522 12972,20690 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 12979,20700 L 12995,20724 11797,21556 11780,21532 12979,20700 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 12986,20711 L 13002,20734 11804,21566 11787,21542 12986,20711 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 12993,20721 L 13009,20745 11811,21577 11794,21553 12993,20721 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 13000,20731 L 13017,20755 11818,21587 11801,21563 13000,20731 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 13007,20741 L 13024,20765 11825,21597 11808,21573 13007,20741 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 13014,20751 L 13031,20775 11832,21607 11816,21583 13014,20751 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 13021,20762 L 13038,20786 11839,21617 11823,21594 13021,20762 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 13028,20772 L 13045,20796 11846,21628 11830,21604 13028,20772 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 13035,20782 L 13052,20806 11853,21638 11837,21614 13035,20782 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 13043,20792 L 13059,20816 11861,21648 11844,21624 13043,20792 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 13050,20803 L 13066,20827 11868,21658 11851,21635 13050,20803 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 13057,20813 L 13073,20837 11875,21669 11858,21645 13057,20813 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 13064,20823 L 13080,20847 11882,21679 11865,21655 13064,20823 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 13071,20833 L 13088,20857 11889,21689 11872,21665 13071,20833 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 13078,20844 L 13095,20868 11896,21699 11880,21675 13078,20844 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 13085,20854 L 13102,20878 11903,21710 11887,21686 13085,20854 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 13092,20864 L 13109,20888 11910,21720 11894,21696 13092,20864 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 13099,20874 L 13116,20898 11917,21730 11901,21706 13099,20874 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 13107,20885 L 13123,20908 11925,21740 11908,21716 13107,20885 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 13114,20895 L 13130,20919 11932,21751 11915,21727 13114,20895 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 13121,20905 L 13137,20929 11939,21761 11922,21737 13121,20905 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 13128,20915 L 13144,20939 11946,21771 11929,21747 13128,20915 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 13135,20926 L 13152,20949 11953,21781 11936,21757 13135,20926 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 13142,20936 L 13159,20960 11960,21792 11943,21768 13142,20936 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 13149,20946 L 13166,20970 11967,21802 11951,21778 13149,20946 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 13156,20956 L 13173,20980 11974,21812 11958,21788 13156,20956 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 13163,20966 L 13180,20990 11981,21822 11965,21798 13163,20966 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 13170,20977 L 13187,21001 11988,21832 11972,21809 13170,20977 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 13178,20987 L 13194,21011 11996,21843 11979,21819 13178,20987 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 13185,20997 L 13201,21021 12003,21853 11986,21829 13185,20997 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 13192,21007 L 13208,21031 12010,21863 11993,21839 13192,21007 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 13199,21018 L 13215,21042 12017,21873 12000,21850 13199,21018 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 13206,21028 L 13223,21052 12024,21884 12007,21860 13206,21028 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 13213,21038 L 13230,21062 12031,21894 12015,21870 13213,21038 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 13220,21048 L 13237,21072 12038,21904 12022,21880 13220,21048 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 13227,21059 L 13244,21083 12045,21914 12029,21890 13227,21059 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 13234,21069 L 13251,21093 12052,21925 12036,21901 13234,21069 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 13242,21079 L 13258,21103 12060,21935 12043,21911 13242,21079 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 13249,21089 L 13265,21113 12067,21945 12050,21921 13249,21089 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 13256,21100 L 13272,21123 12074,21955 12057,21931 13256,21100 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 13263,21110 L 13279,21134 12081,21966 12064,21942 13263,21110 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 13270,21120 L 13287,21144 12088,21976 12071,21952 13270,21120 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 13277,21130 L 13294,21154 12095,21986 12078,21962 13277,21130 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 13284,21141 L 13301,21164 12102,21996 12086,21972 13284,21141 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 13291,21151 L 13308,21175 12109,22007 12093,21983 13291,21151 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 13298,21161 L 13315,21185 12116,22017 12100,21993 13298,21161 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 13305,21171 L 13322,21195 12123,22027 12107,22003 13305,21171 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 13313,21181 L 13329,21205 12131,22037 12114,22013 13313,21181 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 13320,21192 L 13336,21216 12138,22047 12121,22024 13320,21192 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 13327,21202 L 13343,21226 12145,22058 12128,22034 13327,21202 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 13334,21212 L 13351,21236 12152,22068 12135,22044 13334,21212 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 13341,21222 L 13358,21246 12159,22078 12142,22054 13341,21222 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 13348,21233 L 13365,21257 12166,22088 12150,22065 13348,21233 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 13355,21243 L 13372,21267 12173,22099 12157,22075 13355,21243 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 13362,21253 L 13379,21277 12180,22109 12164,22085 13362,21253 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 13369,21263 L 13386,21287 12187,22119 12171,22095 13369,21263 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 13377,21274 L 13393,21298 12195,22129 12178,22105 13377,21274 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 13384,21284 L 13400,21308 12202,22140 12185,22116 13384,21284 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 13391,21294 L 13407,21318 12209,22150 12192,22126 13391,21294 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 13398,21304 L 13414,21328 12216,22160 12199,22136 13398,21304 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 13405,21315 L 13422,21338 12223,22170 12206,22146 13405,21315 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 13412,21325 L 13429,21349 12230,22181 12213,22157 13412,21325 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 13419,21335 L 13436,21359 12237,22191 12221,22167 13419,21335 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 13426,21345 L 13443,21369 12244,22201 12228,22177 13426,21345 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 13433,21356 L 13450,21379 12251,22211 12235,22187 13433,21356 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 13441,21366 L 13457,21390 12259,22222 12242,22198 13441,21366 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 13448,21376 L 13464,21400 12266,22232 12249,22208 13448,21376 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 13455,21386 L 13471,21410 12273,22242 12256,22218 13455,21386 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 13462,21396 L 13478,21420 12280,22252 12263,22228 13462,21396 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 13469,21407 L 13486,21431 12287,22263 12270,22239 13469,21407 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 13476,21417 L 13493,21441 12294,22273 12277,22249 13476,21417 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 13483,21427 L 13500,21451 12301,22283 12285,22259 13483,21427 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 13490,21437 L 13507,21461 12308,22293 12292,22269 13490,21437 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 13497,21448 L 13514,21472 12315,22303 12299,22280 13497,21448 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 13504,21458 L 13521,21482 12322,22314 12306,22290 13504,21458 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 13512,21468 L 13528,21492 12330,22324 12313,22300 13512,21468 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 13519,21478 L 13535,21502 12337,22334 12320,22310 13519,21478 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 13526,21489 L 13542,21513 12344,22344 12327,22321 13526,21489 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 13533,21499 L 13549,21523 12351,22355 12334,22331 13533,21499 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 13540,21509 L 13557,21533 12358,22365 12341,22341 13540,21509 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 13547,21519 L 13564,21543 12365,22375 12349,22351 13547,21519 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 13554,21530 L 13571,21553 12372,22385 12356,22361 13554,21530 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 13561,21540 L 13578,21564 12379,22396 12363,22372 13561,21540 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 13568,21550 L 13585,21574 12386,22406 12370,22382 13568,21550 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 13576,21560 L 13592,21584 12394,22416 12377,22392 13576,21560 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 13583,21571 L 13599,21594 12401,22426 12384,22402 13583,21571 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 13590,21581 L 13606,21605 12408,22437 12391,22413 13590,21581 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 13597,21591 L 13613,21615 12415,22447 12398,22423 13597,21591 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 13604,21601 L 13621,21625 12422,22457 12405,22433 13604,21601 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 13611,21611 L 13628,21635 12429,22467 12412,22443 13611,21611 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 13618,21622 L 13635,21646 12436,22478 12420,22454 13618,21622 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 13625,21632 L 13642,21656 12443,22488 12427,22464 13625,21632 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 13632,21642 L 13649,21666 12450,22498 12434,22474 13632,21642 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 13639,21652 L 13656,21676 12457,22508 12441,22484 13639,21652 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 13647,21663 L 13663,21687 12465,22518 12448,22495 13647,21663 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 13654,21673 L 13670,21697 12472,22529 12455,22505 13654,21673 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 13661,21683 L 13677,21707 12479,22539 12462,22515 13661,21683 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 13668,21693 L 13684,21717 12486,22549 12469,22525 13668,21693 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 13675,21704 L 13692,21728 12493,22559 12476,22536 13675,21704 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 13682,21714 L 13699,21738 12500,22570 12484,22546 13682,21714 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 13689,21724 L 13706,21748 12507,22580 12491,22556 13689,21724 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 13696,21734 L 13713,21758 12514,22590 12498,22566 13696,21734 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 13703,21745 L 13720,21768 12521,22600 12505,22576 13703,21745 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 13711,21755 L 13727,21779 12529,22611 12512,22587 13711,21755 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 13718,21765 L 13734,21789 12536,22621 12519,22597 13718,21765 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 13725,21775 L 13741,21799 12543,22631 12526,22607 13725,21775 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 13732,21786 L 13748,21809 12550,22641 12533,22617 13732,21786 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 13739,21796 L 13756,21820 12557,22652 12540,22628 13739,21796 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 13746,21806 L 13763,21830 12564,22662 12547,22638 13746,21806 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 13753,21816 L 13770,21840 12571,22672 12555,22648 13753,21816 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 13760,21826 L 13777,21850 12578,22682 12562,22658 13760,21826 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 13767,21837 L 13784,21861 12585,22693 12569,22669 13767,21837 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 13774,21847 L 13791,21871 12592,22703 12576,22679 13774,21847 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 13782,21857 L 13798,21881 12600,22713 12583,22689 13782,21857 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 13789,21867 L 13805,21891 12607,22723 12590,22699 13789,21867 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 13796,21878 L 13812,21902 12614,22733 12597,22710 13796,21878 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 13803,21888 L 13820,21912 12621,22744 12604,22720 13803,21888 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 13810,21898 L 13827,21922 12628,22754 12611,22730 13810,21898 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 13817,21908 L 13834,21932 12635,22764 12619,22740 13817,21908 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 13824,21919 L 13841,21943 12642,22774 12626,22751 13824,21919 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 13831,21929 L 13848,21953 12649,22785 12633,22761 13831,21929 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 13838,21939 L 13855,21963 12656,22795 12640,22771 13838,21939 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 13846,21949 L 13862,21973 12664,22805 12647,22781 13846,21949 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 13853,21960 L 13869,21983 12671,22815 12654,22791 13853,21960 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 13860,21970 L 13876,21994 12678,22826 12661,22802 13860,21970 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 13867,21980 L 13883,22004 12685,22836 12668,22812 13867,21980 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 13874,21990 L 13891,22014 12692,22846 12675,22822 13874,21990 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 13881,22001 L 13898,22024 12699,22856 12682,22832 13881,22001 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 13888,22011 L 13905,22035 12706,22867 12690,22843 13888,22011 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 13895,22021 L 13912,22045 12713,22877 12697,22853 13895,22021 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 13902,22031 L 13919,22055 12720,22887 12704,22863 13902,22031 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 13909,22041 L 13926,22065 12728,22897 12711,22873 13909,22041 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 13917,22052 L 13933,22076 12735,22908 12718,22884 13917,22052 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 13924,22062 L 13940,22086 12742,22918 12725,22894 13924,22062 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 13931,22072 L 13947,22096 12749,22928 12732,22904 13931,22072 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 13938,22082 L 13955,22106 12756,22938 12739,22914 13938,22082 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 13945,22093 L 13962,22117 12763,22948 12746,22925 13945,22093 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 13952,22103 L 13969,22127 12770,22959 12754,22935 13952,22103 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 13959,22113 L 13976,22137 12777,22969 12761,22945 13959,22113 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 13966,22123 L 13983,22147 12784,22979 12768,22955 13966,22123 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 13973,22134 L 13990,22158 12791,22989 12775,22966 13973,22134 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 13981,22144 L 13997,22168 12799,23000 12782,22976 13981,22144 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 13988,22154 L 14004,22178 12806,23010 12789,22986 13988,22154 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 13995,22164 L 14011,22188 12813,23020 12796,22996 13995,22164 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 14002,22175 L 14018,22199 12820,23030 12803,23006 14002,22175 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 14009,22185 L 14026,22209 12827,23041 12810,23017 14009,22185 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 14016,22195 L 14033,22219 12834,23051 12817,23027 14016,22195 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 14023,22205 L 14040,22229 12841,23061 12825,23037 14023,22205 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 14030,22216 L 14047,22239 12848,23071 12832,23047 14030,22216 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 14037,22226 L 14054,22250 12855,23082 12839,23058 14037,22226 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 14045,22236 L 14061,22260 12863,23092 12846,23068 14045,22236 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 14052,22246 L 14068,22270 12870,23102 12853,23078 14052,22246 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 14059,22257 L 14075,22280 12877,23112 12860,23088 14059,22257 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 14066,22267 L 14082,22291 12884,23123 12867,23099 14066,22267 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 14073,22277 L 14090,22301 12891,23133 12874,23109 14073,22277 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 14080,22287 L 14097,22311 12898,23143 12881,23119 14080,22287 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 14087,22297 L 14104,22321 12905,23153 12889,23129 14087,22297 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 14094,22308 L 14111,22332 12912,23163 12896,23140 14094,22308 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 14101,22318 L 14118,22342 12919,23174 12903,23150 14101,22318 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 14108,22328 L 14125,22352 12926,23184 12910,23160 14108,22328 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 14116,22338 L 14132,22362 12934,23194 12917,23170 14116,22338 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 14123,22349 L 14139,22373 12941,23204 12924,23181 14123,22349 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 14130,22359 L 14146,22383 12948,23215 12931,23191 14130,22359 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 14137,22369 L 14153,22393 12955,23225 12938,23201 14137,22369 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 14144,22379 L 14161,22403 12962,23235 12945,23211 14144,22379 Z"/>
+     </g>
+     <path fill="rgb(140,140,140)" stroke="none" d="M 12876,20698 L 12863,20698 12185,20698 C 12141,20698 12106,20733 12106,20776 L 12106,22005 C 12106,22048 12141,22083 12185,22083 L 13201,22083 C 13244,22083 13280,22048 13280,22005 L 13280,21118 13280,21105 13270,21095 12886,20707 12876,20698 Z M 12138,20776 C 12138,20751 12159,20730 12185,20730 L 12863,20730 13247,21118 13247,22005 C 13247,22031 13226,22051 13201,22051 L 12185,22051 C 12159,22051 12138,22031 12138,22005 L 12138,20776 Z"/>
+     <defs>
+      <clipPath id="clip_path_18" clipPathUnits="userSpaceOnUse">
+       <path d="M 12146,20776 L 12146,22005 C 12146,22026 12164,22043 12185,22043 L 13201,22043 C 13222,22043 13239,22026 13239,22005 L 13239,21121 C 13235,21117 12864,20743 12859,20738 12853,20738 12185,20738 12185,20738 12164,20738 12146,20755 12146,20776 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_18)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12708,20356 L 12849,20559 11692,21362 11551,21159 12708,20356 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12840,20545 L 12857,20570 11700,21374 11682,21348 12840,20545 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 12848,20556 L 12865,20582 11708,21385 11690,21360 12848,20556 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 12856,20568 L 12873,20593 11716,21397 11698,21371 12856,20568 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 12864,20579 L 12881,20605 11724,21408 11706,21383 12864,20579 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 12872,20591 L 12889,20616 11731,21420 11714,21394 12872,20591 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 12880,20603 L 12897,20628 11739,21431 11722,21406 12880,20603 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 12888,20614 L 12905,20639 11747,21443 11730,21418 12888,20614 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 12896,20626 L 12913,20651 11755,21454 11738,21429 12896,20626 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 12904,20637 L 12921,20662 11763,21466 11746,21441 12904,20637 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 12912,20649 L 12929,20674 11771,21477 11754,21452 12912,20649 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 12920,20660 L 12937,20685 11779,21489 11762,21464 12920,20660 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 12928,20672 L 12945,20697 11787,21500 11770,21475 12928,20672 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 12936,20683 L 12953,20708 11795,21512 11778,21487 12936,20683 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 12944,20695 L 12961,20720 11803,21523 11786,21498 12944,20695 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 12952,20706 L 12969,20732 11811,21535 11794,21510 12952,20706 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 12960,20718 L 12977,20743 11819,21547 11802,21521 12960,20718 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 12968,20729 L 12985,20755 11827,21558 11810,21533 12968,20729 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 12976,20741 L 12993,20766 11835,21570 11818,21544 12976,20741 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 12984,20752 L 13001,20778 11843,21581 11826,21556 12984,20752 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 12992,20764 L 13009,20789 11851,21593 11834,21567 12992,20764 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 13000,20775 L 13017,20801 11859,21604 11842,21579 13000,20775 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 13008,20787 L 13025,20812 11867,21616 11850,21590 13008,20787 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 13016,20798 L 13033,20824 11875,21627 11858,21602 13016,20798 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 13024,20810 L 13041,20835 11883,21639 11866,21613 13024,20810 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 13032,20821 L 13049,20847 11891,21650 11874,21625 13032,20821 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 13040,20833 L 13057,20858 11899,21662 11882,21636 13040,20833 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 13048,20845 L 13065,20870 11907,21673 11890,21648 13048,20845 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 13056,20856 L 13073,20881 11915,21685 11898,21660 13056,20856 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 13064,20868 L 13081,20893 11923,21696 11906,21671 13064,20868 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 13072,20879 L 13089,20904 11931,21708 11914,21683 13072,20879 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 13080,20891 L 13097,20916 11939,21719 11922,21694 13080,20891 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 13088,20902 L 13105,20927 11947,21731 11930,21706 13088,20902 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 13096,20914 L 13113,20939 11955,21742 11938,21717 13096,20914 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 13104,20925 L 13121,20950 11963,21754 11946,21729 13104,20925 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 13112,20937 L 13129,20962 11971,21765 11954,21740 13112,20937 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 13120,20948 L 13137,20974 11979,21777 11962,21752 13120,20948 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 13128,20960 L 13145,20985 11987,21789 11970,21763 13128,20960 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 13136,20971 L 13153,20997 11995,21800 11978,21775 13136,20971 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 13144,20983 L 13161,21008 12003,21812 11986,21786 13144,20983 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 13152,20994 L 13169,21020 12011,21823 11994,21798 13152,20994 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 13160,21006 L 13177,21031 12019,21835 12002,21809 13160,21006 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 13168,21017 L 13185,21043 12027,21846 12010,21821 13168,21017 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 13176,21029 L 13193,21054 12035,21858 12018,21832 13176,21029 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 13184,21040 L 13201,21066 12043,21869 12026,21844 13184,21040 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 13192,21052 L 13209,21077 12051,21881 12034,21855 13192,21052 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 13200,21063 L 13217,21089 12059,21892 12042,21867 13200,21063 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 13208,21075 L 13225,21100 12067,21904 12050,21878 13208,21075 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 13216,21087 L 13233,21112 12075,21915 12058,21890 13216,21087 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 13224,21098 L 13241,21123 12083,21927 12066,21902 13224,21098 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 13232,21110 L 13249,21135 12091,21938 12074,21913 13232,21110 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 13240,21121 L 13257,21146 12099,21950 12082,21925 13240,21121 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 13248,21133 L 13265,21158 12107,21961 12090,21936 13248,21133 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 13256,21144 L 13273,21169 12115,21973 12098,21948 13256,21144 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 13264,21156 L 13281,21181 12123,21984 12106,21959 13264,21156 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 13272,21167 L 13289,21192 12131,21996 12114,21971 13272,21167 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 13280,21179 L 13297,21204 12139,22007 12122,21982 13280,21179 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 13288,21190 L 13305,21215 12147,22019 12130,21994 13288,21190 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 13296,21202 L 13313,21227 12155,22031 12138,22005 13296,21202 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 13304,21213 L 13321,21239 12163,22042 12146,22017 13304,21213 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 13312,21225 L 13329,21250 12171,22054 12154,22028 13312,21225 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 13320,21236 L 13337,21262 12179,22065 12162,22040 13320,21236 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 13328,21248 L 13345,21273 12187,22077 12170,22051 13328,21248 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 13336,21259 L 13353,21285 12195,22088 12178,22063 13336,21259 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 13344,21271 L 13361,21296 12203,22100 12186,22074 13344,21271 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 13352,21282 L 13369,21308 12211,22111 12194,22086 13352,21282 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 13360,21294 L 13377,21319 12219,22123 12202,22097 13360,21294 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 13368,21305 L 13385,21331 12227,22134 12210,22109 13368,21305 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 13376,21317 L 13393,21342 12235,22146 12218,22120 13376,21317 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 13384,21329 L 13401,21354 12243,22157 12226,22132 13384,21329 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 13392,21340 L 13409,21365 12251,22169 12234,22144 13392,21340 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 13400,21352 L 13417,21377 12259,22180 12242,22155 13400,21352 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 13408,21363 L 13425,21388 12267,22192 12250,22167 13408,21363 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 13416,21375 L 13433,21400 12275,22203 12258,22178 13416,21375 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 13423,21386 L 13441,21411 12283,22215 12266,22190 13423,21386 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 13431,21398 L 13449,21423 12291,22226 12274,22201 13431,21398 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 13439,21409 L 13457,21434 12299,22238 12282,22213 13439,21409 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 13447,21421 L 13465,21446 12307,22249 12290,22224 13447,21421 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 13455,21432 L 13473,21457 12315,22261 12298,22236 13455,21432 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 13463,21444 L 13481,21469 12323,22273 12306,22247 13463,21444 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 13471,21455 L 13489,21481 12331,22284 12314,22259 13471,21455 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 13479,21467 L 13497,21492 12339,22296 12322,22270 13479,21467 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 13487,21478 L 13505,21504 12347,22307 12330,22282 13487,21478 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 13495,21490 L 13513,21515 12355,22319 12338,22293 13495,21490 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 13503,21501 L 13521,21527 12363,22330 12346,22305 13503,21501 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 13511,21513 L 13529,21538 12371,22342 12354,22316 13511,21513 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 13519,21524 L 13537,21550 12379,22353 12362,22328 13519,21524 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 13527,21536 L 13545,21561 12387,22365 12370,22339 13527,21536 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 13535,21547 L 13553,21573 12395,22376 12378,22351 13535,21547 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 13543,21559 L 13561,21584 12403,22388 12386,22362 13543,21559 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 13551,21570 L 13569,21596 12411,22399 12394,22374 13551,21570 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 13559,21582 L 13577,21607 12419,22411 12402,22386 13559,21582 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 13567,21594 L 13585,21619 12427,22422 12410,22397 13567,21594 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 13575,21605 L 13593,21630 12435,22434 12418,22409 13575,21605 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 13583,21617 L 13601,21642 12443,22445 12426,22420 13583,21617 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 13591,21628 L 13609,21653 12451,22457 12434,22432 13591,21628 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 13599,21640 L 13617,21665 12459,22468 12442,22443 13599,21640 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 13607,21651 L 13625,21676 12467,22480 12450,22455 13607,21651 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 13615,21663 L 13633,21688 12475,22491 12458,22466 13615,21663 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 13623,21674 L 13641,21699 12483,22503 12466,22478 13623,21674 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 13631,21686 L 13649,21711 12491,22514 12474,22489 13631,21686 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 13639,21697 L 13657,21723 12499,22526 12482,22501 13639,21697 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 13647,21709 L 13665,21734 12507,22538 12490,22512 13647,21709 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 13655,21720 L 13673,21746 12515,22549 12498,22524 13655,21720 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 13663,21732 L 13681,21757 12523,22561 12506,22535 13663,21732 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 13671,21743 L 13689,21769 12531,22572 12514,22547 13671,21743 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 13679,21755 L 13697,21780 12539,22584 12522,22558 13679,21755 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 13687,21766 L 13705,21792 12547,22595 12530,22570 13687,21766 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 13695,21778 L 13713,21803 12555,22607 12538,22581 13695,21778 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 13703,21789 L 13721,21815 12563,22618 12546,22593 13703,21789 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 13711,21801 L 13729,21826 12571,22630 12554,22604 13711,21801 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 13719,21812 L 13737,21838 12579,22641 12562,22616 13719,21812 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 13727,21824 L 13745,21849 12587,22653 12570,22628 13727,21824 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 13735,21836 L 13753,21861 12595,22664 12578,22639 13735,21836 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 13743,21847 L 13761,21872 12603,22676 12586,22651 13743,21847 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 13751,21859 L 13769,21884 12611,22687 12594,22662 13751,21859 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 13759,21870 L 13777,21895 12619,22699 12602,22674 13759,21870 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 13767,21882 L 13785,21907 12627,22710 12610,22685 13767,21882 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 13775,21893 L 13793,21918 12635,22722 12618,22697 13775,21893 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 13783,21905 L 13801,21930 12643,22733 12626,22708 13783,21905 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 13791,21916 L 13809,21941 12651,22745 12634,22720 13791,21916 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 13799,21928 L 13817,21953 12659,22756 12642,22731 13799,21928 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 13807,21939 L 13825,21965 12667,22768 12650,22743 13807,21939 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 13815,21951 L 13833,21976 12675,22780 12658,22754 13815,21951 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 13823,21962 L 13841,21988 12683,22791 12666,22766 13823,21962 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 13831,21974 L 13849,21999 12691,22803 12674,22777 13831,21974 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 13839,21985 L 13857,22011 12699,22814 12682,22789 13839,21985 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 13847,21997 L 13865,22022 12707,22826 12690,22800 13847,21997 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 13855,22008 L 13873,22034 12715,22837 12698,22812 13855,22008 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 13863,22020 L 13881,22045 12723,22849 12706,22823 13863,22020 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 13871,22031 L 13889,22057 12731,22860 12714,22835 13871,22031 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 13879,22043 L 13897,22068 12739,22872 12722,22846 13879,22043 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 13887,22054 L 13905,22080 12747,22883 12730,22858 13887,22054 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 13895,22066 L 13913,22091 12755,22895 12738,22869 13895,22066 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 13903,22078 L 13921,22103 12763,22906 12746,22881 13903,22078 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 13911,22089 L 13929,22114 12771,22918 12754,22893 13911,22089 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 13919,22101 L 13937,22126 12779,22929 12762,22904 13919,22101 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 13927,22112 L 13945,22137 12787,22941 12770,22916 13927,22112 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 13935,22124 L 13953,22149 12795,22952 12778,22927 13935,22124 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 13943,22135 L 13961,22160 12803,22964 12786,22939 13943,22135 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 13951,22147 L 13969,22172 12811,22975 12794,22950 13951,22147 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 13959,22158 L 13977,22183 12819,22987 12802,22962 13959,22158 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 13967,22170 L 13985,22195 12827,22998 12810,22973 13967,22170 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 13975,22181 L 13993,22207 12835,23010 12818,22985 13975,22181 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 13983,22193 L 14001,22218 12843,23022 12826,22996 13983,22193 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 13991,22204 L 14009,22230 12851,23033 12834,23008 13991,22204 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 13999,22216 L 14017,22241 12859,23045 12842,23019 13999,22216 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 14007,22227 L 14025,22253 12867,23056 12850,23031 14007,22227 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 14015,22239 L 14033,22264 12875,23068 12858,23042 14015,22239 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 14023,22250 L 14041,22276 12883,23079 12866,23054 14023,22250 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 14031,22262 L 14049,22287 12891,23091 12874,23065 14031,22262 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 14039,22273 L 14057,22299 12899,23102 12882,23077 14039,22273 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 14047,22285 L 14065,22310 12907,23114 12890,23088 14047,22285 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 14055,22296 L 14073,22322 12915,23125 12898,23100 14055,22296 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 14063,22308 L 14081,22333 12923,23137 12906,23111 14063,22308 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 14071,22320 L 14089,22345 12931,23148 12914,23123 14071,22320 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 14079,22331 L 14097,22356 12939,23160 12922,23135 14079,22331 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 14087,22343 L 14105,22368 12947,23171 12930,23146 14087,22343 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 14095,22354 L 14113,22379 12955,23183 12938,23158 14095,22354 Z"/>
+     </g>
+     <path fill="rgb(247,247,247)" stroke="none" d="M 12863,20730 L 12185,20730 C 12159,20730 12138,20751 12138,20776 L 12138,22005 C 12138,22031 12159,22051 12185,22051 L 13201,22051 C 13226,22051 13247,22031 13247,22005 L 13247,21118 12863,20730 Z M 12185,22035 C 12168,22035 12154,22022 12154,22005 L 12154,20776 C 12154,20759 12168,20746 12185,20746 L 12856,20746 13231,21124 13231,22005 C 13231,22022 13218,22035 13201,22035 L 12185,22035 Z"/>
+     <defs>
+      <clipPath id="clip_path_19" clipPathUnits="userSpaceOnUse">
+       <path d="M 12883,20739 L 12887,21063 C 12887,21071 12891,21080 12897,21086 12903,21092 12912,21095 12920,21095 12920,21095 13204,21092 13240,21091 13199,21050 12912,20762 12884,20734 12883,20735 12883,20737 12883,20738 L 12883,20739 Z"/>
+      </clipPath>
+     </defs>
+     <g clip-path="url(#clip_path_19)">
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12714,20925 L 12728,20910 13104,21244 13090,21260 12714,20925 Z"/>
+      <path fill="rgb(255,255,255)" stroke="none" d="M 12725,20912 L 12729,20908 13106,21242 13102,21247 12725,20912 Z"/>
+      <path fill="rgb(254,254,254)" stroke="none" d="M 12727,20910 L 12731,20906 13108,21240 13104,21245 12727,20910 Z"/>
+      <path fill="rgb(253,253,253)" stroke="none" d="M 12729,20908 L 12733,20904 13110,21238 13105,21243 12729,20908 Z"/>
+      <path fill="rgb(252,252,252)" stroke="none" d="M 12731,20906 L 12735,20902 13111,21236 13107,21241 12731,20906 Z"/>
+      <path fill="rgb(251,251,251)" stroke="none" d="M 12732,20904 L 12736,20900 13113,21234 13109,21239 12732,20904 Z"/>
+      <path fill="rgb(250,250,250)" stroke="none" d="M 12734,20902 L 12738,20898 13115,21232 13111,21237 12734,20902 Z"/>
+      <path fill="rgb(249,249,249)" stroke="none" d="M 12736,20900 L 12740,20896 13117,21230 13112,21235 12736,20900 Z"/>
+      <path fill="rgb(248,248,248)" stroke="none" d="M 12738,20898 L 12742,20894 13118,21228 13114,21233 12738,20898 Z"/>
+      <path fill="rgb(247,247,247)" stroke="none" d="M 12739,20896 L 12743,20892 13120,21226 13116,21231 12739,20896 Z"/>
+      <path fill="rgb(246,246,246)" stroke="none" d="M 12741,20894 L 12745,20890 13122,21224 13118,21229 12741,20894 Z"/>
+      <path fill="rgb(245,245,245)" stroke="none" d="M 12743,20892 L 12747,20888 13124,21223 13120,21227 12743,20892 Z"/>
+      <path fill="rgb(244,244,244)" stroke="none" d="M 12745,20890 L 12749,20886 13125,21221 13121,21225 12745,20890 Z"/>
+      <path fill="rgb(243,243,243)" stroke="none" d="M 12746,20888 L 12750,20884 13127,21219 13123,21223 12746,20888 Z"/>
+      <path fill="rgb(242,242,242)" stroke="none" d="M 12748,20886 L 12752,20882 13129,21217 13125,21221 12748,20886 Z"/>
+      <path fill="rgb(241,241,241)" stroke="none" d="M 12750,20884 L 12754,20880 13131,21215 13127,21219 12750,20884 Z"/>
+      <path fill="rgb(240,240,240)" stroke="none" d="M 12752,20882 L 12756,20878 13132,21213 13128,21217 12752,20882 Z"/>
+      <path fill="rgb(239,239,239)" stroke="none" d="M 12753,20880 L 12758,20876 13134,21211 13130,21215 12753,20880 Z"/>
+      <path fill="rgb(238,238,238)" stroke="none" d="M 12755,20878 L 12759,20874 13136,21209 13132,21213 12755,20878 Z"/>
+      <path fill="rgb(237,237,237)" stroke="none" d="M 12757,20876 L 12761,20872 13138,21207 13134,21211 12757,20876 Z"/>
+      <path fill="rgb(236,236,236)" stroke="none" d="M 12759,20875 L 12763,20870 13139,21205 13135,21209 12759,20875 Z"/>
+      <path fill="rgb(235,235,235)" stroke="none" d="M 12760,20873 L 12765,20868 13141,21203 13137,21207 12760,20873 Z"/>
+      <path fill="rgb(234,234,234)" stroke="none" d="M 12762,20871 L 12766,20866 13143,21201 13139,21205 12762,20871 Z"/>
+      <path fill="rgb(233,233,233)" stroke="none" d="M 12764,20869 L 12768,20864 13145,21199 13141,21203 12764,20869 Z"/>
+      <path fill="rgb(232,232,232)" stroke="none" d="M 12766,20867 L 12770,20862 13146,21197 13142,21201 12766,20867 Z"/>
+      <path fill="rgb(231,231,231)" stroke="none" d="M 12767,20865 L 12772,20860 13148,21195 13144,21199 12767,20865 Z"/>
+      <path fill="rgb(230,230,230)" stroke="none" d="M 12769,20863 L 12773,20858 13150,21193 13146,21197 12769,20863 Z"/>
+      <path fill="rgb(229,229,229)" stroke="none" d="M 12771,20861 L 12775,20856 13152,21191 13148,21195 12771,20861 Z"/>
+      <path fill="rgb(228,228,228)" stroke="none" d="M 12773,20859 L 12777,20854 13154,21189 13149,21193 12773,20859 Z"/>
+      <path fill="rgb(227,227,227)" stroke="none" d="M 12775,20857 L 12779,20852 13155,21187 13151,21191 12775,20857 Z"/>
+      <path fill="rgb(226,226,226)" stroke="none" d="M 12776,20855 L 12780,20850 13157,21185 13153,21190 12776,20855 Z"/>
+      <path fill="rgb(225,225,225)" stroke="none" d="M 12778,20853 L 12782,20848 13159,21183 13155,21188 12778,20853 Z"/>
+      <path fill="rgb(224,224,224)" stroke="none" d="M 12780,20851 L 12784,20846 13161,21181 13156,21186 12780,20851 Z"/>
+      <path fill="rgb(223,223,223)" stroke="none" d="M 12782,20849 L 12786,20844 13162,21179 13158,21184 12782,20849 Z"/>
+      <path fill="rgb(222,222,222)" stroke="none" d="M 12783,20847 L 12787,20842 13164,21177 13160,21182 12783,20847 Z"/>
+      <path fill="rgb(221,221,221)" stroke="none" d="M 12785,20845 L 12789,20840 13166,21175 13162,21180 12785,20845 Z"/>
+      <path fill="rgb(220,220,220)" stroke="none" d="M 12787,20843 L 12791,20838 13168,21173 13164,21178 12787,20843 Z"/>
+      <path fill="rgb(219,219,219)" stroke="none" d="M 12789,20841 L 12793,20836 13169,21171 13165,21176 12789,20841 Z"/>
+      <path fill="rgb(218,218,218)" stroke="none" d="M 12790,20839 L 12794,20834 13171,21169 13167,21174 12790,20839 Z"/>
+      <path fill="rgb(217,217,217)" stroke="none" d="M 12792,20837 L 12796,20832 13173,21167 13169,21172 12792,20837 Z"/>
+      <path fill="rgb(216,216,216)" stroke="none" d="M 12794,20835 L 12798,20830 13175,21165 13171,21170 12794,20835 Z"/>
+      <path fill="rgb(215,215,215)" stroke="none" d="M 12796,20833 L 12800,20828 13176,21163 13172,21168 12796,20833 Z"/>
+      <path fill="rgb(214,214,214)" stroke="none" d="M 12797,20831 L 12802,20826 13178,21161 13174,21166 12797,20831 Z"/>
+      <path fill="rgb(213,213,213)" stroke="none" d="M 12799,20829 L 12803,20824 13180,21159 13176,21164 12799,20829 Z"/>
+      <path fill="rgb(212,212,212)" stroke="none" d="M 12801,20827 L 12805,20822 13182,21157 13178,21162 12801,20827 Z"/>
+      <path fill="rgb(211,211,211)" stroke="none" d="M 12803,20825 L 12807,20820 13183,21155 13179,21160 12803,20825 Z"/>
+      <path fill="rgb(210,210,210)" stroke="none" d="M 12804,20823 L 12809,20818 13185,21153 13181,21158 12804,20823 Z"/>
+      <path fill="rgb(209,209,209)" stroke="none" d="M 12806,20821 L 12810,20816 13187,21151 13183,21156 12806,20821 Z"/>
+      <path fill="rgb(208,208,208)" stroke="none" d="M 12808,20819 L 12812,20814 13189,21149 13185,21154 12808,20819 Z"/>
+      <path fill="rgb(207,207,207)" stroke="none" d="M 12810,20817 L 12814,20812 13190,21147 13186,21152 12810,20817 Z"/>
+      <path fill="rgb(206,206,206)" stroke="none" d="M 12811,20815 L 12816,20811 13192,21145 13188,21150 12811,20815 Z"/>
+      <path fill="rgb(205,205,205)" stroke="none" d="M 12813,20813 L 12817,20809 13194,21143 13190,21148 12813,20813 Z"/>
+      <path fill="rgb(204,204,204)" stroke="none" d="M 12815,20811 L 12819,20807 13196,21141 13192,21146 12815,20811 Z"/>
+      <path fill="rgb(203,203,203)" stroke="none" d="M 12817,20809 L 12821,20805 13198,21139 13193,21144 12817,20809 Z"/>
+      <path fill="rgb(202,202,202)" stroke="none" d="M 12819,20807 L 12823,20803 13199,21137 13195,21142 12819,20807 Z"/>
+      <path fill="rgb(201,201,201)" stroke="none" d="M 12820,20805 L 12824,20801 13201,21135 13197,21140 12820,20805 Z"/>
+      <path fill="rgb(200,200,200)" stroke="none" d="M 12822,20803 L 12826,20799 13203,21133 13199,21138 12822,20803 Z"/>
+      <path fill="rgb(199,199,199)" stroke="none" d="M 12824,20801 L 12828,20797 13205,21131 13200,21136 12824,20801 Z"/>
+      <path fill="rgb(198,198,198)" stroke="none" d="M 12826,20799 L 12830,20795 13206,21129 13202,21134 12826,20799 Z"/>
+      <path fill="rgb(197,197,197)" stroke="none" d="M 12827,20797 L 12831,20793 13208,21127 13204,21132 12827,20797 Z"/>
+      <path fill="rgb(196,196,196)" stroke="none" d="M 12829,20795 L 12833,20791 13210,21126 13206,21130 12829,20795 Z"/>
+      <path fill="rgb(195,195,195)" stroke="none" d="M 12831,20793 L 12835,20789 13212,21124 13208,21128 12831,20793 Z"/>
+      <path fill="rgb(194,194,194)" stroke="none" d="M 12833,20791 L 12837,20787 13213,21122 13209,21126 12833,20791 Z"/>
+      <path fill="rgb(193,193,193)" stroke="none" d="M 12834,20789 L 12838,20785 13215,21120 13211,21124 12834,20789 Z"/>
+      <path fill="rgb(192,192,192)" stroke="none" d="M 12836,20787 L 12840,20783 13217,21118 13213,21122 12836,20787 Z"/>
+      <path fill="rgb(191,191,191)" stroke="none" d="M 12838,20785 L 12842,20781 13219,21116 13215,21120 12838,20785 Z"/>
+      <path fill="rgb(190,190,190)" stroke="none" d="M 12840,20783 L 12844,20779 13220,21114 13216,21118 12840,20783 Z"/>
+      <path fill="rgb(189,189,189)" stroke="none" d="M 12841,20781 L 12846,20777 13222,21112 13218,21116 12841,20781 Z"/>
+      <path fill="rgb(188,188,188)" stroke="none" d="M 12843,20779 L 12847,20775 13224,21110 13220,21114 12843,20779 Z"/>
+      <path fill="rgb(187,187,187)" stroke="none" d="M 12845,20778 L 12849,20773 13226,21108 13222,21112 12845,20778 Z"/>
+      <path fill="rgb(186,186,186)" stroke="none" d="M 12847,20776 L 12851,20771 13227,21106 13223,21110 12847,20776 Z"/>
+      <path fill="rgb(185,185,185)" stroke="none" d="M 12848,20774 L 12853,20769 13229,21104 13225,21108 12848,20774 Z"/>
+      <path fill="rgb(184,184,184)" stroke="none" d="M 12850,20772 L 12854,20767 13231,21102 13227,21106 12850,20772 Z"/>
+      <path fill="rgb(183,183,183)" stroke="none" d="M 12852,20770 L 12856,20765 13233,21100 13229,21104 12852,20770 Z"/>
+      <path fill="rgb(182,182,182)" stroke="none" d="M 12854,20768 L 12858,20763 13234,21098 13230,21102 12854,20768 Z"/>
+      <path fill="rgb(181,181,181)" stroke="none" d="M 12855,20766 L 12860,20761 13236,21096 13232,21100 12855,20766 Z"/>
+      <path fill="rgb(180,180,180)" stroke="none" d="M 12857,20764 L 12861,20759 13238,21094 13234,21098 12857,20764 Z"/>
+      <path fill="rgb(179,179,179)" stroke="none" d="M 12859,20762 L 12863,20757 13240,21092 13236,21096 12859,20762 Z"/>
+      <path fill="rgb(178,178,178)" stroke="none" d="M 12861,20760 L 12865,20755 13242,21090 13237,21094 12861,20760 Z"/>
+      <path fill="rgb(177,177,177)" stroke="none" d="M 12863,20758 L 12867,20753 13243,21088 13239,21092 12863,20758 Z"/>
+      <path fill="rgb(176,176,176)" stroke="none" d="M 12864,20756 L 12868,20751 13245,21086 13241,21091 12864,20756 Z"/>
+      <path fill="rgb(175,175,175)" stroke="none" d="M 12866,20754 L 12870,20749 13247,21084 13243,21089 12866,20754 Z"/>
+      <path fill="rgb(174,174,174)" stroke="none" d="M 12868,20752 L 12872,20747 13249,21082 13244,21087 12868,20752 Z"/>
+      <path fill="rgb(173,173,173)" stroke="none" d="M 12870,20750 L 12874,20745 13250,21080 13246,21085 12870,20750 Z"/>
+      <path fill="rgb(172,172,172)" stroke="none" d="M 12871,20748 L 12875,20743 13252,21078 13248,21083 12871,20748 Z"/>
+      <path fill="rgb(171,171,171)" stroke="none" d="M 12873,20746 L 12877,20741 13254,21076 13250,21081 12873,20746 Z"/>
+      <path fill="rgb(170,170,170)" stroke="none" d="M 12875,20744 L 12879,20739 13256,21074 13252,21079 12875,20744 Z"/>
+      <path fill="rgb(169,169,169)" stroke="none" d="M 12877,20742 L 12881,20737 13257,21072 13253,21077 12877,20742 Z"/>
+      <path fill="rgb(168,168,168)" stroke="none" d="M 12878,20740 L 12882,20735 13259,21070 13255,21075 12878,20740 Z"/>
+      <path fill="rgb(167,167,167)" stroke="none" d="M 12880,20738 L 12884,20733 13261,21068 13257,21073 12880,20738 Z"/>
+      <path fill="rgb(166,166,166)" stroke="none" d="M 12882,20736 L 12886,20731 13263,21066 13259,21071 12882,20736 Z"/>
+      <path fill="rgb(165,165,165)" stroke="none" d="M 12884,20734 L 12888,20729 13264,21064 13260,21069 12884,20734 Z"/>
+      <path fill="rgb(164,164,164)" stroke="none" d="M 12885,20732 L 12889,20727 13266,21062 13262,21067 12885,20732 Z"/>
+      <path fill="rgb(163,163,163)" stroke="none" d="M 12887,20730 L 12891,20725 13268,21060 13264,21065 12887,20730 Z"/>
+      <path fill="rgb(162,162,162)" stroke="none" d="M 12889,20728 L 12893,20723 13270,21058 13266,21063 12889,20728 Z"/>
+      <path fill="rgb(161,161,161)" stroke="none" d="M 12891,20726 L 12895,20721 13271,21056 13267,21061 12891,20726 Z"/>
+      <path fill="rgb(160,160,160)" stroke="none" d="M 12892,20724 L 12897,20719 13273,21054 13269,21059 12892,20724 Z"/>
+      <path fill="rgb(159,159,159)" stroke="none" d="M 12894,20722 L 12898,20717 13275,21052 13271,21057 12894,20722 Z"/>
+      <path fill="rgb(158,158,158)" stroke="none" d="M 12896,20720 L 12900,20715 13277,21050 13273,21055 12896,20720 Z"/>
+      <path fill="rgb(157,157,157)" stroke="none" d="M 12898,20718 L 12902,20714 13278,21048 13274,21053 12898,20718 Z"/>
+      <path fill="rgb(156,156,156)" stroke="none" d="M 12899,20716 L 12904,20712 13280,21046 13276,21051 12899,20716 Z"/>
+      <path fill="rgb(155,155,155)" stroke="none" d="M 12901,20714 L 12905,20710 13282,21044 13278,21049 12901,20714 Z"/>
+      <path fill="rgb(154,154,154)" stroke="none" d="M 12903,20712 L 12907,20708 13284,21042 13280,21047 12903,20712 Z"/>
+      <path fill="rgb(153,153,153)" stroke="none" d="M 12905,20710 L 12909,20706 13286,21040 13281,21045 12905,20710 Z"/>
+      <path fill="rgb(152,152,152)" stroke="none" d="M 12907,20708 L 12911,20704 13287,21038 13283,21043 12907,20708 Z"/>
+      <path fill="rgb(151,151,151)" stroke="none" d="M 12908,20706 L 12912,20702 13289,21036 13285,21041 12908,20706 Z"/>
+      <path fill="rgb(150,150,150)" stroke="none" d="M 12910,20704 L 12914,20700 13291,21034 13287,21039 12910,20704 Z"/>
+      <path fill="rgb(149,149,149)" stroke="none" d="M 12912,20702 L 12916,20698 13293,21032 13288,21037 12912,20702 Z"/>
+      <path fill="rgb(148,148,148)" stroke="none" d="M 12914,20700 L 12918,20696 13294,21030 13290,21035 12914,20700 Z"/>
+      <path fill="rgb(147,147,147)" stroke="none" d="M 12915,20698 L 12919,20694 13296,21028 13292,21033 12915,20698 Z"/>
+      <path fill="rgb(146,146,146)" stroke="none" d="M 12917,20696 L 12921,20692 13298,21027 13294,21031 12917,20696 Z"/>
+      <path fill="rgb(145,145,145)" stroke="none" d="M 12919,20694 L 12923,20690 13300,21025 13295,21029 12919,20694 Z"/>
+      <path fill="rgb(144,144,144)" stroke="none" d="M 12921,20692 L 12925,20688 13301,21023 13297,21027 12921,20692 Z"/>
+      <path fill="rgb(143,143,143)" stroke="none" d="M 12922,20690 L 12926,20686 13303,21021 13299,21025 12922,20690 Z"/>
+      <path fill="rgb(142,142,142)" stroke="none" d="M 12924,20688 L 12928,20684 13305,21019 13301,21023 12924,20688 Z"/>
+      <path fill="rgb(141,141,141)" stroke="none" d="M 12926,20686 L 12930,20682 13307,21017 13303,21021 12926,20686 Z"/>
+     </g>
+     <path fill="rgb(140,140,140)" stroke="none" d="M 12879,20706 C 12871,20715 12867,20726 12867,20739 L 12867,20740 12871,21063 C 12871,21090 12893,21111 12920,21111 12920,21111 12920,21111 12921,21111 L 13234,21107 13258,21107 13261,21107 C 13266,21107 13271,21106 13276,21104 L 12879,20706 Z M 12920,21079 C 12911,21079 12903,21072 12903,21062 L 12899,20773 13202,21076 12920,21079 12920,21079 Z"/>
+    </g>
+   </g>
+   <g class="com.sun.star.drawing.TextShape">
+    <g id="id20">
+     <rect class="BoundingBox" stroke="none" fill="none" x="11976" y="20641" width="1501" height="1524"/>
+     <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12226" y="21024"><tspan fill="rgb(190,190,190)" stroke="none">1010 </tspan></tspan><tspan class="TextPosition" x="12226" y="21342"><tspan fill="rgb(190,190,190)" stroke="none">010101</tspan></tspan><tspan class="TextPosition" x="12226" y="21660"><tspan fill="rgb(190,190,190)" stroke="none">101010</tspan></tspan><tspan class="TextPosition" x="12226" y="21978"><tspan fill="rgb(190,190,190)" stroke="none">010101</tspan></tspan></tspan></text>
+    </g>
+   </g>
+   <g class="Graphic">
+    <g id="id21">
+     <rect class="BoundingBox" stroke="none" fill="none" x="12329" y="21098" width="742" height="631"/>
+     <path fill="rgb(58,90,130)" stroke="none" d="M 12775,21462 C 12835,21473 12891,21495 12941,21527 L 12699,21110 12458,21527 C 12508,21495 12564,21473 12624,21462 L 12699,21331 12775,21462 Z"/>
+     <path fill="rgb(58,90,130)" stroke="none" d="M 12804,21511 C 12770,21502 12736,21498 12700,21498 12664,21498 12629,21502 12595,21511 12557,21521 12521,21537 12488,21557 12426,21596 12375,21651 12341,21716 L 12473,21716 C 12526,21651 12608,21608 12700,21608 12791,21608 12873,21651 12926,21716 L 13058,21716 C 13024,21651 12973,21596 12911,21557 12878,21537 12842,21521 12804,21511 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id22">
+    <rect class="BoundingBox" stroke="none" fill="none" x="16175" y="21325" width="1051" height="351"/>
+    <path fill="none" stroke="rgb(58,90,128)" stroke-width="100" stroke-linejoin="round" d="M 16723,21500 L 16225,21500"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17225,21500 L 16700,21325 16700,21675 17225,21500 Z"/>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file