From 604800123acd52ae51afc90174a41b86173dcfb7 Mon Sep 17 00:00:00 2001 From: Erica Hughberg Date: Mon, 27 Jan 2025 13:35:08 -0500 Subject: [PATCH] site: Update theme Signed-off-by: Ryan Northey --- site/content/BUILD | 1 + site/content/images/logos/cookpad.svg | 2 +- site/content/images/logos/databricks.svg | 8 +- site/content/images/logos/tetrate-academy.png | Bin 0 -> 11710 bytes site/content/images/logos/uber.svg | 2 +- site/content/images/logos/yelp.svg | 2 +- site/content/pages/ai-gateway.md | 12 + site/content/pages/community.html | 67 ---- site/content/pages/community.md | 5 + site/content/pages/envoy-docs.md | 6 + site/content/pages/envoy.md | 24 ++ site/content/pages/gateway.md | 13 + site/content/pages/learn.md | 5 + site/content/pages/mobile.md | 12 + site/content/pages/training.html | 35 --- site/data/BUILD | 2 +- site/data/{companies.yaml => adopters.yaml} | 64 ++++ site/data/ai-gateway/project.yaml | 29 ++ site/data/community.yaml | 161 ++++++++++ site/data/courses.yaml | 32 ++ site/data/envoy/envoy.yaml | 0 site/data/envoy/project.yaml | 35 +++ site/data/{ => envoy}/projects.yaml | 0 site/data/{ => envoy}/quotes.yaml | 0 site/data/gateway/project.yaml | 32 ++ site/data/mobile/project.yaml | 27 ++ site/data/pages.yaml | 35 +++ site/data/socials.yaml | 3 + site/pelicanconf.py | 39 ++- site/theme/css/BUILD | 9 - site/theme/css/_partials.scss | 5 + site/theme/css/abstracts/_functions.scss | 108 +++++++ site/theme/css/abstracts/_index.scss | 3 + site/theme/css/abstracts/_mixins.scss | 49 +++ site/theme/css/abstracts/_variables.scss | 81 +++++ site/theme/css/base/_index.scss | 3 + site/theme/css/base/_reset.scss | 38 +++ site/theme/css/base/_typography.scss | 176 +++++++++++ site/theme/css/base/_utilities.scss | 1 + site/theme/css/components/_buttons.scss | 142 +++++++++ site/theme/css/components/_cards.scss | 124 ++++++++ site/theme/css/components/_content.scss | 153 +++++++++ site/theme/css/components/_index.scss | 7 + site/theme/css/components/_loader.scss | 70 +++++ site/theme/css/components/_navigation.scss | 205 ++++++++++++ site/theme/css/components/_quote.scss | 93 ++++++ site/theme/css/components/_releases.scss | 166 ++++++++++ site/theme/css/layouts/_footer.scss | 118 +++++++ site/theme/css/layouts/_grid.scss | 150 +++++++++ site/theme/css/layouts/_header.scss | 226 ++++++++++++++ site/theme/css/layouts/_index.scss | 4 + site/theme/css/layouts/_section.scss | 81 +++++ site/theme/css/main.scss | 29 +- site/theme/css/pages/_home.scss | 121 ++++++++ site/theme/css/pages/_index.scss | 2 + site/theme/css/pages/_project.scss | 94 ++++++ site/theme/images/BUILD | 1 + site/theme/images/ai-gateway.svg | 1 + site/theme/images/envoy-gateway.svg | 1 + site/theme/images/envoy-graphic.png | Bin 0 -> 314041 bytes site/theme/images/envoy-horizontal-color.png | Bin 0 -> 49908 bytes site/theme/images/envoy-horizontal-white.png | Bin 0 -> 42056 bytes site/theme/images/envoy-mobile.svg | 1 + site/theme/images/envoy-proxy.svg | 1 + site/theme/index.html | 192 +++--------- site/theme/js/BUILD | 13 +- site/theme/js/stars.js | 42 +++ site/theme/js/toggle-releases.js | 12 + site/theme/templates/BUILD | 3 +- site/theme/templates/base.html | 53 ++++ site/theme/templates/components/footer.html | 29 ++ site/theme/templates/components/navbar.html | 81 +++++ site/theme/templates/default.html | 5 - site/theme/templates/docs.html | 21 ++ site/theme/templates/features.html | 11 + site/theme/templates/footer.html | 14 - site/theme/templates/macros/feature.html | 61 ++++ site/theme/templates/macros/general.html | 77 +++++ site/theme/templates/macros/page.html | 59 ++++ site/theme/templates/macros/project.html | 292 ++++++++++++++++++ site/theme/templates/nav.html | 21 -- site/theme/templates/project.html | 36 +++ versions.bzl | 8 +- 83 files changed, 3600 insertions(+), 346 deletions(-) create mode 100644 site/content/images/logos/tetrate-academy.png create mode 100644 site/content/pages/ai-gateway.md delete mode 100644 site/content/pages/community.html create mode 100644 site/content/pages/community.md create mode 100644 site/content/pages/envoy-docs.md create mode 100644 site/content/pages/envoy.md create mode 100644 site/content/pages/gateway.md create mode 100644 site/content/pages/learn.md create mode 100644 site/content/pages/mobile.md delete mode 100644 site/content/pages/training.html rename site/data/{companies.yaml => adopters.yaml} (69%) create mode 100644 site/data/ai-gateway/project.yaml create mode 100644 site/data/community.yaml create mode 100644 site/data/courses.yaml create mode 100644 site/data/envoy/envoy.yaml create mode 100644 site/data/envoy/project.yaml rename site/data/{ => envoy}/projects.yaml (100%) rename site/data/{ => envoy}/quotes.yaml (100%) create mode 100644 site/data/gateway/project.yaml create mode 100644 site/data/mobile/project.yaml create mode 100644 site/data/pages.yaml create mode 100644 site/data/socials.yaml create mode 100644 site/theme/css/_partials.scss create mode 100644 site/theme/css/abstracts/_functions.scss create mode 100644 site/theme/css/abstracts/_index.scss create mode 100644 site/theme/css/abstracts/_mixins.scss create mode 100644 site/theme/css/abstracts/_variables.scss create mode 100644 site/theme/css/base/_index.scss create mode 100644 site/theme/css/base/_reset.scss create mode 100644 site/theme/css/base/_typography.scss create mode 100644 site/theme/css/base/_utilities.scss create mode 100644 site/theme/css/components/_buttons.scss create mode 100644 site/theme/css/components/_cards.scss create mode 100644 site/theme/css/components/_content.scss create mode 100644 site/theme/css/components/_index.scss create mode 100644 site/theme/css/components/_loader.scss create mode 100644 site/theme/css/components/_navigation.scss create mode 100644 site/theme/css/components/_quote.scss create mode 100644 site/theme/css/components/_releases.scss create mode 100644 site/theme/css/layouts/_footer.scss create mode 100644 site/theme/css/layouts/_grid.scss create mode 100644 site/theme/css/layouts/_header.scss create mode 100644 site/theme/css/layouts/_index.scss create mode 100644 site/theme/css/layouts/_section.scss create mode 100644 site/theme/css/pages/_home.scss create mode 100644 site/theme/css/pages/_index.scss create mode 100644 site/theme/css/pages/_project.scss create mode 100644 site/theme/images/ai-gateway.svg create mode 100644 site/theme/images/envoy-gateway.svg create mode 100644 site/theme/images/envoy-graphic.png create mode 100644 site/theme/images/envoy-horizontal-color.png create mode 100644 site/theme/images/envoy-horizontal-white.png create mode 100644 site/theme/images/envoy-mobile.svg create mode 100644 site/theme/images/envoy-proxy.svg create mode 100644 site/theme/js/stars.js create mode 100644 site/theme/js/toggle-releases.js create mode 100644 site/theme/templates/base.html create mode 100644 site/theme/templates/components/footer.html create mode 100644 site/theme/templates/components/navbar.html delete mode 100644 site/theme/templates/default.html create mode 100644 site/theme/templates/docs.html create mode 100644 site/theme/templates/features.html delete mode 100644 site/theme/templates/footer.html create mode 100644 site/theme/templates/macros/feature.html create mode 100644 site/theme/templates/macros/general.html create mode 100644 site/theme/templates/macros/page.html create mode 100644 site/theme/templates/macros/project.html delete mode 100644 site/theme/templates/nav.html create mode 100644 site/theme/templates/project.html diff --git a/site/content/BUILD b/site/content/BUILD index 333a82209a109..2d65fafd0e5e8 100644 --- a/site/content/BUILD +++ b/site/content/BUILD @@ -12,6 +12,7 @@ pkg_files( "images/**/*.png", "images/**/*.svg", "pages/*.html", + "pages/*.md", ]), prefix = "content", strip_prefix = "", diff --git a/site/content/images/logos/cookpad.svg b/site/content/images/logos/cookpad.svg index e3dbbf0f25fdc..a77ef1b8c4bb4 100644 --- a/site/content/images/logos/cookpad.svg +++ b/site/content/images/logos/cookpad.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/site/content/images/logos/databricks.svg b/site/content/images/logos/databricks.svg index 7147ca37846d0..3461c5814ffa1 100644 --- a/site/content/images/logos/databricks.svg +++ b/site/content/images/logos/databricks.svg @@ -1,6 +1,8 @@ \ No newline at end of file + \ No newline at end of file diff --git a/site/content/images/logos/yelp.svg b/site/content/images/logos/yelp.svg index 86e286460d32c..def39d52d7e89 100644 --- a/site/content/images/logos/yelp.svg +++ b/site/content/images/logos/yelp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/site/content/pages/ai-gateway.md b/site/content/pages/ai-gateway.md new file mode 100644 index 0000000000000..c8d5556fd0870 --- /dev/null +++ b/site/content/pages/ai-gateway.md @@ -0,0 +1,12 @@ +--- +title: Envoy AI Gateway +slug: ai-gateway +template: project +id: ai-gateway +--- + +### What is Envoy AI Gateway? + +Envoy AI Gateway is a control plane that expands on Envoy Gateway's capabilities to provide a simple and powerful way to configure Envoy Proxy for GenAI traffic. + +It is designed to be a lightweight, easy-to-use, and scalable control plane that can be used to configure Envoy Proxy for handling GenAI traffic. diff --git a/site/content/pages/community.html b/site/content/pages/community.html deleted file mode 100644 index 729a7fea55ff2..0000000000000 --- a/site/content/pages/community.html +++ /dev/null @@ -1,67 +0,0 @@ -{% extends "content.html" %} -{% set active_page = "community" %} - -{% block content %} -

- The Envoy development process is an open process. Here are the general communication channels we use to communicate. -

- -

Envoy works with the wider community to create a strong, vibrant codebase. There are a variety of - projects and organizations built on top of Envoy. We will list them below in alphabetical order: -

- -
-

Open Source Projects Built on Envoy Proxy

-
- {% for project in PROJECTS %} -
- -

{{ project.description }}

-

- Learn More - {% if project.github %} -  |  - Github - {% endif %} -

-

- {% endfor %} -
-
- -
-

Commercial Support and/or Offerings Built on Envoy Proxy

-
- {% for company in PARTNERS %} -
-
- - {{ company.name }} - -
-

{{ company.description }}

-

Learn More

-

- {% endfor %} -
-
-{% endblock content %} diff --git a/site/content/pages/community.md b/site/content/pages/community.md new file mode 100644 index 0000000000000..b9ffa88e68e8b --- /dev/null +++ b/site/content/pages/community.md @@ -0,0 +1,5 @@ +--- +title: Envoy community +slug: community +template: features +--- diff --git a/site/content/pages/envoy-docs.md b/site/content/pages/envoy-docs.md new file mode 100644 index 0000000000000..63265f8500ed8 --- /dev/null +++ b/site/content/pages/envoy-docs.md @@ -0,0 +1,6 @@ +--- +title: Envoy docs +slug: docs/envoy +template: docs +id: envoy +--- diff --git a/site/content/pages/envoy.md b/site/content/pages/envoy.md new file mode 100644 index 0000000000000..68fc4cfd34137 --- /dev/null +++ b/site/content/pages/envoy.md @@ -0,0 +1,24 @@ +--- +title: Envoy Proxy +slug: envoy +template: project +id: envoy +feature_adopters: true +--- + +### What is Envoy? + +Envoy is a high-performance C++ proxy designed for the cloud-native era with no-restart dynamic reload of configurations. It is highly extensible and can be used to build a wide variety of network architectures. + +It is used as the core proxy component in API Gateways, Service Meshes, Cloud Load Balancers, and Edge Gateways. + +Whether you know it or not, you are likely to have used Envoy Proxy if you have used a modern application. + + +### Why Envoy? + +As on the ground microservice practitioners quickly realize, the majority of operational problems that arise when moving to a distributed architecture are ultimately grounded in two areas: networking and observability. It is simply an orders of magnitude larger problem to network and debug a set of intertwined distributed services versus a single monolithic application. + +Originally built at **Lyft**, Envoy is a high performance C++ distributed proxy designed for single services and applications, as well as a communication bus and "universal data plane" designed for large microservice "service mesh" architectures. + +Built on the learnings of solutions such as NGINX, HAProxy, hardware load balancers, and cloud load balancers, Envoy runs alongside every application and abstracts the network by providing common features in a platform-agnostic manner. When all service traffic in an infrastructure flows via an Envoy mesh, it becomes easy to visualize problem areas via consistent observability, tune overall performance, and add substrate features in a single place. diff --git a/site/content/pages/gateway.md b/site/content/pages/gateway.md new file mode 100644 index 0000000000000..84e002e5bdcc1 --- /dev/null +++ b/site/content/pages/gateway.md @@ -0,0 +1,13 @@ +--- +title: Envoy Gateway +slug: gateway +template: project +id: gateway +feature_adopters: true +--- + +### What is Envoy Gateway? + +Envoy Gateway is a control plane for Envoy Proxy that provides a simple and powerful way to configure Envoy Proxy for your applications. It is designed to be a lightweight, easy-to-use, and scalable control plane that can be used to configure Envoy Proxy for a wide variety of use cases. + +Envoy Gateway is an implementation of the Kubernetes Gateway API. You can use Envoy Gateway both in Kubernetes and in non-Kubernetes environments. diff --git a/site/content/pages/learn.md b/site/content/pages/learn.md new file mode 100644 index 0000000000000..efbaa73051f28 --- /dev/null +++ b/site/content/pages/learn.md @@ -0,0 +1,5 @@ +--- +title: Learn Envoy +slug: training +template: features +--- diff --git a/site/content/pages/mobile.md b/site/content/pages/mobile.md new file mode 100644 index 0000000000000..e65e9b8991f84 --- /dev/null +++ b/site/content/pages/mobile.md @@ -0,0 +1,12 @@ +--- +title: Envoy Mobile +slug: mobile +template: project +id: mobile +--- + +### What is Envoy Mobile? + +Envoy Mobile brings the power and consistency of Envoy Proxy to the iOS and Android platforms, providing a ubiquitous API and abstraction for mobile application networking. + +Running Envoy on the phone, at the edge, and within the datacenter provides unparalleled networking functionality and observability to modern distributed applications. diff --git a/site/content/pages/training.html b/site/content/pages/training.html deleted file mode 100644 index 67b78995cc20e..0000000000000 --- a/site/content/pages/training.html +++ /dev/null @@ -1,35 +0,0 @@ -{% extends "content.html" %} -{% set active_page = "training" %} - -{% block content %} -

Training available for Envoy Proxy

-
-
- {% for resource in TRAINING %} -
- -

{{ resource.description }}

-

- Sign up for the free course › - {% if resource.github %} -  |  - Github - {% endif %} -

-

- {% endfor %} -
-
-{% endblock content %} diff --git a/site/data/BUILD b/site/data/BUILD index 77c9bd2d9722b..d48bdbe7d25ca 100644 --- a/site/data/BUILD +++ b/site/data/BUILD @@ -5,7 +5,7 @@ exports_files(["nav.yaml"]) pkg_files( name = "yaml_files", - srcs = glob(["*.yaml"]) + ["@envoy_archive//:versions.yaml"], + srcs = glob(["**/*.yaml"]) + ["@envoy_archive//:versions.yaml"], prefix = "data", strip_prefix = "", ) diff --git a/site/data/companies.yaml b/site/data/adopters.yaml similarity index 69% rename from site/data/companies.yaml rename to site/data/adopters.yaml index ee8c0af500a50..e68086a060d49 100644 --- a/site/data/companies.yaml +++ b/site/data/adopters.yaml @@ -1,64 +1,128 @@ - name: Airbnb logo: /images/logos/airbnb.svg + projects: + - envoy - name: Aws logo: /images/logos/aws.svg + projects: + - envoy - name: Booking.com logo: /images/logos/booking.svg + projects: + - envoy - name: Cookpad logo: /images/logos/cookpad.svg + projects: + - envoy - name: Databricks logo: /images/logos/databricks.svg + projects: + - envoy - name: Digital Ocean logo: /images/logos/digital-ocean.svg + projects: + - envoy - name: Dropbox logo: /images/logos/dropbox.svg + projects: + - envoy - name: Ebay logo: /images/logos/ebay.svg + projects: + - envoy - name: F5 logo: /images/logos/f5.svg + projects: + - envoy - name: Google logo: /images/logos/google.svg + projects: + - envoy - name: GO-JEK logo: /images/logos/gojek.svg + projects: + - envoy - name: Grubhub logo: /images/logos/grubhub.svg + projects: + - envoy - name: Ibm logo: /images/logos/ibm.svg + projects: + - envoy - name: Medium logo: /images/logos/medium.svg + projects: + - envoy - name: Microsoft logo: /images/logos/microsoft.svg + projects: + - envoy - name: Netflix logo: /images/logos/netflix.svg + projects: + - envoy - name: Pinterest logo: /images/logos/pinterest.svg + projects: + - envoy - name: Reddit logo: /images/logos/reddit.svg + projects: + - envoy - name: Salesforce.com logo: /images/logos/salesforce.svg + projects: + - envoy - name: Snapchat logo: /images/logos/snapchat.svg + projects: + - envoy - name: Stripe logo: /images/logos/stripe.svg + projects: + - envoy - name: Square logo: /images/logos/square.svg + projects: + - envoy - name: Tencent logo: /images/logos/tencent.svg + projects: + - envoy - name: Twilio logo: /images/logos/twilio.svg + projects: + - envoy - name: Uber logo: /images/logos/uber.svg + projects: + - envoy - name: United Security Providers logo: /images/logos/usp.svg + projects: + - envoy - name: Verizon logo: /images/logos/verizon.svg + projects: + - envoy - name: VMware logo: /images/logos/vmware.svg + projects: + - envoy - name: Vsco logo: /images/logos/vsco.svg + projects: + - envoy - name: Wise logo: /images/logos/wise.svg + projects: + - envoy - name: Yahoo Japan logo: /images/logos/yahoo-japan.svg + projects: + - envoy - name: Yelp logo: /images/logos/yelp.svg + projects: + - envoy diff --git a/site/data/ai-gateway/project.yaml b/site/data/ai-gateway/project.yaml new file mode 100644 index 0000000000000..20c465d9b5d67 --- /dev/null +++ b/site/data/ai-gateway/project.yaml @@ -0,0 +1,29 @@ +id: ai-gateway +name: Envoy AI Gateway +short_name: AI Gateway +website: https://gateway.envoyproxy.io +link: /ai-gateway +github: ai-gateway +image: /theme/images/ai-gateway.svg +weight: 5 +show_stars: true +description: | + Envoy AI Gateway helps you integrate GenAI services with your applications by enabling you to handle GenAI traffic with Envoy Gateway. + +capabilities: +- title: Control client LLM token usage + icon: api + description: | + With Envoy AI Gateway you can enforce control of client LLM token usage, by client IP address, Client ID, API Key, or other requestattributes. +- title: Unfiied LLM Chat API + icon: api + description: | + Simplify the integration of LLM services with your applications by providing a unified API for all LLM services. +- title: Extensible for your use cases + icon: api + description: | + Envoy AI Gateway is designed to be extensible, so you can add your own custom logic to handle your specific use cases. Leveraging Envoy's extensible architecture, you can easily add your own custom logic to handle your specific use cases. +- title: Upstream target authentication + icon: api + description: | + Separate client to gateway authentication from gateway to upstream target authentication. Remove the need for your client applications to handle separate credentials for each upstream target, and instead handle a single set of credentials for the gateway. diff --git a/site/data/community.yaml b/site/data/community.yaml new file mode 100644 index 0000000000000..facac9c73a95c --- /dev/null +++ b/site/data/community.yaml @@ -0,0 +1,161 @@ + +- name: Alibaba Cloud Native Gateway + logo: /images/logos/alibaba-cloud.svg + learn_more: https://www.alibabacloud.com/help/en/mse/product-overview/cloud-native-gateway-overview + type: commercial + description: | + Alibaba Cloud Native Gateway is a cloud product based on Envoy and is also the commercial version of Higress. + +- name: Datawire + logo: /images/logos/datawire.svg + learn_more: https://aws.amazon.com/app-mesh/ + type: commercial + description: | + Datawire's open source toolkit empowers developers to adopt a cloud-native development workflow for Kubernetes services. + +- name: Grey Matter + logo: /images/logos/grey-matter.svg + learn_more: https://www.greymatter.io/ + type: commercial + description: | + Grey Matter is a cloud-native, cloud agnostic intelligent service mesh pathway for enterprise transformation and cost control. + +- name: Instana + logo: /images/logos/instana.svg + learn_more: http://www.instana.com + type: commercial + description: | + Instana is the Application Performance Management solution for modern dynamic applications, using automation and AI to manage their service quality. + +- name: Solo.io + logo: /images/logos/solo.svg + learn_more: http://www.solo.io + type: commercial + description: | + Solo.io develops tools to help the enterprise adopt innovative cloud technologies and maximize their benefits. + +- name: Tetrate + logo: /images/logos/tetrate.svg + learn_more: http://www.tetrate.io + type: commercial + description: | + Tetrate is an enterprise service mesh company, started by Istio founders, to manage the complexity of modern, hybrid cloud application infrastructure. Its flagship product, Tetrate Service Bridge, provides consistent, baked-in observability, runtime security and traffic management in any environment. + +- name: Cloud Foundry + logo: /images/logos/cloudfoundry.svg + learn_more: https://cloudfoundry.org + source_code: https://github.com/cloudfoundry + type: oss + description: | + Cloud Foundry is the industry standard cloud application platform that abstracts away infrastructure so you can focus on app innovation. + +- name: Consul + logo: /images/logos/consul.svg + learn_more: https://www.consul.io/docs/guides/connect-envoy.html + source_code: https://github.com/hashicorp/consul + type: oss + description: | + The Consul Connect service mesh offers first-class support for using Envoy as a proxy. + + +- name: Contour + logo: /images/logos/contour.svg + learn_more: https://projectcontour.io/ + source_code: https://github.com/projectcontour/contour + type: cncf + projects: + - envoy-proxy + description: | + Contour is an Ingress controller for Kubernetes that works by deploying the Envoy proxy as a reverse proxy and load balancer. Unlike other Ingress controllers, Contour supports dynamic configuration updates out of the box while maintaining a lightweight profile. + +- name: Enroute + logo: /images/logos/enroute.svg + learn_more: https://getenroute.io + source_code: https://github.com/saarasio/enroute + type: oss + description: | + Enroute Universal Gateway is an Open-Source Envoy powered Cloud-Native API Gateway created for Kubernetes Ingress and Standalone deployments + +- name: func-e + logo: /images/logos/func-e.svg + learn_more: https://func-e.io + source_code: https://github.com/tetratelabs/func-e + type: oss + description: | + func-e makes running Envoy easy. func-e (pronounced funky) allows you to quickly see available versions of Envoy and try them out. This makes it easy to validate configuration you would use in production. + + +- name: Gloo Gateway + logo: /images/logos/gloo-gateway.svg + learn_more: https://docs.solo.io/gloo-edge/latest/ + source_code: https://github.com/solo-io/gloo + type: oss + description: | + Gloo Gateway is an open-source function gateway built on top of the Envoy Proxy. Gloo Edge provides a unified entry point for access to all services and serverless functions, translating from any interface spoken by a client to any interface spoken by a backend. + +- name: Gloo Mesh + logo: /images/logos/gloo-mesh.svg + learn_more: https://www.solo.io/products/gloo-mesh/ + source_code: solo-io/gloo-mesh + type: oss + description: | + Gloo Mesh delivers connectivity, security, observability, and reliability for Kubernetes, VMs, and microservices spanning single cluster to multi-cluster, hybrid environments, plus production support for Istio. + +- name: Higress + logo: /images/logos/higress.svg + learn_more: https://higress.io/en-us/ + source_code: alibaba/higress + type: oss + description: | + Higress is an open-source cloud-native gateway built on top of Envoy Proxy and Istio. Higress can perform discovery from various service registries, such as Nacos, ZooKeeper, Consul, Eureka, etc. Higress can also function as a feature-rich Kubernetes ingress controller, which is compatible with many annotations of Nginx ingress controller. + +- name: Kuma + logo: /images/logos/kuma.svg + learn_more: https://www.kuma.io + source_code: https://github.com/kumahq/kuma + type: oss + description: | + Kuma is a platform agnostic open-source control plane for Service Mesh and Microservices. It can run and be operated natively across both Kubernetes and VM environments, making it easy to adopt by every team in the organization. + +- name: Cilium + logo: /images/logos/cilium.svg + learn_more: https://github.com/cilium/cilium + source_code: https://github.com/cilium/cilium + type: cncf + projects: + - envoy-proxy + description: | + Cilium is open source software for providing and transparently securing network connectivity and loadbalancing between application workloads such as application containers or processes. + +- name: Contour + logo: /images/logos/contour.svg + learn_more: https://projectcontour.io/ + source_code: https://github.com/projectcontour/contour + type: cncf + projects: + - envoy-proxy + description: | + Contour is an Ingress controller for Kubernetes that works by deploying the Envoy proxy as a reverse proxy and load balancer. Unlike other Ingress controllers, Contour supports dynamic configuration updates out of the box while maintaining a lightweight profile. + +- name: Emissary Ingress + logo: /images/logos/emissary-ingress.svg + learn_more: https://www.getambassador.io/ + source_code: https://github.com/emissary-ingress/emissary + type: cncf + projects: + - envoy-proxy + tags: + - oss + - gateway + description: | + Emissary Ingress is an open source Kubernetes-native API gateway for microservices built on the Envoy Proxy. + +- name: Istio + logo: /images/logos/istio.svg + learn_more: https://istio.io + source_code: https://github.com/istio/istio + type: cncf + projects: + - envoy-proxy + description: | + The Istio service mesh extends Kubernetes to establish a programmable, application-aware network using Envoy. Working with both Kubernetes and traditional workloads, Istio brings standard, universal traffic management, telemetry, and security to complex deployments. diff --git a/site/data/courses.yaml b/site/data/courses.yaml new file mode 100644 index 0000000000000..fa81c5e7e3d91 --- /dev/null +++ b/site/data/courses.yaml @@ -0,0 +1,32 @@ + +- name: Envoy Basics + provider: Solo.io + logo: /images/logos/solo-academy.svg + learn_more: https://academy.solo.io/learn/courses/81/envoy-basics + cta: Access free course + project: envoy + description: | + The course introduces Envoy, its key features, and its role in connecting modern cloud-native applications. + Participants will gain an understanding of Envoy and explain how it fits into Cloud-native and microservices architectures. + +- name: Envoy Fundamentals + provider: Tetrate + logo: /images/logos/envoy-fundamentals-logo.svg + learn_more: https://academy.tetrate.io/courses/envoy-fundamentals + cta: Access free course + project: envoy + description: | + The course offers a comprehensive tour of Envoy Proxy, complete with concept explanations, labs, and quizzes. After passing the quizzes in the course you get a completion certificate to showcase at the end. + + Suitable for beginners to train in Envoy and experts to refresh their skills. + +- name: Envoy Gateway Fundamentals + provider: Tetrate + logo: /images/logos/tetrate-academy.png + learn_more: https://academy.tetrate.io/courses/envoy-gateway-fundamentals + cta: Access free course + project: gateway + description: | + Tetrate presents Envoy fundamentals, the easiest way to learn Envoy. Envoy is an open-source edge and service proxy that is a key part of modern, cloud-native applications. + + This free course provides a comprehensive, eight-part tour of Envoy with concept text, labs, and quizzes. diff --git a/site/data/envoy/envoy.yaml b/site/data/envoy/envoy.yaml new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/site/data/envoy/project.yaml b/site/data/envoy/project.yaml new file mode 100644 index 0000000000000..e9b4f0c0cbba7 --- /dev/null +++ b/site/data/envoy/project.yaml @@ -0,0 +1,35 @@ +id: envoy +name: Envoy +short_name: Envoy +link: /envoy +docs: /docs/envoy/ +github: envoy +image: /theme/images/envoy-icon.svg +show_stars: true +weight: 0 +description: | + Take control over your traffic. + + Envoy is an edge and service proxy, designed for cloud-native applications, providing powerful traffic management, routing, observability, and extensibility features. + +capabilities: +- title: Out of process architecture + icon: architecture + description: | + Envoy is a self contained, high performance server with a small memory footprint. It runs alongside any application language or framework. +- title: HTTP/2 and gRPC support + icon: http + description: | + Envoy has first class support for HTTP/2 and gRPC for both incoming and outgoing connections. It is a transparent HTTP/1.1 to HTTP/2 proxy. +- title: Advanced load balancing + icon: alt_route + description: | + Envoy supports advanced load balancing features including automatic retries, circuit breaking, global rate limiting, request shadowing, zone local load balancing, etc. +- title: APIs for configuration + icon: tune + description: | + Envoy provides robust APIs for dynamically managing its configuration. +- title: Observability + icon: monitoring + description: | + Deep observability of L7 traffic, native support for distributed tracing, and wire-level observability of MongoDB, DynamoDB, and more. diff --git a/site/data/projects.yaml b/site/data/envoy/projects.yaml similarity index 100% rename from site/data/projects.yaml rename to site/data/envoy/projects.yaml diff --git a/site/data/quotes.yaml b/site/data/envoy/quotes.yaml similarity index 100% rename from site/data/quotes.yaml rename to site/data/envoy/quotes.yaml diff --git a/site/data/gateway/project.yaml b/site/data/gateway/project.yaml new file mode 100644 index 0000000000000..0f21b1afb1d4f --- /dev/null +++ b/site/data/gateway/project.yaml @@ -0,0 +1,32 @@ +id: gateway +name: Envoy Gateway +short_name: Gateway +website: https://gateway.envoyproxy.io +link: /gateway +github: gateway +docs: https://gateway.envoyproxy.io/docs/ +image: /theme/images/envoy-gateway.svg +weight: 3 +show_stars: true +description: | + Aimed at making it easy to adopt, use, and manage Envoy Proxy at the edge. + + Envoy Gateway manages Envoy Proxy as a Standalone or Kubernetes-based API Gateway, implementing and extending the Kubernetes Gateway API. + +capabilities: +- title: Use Envoy Proxy as an API Gateway + icon: api + description: | + Makes it easy to leverage Envoy Proxy as a Kubernetes Gateway. Envoy Gateway implements the Kubernetes Gateway API, and extends it to make it easy to leverage advanced Envoy features, without knowing details of Envoy proxy. +- title: Security controls made easy + icon: security + description: | + Leverage the Envoy Gateway Security Policy to enforce security controls including mTLS, JWT based access control, OIDC integration, API Key based authorization, and more. +- title: Manage traffic + icon: alt_route + description: | + Envoy Gateway supports advanced traffic management and control features including rate limiting, retry policies, circuit breaking, timeouts, failover, and more. +- title: Observability + icon: monitoring + description: | + Envoy Gateway provides a rich set of observability features including metrics, access logging, distributed tracing, and more. diff --git a/site/data/mobile/project.yaml b/site/data/mobile/project.yaml new file mode 100644 index 0000000000000..dff2e99fbba94 --- /dev/null +++ b/site/data/mobile/project.yaml @@ -0,0 +1,27 @@ +id: mobile +name: Envoy Mobile +short_name: Mobile +website: https://envoymobile.io +xlink: /mobile +github: envoy +github_path: /tree/main/mobile +docs: https://envoymobile.io/docs +image: /theme/images/envoy-mobile.svg +weight: 10 +show_stars: false +description: | + Envoy Mobile brings the power and consistency of Envoy Proxy to the iOS and Android platforms, providing a ubiquitous API and abstraction for mobile application networking. + +capabilities: +- title: Protocols + icon: http + description: | + Cutting edge protocol support including QUIC/HTTP3, TLS 1.3, gRPC streaming, as well as Protobuf IDL driven annotations for advanced networking features including offline/deferred API calls, caching, low connectivity adaptation, and more. +- title: Traffic management + icon: alt_route + description: | + Envoy's industry leading traffic management features on mobile, including retry policies, circuit breaking, timeouts, as well as the full power of xDS dynamic routing, configuration, and policy management. +- title: Observability + icon: monitoring + description: | + Metrics, logging, distributed tracing, API grouping for aggregate observability of end-user application flows, traffic tapping/recording, and real-time debugging. diff --git a/site/data/pages.yaml b/site/data/pages.yaml new file mode 100644 index 0000000000000..602e531b09fb1 --- /dev/null +++ b/site/data/pages.yaml @@ -0,0 +1,35 @@ + +training: + sections: + envoy: Envoy training + gateway: Envoy Gateway training + data: courses + match_on: project + style: community-features + +community: + sections: + cncf: CNCF projects + oss: Open source software + commercial: Commercial software & services + data: community + match_on: type + style: community-features + +docs/envoy: + sections: + latest: + title: Latest stable version + description: Most recent stable release docs. + stable: + title: Stable versions + description: Docs for other stable releases currently supported by the Envoy project. + development: + title: Development version + description: Latest docs from current development. + archived: + title: Archived versions + description: Historical docs from releases that are no longer supported. + data: community + match_on: type + style: community-features diff --git a/site/data/socials.yaml b/site/data/socials.yaml new file mode 100644 index 0000000000000..4351ce09a484f --- /dev/null +++ b/site/data/socials.yaml @@ -0,0 +1,3 @@ + +LinkedIn: https://www.linkedin.com/company/envoy-cloud-native/ +Reddit: https://www.reddit.com/r/EnvoyProxy/ diff --git a/site/pelicanconf.py b/site/pelicanconf.py index 029e81b7f8d54..1ad81f9b3b8ab 100644 --- a/site/pelicanconf.py +++ b/site/pelicanconf.py @@ -20,6 +20,8 @@ FILENAME_METADATA = r"(?P.*)" NOW = datetime.now() PATH = "content" +PAGE_PATHS = ["pages"] +PAGE_SAVE_AS = "{slug}/index.html" PLUGINS = ["pelican.plugins.webassets"] SITENAME = "Envoy proxy" SITEURL = "https://www.envoyproxy.io" @@ -28,14 +30,26 @@ "assets", ] TEMPLATE_PAGES = { - "pages/community.html": "community.html", - "pages/docs.html": "docs.html", - "pages/training.html": "training.html"} + "pages/docs.html": "docs.html"} THEME = "theme" TIMEZONE = "Europe/London" -for yaml_file in pathlib.Path("data").glob("*.yaml"): - locals()[yaml_file.stem.upper()] = yaml.safe_load(yaml_file.read_text()) +PROJECTS = {} +SITE = {} + + +def nested_dict(d, keys): + for key in keys: + d = d.setdefault(key, {}) + return d + + +for yaml_file in pathlib.Path("data").glob("**/*.yaml"): + *dirs, filename = yaml_file.parts[1:] + if not dirs: + SITE[yaml_file.stem] = yaml.safe_load(yaml_file.read_text()) + continue + nested_dict(PROJECTS, dirs)[yaml_file.stem] = yaml.safe_load(yaml_file.read_text()) LATEST_VERSION = max( chain.from_iterable( @@ -52,3 +66,18 @@ AUTHOR_FEED_ATOM = None AUTHOR_FEED_RSS = None DEFAULT_PAGINATION = False + +# JINJA2CONTENT_TEMPLATES = "theme/templates" + +WEBASSETS_BUNDLES = ( + ('envoy_css', ['css/main.scss'], + {'filters': 'libsass', + 'output': 'css/main.css', + 'debug': True}), +) + +WEBASSETS_CONFIG = [ + ("auto_build", True), + ("clean_output", True), + ("url_expire", False), +] diff --git a/site/theme/css/BUILD b/site/theme/css/BUILD index 3df3f1364f466..1a37322514ad4 100644 --- a/site/theme/css/BUILD +++ b/site/theme/css/BUILD @@ -1,14 +1,6 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_filegroup", "pkg_files") load("@rules_pkg//pkg:pkg.bzl", "pkg_tar") -pkg_files( - name = "scss", - srcs = ["@com_github_twbs_bootstrap//:scss"], - prefix = "theme/css/_sass/vendor/bootstrap", - strip_prefix = "scss", - visibility = ["//visibility:public"], -) - pkg_files( name = "css_files", srcs = glob(["**/*css"]), @@ -21,7 +13,6 @@ pkg_filegroup( name = "css", srcs = [ ":css_files", - ":scss", ], visibility = ["//visibility:public"], ) diff --git a/site/theme/css/_partials.scss b/site/theme/css/_partials.scss new file mode 100644 index 0000000000000..79829fc43d5bc --- /dev/null +++ b/site/theme/css/_partials.scss @@ -0,0 +1,5 @@ +@import "abstracts"; +@import "base"; +@import "layouts"; +@import "components"; +@import "pages"; diff --git a/site/theme/css/abstracts/_functions.scss b/site/theme/css/abstracts/_functions.scss new file mode 100644 index 0000000000000..0e91c1e91e36b --- /dev/null +++ b/site/theme/css/abstracts/_functions.scss @@ -0,0 +1,108 @@ +@import "variables"; + +// Color functions +@function tint($color, $percentage) { + @return mix(#fff, $color, $percentage); +} + +@function shade($color, $percentage) { + @return mix(#000, $color, $percentage); +} + +// Map deep get +@function map-deep-get($map, $keys...) { + @each $key in $keys { + $map: map-get($map, $key); + } + @return $map; +} + +// Z-index management +$z-indexes: ( + modal: 1000, + overlay: 900, + dropdown: 800, + header: 700, + footer: 600 +); + +@function z($key) { + @return map-get($z-indexes, $key); +} + +// Unit conversion +@function strip-unit($number) { + @if type-of($number) == 'number' and not unitless($number) { + @return ($number / 1); + } + @return $number; +} + +// Convert pixels to rem +@function rem($pixels) { + @return ($pixels / 16) * 1rem; +} + +@function em($pixels, $context: 16) { + $em: strip-unit($pixels) / strip-unit($context); + @return #{$em}em; +} + +// String replacement +@function str-replace($string, $search, $replace: '') { + $index: str-index($string, $search); + + @if $index { + @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace); + } + + @return $string; +} + +// Math functions +@function pow($number, $exponent) { + $value: 1; + + @if $exponent > 0 { + @for $i from 1 through $exponent { + $value: $value * $number; + } + } @else if $exponent < 0 { + @for $i from 1 through -$exponent { + $value: $value / $number; + } + } + + @return $value; +} + +// Color contrast +@function color-contrast($color) { + $r: red($color); + $g: green($color); + $b: blue($color); + + $yiq: ($r * 299) + ($g * 587) + ($b * 114) / 1000; + + @return if($yiq >= 128, #000, #fff); +} + +// Get value from breakpoints +@function breakpoint($key) { + @return map-get($breakpoints, $key); +} + +// Get spacing value +@function spacing($key) { + @return map-get($spacing, $key); +} + +// Get color value +@function color($key) { + @return map-get($colors, $key); +} + +// Get font-size value +@function font-size($key) { + @return map-get($font-sizes, $key); +} diff --git a/site/theme/css/abstracts/_index.scss b/site/theme/css/abstracts/_index.scss new file mode 100644 index 0000000000000..2a16f07784e7e --- /dev/null +++ b/site/theme/css/abstracts/_index.scss @@ -0,0 +1,3 @@ +@import "variables"; +@import "functions"; +@import "mixins"; diff --git a/site/theme/css/abstracts/_mixins.scss b/site/theme/css/abstracts/_mixins.scss new file mode 100644 index 0000000000000..4119987c29ccb --- /dev/null +++ b/site/theme/css/abstracts/_mixins.scss @@ -0,0 +1,49 @@ +@import "variables"; + +// Media Queries +@mixin respond-to($breakpoint) { + @if $breakpoint == 'large' { + @media screen and (min-width: #{map-get($breakpoints, large)}) { + @content; + } + } @else if $breakpoint == 'medium' { + @media screen and (min-width: #{map-get($breakpoints, small)}) and (max-width: #{map-get($breakpoints, large) - 1}) { + @content; + } + } @else if $breakpoint == 'small' { + @media screen and (max-width: #{map-get($breakpoints, small) - 1}) { + @content; + } + } +} + +// Flexbox +@mixin flex($direction: row, $justify: center, $align: center, $gap: 0) { + display: flex; + flex-direction: $direction; + justify-content: $justify; + align-items: $align; + @if $gap != 0 { + gap: $gap; + } +} + +// Typography +@mixin font-size($size, $line-height: 1.5) { + font-size: map-get($font-sizes, $size); + line-height: $line-height; +} + +// Gradients +@mixin gradient($gradient) { + $gradient-map: map-get($gradients, $gradient); + background-image: linear-gradient(0deg, map-get($gradient-map, start), map-get($gradient-map, end)); +} + +// Cards +@mixin card($padding: map-get($spacing, md), $radius: 16px) { + background-color: map-get($colors, background); + border-radius: $radius; + padding: $padding; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} diff --git a/site/theme/css/abstracts/_variables.scss b/site/theme/css/abstracts/_variables.scss new file mode 100644 index 0000000000000..b60d9b5712267 --- /dev/null +++ b/site/theme/css/abstracts/_variables.scss @@ -0,0 +1,81 @@ +// Typography +$font-family-base: "Nunito", "Open Sans", "Helvetica Neue", sans-serif; +$font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; +$dark-text: #2b0b3e!default; +$font-sizes: ( + small: 0.8rem, + base: 1rem, + h1: 3rem, + h2: 3rem, + h3: 2.2rem, + h4: 1.8rem, + h5: 1.5rem, + page-title: 6rem +); + +// Colors +$colors: ( + primary: #6c1899, + light-text: #fff, + secondary: #DC3AA7, + tertiary: #2b0b3e, + text: #606c71, + text-light: #819198, + background: #fff, + border: #dce6f0, + code: #567482, + success: #4caf50, + info: #4983da, + body-link: #DC3AA7, + light-purple: #eaeef6, + header-pink: #ead5ea, + footer-link: #ff6cce, + footer-details: #bca8c8, + section-headings: #43105F, + blockquote-text: #819198, + footer-bg: #2b0b3e, + pill-dark-bg: #2b0b3e, + code-bg: #f3f6fa, + table-border: #e9ebec, + hr-border: #eff0f1 +); + +// Gradients +$gradients: ( + header: ( + start: #2b0b3e, + end: #6c1899 + ), + project: ( + start: #dfaadf, + end: #ead5ea + ) +); + +// Breakpoints +$breakpoints: ( + small: 768px, // Mobile breakpoint + medium: 1024px, // Tablet breakpoint + large: 1280px // Desktop breakpoint +); + +// Spacing +$spacing: ( + xxs: 0.25rem, + xs: 0.5rem, + sm: 1rem, + md: 2rem, + lg: 3rem, + xl: 4rem, + xxl: 7rem +); + +// Layout +$container-max-width: 84rem; +$header-height: 4rem; + +// Z-index +$z-layers: ( + header: 1000, + modal: 2000 +); diff --git a/site/theme/css/base/_index.scss b/site/theme/css/base/_index.scss new file mode 100644 index 0000000000000..6d7b420989d32 --- /dev/null +++ b/site/theme/css/base/_index.scss @@ -0,0 +1,3 @@ +@import "reset"; +@import "typography"; +@import "utilities"; diff --git a/site/theme/css/base/_reset.scss b/site/theme/css/base/_reset.scss new file mode 100644 index 0000000000000..8b1e9c467edf9 --- /dev/null +++ b/site/theme/css/base/_reset.scss @@ -0,0 +1,38 @@ +@import "../abstracts"; + +// Global reset +*, *::before, *::after { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + padding: 3.5rem 0 0 0; + margin: 0; + font-family: $font-family-base; + font-size: font-size('base'); + line-height: 1.5; + color: color('text'); + height: 100%; +} + +img { + max-width: 100%; + height: auto; +} + +a { + color: map-get($colors, primary); + text-decoration: none; + + &:hover { + text-decoration: underline; + } +} + +// Preserve existing normalize.css rules that are still needed +article, aside, details, figcaption, figure, +footer, header, hgroup, main, menu, nav, section { + display: block; +} diff --git a/site/theme/css/base/_typography.scss b/site/theme/css/base/_typography.scss new file mode 100644 index 0000000000000..1efe949e87d66 --- /dev/null +++ b/site/theme/css/base/_typography.scss @@ -0,0 +1,176 @@ +@import "../abstracts"; + +// Import fonts +@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap'); +@import url('https://fonts.googleapis.com/css?family=Nunito:400,500,600,700,800'); +@import url('https://fonts.googleapis.com/css?family=Fleur+De+Leah:400'); + +// Base Typography +html { + font-size: rem(16); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +body { + font-family: $font-family-base; + font-weight: 400; + line-height: 1.5; + color: color('text'); + margin: 0; + height: 100%; +} + +// Headings +h1, h2, h3, h4, h5, h6 { + margin: 0 0 map-get($spacing, sm); + font-family: $font-family-base; + font-weight: 800; + line-height: 1.2; +} + +h1 { + font-size: font-size('h1'); + margin-bottom: spacing('sm'); + + @include respond-to(small) { + font-size: calc(#{font-size('h1')} * 0.85); + } +} + +h2 { + font-size: map-get($font-sizes, h2); + + @include respond-to(small) { + font-size: calc(#{map-get($font-sizes, h2)} * 0.85); + } +} + +h3 { + font-size: map-get($font-sizes, h3); + + @include respond-to(small) { + font-size: calc(#{map-get($font-sizes, h3)} * 0.85); + } +} + +// Paragraphs +p { + margin-bottom: map-get($spacing, md); + + &:last-child { + margin-bottom: 0; + } +} + +// Links +a { + color: color('body-link'); + text-decoration: none; + transition: color 0.2s ease; + + &:hover { + color: color('primary'); + text-decoration: none; + } +} + +// Lists +ul, ol { + margin: 0 0 map-get($spacing, xs) map-get($spacing, xs); + + li { + margin-bottom: map-get($spacing, xs); + } +} + +// Code +code { + font-family: monospace; + background-color: map-get($colors, code-bg); + color: map-get($colors, code-text); + padding: 0.2em 0.4em; + border-radius: 3px; + font-size: 85%; +} + +pre { + background-color: map-get($colors, code-bg); + padding: map-get($spacing, md); + border-radius: 4px; + overflow-x: auto; + + code { + padding: 0; + background-color: transparent; + } +} + +// Section Headings +section > header { + margin-bottom: map-get($spacing, lg); + text-align: center; + + > a { + scroll-margin-top: 4rem; + } + + h2 { + margin-bottom: map-get($spacing, xs); + } + + h3 { + font-weight: 400; + color: map-get($colors, text); + } +} + +main > header { + h1, h2, nav { + color: color('section-headings'); + text-align: center; + } +} + + +// Text Utilities +.text-center { + text-align: center; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-small { + font-size: map-get($font-sizes, small); +} + +.text-large { + font-size: map-get($font-sizes, h3); +} + +.text-bold { + font-weight: 700; +} + +.text-normal { + font-weight: 400; +} + +// Special Text Styles +.pink-font { + color: map-get($colors, secondary); +} + +.highlighted { + background-color: lighten(map-get($colors, secondary), 35%); +} + +.features main > header { + margin: 1rem auto; +} diff --git a/site/theme/css/base/_utilities.scss b/site/theme/css/base/_utilities.scss new file mode 100644 index 0000000000000..cdfdf58553e86 --- /dev/null +++ b/site/theme/css/base/_utilities.scss @@ -0,0 +1 @@ +@import "../abstracts"; diff --git a/site/theme/css/components/_buttons.scss b/site/theme/css/components/_buttons.scss new file mode 100644 index 0000000000000..d89fe071d872c --- /dev/null +++ b/site/theme/css/components/_buttons.scss @@ -0,0 +1,142 @@ +@import "../abstracts/variables"; +@import "../abstracts/mixins"; +@import "../abstracts/functions"; + +// Base Button Styles + +.btn, +.button { + display: inline-block; + padding: spacing('sm') spacing('md'); + border-radius: rem(32); + border: none; + font-size: font-size('base'); + font-weight: 800; + cursor: pointer; + transition: all 0.2s ease-in-out; + text-decoration: none; + width: fit-content; + margin: 0; + margin-right: spacing('sm'); + + // Default (Primary) Button + background-color: rgba(179, 25, 171, 1); + color: color('light-text'); + + &:hover { + text-decoration: none; + background-color: rgb(139, 0, 132); + color: color('light-text'); + } + + // Icon within button + svg, + .link-icon { + width: rem(24); + height: rem(24); + fill: currentColor; + transition: transform 0.2s ease; + } + + &:last-child { + margin-right: 0; + } + + // Responsive styles + @include respond-to(large) { + padding: 1rem 2rem; + font-size: 1.2rem; + } + + @include respond-to(medium) { + padding: 0.6rem 0.9rem; + font-size: 0.9rem; + } + + @include respond-to(small) { + padding: 0.75rem; + font-size: 0.9rem; + } +} + +// Secondary Button Variant +.btn--secondary { + background-color: color('secondary'); + color: color-contrast(color('secondary')); + + &:hover { + background-color: shade(color('secondary'), 10%); + } +} + +// Outline Button Variant +.btn--outline { + background-color: transparent; + border: 2px solid color('primary'); + color: color('primary'); + + &:hover { + background-color: color('primary'); + color: color('background'); + } +} + +// Small Button Variant +.btn--small { + padding: spacing('xs') spacing('sm'); + font-size: font-size('small'); +} + +// Large Button Variant +.btn--large { + padding: spacing('md') spacing('lg'); + font-size: font-size('h3'); +} + +// Disabled State +.btn--disabled, +.btn:disabled { + opacity: 0.6; + cursor: not-allowed; + pointer-events: none; +} + +// Project Link Buttons (from project template) +.project-links { + @include flex(row, flex-start, center, spacing('sm')); + margin: spacing('sm') 0; + + a { + @include flex(row, center, center, spacing('xs')); + color: color('primary'); + font-size: font-size('small'); + text-decoration: none; + + &:hover { + color: color('secondary'); + } + + .link-icon { + transition: transform 0.2s ease; + } + } +} + +// Pills (Tags) +.pill { + display: inline-block; + padding: spacing('xs') spacing('sm'); + border-radius: rem(16); + font-size: font-size('small'); + font-weight: 600; + background-color: color('tertiary'); + color: color('background'); + + &.stable { + background-color: color('success'); + } + + &.release-number { + background-color: color('info'); + } +} diff --git a/site/theme/css/components/_cards.scss b/site/theme/css/components/_cards.scss new file mode 100644 index 0000000000000..62d0e0563b2c0 --- /dev/null +++ b/site/theme/css/components/_cards.scss @@ -0,0 +1,124 @@ +@import "../abstracts"; + +.card { + @include card; + + &--feature { + border-radius: rem(16); + box-shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25); + max-width: rem(350); + @include flex(column, space-between, center, spacing('md')); + padding: spacing('lg'); + + @include respond-to(medium) { + padding: spacing('md'); + max-width: rem(320); + } + + @include respond-to(small) { + padding: spacing('sm'); + max-width: rem(300); + } + } + + &__logo { + height: 17vh; + object-fit: contain; + padding: map-get($spacing, sm) map-get($spacing, md); + margin: auto; + @include flex; + + img { + max-height: 100%; + max-width: 100%; + } + } +} + +.features { + .cards { + @include flex(row, center, flex-start, spacing('lg')); + flex-wrap: wrap; + } + + .logo { + height: 10rem; + object-fit: contain; + padding: spacing('sm') spacing('md'); + margin: auto; + @include flex(row, center, center); + + img { + max-height: 100%; + max-width: 100%; + } + } + + .card { + border-radius: rem(16); + box-shadow: 0 rem(15) rem(30) rem(-5) rgba(color('primary'), 0.15); + max-width: rem(350); + @include flex(column, space-between, center, spacing('md')); + height: rem(640); // 40rem + + .tag { + display: inline-block; + padding: spacing('xxs') spacing('sm'); + border-radius: rem(4); + font-size: font-size('small'); + font-weight: 600; + margin: spacing('sm') 0; + text-transform: uppercase; + letter-spacing: 0.5px; + + &.oss { + background-color: rgba(76, 175, 80, 0.15); + color: #2E7D32; + } + + &.cncf { + background-color: rgba(50, 108, 229, 0.15); + color: #1A4FA0; + } + + &.commercial { + background-color: rgba(255, 152, 0, 0.15); + color: #E65100; + } + } + } + } + + +// Adopter cards specific styles +.adopter-card { + border: 1px solid map-get($colors, border); + text-align: center; + width: 10rem; + border-radius: 1rem; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + transition: all 0.2s ease; + + &:hover { + transform: translateY(-2px); + box-shadow: 0 15px 35px -15px rgba(color('secondary'), 0.4); + } + + .adopter-logo { + padding: map-get($spacing, md); + height: 8rem; + @include flex; + + img { + max-height: 5rem; + max-width: 7rem; + } + } + + .adopter-name { + border-bottom: 1px solid map-get($colors, border); + color: map-get($colors, text); + font-size: map-get($font-sizes, small); + padding: map-get($spacing, xs) 0; + } +} diff --git a/site/theme/css/components/_content.scss b/site/theme/css/components/_content.scss new file mode 100644 index 0000000000000..416d3a4c533d8 --- /dev/null +++ b/site/theme/css/components/_content.scss @@ -0,0 +1,153 @@ +@import "../abstracts"; + +.rich-content { + max-width: 70ch; // Optimal line length for readability + margin: 0 auto; + + // Headings + h1, h2, h3, h4, h5, h6 { + color: color('primary'); + margin: spacing('xl') 0 spacing('md'); + font-weight: 600; + line-height: 1.2; + + &:first-child { + margin-top: 0; + } + } + + h1 { font-size: map-get($font-sizes, 'h1'); } + h2 { font-size: map-get($font-sizes, 'h2'); } + h3 { font-size: map-get($font-sizes, 'h3'); } + h4 { font-size: map-get($font-sizes, 'h4'); } + h5 { font-size: map-get($font-sizes, 'h5'); } + h6 { font-size: map-get($font-sizes, 'h6'); } + + // Paragraphs and spacing + p { + margin: spacing('md') 0; + line-height: 1.6; + color: color('text'); + + &:first-child { + margin-top: 0; + } + + &:last-child { + margin-bottom: 0; + } + } + + // Lists + ul, ol { + margin: spacing('md') 0; + padding-left: spacing('xl'); + color: color('text'); + + li { + margin: spacing('xs') 0; + line-height: 1.6; + + &::marker { + color: color('primary'); + } + } + } + + // Emphasis and strong + em { + font-style: italic; + } + + strong { + font-weight: 800; + color: color('text-dark'); + } + + // Links + a { + color: color('primary'); + text-decoration: none; + border-bottom: 1px solid transparent; + transition: all 0.2s ease; + + &:hover { + color: color('secondary'); + border-bottom-color: currentColor; + } + } + + // Blockquotes + blockquote { + margin: spacing('lg') 0; + padding: spacing('md') spacing('lg'); + border-left: 4px solid color('primary'); + background: rgba(color('primary'), 0.05); + border-radius: 0 spacing('sm') spacing('sm') 0; + + p { + margin: 0; + font-style: italic; + color: color('text-dark'); + } + } + + // Code blocks + pre { + margin: spacing('lg') 0; + padding: spacing('md'); + background: color('code-bg'); + border-radius: spacing('sm'); + overflow-x: auto; + font-family: $font-family-mono; + font-size: map-get($font-sizes, 'sm'); + line-height: 1.5; + } + + code { + font-family: $font-family-mono; + font-size: 0.9em; + padding: spacing('xxs') spacing('xs'); + background: color('code-bg'); + border-radius: spacing('xxs'); + } + + // Horizontal rule + hr { + margin: spacing('xl') 0; + border: none; + height: 1px; + background: color('border'); + } + + // Tables + table { + width: 100%; + margin: spacing('lg') 0; + border-collapse: collapse; + + th, td { + padding: spacing('sm'); + border: 1px solid color('border'); + text-align: left; + } + + th { + background: rgba(color('primary'), 0.05); + font-weight: 600; + color: color('text-dark'); + } + + tr:nth-child(even) { + background: rgba(color('primary'), 0.02); + } + } + + // Images + img { + max-width: 100%; + height: auto; + border-radius: spacing('sm'); + margin: spacing('md') 0; + } +} diff --git a/site/theme/css/components/_index.scss b/site/theme/css/components/_index.scss new file mode 100644 index 0000000000000..11a82781deef0 --- /dev/null +++ b/site/theme/css/components/_index.scss @@ -0,0 +1,7 @@ +@import "buttons"; +@import "cards"; +@import "navigation"; +@import "loader"; +@import "releases"; +@import "quote"; +@import "content"; diff --git a/site/theme/css/components/_loader.scss b/site/theme/css/components/_loader.scss new file mode 100644 index 0000000000000..2b2146800de9f --- /dev/null +++ b/site/theme/css/components/_loader.scss @@ -0,0 +1,70 @@ +@import "../abstracts"; + +// Spinner Container +#spinner { + display: none; + justify-content: center; + align-items: center; +} + +// Loader Animation +.loader { + border: rem(4) solid color('background'); + border-top: rem(4) solid color('info'); + border-radius: 50%; + width: rem(22); + height: rem(22); + animation: spin 1s linear infinite; + margin: spacing('sm') auto; +} + +// Loading Text +.loading-text { + color: color('text'); + font-size: font-size('small'); + margin-left: spacing('sm'); +} + +// Spinner Animation +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + +// Overlay Loader Variant +.loader--overlay { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + z-index: z('overlay'); + + &::before { + content: ''; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(color('background'), 0.8); + z-index: z('overlay') - 1; + } +} + +// Small Loader Variant +.loader--small { + width: rem(16); + height: rem(16); + border-width: rem(2); +} + +// Large Loader Variant +.loader--large { + width: rem(32); + height: rem(32); + border-width: rem(6); +} diff --git a/site/theme/css/components/_navigation.scss b/site/theme/css/components/_navigation.scss new file mode 100644 index 0000000000000..991b7cab9bd33 --- /dev/null +++ b/site/theme/css/components/_navigation.scss @@ -0,0 +1,205 @@ +@import "../abstracts"; + +// Header Logo +.header-logo { + display: flex; + align-items: center; + z-index: 102; // Higher than menu overlay + + a { + display: block; + + img { + height: 2rem; + width: auto; + } + } +} + +// Main Navigation +.main-nav { + display: flex; + + @include respond-to(medium) { + display: none !important; // Force hide on medium screens + } + + @include respond-to(small) { + display: none !important; // Force hide on small screens + } + + ul { + list-style: none; + display: flex; + gap: 1.5rem; + margin: 0; + padding: 0; + align-items: center; + + li { + display: flex; + align-items: center; + + &.icon-links { + display: flex; + gap: 0.75rem; + margin-left: 0.5rem; + height: 1.75rem; + align-items: center; + } + + a { + color: #fff; + text-decoration: none; + font-weight: 700; + font-size: 1.25rem; + line-height: 1.75rem; + display: flex; + align-items: center; + + .link-icon { + width: 1.25rem; + height: 1.25rem; + } + + &:hover { + color: #f3c; + text-decoration: none; + } + } + } + } +} + +// Project Page Styles +.project-page { + .main-nav { + ul li a { + color: map-get($colors, tertiary); + + &:hover { + color: #f3c; + } + } + } +} + +// Menu Open State +.menuopen { + .main-nav { + display: flex !important; // Override the default hidden state + width: 100%; + background-color: map-get($colors, primary); + position: fixed; + top: 0; + left: 0; + padding: 3.2rem 0 1.5rem; + z-index: 100; + box-shadow: 0 0 rem(30) rem(5) rgba(color('primary'), 0.15); + + ul { + display: flex; + flex-direction: column; + gap: 0.4rem; + padding: 0.4rem 2rem; + width: 100%; + + li a { + color: #fff; // Force white text in mobile menu + } + } + } +} + +// Toggle Menu Button +#togglemenu { + display: none; + cursor: pointer; + z-index: 101; + + @include respond-to(medium) { + display: block; + } + + @include respond-to(small) { + display: block; + } + + > span { + display: inline-block; + margin-left: 0.4rem; + width: 1.5rem; + height: 1rem; + position: relative; + vertical-align: middle; + bottom: 1px; + + > span { + display: block; + position: absolute; + width: 100%; + height: 2px; + background: #fff; + transition: all 0.25s ease; + + &:nth-child(1) { + top: 0; + transform-origin: 50% 0%; + } + + &:nth-child(2) { + top: 50%; + margin-top: -1px; + } + + &:nth-child(3) { + bottom: 0; + transform-origin: 50% 100%; + } + } + } +} + +// Menu Open State Animations +.menuopen { + #togglemenu > span > span { + &:nth-child(1) { + animation: span1 0.25s forwards; + } + + &:nth-child(2) { + animation: span2 0.25s forwards; + } + + &:nth-child(3) { + animation: span3 0.25s forwards; + } + } +} + +// Animation Keyframes +@keyframes span1 { + 0% { top: 0%; transform-origin: 50% 50%; } + 50% { top: 50%; transform: rotate(0deg) translateY(-50%); } + 100% { top: 50%; transform: rotate(45deg) translateY(-50%); } +} + +@keyframes span2 { + 0% { opacity: 1; } + 45% { opacity: 1; } + 65% { opacity: 0; } + 100% { opacity: 0; } +} + +@keyframes span3 { + 0% { bottom: 0%; transform-origin: 50% 50%; } + 45% { bottom: 50%; transform: rotate(0deg) translateY(50%); } + 100% { bottom: 50%; transform: rotate(-45deg) translateY(50%); } +} + +// Project Page Specific Styles +.project-page { + #togglemenu > span > span { + background: map-get($colors, tertiary); + } +} diff --git a/site/theme/css/components/_quote.scss b/site/theme/css/components/_quote.scss new file mode 100644 index 0000000000000..5ab1d25606585 --- /dev/null +++ b/site/theme/css/components/_quote.scss @@ -0,0 +1,93 @@ +@import "../abstracts"; + +.quotes-grid { + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: spacing('xl'); +} + +.quote { + display: flex; + justify-content: center; + align-items: center; + padding: spacing('lg'); + + .quote-container { + position: relative; + width: 100%; + background: white; + border-radius: 16px; + padding: spacing('xl'); + box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15); + transition: transform 0.2s ease, box-shadow 0.2s ease; + + &:hover { + transform: translateY(-5px); + box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2); + } + + &::before { + content: '"'; + font-family: "Fleur De Leah", serif; + font-weight: 400; + font-style: normal; + position: absolute; + top: -30px; + left: -20px; + font-size: 12rem; + color: color('primary'); + opacity: 0.5; + line-height: 1; + } + } + + .quote-content { + position: relative; + font-size: map-get($font-sizes, 'h5'); + line-height: 1.6; + color: color('text'); + margin-bottom: spacing('lg'); + font-weight: 400; + + @include respond-to(small) { + font-size: map-get($font-sizes, 'base'); + } + } + + .quote-author { + display: flex; + align-items: center; + gap: spacing('md'); + margin-top: spacing('lg'); + padding-top: spacing('md'); + border-top: 1px solid color('border'); + + .author-image { + width: 50px; + height: 50px; + border-radius: 50%; + overflow: hidden; + border: 2px solid color('primary'); + + img { + width: 100%; + height: 100%; + object-fit: cover; + } + } + + .author-info { + .name { + font-weight: 600; + color: color('primary'); + font-size: map-get($font-sizes, 'h5'); + margin: 0; + } + + .title { + color: color('text-light'); + font-size: map-get($font-sizes, 'sm'); + margin: spacing('xxs') 0 0; + } + } + } +} diff --git a/site/theme/css/components/_releases.scss b/site/theme/css/components/_releases.scss new file mode 100644 index 0000000000000..831d344e533a9 --- /dev/null +++ b/site/theme/css/components/_releases.scss @@ -0,0 +1,166 @@ +@import "../abstracts"; + +.release-grid { + + .show-releases { + background: none; + border: 1px solid #666; + border-radius: 4px; + padding: spacing('sm') spacing('md'); + cursor: pointer; + color: #666; + font-size: 0.9em; + margin-top: spacing('sm'); + transition: all 0.2s ease; + + &:hover { + background: #666; + color: white; + } + } + + .grid { + grid-template-columns: repeat(auto-fit, minmax(23rem, 23rem)); + } + + .version-group { + padding: spacing('sm'); + border-radius: 8px; + + .heading { + margin-top: 0; + font-size: map-get($font-sizes, 'h4'); + border-bottom: 1px solid #e0e0e0; + padding-bottom: spacing('sm'); + } + + p { + margin-bottom: spacing('xs'); + } + } + + .latest-release { + display: flex; + flex-direction: column; + gap: spacing('sm'); + } + + .release-list { + justify-content: flex-start; + height: 100%; + display: flex; + flex-direction: column; + gap: spacing('sm'); + list-style: none; + + .link-icon { + height: 1rem; + font-size: 1.2rem; + margin-right: 0; + } + } + + .release-item { + padding: spacing('xs') 0; + + a { + align-items: center; + gap: spacing('sm'); + } + } + + .release-link { + margin: 0; + display: flex; + justify-content: flex-start; + align-items: flex-start; + flex-direction: row; + gap: spacing('sm'); + + p { + margin: 0; + display: flex; + } + } + + .release-date { + margin: spacing('xs') 0 0; + color: #666; + font-weight: 600; + } + + .pill { + padding: spacing('xxs') spacing('xs'); + font-size: 0.5em; + margin-left: spacing('xs'); + margin-right: 0; + text-transform: uppercase; + font-weight: 700; + } + + .stable { + background: #4caf50; + border: 1px solid #4caf50; + color: white; + } + + .release-number { + background: transparent; + color: #666; + border: 1px solid #666; + } +} + +.toggle-wrapper { + display: flex; + align-items: center; + gap: spacing('sm'); + cursor: pointer; + transition: all 0.2s ease; + color: #666; + + &:hover { + color: color('secondary'); + + .toggle-releases { + border-color: color('secondary'); + transition: transform 0.2s ease; + + &::after { + border-right: 2px solid color('secondary'); + border-bottom: 2px solid color('secondary'); + } + } + } + + + .toggle-releases { + width: 32px; + height: 32px; + border-radius: 50%; + border: 2px solid color('primary'); + display: inline-flex; + align-items: center; + justify-content: center; + cursor: pointer; + position: relative; + background: transparent; + transition: all 0.2s ease; + + &::after { + content: ''; + width: 8px; + height: 8px; + border-right: 2px solid color('primary'); + border-bottom: 2px solid color('primary'); + transform: rotate(-45deg); + transition: transform 0.2s ease; + } + + + &.open::after { + transform: rotate(-135deg); + margin-top: 4px; + } + } +} diff --git a/site/theme/css/layouts/_footer.scss b/site/theme/css/layouts/_footer.scss new file mode 100644 index 0000000000000..31c576f83a0a2 --- /dev/null +++ b/site/theme/css/layouts/_footer.scss @@ -0,0 +1,118 @@ +@import "../abstracts"; + +footer { + background-color: map-get($colors, tertiary); + color: map-get($colors, light-purple); + padding: spacing('sm') spacing('sm'); + text-align: left; + + a { + text-decoration: none; + color: map-get($colors, footer-link); + + &:hover { + text-decoration: none; + } + } + + h3 { + color: map-get($colors, light-purple); + font-size: font-size('h5'); + } + + .row { + @include flex(row, flex-start, flex-start); + + @include respond-to(small) { + flex-direction: column; + } + } + + .column { flex: 100%; } + .column50 { flex: 50%; } + .column60 { flex: 60%; } + .column40 { flex: 40%; } + + .invite { + border-bottom: 1px solid #502868; + } + + .details { + font-size: font-size('small'); + color: map-get($colors, footer-details); + padding: spacing('sm') 0; + } + + .footer-top { + gap: spacing('lg'); + padding: spacing('sm') spacing('md'); + margin: 0 auto; + + @include respond-to(large) { + flex-direction: row; + @include flex(row, flex-start, flex-start); + max-width: 70rem; + } + + @include respond-to(medium) { + align-items: flex-start; + @include flex(row, flex-start, flex-start); + } + + @include respond-to(small) { + flex-direction: column; + } + + .quick-links { + list-style: none; + padding: 0; + justify-content: left; + + li { + margin: 0 spacing('sm'); + + a { + font-size: font-size('base'); + transition: color 0.3s ease; + + &:hover { + color: map-get($colors, body-link); + } + } + } + } + } + + form { + margin: spacing('sm') 0; + @include flex(column, flex-start, flex-start, spacing('xs')); + + + + input[type="email"] { + padding: spacing('sm') spacing('md'); + font-size: font-size('base'); + border: 1px solid map-get($colors, border); + border-radius: rem(32); + width: 250px; + max-width: 100%; + height: rem(48); + + &:focus { + border: 1px solid rgb(251, 5, 239); + outline: none; + } + } + + .btn { + padding: spacing('sm') spacing('md'); + font-size: font-size('base'); + height: rem(48); + min-width: rem(120); + } + } + + #response-message { + height: 3rem; + } +} diff --git a/site/theme/css/layouts/_grid.scss b/site/theme/css/layouts/_grid.scss new file mode 100644 index 0000000000000..e77fcd9ca4dd3 --- /dev/null +++ b/site/theme/css/layouts/_grid.scss @@ -0,0 +1,150 @@ +@import "../abstracts"; + +// Container +.container { + width: 100%; + max-width: $container-max-width; + margin: 0 auto; + padding: 0 spacing('lg'); + + @include respond-to(medium) { + padding: 0 spacing('md'); + } + + @include respond-to(small) { + padding: 0 spacing('sm'); + } +} + +// Grid System +.grid, +[class^="grid--"] { + display: grid; + gap: spacing('lg'); + align-items: start; + justify-content: center; + grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); + + @include respond-to(medium) { + gap: spacing('md'); + } + + @include respond-to(small) { + gap: spacing('sm'); + } +} + +.grid--1-cols { + grid-template-columns: repeat(1, max-content); +} + +.grid--2-cols { + grid-template-columns: repeat(2, 1fr); + + @include respond-to(small) { + grid-template-columns: 1fr; + } +} + +.grid--3-cols { + grid-template-columns: repeat(3, 1fr); + + @include respond-to(medium) { + grid-template-columns: repeat(2, 1fr); + } + + @include respond-to(small) { + grid-template-columns: 1fr; + } +} + +.grid--4-cols { + grid-template-columns: repeat(4, 1fr); + + @include respond-to(medium) { + grid-template-columns: repeat(2, 1fr); + } + + @include respond-to(small) { + grid-template-columns: 1fr; + } +} + +// Flex Grid (for existing layouts) +.row { + @include flex(row, space-between, center, map-get($spacing, md)); + width: 100%; + + @include respond-to(medium) { + flex-direction: column; + justify-content: center; + align-items: center; + padding: map-get($spacing, md) 0 map-get($spacing, lg) 0; + gap: map-get($spacing, lg); + } + + @include respond-to(small) { + flex-direction: column; + justify-content: center; + align-items: center; + padding: map-get($spacing, sm) 0 map-get($spacing, lg) 0; + gap: map-get($spacing, lg); + } +} + +.row-reverse { + @extend .row; + flex-direction: row-reverse; + + @include respond-to(medium) { + flex-direction: column; + } + + @include respond-to(small) { + flex-direction: column; + } +} + +// Specific Grids +.adopters-grid { + display: flex; + flex-wrap: wrap; + gap: map-get($spacing, md); + margin-top: map-get($spacing, md); + justify-content: center; +} + +.capabilities-grid { + align-items: stretch; +} +// Versions Grid + +.version-group { + @include card; + padding: map-get($spacing, md); +} + +ul.grid { + list-style: none; +} + +// Utility Classes +.flex-center { + @include flex(column, center, center); +} + +.flex-column { + @include flex(column); +} + +.gap-sm { + gap: map-get($spacing, sm); +} + +.gap-md { + gap: map-get($spacing, md); +} + +.gap-lg { + gap: map-get($spacing, lg); +} diff --git a/site/theme/css/layouts/_header.scss b/site/theme/css/layouts/_header.scss new file mode 100644 index 0000000000000..a395b77780ac4 --- /dev/null +++ b/site/theme/css/layouts/_header.scss @@ -0,0 +1,226 @@ +@import "../abstracts"; + +main > header { + + h1 { + color: color('primary'); + } + + > h1 { + color: color('primary'); + margin: 3rem auto; + } + + &#page-header { + color: color('light-text'); + + align-items: center; + @include gradient(header); + clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); + z-index: z('header'); + position: relative; + + @include respond-to(large) { + padding: spacing('xl') spacing('lg') spacing('xxl') spacing('lg'); + } + + @include respond-to(medium) { + padding: spacing('md') spacing('md') spacing('xl') spacing('md'); + clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); + } + + @include respond-to(small) { + padding: spacing('sm') spacing('sm') spacing('lg') spacing('sm'); + clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); + } + + h1 { + margin-top: 0; + margin-bottom: 1rem; + font-weight: 700; + color: color('light-text'); + + @include respond-to(large) { + font-size: 4rem; + line-height: 1; + } + + @include respond-to(medium) { + font-size: 3rem; + line-height: 1; + } + + @include respond-to(small) { + font-size: 2.8rem; + line-height: 1; + } + } + + .subheading { + margin-top: 0; + margin-bottom: 1rem; + font-weight: 500; + color: color('light-text'); + line-height: 1.2; + + @include respond-to(large) { + font-size: 1.25rem; + max-width: 36rem; + } + + @include respond-to(medium) { + font-size: 1.15rem; + max-width: 32rem; + } + + @include respond-to(small) { + font-size: 1rem; + max-width: 28rem; + } + } + + .container { + display: flex; + flex-direction: row; + align-items: start; + justify-content: flex-start; + + margin: 0 auto; + padding: 1rem 4rem 2rem 4rem; + + @include respond-to(large) { + max-width: 84rem; + gap: 2rem; + } + + @include respond-to(medium) { + flex-direction: row; + align-items: left; + padding: 1rem 2rem 2rem; + gap: 2rem; + } + + @include respond-to(small) { + flex-direction: column-reverse; + align-items: left; + padding: 1rem 1.5rem 1.5rem; + } + + hgroup.text { + padding: 2rem 0rem; + display: flex; + flex-direction: column; + align-items: flex-start; + + h1 { + text-align: left; + } + + @include respond-to(large) { + max-width: 50vw; + } + + @include respond-to(medium) { + padding: 2rem 0rem 0rem 0rem; + } + + @include respond-to(small) { + padding: 1rem 0rem 0rem 0rem; + } + } + + hgroup.logo { + margin: 0 auto; + + img { + width: 23rem; + height: auto; + display: block; + } + + @include respond-to(small) { + display: none; + } + } + } + + .header-actions { + display: flex; + flex-direction: row; + gap: 1rem; + margin: 0 auto; + max-width: 84rem; + width: 100%; + + @include respond-to(medium) { + justify-content: flex-start; + } + + @include respond-to(small) { + justify-content: flex-start; + flex-wrap: wrap; + } + + .btn { + margin: 0; // Override default button margin + } + } + } +} + +#page-nav { + + color: white; // Default text color + $header-gradient: map-get($gradients, header); + background-color: map-get($header-gradient, end); + position: fixed; // Fix header at the top + top: 0; + left: 0; + width: 100%; // Full-width header + z-index: 1000; // Ensure it stays above other content + + .header-container { + display: flex; + justify-content: space-between; // Align logo and nav on opposite sides + align-items: center; + // max-width: 1200px; // Set a max width for the container + margin: 0 auto; // Center the container + padding: 0.2rem 1rem; + } + + .header-logo { + img { + max-height: 40px; // Restrict logo size + width: auto; // Maintain aspect ratio + } + margin: 0.5rem 0; + } + + .main-nav { + display: flex; + + ul { + list-style: none; // Remove bullets + display: flex; // Inline navigation links + gap: 1.5rem; // Space between list items + margin: 0; + padding: 0; + align-items: flex-end; + + li { + a { + color: #fff; + text-decoration: none; + font-weight: 700; + font-size: 1.25rem; + line-height: 1.75rem; + + &:hover { + color: #f3c; // Highlight color on hover + text-decoration: n; // Add underline on hover + } + } + } + } + } +} diff --git a/site/theme/css/layouts/_index.scss b/site/theme/css/layouts/_index.scss new file mode 100644 index 0000000000000..d250c3c32e0b2 --- /dev/null +++ b/site/theme/css/layouts/_index.scss @@ -0,0 +1,4 @@ +@import "grid"; +@import "header"; +@import "footer"; +@import "section"; diff --git a/site/theme/css/layouts/_section.scss b/site/theme/css/layouts/_section.scss new file mode 100644 index 0000000000000..3ceab9f1a3052 --- /dev/null +++ b/site/theme/css/layouts/_section.scss @@ -0,0 +1,81 @@ +@import "../abstracts"; + +section { + padding: spacing('xl') spacing('lg') spacing('xl') spacing('lg'); + width: 100%; + @include flex(column, center, center); + + @include respond-to(medium) { + padding: spacing('lg') spacing('md') spacing('xl') spacing('md'); + } + + @include respond-to(small) { + padding: spacing('md') spacing('sm') spacing('lg') spacing('sm'); + } + + &__text { + padding: 0 0 map-get($spacing, 'md') 0; + max-width: 90%; + + @include respond-to(small) { + max-width: 95%; + } + } + + // Add specific heading styles + > header { + margin-bottom: spacing('lg'); + text-align: center; + max-width: $container-max-width; + width: 100%; + margin: 1rem auto; + + h1 { + font-size: font-size('h1'); // 3rem + font-weight: 800; + color: color('section-headings'); + margin-bottom: spacing('sm'); + + @include respond-to(medium) { + font-size: rem(40); // Slightly smaller for medium screens + } + + @include respond-to(small) { + font-size: rem(32); // Smaller for mobile but still prominent + } + } + + h2 { + font-size: font-size('h2'); // 2.2rem + font-weight: 800; + color: color('section-headings'); + + @include respond-to(medium) { + font-size: rem(32); + } + + @include respond-to(small) { + font-size: rem(28); + } + } + } + + > .content { + max-width: $container-max-width; + width: 100%; + margin: 0 auto; + padding: 0 spacing('lg'); + + @include respond-to(medium) { + padding: 0 spacing('md'); + } + + @include respond-to(small) { + padding: 0 spacing('sm'); + } + + p { + margin: 0 auto 1rem auto; + } + } + } diff --git a/site/theme/css/main.scss b/site/theme/css/main.scss index 005e4210ef016..f39b7b722fd73 100644 --- a/site/theme/css/main.scss +++ b/site/theme/css/main.scss @@ -1,27 +1,2 @@ -@import "./_sass/variables"; -@import "./_sass/utilities"; -@import "./_sass/buttons"; -@import "./_sass/pygments"; - -@import "./_sass/vendor/bootstrap/bootstrap"; - -// Layout -@import "./_sass/header"; -@import "./_sass/nav"; -@import "./_sass/footer"; - -// Pages -@import "./_sass/home"; -@import "./_sass/page"; - -body { - font-family: $font-family; - font-size: $font-size; - font-weight: $font-weight; - line-height: $line-height; - color: $color-black; -} - -.container { - max-width: 990px; -} +@import "partials"; +// @import "./_sass/vendor/bootstrap/bootstrap"; diff --git a/site/theme/css/pages/_home.scss b/site/theme/css/pages/_home.scss new file mode 100644 index 0000000000000..e579ea09796c8 --- /dev/null +++ b/site/theme/css/pages/_home.scss @@ -0,0 +1,121 @@ +@import "../abstracts"; + +.logos { + display: flex; + flex-wrap: wrap; // Enable wrapping + justify-content: center; + align-items: center; + gap: 1rem; // Add space between items + padding: 1rem 1rem 2rem 1rem; + width: 100%; // Ensure it uses the full width of the parent + + img { + flex: 0 1 calc(20% - 1rem); // 20% width minus gap, allows wrapping + max-width: 120px; // Constrain size + min-width: 80px; // Prevent being too small + height: auto; // Maintain aspect ratio + } +} + +#adopter-feature { + padding: 0rem 0rem 5rem 0rem; + @include flex(column, space-between, center); + font-size: font-size('h4'); + font-weight: 600; + + @include respond-to(medium) { + font-size: font-size('h5'); + } + + @include respond-to(small) { + font-size: font-size('base'); + } +} + +// Projects Section +.projects { + .row { + @include flex(row, center, center, spacing('xl')); + width: 100%; + + @include respond-to(medium) { + @include flex(column, center, center); + padding: spacing('md') 0 spacing('lg') 0; + gap: spacing('lg'); + } + + @include respond-to(small) { + @include flex(column, center, center); + padding: spacing('sm') 0 spacing('lg') 0; + gap: spacing('lg'); + } + } + + .row-reverse { + @extend .row; + flex-direction: row-reverse; + + @include respond-to(medium) { + @include flex(column, center, center); + padding: spacing('md') 0 spacing('lg') 0; + gap: spacing('lg'); + } + + @include respond-to(small) { + @include flex(column, center, center); + padding: spacing('sm') 0 spacing('lg') 0; + gap: spacing('lg'); + } + } +} + +.project-container { + @include flex(row, space-between, center); + padding: spacing('xl') spacing('lg'); + gap: spacing('xl'); + + @include respond-to(medium) { + flex-direction: column; + justify-content: center; + align-items: center; + padding: spacing('lg') spacing('md'); + gap: spacing('lg'); + } + + @include respond-to(small) { + flex-direction: column; + justify-content: center; + align-items: center; + padding: spacing('md') spacing('sm'); + gap: spacing('md'); + } +} + +.project-graphic { + width: 40%; + .project-image { + @include flex; + text-align: center; + img { + width: 50%; + } + } +} + +.project-info { + max-width: rem(800); // 50rem + @include flex(column, flex-start, flex-start); + + h3.project-name { + font-size: font-size('h2'); + font-weight: 700; + line-height: 1; + color: color('primary'); + } + + .project-description { + margin: spacing('md') 0; + line-height: 1.6; + + } +} diff --git a/site/theme/css/pages/_index.scss b/site/theme/css/pages/_index.scss new file mode 100644 index 0000000000000..73663fd8eb07b --- /dev/null +++ b/site/theme/css/pages/_index.scss @@ -0,0 +1,2 @@ +@import "home"; +@import "project"; diff --git a/site/theme/css/pages/_project.scss b/site/theme/css/pages/_project.scss new file mode 100644 index 0000000000000..aeb24a94af03a --- /dev/null +++ b/site/theme/css/pages/_project.scss @@ -0,0 +1,94 @@ +@import "../abstracts"; + +.capability-card { + @include card; + + h3 { + @include flex(row, flex-start, center, spacing('xs')); + margin-top: 0; + font-size: font-size('h5'); + font-weight: 700; + color: color('secondary'); + } + + .capability-icon { + font-size: font-size('h4'); + color: color('secondary'); + } + + p { + color: color('text'); + } +} + +.project-page { + + .project-container { + @include flex(row, space-between, center, spacing('xl')); + padding: spacing('xl') 0; + + @include respond-to(medium) { + flex-direction: column; + padding: spacing('md') 0; + gap: spacing('lg'); + } + + @include respond-to(small) { + flex-direction: column; + padding: spacing('sm') 0; + gap: spacing('md'); + } + } + + #page-header { + color: color('primary'); + @include gradient(project); + // background-image: linear-gradient(to bottom, map-get($gradients, project, start), map-get($gradients, project, end)); + // background-color: variables.$header-bg-color; + // background-image: linear-gradient(0deg, #dfaadf, variables.$header-project-bg-color); + // background-color: variables.$header-project-bg-color; + + + hgroup.text h1 { + color: color('primary'); + } + + .subheading { + color: map-get($colors, tertiary); + } + + .github-stats { + display: flex; + align-items: center; + gap: 0.25rem; + margin-bottom: 1rem; + + @include respond-to(medium) { + margin-bottom: 0.75rem; + } + + @include respond-to(small) { + margin-bottom: 0.5rem; + } + } + } + + #page-nav { + $header-gradient: map-get($gradients, project); + background-color: map-get($header-gradient, end); + + .main-nav { + li a { + color: map-get($colors, tertiary); + } + + @include respond-to(medium) { + background-color: map-get($header-gradient, end); + } + + @include respond-to(small) { + background-color: map-get($header-gradient, end); + } + } + } +} diff --git a/site/theme/images/BUILD b/site/theme/images/BUILD index 7a414f8e10050..a52a8352debeb 100644 --- a/site/theme/images/BUILD +++ b/site/theme/images/BUILD @@ -5,6 +5,7 @@ pkg_files( name = "image_files", srcs = glob([ "**/*.ico", + "**/*.png", "**/*.svg", ]), prefix = "theme/images", diff --git a/site/theme/images/ai-gateway.svg b/site/theme/images/ai-gateway.svg new file mode 100644 index 0000000000000..d23225e192e69 --- /dev/null +++ b/site/theme/images/ai-gateway.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="676" zoomAndPan="magnify" viewBox="0 0 507 536.249967" height="715" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, 0.0000000656868, 0.00000075)" gradientUnits="userSpaceOnUse" r="383.083952" cx="0" id="1149147a2b" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="e35b1cc166"><path d="M 366 16 L 388 16 L 388 38 L 366 38 Z M 366 16 " clip-rule="nonzero"/></clipPath><clipPath id="1b572e3e77"><path d="M 376.964844 16.851562 C 382.550781 16.851562 387.078125 21.378906 387.078125 26.960938 C 387.078125 32.546875 382.550781 37.074219 376.964844 37.074219 C 371.382812 37.074219 366.855469 32.546875 366.855469 26.960938 C 366.855469 21.378906 371.382812 16.851562 376.964844 16.851562 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 298.719104, 13.481124)" gradientUnits="userSpaceOnUse" r="383.083952" cx="0" id="3b4bab1c82" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, 0.0000000656868, 0.00000075)" gradientUnits="userSpaceOnUse" r="383.083952" cx="0" id="9f35ae90f3" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="e851f3aa8f"><path d="M 291 370 L 313 370 L 313 385 L 291 385 Z M 291 370 " clip-rule="nonzero"/></clipPath><clipPath id="1a8a11e3ed"><path d="M 312.199219 370.917969 L 302.089844 384.398438 L 291.980469 370.917969 Z M 312.199219 370.917969 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 298.719104, 13.481124)" gradientUnits="userSpaceOnUse" r="383.083952" cx="0" id="04977a81bd" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, 0.0000000656868, 0.00000075)" gradientUnits="userSpaceOnUse" r="383.083952" cx="0" id="349037f545" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, 0.0000186647, 0.00000075)" gradientUnits="userSpaceOnUse" r="383.417977" cx="0" id="2307e7f111" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="cc4c98c178"><path d="M 367 16 L 388 16 L 388 38 L 367 38 Z M 367 16 " clip-rule="nonzero"/></clipPath><clipPath id="60177b7536"><path d="M 377.566406 16.851562 C 383.148438 16.851562 387.675781 21.378906 387.675781 26.960938 C 387.675781 32.546875 383.148438 37.074219 377.566406 37.074219 C 371.980469 37.074219 367.453125 32.546875 367.453125 26.960938 C 367.453125 21.378906 371.980469 16.851562 377.566406 16.851562 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 374.195328, 13.481124)" gradientUnits="userSpaceOnUse" r="383.417977" cx="0" id="fdd5628501" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, 0.0000186647, 0.00000075)" gradientUnits="userSpaceOnUse" r="383.417977" cx="0" id="986825e6f6" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="df22d3fd3e"><path d="M 443 370 L 465 370 L 465 385 L 443 385 Z M 443 370 " clip-rule="nonzero"/></clipPath><clipPath id="b89295762d"><path d="M 464.109375 370.917969 L 453.996094 384.398438 L 443.886719 370.917969 Z M 464.109375 370.917969 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 374.195328, 13.481124)" gradientUnits="userSpaceOnUse" r="383.417977" cx="0" id="bbfa60a661" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, 0.0000186647, 0.00000075)" gradientUnits="userSpaceOnUse" r="383.417977" cx="0" id="7a55b00e03" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, -0.000014902, 0.00000075)" gradientUnits="userSpaceOnUse" r="413.020316" cx="0" id="ee935504a0" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="fcc0a5dd7c"><path d="M 368 16 L 389 16 L 389 38 L 368 38 Z M 368 16 " clip-rule="nonzero"/></clipPath><clipPath id="9973af2341"><path d="M 378.164062 16.851562 C 383.75 16.851562 388.277344 21.378906 388.277344 26.960938 C 388.277344 32.546875 383.75 37.074219 378.164062 37.074219 C 372.582031 37.074219 368.054688 32.546875 368.054688 26.960938 C 368.054688 21.378906 372.582031 16.851562 378.164062 16.851562 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 374.79464, 13.481124)" gradientUnits="userSpaceOnUse" r="413.020316" cx="0" id="4ac78eee5a" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, -0.000014902, 0.00000075)" gradientUnits="userSpaceOnUse" r="413.020316" cx="0" id="9925253c2e" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="16d5fc1e2f"><path d="M 368 409 L 389 409 L 389 424 L 368 424 Z M 368 409 " clip-rule="nonzero"/></clipPath><clipPath id="b03071fd58"><path d="M 388.277344 409.59375 L 378.164062 423.074219 L 368.054688 409.59375 Z M 388.277344 409.59375 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 374.79464, 13.481124)" gradientUnits="userSpaceOnUse" r="413.020316" cx="0" id="392ae43fcb" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.335198, 0, 0, 1.335198, -0.000014902, 0.00000075)" gradientUnits="userSpaceOnUse" r="413.020316" cx="0" id="bceede4d7d" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="3b197e4dd3"><path d="M 256.988281 394.59375 L 347.433594 394.59375 L 347.433594 485.039062 L 256.988281 485.039062 Z M 256.988281 394.59375 " clip-rule="nonzero"/></clipPath><clipPath id="04dfb48450"><path d="M 313.863281 399.421875 L 342.609375 428.167969 C 349.042969 434.601562 349.042969 445.035156 342.609375 451.46875 L 313.863281 480.214844 C 307.425781 486.648438 296.996094 486.648438 290.558594 480.214844 L 261.816406 451.46875 C 255.378906 445.035156 255.378906 434.601562 261.816406 428.167969 L 290.558594 399.421875 C 296.996094 392.984375 307.425781 392.984375 313.863281 399.421875 Z M 313.863281 399.421875 " clip-rule="nonzero"/></clipPath><linearGradient x1="128" gradientTransform="matrix(0.40662, 0, 0, 0.40662, 250.163936, 387.769788)" y1="16.784988" x2="128" gradientUnits="userSpaceOnUse" y2="239.215982" id="3750b6c48f"><stop stop-opacity="1" stop-color="rgb(100%, 39.99939%, 76.899719%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(100%, 40.182495%, 76.734924%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(100%, 40.550232%, 76.40686%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(100%, 40.917969%, 76.078796%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(100%, 41.287231%, 75.750732%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(100%, 41.654968%, 75.422668%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(100%, 42.022705%, 75.093079%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.390442%, 74.765015%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.758179%, 74.436951%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(100%, 43.125916%, 74.108887%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.493652%, 73.780823%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.862915%, 73.452759%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.230652%, 73.124695%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.598389%, 72.796631%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(100%, 44.966125%, 72.468567%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(100%, 45.333862%, 72.140503%)" offset="0.117187"/><stop stop-opacity="1" stop-color="rgb(100%, 45.701599%, 71.812439%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(100%, 46.070862%, 71.484375%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(100%, 46.438599%, 71.156311%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(100%, 46.806335%, 70.828247%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(100%, 47.174072%, 70.500183%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(100%, 47.541809%, 70.172119%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(100%, 47.909546%, 69.844055%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(100%, 48.277283%, 69.515991%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(100%, 48.646545%, 69.187927%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(100%, 49.014282%, 68.859863%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(100%, 49.382019%, 68.531799%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(100%, 49.749756%, 68.203735%)" offset="0.210937"/><stop stop-opacity="1" stop-color="rgb(100%, 50.117493%, 67.875671%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(100%, 50.485229%, 67.547607%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(100%, 50.852966%, 67.218018%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(100%, 51.222229%, 66.889954%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(100%, 51.589966%, 66.56189%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(100%, 51.957703%, 66.233826%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(100%, 52.325439%, 65.905762%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(100%, 52.693176%, 65.577698%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(100%, 53.060913%, 65.249634%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(100%, 53.430176%, 64.92157%)" offset="0.289063"/><stop stop-opacity="1" stop-color="rgb(100%, 53.797913%, 64.593506%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(100%, 54.165649%, 64.265442%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(100%, 54.533386%, 63.937378%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(100%, 54.901123%, 63.609314%)" offset="0.320313"/><stop stop-opacity="1" stop-color="rgb(100%, 55.26886%, 63.28125%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(100%, 55.636597%, 62.953186%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(100%, 56.005859%, 62.625122%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(100%, 56.373596%, 62.297058%)" offset="0.351563"/><stop stop-opacity="1" stop-color="rgb(100%, 56.741333%, 61.968994%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.10907%, 61.64093%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(100%, 57.476807%, 61.312866%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.844543%, 60.984802%)" offset="0.382813"/><stop stop-opacity="1" stop-color="rgb(100%, 58.213806%, 60.656738%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(100%, 58.581543%, 60.328674%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(100%, 58.94928%, 60.00061%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(100%, 59.317017%, 59.672546%)" offset="0.414063"/><stop stop-opacity="1" stop-color="rgb(100%, 59.684753%, 59.344482%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(100%, 60.05249%, 59.014893%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(100%, 60.420227%, 58.686829%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(100%, 60.78949%, 58.358765%)" offset="0.445313"/><stop stop-opacity="1" stop-color="rgb(100%, 61.157227%, 58.030701%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(100%, 61.524963%, 57.702637%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(100%, 61.8927%, 57.374573%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(100%, 62.260437%, 57.046509%)" offset="0.476563"/><stop stop-opacity="1" stop-color="rgb(100%, 62.628174%, 56.718445%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(100%, 62.997437%, 56.390381%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(100%, 63.365173%, 56.062317%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(100%, 63.73291%, 55.734253%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(100%, 64.100647%, 55.406189%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(100%, 64.468384%, 55.078125%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(100%, 64.836121%, 54.750061%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(100%, 65.203857%, 54.421997%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(100%, 65.57312%, 54.093933%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(100%, 65.940857%, 53.765869%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(100%, 66.308594%, 53.437805%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(100%, 66.676331%, 53.109741%)" offset="0.570313"/><stop stop-opacity="1" stop-color="rgb(100%, 67.044067%, 52.781677%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(100%, 67.411804%, 52.453613%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(100%, 67.781067%, 52.125549%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.148804%, 51.797485%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(100%, 68.516541%, 51.469421%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.884277%, 51.139832%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(100%, 69.252014%, 50.811768%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(100%, 69.619751%, 50.483704%)" offset="0.632813"/><stop stop-opacity="1" stop-color="rgb(100%, 69.987488%, 50.15564%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(100%, 70.35675%, 49.827576%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(100%, 70.724487%, 49.499512%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(100%, 71.092224%, 49.171448%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(100%, 71.459961%, 48.843384%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(100%, 71.827698%, 48.51532%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(100%, 72.195435%, 48.187256%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(100%, 72.564697%, 47.859192%)" offset="0.695313"/><stop stop-opacity="1" stop-color="rgb(100%, 72.932434%, 47.531128%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(100%, 73.300171%, 47.203064%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(100%, 73.667908%, 46.875%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(100%, 74.035645%, 46.546936%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(100%, 74.403381%, 46.218872%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(100%, 74.771118%, 45.890808%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(100%, 75.140381%, 45.562744%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(100%, 75.508118%, 45.23468%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(100%, 75.875854%, 44.906616%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(100%, 76.243591%, 44.578552%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(100%, 76.611328%, 44.250488%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(100%, 76.979065%, 43.922424%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(100%, 77.348328%, 43.59436%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(100%, 77.716064%, 43.266296%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(100%, 78.083801%, 42.936707%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(100%, 78.451538%, 42.608643%)" offset="0.820313"/><stop stop-opacity="1" stop-color="rgb(100%, 78.819275%, 42.280579%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(100%, 79.187012%, 41.952515%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(100%, 79.554749%, 41.624451%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(100%, 79.924011%, 41.296387%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(100%, 80.291748%, 40.968323%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(100%, 80.659485%, 40.640259%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(100%, 81.027222%, 40.312195%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(100%, 81.394958%, 39.984131%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(100%, 81.762695%, 39.656067%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.131958%, 39.328003%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(100%, 82.499695%, 38.999939%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.867432%, 38.671875%)" offset="0.914062"/><stop stop-opacity="1" stop-color="rgb(100%, 83.235168%, 38.343811%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(100%, 83.602905%, 38.015747%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(100%, 83.970642%, 37.687683%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(100%, 84.338379%, 37.359619%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(100%, 84.707642%, 37.031555%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(100%, 85.075378%, 36.703491%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(100%, 85.443115%, 36.375427%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(100%, 85.810852%, 36.047363%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(100%, 86.178589%, 35.719299%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(100%, 86.546326%, 35.391235%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(100%, 86.914062%, 35.063171%)" offset="1"/></linearGradient><clipPath id="28473ecb14"><path d="M 332.464844 437.6875 L 422.910156 437.6875 L 422.910156 528.132812 L 332.464844 528.132812 Z M 332.464844 437.6875 " clip-rule="nonzero"/></clipPath><clipPath id="75eed5a76f"><path d="M 389.339844 442.515625 L 418.082031 471.257812 C 424.519531 477.695312 424.519531 488.125 418.082031 494.5625 L 389.339844 523.308594 C 382.902344 529.742188 372.472656 529.742188 366.035156 523.308594 L 337.292969 494.5625 C 330.855469 488.125 330.855469 477.695312 337.292969 471.257812 L 366.035156 442.515625 C 372.472656 436.078125 382.902344 436.078125 389.339844 442.515625 Z M 389.339844 442.515625 " clip-rule="nonzero"/></clipPath><linearGradient x1="128" gradientTransform="matrix(0.40662, 0, 0, 0.40662, 325.64016, 430.862988)" y1="16.785014" x2="128" gradientUnits="userSpaceOnUse" y2="239.216008" id="0fe2edd608"><stop stop-opacity="1" stop-color="rgb(100%, 39.99939%, 76.899719%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(100%, 40.182495%, 76.734924%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(100%, 40.550232%, 76.40686%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(100%, 40.917969%, 76.078796%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(100%, 41.287231%, 75.750732%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(100%, 41.654968%, 75.422668%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(100%, 42.022705%, 75.093079%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.390442%, 74.765015%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.758179%, 74.436951%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(100%, 43.125916%, 74.108887%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.493652%, 73.780823%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.862915%, 73.452759%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.230652%, 73.124695%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.598389%, 72.796631%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(100%, 44.966125%, 72.468567%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(100%, 45.333862%, 72.140503%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(100%, 45.701599%, 71.812439%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(100%, 46.070862%, 71.484375%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(100%, 46.438599%, 71.156311%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(100%, 46.806335%, 70.828247%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(100%, 47.174072%, 70.500183%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(100%, 47.541809%, 70.172119%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(100%, 47.909546%, 69.844055%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(100%, 48.277283%, 69.515991%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(100%, 48.646545%, 69.187927%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(100%, 49.014282%, 68.859863%)" offset="0.195313"/><stop stop-opacity="1" stop-color="rgb(100%, 49.382019%, 68.531799%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(100%, 49.749756%, 68.203735%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(100%, 50.117493%, 67.875671%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(100%, 50.485229%, 67.547607%)" offset="0.226563"/><stop stop-opacity="1" stop-color="rgb(100%, 50.852966%, 67.218018%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(100%, 51.222229%, 66.889954%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(100%, 51.589966%, 66.56189%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(100%, 51.957703%, 66.233826%)" offset="0.257813"/><stop stop-opacity="1" stop-color="rgb(100%, 52.325439%, 65.905762%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(100%, 52.693176%, 65.577698%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(100%, 53.060913%, 65.249634%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(100%, 53.430176%, 64.92157%)" offset="0.289063"/><stop stop-opacity="1" stop-color="rgb(100%, 53.797913%, 64.593506%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(100%, 54.165649%, 64.265442%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(100%, 54.533386%, 63.937378%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(100%, 54.901123%, 63.609314%)" offset="0.320313"/><stop stop-opacity="1" stop-color="rgb(100%, 55.26886%, 63.28125%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(100%, 55.636597%, 62.953186%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(100%, 56.005859%, 62.625122%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(100%, 56.373596%, 62.297058%)" offset="0.351563"/><stop stop-opacity="1" stop-color="rgb(100%, 56.741333%, 61.968994%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.10907%, 61.64093%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(100%, 57.476807%, 61.312866%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.844543%, 60.984802%)" offset="0.382813"/><stop stop-opacity="1" stop-color="rgb(100%, 58.213806%, 60.656738%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(100%, 58.581543%, 60.328674%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(100%, 58.94928%, 60.00061%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(100%, 59.317017%, 59.672546%)" offset="0.414063"/><stop stop-opacity="1" stop-color="rgb(100%, 59.684753%, 59.344482%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(100%, 60.05249%, 59.014893%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(100%, 60.420227%, 58.686829%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(100%, 60.78949%, 58.358765%)" offset="0.445313"/><stop stop-opacity="1" stop-color="rgb(100%, 61.157227%, 58.030701%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(100%, 61.524963%, 57.702637%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(100%, 61.8927%, 57.374573%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(100%, 62.260437%, 57.046509%)" offset="0.476563"/><stop stop-opacity="1" stop-color="rgb(100%, 62.628174%, 56.718445%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(100%, 62.997437%, 56.390381%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(100%, 63.365173%, 56.062317%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(100%, 63.73291%, 55.734253%)" offset="0.507813"/><stop stop-opacity="1" stop-color="rgb(100%, 64.100647%, 55.406189%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(100%, 64.468384%, 55.078125%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(100%, 64.836121%, 54.750061%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(100%, 65.203857%, 54.421997%)" offset="0.539063"/><stop stop-opacity="1" stop-color="rgb(100%, 65.57312%, 54.093933%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(100%, 65.940857%, 53.765869%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(100%, 66.308594%, 53.437805%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(100%, 66.676331%, 53.109741%)" offset="0.570313"/><stop stop-opacity="1" stop-color="rgb(100%, 67.044067%, 52.781677%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(100%, 67.411804%, 52.453613%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(100%, 67.781067%, 52.125549%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.148804%, 51.797485%)" offset="0.601563"/><stop stop-opacity="1" stop-color="rgb(100%, 68.516541%, 51.469421%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.884277%, 51.139832%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(100%, 69.252014%, 50.811768%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(100%, 69.619751%, 50.483704%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(100%, 69.987488%, 50.15564%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(100%, 70.35675%, 49.827576%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(100%, 70.724487%, 49.499512%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(100%, 71.092224%, 49.171448%)" offset="0.664063"/><stop stop-opacity="1" stop-color="rgb(100%, 71.459961%, 48.843384%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(100%, 71.827698%, 48.51532%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(100%, 72.195435%, 48.187256%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(100%, 72.564697%, 47.859192%)" offset="0.695313"/><stop stop-opacity="1" stop-color="rgb(100%, 72.932434%, 47.531128%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(100%, 73.300171%, 47.203064%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(100%, 73.667908%, 46.875%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(100%, 74.035645%, 46.546936%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(100%, 74.403381%, 46.218872%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(100%, 74.771118%, 45.890808%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(100%, 75.140381%, 45.562744%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(100%, 75.508118%, 45.23468%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(100%, 75.875854%, 44.906616%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(100%, 76.243591%, 44.578552%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(100%, 76.611328%, 44.250488%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(100%, 76.979065%, 43.922424%)" offset="0.789063"/><stop stop-opacity="1" stop-color="rgb(100%, 77.348328%, 43.59436%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(100%, 77.716064%, 43.266296%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(100%, 78.083801%, 42.936707%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(100%, 78.451538%, 42.608643%)" offset="0.820313"/><stop stop-opacity="1" stop-color="rgb(100%, 78.819275%, 42.280579%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(100%, 79.187012%, 41.952515%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(100%, 79.554749%, 41.624451%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(100%, 79.924011%, 41.296387%)" offset="0.851563"/><stop stop-opacity="1" stop-color="rgb(100%, 80.291748%, 40.968323%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(100%, 80.659485%, 40.640259%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(100%, 81.027222%, 40.312195%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(100%, 81.394958%, 39.984131%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(100%, 81.762695%, 39.656067%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.131958%, 39.328003%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(100%, 82.499695%, 38.999939%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.867432%, 38.671875%)" offset="0.914063"/><stop stop-opacity="1" stop-color="rgb(100%, 83.235168%, 38.343811%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(100%, 83.602905%, 38.015747%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(100%, 83.970642%, 37.687683%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(100%, 84.338379%, 37.359619%)" offset="0.945313"/><stop stop-opacity="1" stop-color="rgb(100%, 84.707642%, 37.031555%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(100%, 85.075378%, 36.703491%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(100%, 85.443115%, 36.375427%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(100%, 85.810852%, 36.047363%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(100%, 86.178589%, 35.719299%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(100%, 86.546326%, 35.391235%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(100%, 86.914062%, 35.063171%)" offset="1"/></linearGradient><clipPath id="98d86a3644"><path d="M 408.894531 394.59375 L 499.339844 394.59375 L 499.339844 485.039062 L 408.894531 485.039062 Z M 408.894531 394.59375 " clip-rule="nonzero"/></clipPath><clipPath id="979a0d1829"><path d="M 465.769531 399.421875 L 494.515625 428.167969 C 500.949219 434.601562 500.949219 445.035156 494.515625 451.46875 L 465.769531 480.214844 C 459.335938 486.648438 448.902344 486.648438 442.46875 480.214844 L 413.722656 451.46875 C 407.289062 445.035156 407.289062 434.601562 413.722656 428.167969 L 442.46875 399.421875 C 448.902344 392.984375 459.335938 392.984375 465.769531 399.421875 Z M 465.769531 399.421875 " clip-rule="nonzero"/></clipPath><linearGradient x1="128" gradientTransform="matrix(0.40662, 0, 0, 0.40662, 402.071249, 387.769788)" y1="16.784988" x2="128" gradientUnits="userSpaceOnUse" y2="239.215982" id="77aecc1b5f"><stop stop-opacity="1" stop-color="rgb(100%, 39.99939%, 76.899719%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(100%, 40.182495%, 76.734924%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(100%, 40.550232%, 76.40686%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(100%, 40.917969%, 76.078796%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(100%, 41.287231%, 75.750732%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(100%, 41.654968%, 75.422668%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(100%, 42.022705%, 75.093079%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.390442%, 74.765015%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.758179%, 74.436951%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(100%, 43.125916%, 74.108887%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.493652%, 73.780823%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.862915%, 73.452759%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.230652%, 73.124695%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.598389%, 72.796631%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(100%, 44.966125%, 72.468567%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(100%, 45.333862%, 72.140503%)" offset="0.117187"/><stop stop-opacity="1" stop-color="rgb(100%, 45.701599%, 71.812439%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(100%, 46.070862%, 71.484375%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(100%, 46.438599%, 71.156311%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(100%, 46.806335%, 70.828247%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(100%, 47.174072%, 70.500183%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(100%, 47.541809%, 70.172119%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(100%, 47.909546%, 69.844055%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(100%, 48.277283%, 69.515991%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(100%, 48.646545%, 69.187927%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(100%, 49.014282%, 68.859863%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(100%, 49.382019%, 68.531799%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(100%, 49.749756%, 68.203735%)" offset="0.210937"/><stop stop-opacity="1" stop-color="rgb(100%, 50.117493%, 67.875671%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(100%, 50.485229%, 67.547607%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(100%, 50.852966%, 67.218018%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(100%, 51.222229%, 66.889954%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(100%, 51.589966%, 66.56189%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(100%, 51.957703%, 66.233826%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(100%, 52.325439%, 65.905762%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(100%, 52.693176%, 65.577698%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(100%, 53.060913%, 65.249634%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(100%, 53.430176%, 64.92157%)" offset="0.289063"/><stop stop-opacity="1" stop-color="rgb(100%, 53.797913%, 64.593506%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(100%, 54.165649%, 64.265442%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(100%, 54.533386%, 63.937378%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(100%, 54.901123%, 63.609314%)" offset="0.320313"/><stop stop-opacity="1" stop-color="rgb(100%, 55.26886%, 63.28125%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(100%, 55.636597%, 62.953186%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(100%, 56.005859%, 62.625122%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(100%, 56.373596%, 62.297058%)" offset="0.351563"/><stop stop-opacity="1" stop-color="rgb(100%, 56.741333%, 61.968994%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.10907%, 61.64093%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(100%, 57.476807%, 61.312866%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.844543%, 60.984802%)" offset="0.382813"/><stop stop-opacity="1" stop-color="rgb(100%, 58.213806%, 60.656738%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(100%, 58.581543%, 60.328674%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(100%, 58.94928%, 60.00061%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(100%, 59.317017%, 59.672546%)" offset="0.414063"/><stop stop-opacity="1" stop-color="rgb(100%, 59.684753%, 59.344482%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(100%, 60.05249%, 59.014893%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(100%, 60.420227%, 58.686829%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(100%, 60.78949%, 58.358765%)" offset="0.445313"/><stop stop-opacity="1" stop-color="rgb(100%, 61.157227%, 58.030701%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(100%, 61.524963%, 57.702637%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(100%, 61.8927%, 57.374573%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(100%, 62.260437%, 57.046509%)" offset="0.476563"/><stop stop-opacity="1" stop-color="rgb(100%, 62.628174%, 56.718445%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(100%, 62.997437%, 56.390381%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(100%, 63.365173%, 56.062317%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(100%, 63.73291%, 55.734253%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(100%, 64.100647%, 55.406189%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(100%, 64.468384%, 55.078125%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(100%, 64.836121%, 54.750061%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(100%, 65.203857%, 54.421997%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(100%, 65.57312%, 54.093933%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(100%, 65.940857%, 53.765869%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(100%, 66.308594%, 53.437805%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(100%, 66.676331%, 53.109741%)" offset="0.570313"/><stop stop-opacity="1" stop-color="rgb(100%, 67.044067%, 52.781677%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(100%, 67.411804%, 52.453613%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(100%, 67.781067%, 52.125549%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.148804%, 51.797485%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(100%, 68.516541%, 51.469421%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.884277%, 51.139832%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(100%, 69.252014%, 50.811768%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(100%, 69.619751%, 50.483704%)" offset="0.632813"/><stop stop-opacity="1" stop-color="rgb(100%, 69.987488%, 50.15564%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(100%, 70.35675%, 49.827576%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(100%, 70.724487%, 49.499512%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(100%, 71.092224%, 49.171448%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(100%, 71.459961%, 48.843384%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(100%, 71.827698%, 48.51532%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(100%, 72.195435%, 48.187256%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(100%, 72.564697%, 47.859192%)" offset="0.695313"/><stop stop-opacity="1" stop-color="rgb(100%, 72.932434%, 47.531128%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(100%, 73.300171%, 47.203064%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(100%, 73.667908%, 46.875%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(100%, 74.035645%, 46.546936%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(100%, 74.403381%, 46.218872%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(100%, 74.771118%, 45.890808%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(100%, 75.140381%, 45.562744%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(100%, 75.508118%, 45.23468%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(100%, 75.875854%, 44.906616%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(100%, 76.243591%, 44.578552%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(100%, 76.611328%, 44.250488%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(100%, 76.979065%, 43.922424%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(100%, 77.348328%, 43.59436%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(100%, 77.716064%, 43.266296%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(100%, 78.083801%, 42.936707%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(100%, 78.451538%, 42.608643%)" offset="0.820313"/><stop stop-opacity="1" stop-color="rgb(100%, 78.819275%, 42.280579%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(100%, 79.187012%, 41.952515%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(100%, 79.554749%, 41.624451%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(100%, 79.924011%, 41.296387%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(100%, 80.291748%, 40.968323%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(100%, 80.659485%, 40.640259%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(100%, 81.027222%, 40.312195%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(100%, 81.394958%, 39.984131%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(100%, 81.762695%, 39.656067%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.131958%, 39.328003%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(100%, 82.499695%, 38.999939%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.867432%, 38.671875%)" offset="0.914062"/><stop stop-opacity="1" stop-color="rgb(100%, 83.235168%, 38.343811%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(100%, 83.602905%, 38.015747%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(100%, 83.970642%, 37.687683%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(100%, 84.338379%, 37.359619%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(100%, 84.707642%, 37.031555%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(100%, 85.075378%, 36.703491%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(100%, 85.443115%, 36.375427%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(100%, 85.810852%, 36.047363%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(100%, 86.178589%, 35.719299%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(100%, 86.546326%, 35.391235%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(100%, 86.914062%, 35.063171%)" offset="1"/></linearGradient><clipPath id="15e4a64734"><path d="M 43.664062 90.894531 L 216.914062 90.894531 L 216.914062 286.429688 L 43.664062 286.429688 Z M 43.664062 90.894531 " clip-rule="nonzero"/></clipPath><clipPath id="48014070cd"><path d="M 140 93.511719 L 207.203125 132.613281 C 213.214844 136.109375 216.914062 142.539062 216.914062 149.496094 L 216.914062 227.824219 C 216.914062 234.78125 213.214844 241.210938 207.203125 244.710938 L 140 283.808594 C 133.996094 287.300781 126.582031 287.300781 120.578125 283.808594 L 53.375 244.710938 C 47.363281 241.210938 43.664062 234.78125 43.664062 227.824219 L 43.664062 149.496094 C 43.664062 142.539062 47.363281 136.109375 53.375 132.613281 L 120.578125 93.511719 C 126.582031 90.019531 133.996094 90.019531 140 93.511719 Z M 140 93.511719 " clip-rule="nonzero"/></clipPath><linearGradient x1="-8.233975" gradientTransform="matrix(0.676746, 0, 0, 0.676746, 43.665836, 87.86226)" y1="12.712025" x2="264.234" gradientUnits="userSpaceOnUse" y2="285.17898" id="4d8ab082fa"><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(22.610474%, 86.143494%, 75.234985%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(22.433472%, 85.835266%, 75.105286%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(22.254944%, 85.525513%, 74.977112%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(22.077942%, 85.215759%, 74.847412%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(21.90094%, 84.906006%, 74.719238%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(21.723938%, 84.597778%, 74.589539%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(21.546936%, 84.288025%, 74.461365%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(21.368408%, 83.978271%, 74.331665%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(21.191406%, 83.668518%, 74.203491%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(21.014404%, 83.360291%, 74.073792%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(20.837402%, 83.050537%, 73.945618%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(20.658875%, 82.740784%, 73.815918%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(20.481873%, 82.43103%, 73.687744%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(20.304871%, 82.122803%, 73.558044%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(20.127869%, 81.813049%, 73.429871%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(19.950867%, 81.503296%, 73.300171%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(19.772339%, 81.193542%, 73.171997%)" offset="0.132813"/><stop stop-opacity="1" stop-color="rgb(19.595337%, 80.885315%, 73.042297%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(19.418335%, 80.575562%, 72.914124%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(19.241333%, 80.265808%, 72.78595%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(19.062805%, 79.956055%, 72.65625%)" offset="0.164063"/><stop stop-opacity="1" stop-color="rgb(18.885803%, 79.647827%, 72.528076%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(18.708801%, 79.338074%, 72.398376%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(18.531799%, 79.02832%, 72.270203%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(18.354797%, 78.718567%, 72.140503%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(18.17627%, 78.410339%, 72.012329%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(17.999268%, 78.100586%, 71.882629%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(17.822266%, 77.790833%, 71.754456%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(17.645264%, 77.481079%, 71.624756%)" offset="0.226563"/><stop stop-opacity="1" stop-color="rgb(17.466736%, 77.172852%, 71.496582%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(17.289734%, 76.863098%, 71.366882%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(17.112732%, 76.553345%, 71.238708%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(16.93573%, 76.243591%, 71.109009%)" offset="0.257813"/><stop stop-opacity="1" stop-color="rgb(16.758728%, 75.933838%, 70.980835%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(16.5802%, 75.62561%, 70.851135%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(16.403198%, 75.315857%, 70.722961%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(16.226196%, 75.006104%, 70.593262%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(16.049194%, 74.69635%, 70.465088%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(15.870667%, 74.388123%, 70.335388%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(15.693665%, 74.078369%, 70.207214%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(15.516663%, 73.768616%, 70.077515%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(15.339661%, 73.458862%, 69.949341%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(15.162659%, 73.150635%, 69.819641%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(14.984131%, 72.840881%, 69.691467%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(14.807129%, 72.531128%, 69.563293%)" offset="0.351563"/><stop stop-opacity="1" stop-color="rgb(14.630127%, 72.221375%, 69.433594%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(14.453125%, 71.913147%, 69.30542%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(14.274597%, 71.603394%, 69.17572%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(14.097595%, 71.29364%, 69.047546%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(13.920593%, 70.983887%, 68.917847%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(13.743591%, 70.675659%, 68.789673%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(13.566589%, 70.365906%, 68.659973%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(13.388062%, 70.056152%, 68.531799%)" offset="0.414063"/><stop stop-opacity="1" stop-color="rgb(13.21106%, 69.746399%, 68.4021%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(13.034058%, 69.438171%, 68.273926%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(12.857056%, 69.128418%, 68.144226%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(12.678528%, 68.818665%, 68.016052%)" offset="0.445313"/><stop stop-opacity="1" stop-color="rgb(12.501526%, 68.508911%, 67.886353%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(12.324524%, 68.200684%, 67.758179%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(12.147522%, 67.89093%, 67.628479%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(11.97052%, 67.581177%, 67.500305%)" offset="0.469782"/><stop stop-opacity="1" stop-color="rgb(11.882019%, 67.427063%, 67.436218%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(11.791992%, 67.271423%, 67.370605%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(11.61499%, 66.963196%, 67.242432%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(11.437988%, 66.653442%, 67.112732%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(11.260986%, 66.343689%, 66.984558%)" offset="0.507813"/><stop stop-opacity="1" stop-color="rgb(11.082458%, 66.033936%, 66.854858%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(10.905457%, 65.725708%, 66.726685%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(10.728455%, 65.415955%, 66.596985%)" offset="0.530218"/><stop stop-opacity="1" stop-color="rgb(10.639954%, 65.261841%, 66.532898%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(10.551453%, 65.106201%, 66.468811%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(10.372925%, 64.796448%, 66.340637%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(10.195923%, 64.48822%, 66.210938%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(10.018921%, 64.178467%, 66.082764%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(9.841919%, 63.868713%, 65.953064%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(9.664917%, 63.55896%, 65.82489%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(9.486389%, 63.250732%, 65.69519%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(9.309387%, 62.940979%, 65.567017%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(9.132385%, 62.631226%, 65.437317%)" offset="0.601563"/><stop stop-opacity="1" stop-color="rgb(8.955383%, 62.321472%, 65.309143%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(8.776855%, 62.013245%, 65.179443%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(8.599854%, 61.703491%, 65.05127%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(8.422852%, 61.393738%, 64.92157%)" offset="0.632813"/><stop stop-opacity="1" stop-color="rgb(8.24585%, 61.083984%, 64.793396%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(8.068848%, 60.775757%, 64.663696%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(7.89032%, 60.466003%, 64.535522%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(7.713318%, 60.15625%, 64.405823%)" offset="0.664063"/><stop stop-opacity="1" stop-color="rgb(7.536316%, 59.846497%, 64.277649%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(7.359314%, 59.538269%, 64.147949%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(7.180786%, 59.228516%, 64.019775%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(7.003784%, 58.918762%, 63.890076%)" offset="0.695313"/><stop stop-opacity="1" stop-color="rgb(6.826782%, 58.609009%, 63.761902%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(6.64978%, 58.300781%, 63.632202%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(6.472778%, 57.991028%, 63.504028%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(6.29425%, 57.681274%, 63.374329%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(6.117249%, 57.371521%, 63.246155%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(5.940247%, 57.063293%, 63.117981%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(5.763245%, 56.75354%, 62.988281%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(5.584717%, 56.443787%, 62.860107%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(5.407715%, 56.134033%, 62.730408%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(5.230713%, 55.825806%, 62.602234%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(5.053711%, 55.516052%, 62.472534%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(4.876709%, 55.206299%, 62.34436%)" offset="0.789063"/><stop stop-opacity="1" stop-color="rgb(4.698181%, 54.896545%, 62.214661%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(4.521179%, 54.588318%, 62.086487%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(4.344177%, 54.278564%, 61.956787%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(4.167175%, 53.968811%, 61.828613%)" offset="0.820313"/><stop stop-opacity="1" stop-color="rgb(3.988647%, 53.659058%, 61.698914%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(3.811646%, 53.35083%, 61.57074%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(3.634644%, 53.041077%, 61.44104%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(3.457642%, 52.731323%, 61.312866%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(3.28064%, 52.42157%, 61.183167%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(3.102112%, 52.113342%, 61.054993%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(2.92511%, 51.803589%, 60.925293%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(2.748108%, 51.493835%, 60.797119%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(2.571106%, 51.184082%, 60.667419%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(2.392578%, 50.875854%, 60.539246%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(2.215576%, 50.566101%, 60.409546%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(2.038574%, 50.256348%, 60.281372%)" offset="0.914063"/><stop stop-opacity="1" stop-color="rgb(1.861572%, 49.946594%, 60.151672%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(1.68457%, 49.638367%, 60.023499%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(1.506042%, 49.328613%, 59.895325%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(1.329041%, 49.01886%, 59.765625%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(1.152039%, 48.709106%, 59.637451%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(0.975037%, 48.400879%, 59.507751%)" offset="0.960937"/><stop stop-opacity="1" stop-color="rgb(0.796509%, 48.091125%, 59.379578%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(0.619507%, 47.781372%, 59.249878%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(0.442505%, 47.471619%, 59.121704%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(0.265503%, 47.163391%, 58.992004%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(0.088501%, 46.853638%, 58.863831%)" offset="1"/></linearGradient><linearGradient x1="25.373984" gradientTransform="matrix(1, 0, 0, 1, 0.00000138121, 0.0000316208)" y1="-30.374017" x2="77.37228" gradientUnits="userSpaceOnUse" y2="21.624279" id="004cbd2d54"><stop stop-opacity="1" stop-color="rgb(18.942261%, 79.745483%, 72.569275%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(18.855286%, 79.592896%, 72.505188%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(18.681335%, 79.289246%, 72.37854%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(18.505859%, 78.985596%, 72.250366%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(18.331909%, 78.68042%, 72.123718%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(18.157959%, 78.37677%, 71.99707%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(17.982483%, 78.071594%, 71.870422%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(17.808533%, 77.767944%, 71.743774%)" offset="0.096157"/><stop stop-opacity="1" stop-color="rgb(17.721558%, 77.616882%, 71.681213%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(17.634583%, 77.464294%, 71.617126%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(17.460632%, 77.159119%, 71.490479%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(17.285156%, 76.855469%, 71.363831%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(17.111206%, 76.550293%, 71.237183%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(16.937256%, 76.246643%, 71.110535%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(16.76178%, 75.942993%, 70.983887%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(16.58783%, 75.637817%, 70.857239%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(16.413879%, 75.334167%, 70.729065%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(16.238403%, 75.028992%, 70.602417%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(16.064453%, 74.725342%, 70.475769%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(15.890503%, 74.421692%, 70.349121%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(15.716553%, 74.116516%, 70.222473%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(15.541077%, 73.812866%, 70.095825%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(15.367126%, 73.50769%, 69.969177%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(15.193176%, 73.204041%, 69.842529%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(15.0177%, 72.900391%, 69.715881%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(14.84375%, 72.595215%, 69.589233%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(14.6698%, 72.291565%, 69.462585%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(14.494324%, 71.986389%, 69.335938%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(14.320374%, 71.682739%, 69.20929%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(14.146423%, 71.379089%, 69.081116%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(13.972473%, 71.073914%, 68.954468%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(13.796997%, 70.770264%, 68.82782%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(13.623047%, 70.465088%, 68.701172%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(13.449097%, 70.161438%, 68.574524%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(13.273621%, 69.857788%, 68.447876%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(13.09967%, 69.552612%, 68.321228%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(12.92572%, 69.248962%, 68.19458%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(12.75177%, 68.945312%, 68.067932%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(12.576294%, 68.640137%, 67.941284%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(12.402344%, 68.336487%, 67.814636%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(12.228394%, 68.031311%, 67.687988%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(12.052917%, 67.727661%, 67.559814%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(11.878967%, 67.424011%, 67.433167%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(11.705017%, 67.118835%, 67.306519%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(11.529541%, 66.815186%, 67.179871%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(11.355591%, 66.51001%, 67.053223%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(11.181641%, 66.20636%, 66.926575%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(11.00769%, 65.90271%, 66.799927%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(10.832214%, 65.597534%, 66.673279%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(10.658264%, 65.293884%, 66.546631%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(10.484314%, 64.988708%, 66.419983%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(10.308838%, 64.685059%, 66.293335%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(10.134888%, 64.381409%, 66.166687%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(9.960938%, 64.076233%, 66.038513%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(9.785461%, 63.772583%, 65.911865%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(9.611511%, 63.467407%, 65.785217%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(9.437561%, 63.163757%, 65.658569%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(9.263611%, 62.860107%, 65.531921%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(9.088135%, 62.554932%, 65.405273%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(8.914185%, 62.251282%, 65.278625%)" offset="0.903843"/><stop stop-opacity="1" stop-color="rgb(8.827209%, 62.098694%, 65.216064%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(8.740234%, 61.946106%, 65.151978%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(8.564758%, 61.642456%, 65.02533%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(8.390808%, 61.338806%, 64.898682%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(8.216858%, 61.03363%, 64.772034%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(8.041382%, 60.72998%, 64.645386%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(7.867432%, 60.424805%, 64.518738%)" offset="1"/></linearGradient><linearGradient x1="61.122281" gradientTransform="matrix(1, 0, 0, 1, 0.00000138121, 0.0000316208)" y1="5.37428" x2="101.122279" gradientUnits="userSpaceOnUse" y2="45.374278" id="b10bc194e1"><stop stop-opacity="1" stop-color="rgb(11.268616%, 66.358948%, 66.990662%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(11.201477%, 66.241455%, 66.941833%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(11.0672%, 66.007996%, 66.844177%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(10.932922%, 65.77301%, 66.746521%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(10.798645%, 65.539551%, 66.648865%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(10.664368%, 65.306091%, 66.551208%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(10.531616%, 65.071106%, 66.455078%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(10.397339%, 64.837646%, 66.357422%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(10.263062%, 64.602661%, 66.259766%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(10.128784%, 64.369202%, 66.162109%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(9.994507%, 64.135742%, 66.064453%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(9.860229%, 63.900757%, 65.966797%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(9.725952%, 63.667297%, 65.869141%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(9.591675%, 63.432312%, 65.771484%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(9.457397%, 63.198853%, 65.673828%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(9.32312%, 62.965393%, 65.576172%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(9.188843%, 62.730408%, 65.478516%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(9.054565%, 62.496948%, 65.382385%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(8.920288%, 62.263489%, 65.284729%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(8.787537%, 62.028503%, 65.187073%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(8.653259%, 61.795044%, 65.089417%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(8.518982%, 61.560059%, 64.99176%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(8.384705%, 61.326599%, 64.894104%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(8.250427%, 61.09314%, 64.796448%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(8.11615%, 60.858154%, 64.698792%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(7.981873%, 60.624695%, 64.601135%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(7.847595%, 60.389709%, 64.503479%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(7.713318%, 60.15625%, 64.405823%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(7.579041%, 59.922791%, 64.309692%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(7.444763%, 59.687805%, 64.212036%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(7.310486%, 59.454346%, 64.11438%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(7.176208%, 59.220886%, 64.016724%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(7.041931%, 58.985901%, 63.919067%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(6.976318%, 58.869934%, 63.870239%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(6.90918%, 58.752441%, 63.821411%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(6.842041%, 58.634949%, 63.772583%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(6.774902%, 58.517456%, 63.723755%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(6.640625%, 58.283997%, 63.626099%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(6.506348%, 58.050537%, 63.528442%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(6.37207%, 57.815552%, 63.430786%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(6.237793%, 57.582092%, 63.33313%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(6.103516%, 57.347107%, 63.237%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(5.969238%, 57.113647%, 63.139343%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(5.834961%, 56.880188%, 63.041687%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(5.700684%, 56.645203%, 62.944031%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(5.566406%, 56.411743%, 62.846375%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(5.432129%, 56.178284%, 62.748718%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(5.297852%, 55.943298%, 62.651062%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(5.1651%, 55.709839%, 62.553406%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(5.030823%, 55.474854%, 62.45575%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(4.896545%, 55.241394%, 62.358093%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(4.762268%, 55.007935%, 62.260437%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(4.627991%, 54.772949%, 62.164307%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(4.493713%, 54.53949%, 62.06665%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(4.359436%, 54.304504%, 61.968994%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(4.225159%, 54.071045%, 61.871338%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(4.090881%, 53.837585%, 61.773682%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(3.956604%, 53.6026%, 61.676025%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(3.822327%, 53.369141%, 61.578369%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(3.688049%, 53.135681%, 61.480713%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(3.553772%, 52.900696%, 61.383057%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(3.421021%, 52.667236%, 61.2854%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(3.286743%, 52.432251%, 61.187744%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(3.152466%, 52.198792%, 61.090088%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(3.018188%, 51.965332%, 60.993958%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(2.883911%, 51.730347%, 60.896301%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(2.749634%, 51.496887%, 60.798645%)" offset="1"/></linearGradient><clipPath id="c0992f7ef3"><path d="M 307.90625 109.9375 L 448.421875 109.9375 L 448.421875 267.382812 L 307.90625 267.382812 Z M 307.90625 109.9375 " clip-rule="nonzero"/></clipPath><clipPath id="032ffb335e"><path d="M 387.875 112.558594 L 438.710938 142.132812 C 444.722656 145.632812 448.421875 152.0625 448.421875 159.019531 L 448.421875 218.304688 C 448.421875 225.257812 444.722656 231.6875 438.710938 235.1875 L 387.875 264.765625 C 381.871094 268.257812 374.457031 268.257812 368.453125 264.765625 L 317.617188 235.1875 C 311.605469 231.6875 307.90625 225.257812 307.90625 218.304688 L 307.90625 159.019531 C 307.90625 152.0625 311.605469 145.632812 317.617188 142.132812 L 368.453125 112.558594 C 374.457031 109.066406 381.871094 109.066406 387.875 112.558594 Z M 387.875 112.558594 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 307.908091, 106.907153)" gradientUnits="userSpaceOnUse" r="211.029109" cx="0" id="d734a36ec5" cy="3.030376" fx="0" fy="3.030376"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="af02c642de"><path d="M 0.355469 190.679688 L 86.976562 190.679688 L 86.976562 287.4375 L 0.355469 287.4375 Z M 0.355469 190.679688 " clip-rule="nonzero"/></clipPath><clipPath id="9e9ac6105d"><path d="M 50.140625 192.425781 L 80.503906 210.09375 C 84.511719 212.425781 86.976562 216.710938 86.976562 221.351562 L 86.976562 256.769531 C 86.976562 261.40625 84.511719 265.695312 80.503906 268.027344 L 50.140625 285.691406 C 46.136719 288.019531 41.195312 288.019531 37.191406 285.691406 L 6.828125 268.027344 C 2.820312 265.695312 0.355469 261.40625 0.355469 256.769531 L 0.355469 221.351562 C 0.355469 216.710938 2.820312 212.425781 6.828125 210.09375 L 37.191406 192.425781 C 41.195312 190.097656 46.136719 190.097656 50.140625 192.425781 Z M 50.140625 192.425781 " clip-rule="nonzero"/></clipPath><linearGradient x1="128" gradientTransform="matrix(0.338373, 0, 0, 0.338373, 0.354066, 188.660667)" y1="5.969936" x2="128" gradientUnits="userSpaceOnUse" y2="291.919946" id="7cc03b981a"><stop stop-opacity="1" stop-color="rgb(100%, 39.99939%, 76.899719%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(100%, 40.182495%, 76.734924%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(100%, 40.550232%, 76.40686%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(100%, 40.917969%, 76.078796%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(100%, 41.287231%, 75.750732%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(100%, 41.654968%, 75.422668%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(100%, 42.022705%, 75.093079%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.390442%, 74.765015%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(100%, 42.758179%, 74.436951%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(100%, 43.125916%, 74.108887%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.493652%, 73.780823%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(100%, 43.862915%, 73.452759%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.230652%, 73.124695%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(100%, 44.598389%, 72.796631%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(100%, 44.966125%, 72.468567%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(100%, 45.333862%, 72.140503%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(100%, 45.701599%, 71.812439%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(100%, 46.069336%, 71.484375%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(100%, 46.438599%, 71.156311%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(100%, 46.806335%, 70.828247%)" offset="0.148437"/><stop stop-opacity="1" stop-color="rgb(100%, 47.174072%, 70.500183%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(100%, 47.541809%, 70.172119%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(100%, 47.909546%, 69.844055%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(100%, 48.277283%, 69.515991%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(100%, 48.646545%, 69.187927%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(100%, 49.014282%, 68.859863%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(100%, 49.382019%, 68.531799%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(100%, 49.749756%, 68.203735%)" offset="0.210937"/><stop stop-opacity="1" stop-color="rgb(100%, 50.117493%, 67.875671%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(100%, 50.485229%, 67.547607%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(100%, 50.852966%, 67.219543%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(100%, 51.222229%, 66.889954%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(100%, 51.589966%, 66.56189%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(100%, 51.957703%, 66.233826%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(100%, 52.325439%, 65.905762%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(100%, 52.693176%, 65.577698%)" offset="0.273437"/><stop stop-opacity="1" stop-color="rgb(100%, 53.060913%, 65.249634%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(100%, 53.430176%, 64.92157%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(100%, 53.797913%, 64.593506%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(100%, 54.165649%, 64.265442%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(100%, 54.533386%, 63.937378%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(100%, 54.901123%, 63.609314%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(100%, 55.26886%, 63.28125%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(100%, 55.636597%, 62.953186%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(100%, 56.005859%, 62.625122%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(100%, 56.373596%, 62.297058%)" offset="0.351562"/><stop stop-opacity="1" stop-color="rgb(100%, 56.741333%, 61.968994%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.10907%, 61.64093%)" offset="0.367187"/><stop stop-opacity="1" stop-color="rgb(100%, 57.476807%, 61.312866%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(100%, 57.844543%, 60.984802%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(100%, 58.21228%, 60.656738%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(100%, 58.581543%, 60.328674%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(100%, 58.94928%, 60.00061%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(100%, 59.317017%, 59.672546%)" offset="0.414062"/><stop stop-opacity="1" stop-color="rgb(100%, 59.684753%, 59.344482%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(100%, 60.05249%, 59.016418%)" offset="0.429687"/><stop stop-opacity="1" stop-color="rgb(100%, 60.420227%, 58.686829%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(100%, 60.78949%, 58.358765%)" offset="0.445312"/><stop stop-opacity="1" stop-color="rgb(100%, 61.157227%, 58.030701%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(100%, 61.524963%, 57.702637%)" offset="0.460937"/><stop stop-opacity="1" stop-color="rgb(100%, 61.8927%, 57.374573%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(100%, 62.260437%, 57.046509%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(100%, 62.628174%, 56.718445%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(100%, 62.995911%, 56.390381%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(100%, 63.365173%, 56.062317%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(100%, 63.73291%, 55.734253%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(100%, 64.100647%, 55.406189%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(100%, 64.468384%, 55.078125%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(100%, 64.836121%, 54.750061%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(100%, 65.203857%, 54.421997%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(100%, 65.57312%, 54.093933%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(100%, 65.940857%, 53.765869%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(100%, 66.308594%, 53.437805%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(100%, 66.676331%, 53.109741%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(100%, 67.044067%, 52.781677%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(100%, 67.411804%, 52.453613%)" offset="0.585937"/><stop stop-opacity="1" stop-color="rgb(100%, 67.779541%, 52.125549%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.148804%, 51.797485%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(100%, 68.516541%, 51.469421%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(100%, 68.884277%, 51.141357%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(100%, 69.252014%, 50.813293%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(100%, 69.619751%, 50.483704%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(100%, 69.987488%, 50.15564%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(100%, 70.35675%, 49.827576%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(100%, 70.724487%, 49.499512%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(100%, 71.092224%, 49.171448%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(100%, 71.459961%, 48.843384%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(100%, 71.827698%, 48.51532%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(100%, 72.195435%, 48.187256%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(100%, 72.563171%, 47.859192%)" offset="0.695313"/><stop stop-opacity="1" stop-color="rgb(100%, 72.932434%, 47.531128%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(100%, 73.300171%, 47.203064%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(100%, 73.667908%, 46.875%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(100%, 74.035645%, 46.546936%)" offset="0.726563"/><stop stop-opacity="1" stop-color="rgb(100%, 74.403381%, 46.218872%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(100%, 74.771118%, 45.890808%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(100%, 75.138855%, 45.562744%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(100%, 75.508118%, 45.23468%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(100%, 75.875854%, 44.906616%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(100%, 76.243591%, 44.578552%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(100%, 76.611328%, 44.250488%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(100%, 76.979065%, 43.922424%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(100%, 77.346802%, 43.59436%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(100%, 77.716064%, 43.266296%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(100%, 78.083801%, 42.938232%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(100%, 78.451538%, 42.610168%)" offset="0.820312"/><stop stop-opacity="1" stop-color="rgb(100%, 78.819275%, 42.280579%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(100%, 79.187012%, 41.952515%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(100%, 79.554749%, 41.624451%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(100%, 79.922485%, 41.296387%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(100%, 80.291748%, 40.968323%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(100%, 80.659485%, 40.640259%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(100%, 81.027222%, 40.312195%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(100%, 81.394958%, 39.984131%)" offset="0.882813"/><stop stop-opacity="1" stop-color="rgb(100%, 81.762695%, 39.656067%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.130432%, 39.328003%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(100%, 82.499695%, 38.999939%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(100%, 82.867432%, 38.671875%)" offset="0.914063"/><stop stop-opacity="1" stop-color="rgb(100%, 83.235168%, 38.343811%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(100%, 83.602905%, 38.015747%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(100%, 83.970642%, 37.687683%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(100%, 84.338379%, 37.359619%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(100%, 84.706116%, 37.031555%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(100%, 85.075378%, 36.703491%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(100%, 85.443115%, 36.375427%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(100%, 85.810852%, 36.047363%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(100%, 86.178589%, 35.719299%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(100%, 86.546326%, 35.391235%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(100%, 86.914062%, 35.063171%)" offset="1"/></linearGradient></defs><path stroke-linecap="butt" transform="matrix(0.748952, 0, 0, 0.748952, 298.719104, 13.481124)" fill="none" stroke-linejoin="miter" d="M 104.473577 33.749391 L 104.473577 305.900352 C 104.473577 319.158453 99.211018 331.874131 89.833337 341.246597 C 80.460871 350.624278 67.745193 355.886837 54.487092 355.886837 C 41.22899 355.886837 28.513313 361.154611 19.140847 370.532293 C 9.768381 379.904759 4.500606 392.620436 4.500606 405.878538 L 4.500606 475.001127 " stroke="url(#1149147a2b)" stroke-width="9" stroke-miterlimit="4"/><g clip-path="url(#e35b1cc166)"><g clip-path="url(#1b572e3e77)"><path fill="url(#3b4bab1c82)" d="M 366.855469 16.851562 L 366.855469 37.074219 L 387.078125 37.074219 L 387.078125 16.851562 Z M 366.855469 16.851562 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.748952, 0, 0, 0.748952, 298.719104, 13.481124)" fill="none" stroke-linejoin="round" d="M 104.473577 4.500204 C 111.931911 4.500204 117.976813 10.545105 117.976813 17.998224 C 117.976813 25.456558 111.931911 31.50146 104.473577 31.50146 C 97.020459 31.50146 90.975557 25.456558 90.975557 17.998224 C 90.975557 10.545105 97.020459 4.500204 104.473577 4.500204 " stroke="url(#9f35ae90f3)" stroke-width="9" stroke-miterlimit="4"/><g clip-path="url(#e851f3aa8f)"><g clip-path="url(#1a8a11e3ed)"><path fill="url(#04977a81bd)" d="M 291.980469 370.917969 L 291.980469 384.398438 L 312.199219 384.398438 L 312.199219 370.917969 Z M 291.980469 370.917969 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.748952, 0, 0, 0.748952, 298.719104, 13.481124)" fill="none" stroke-linejoin="round" d="M 17.998626 477.249058 L 4.500606 495.248157 L -8.997414 477.249058 Z M 17.998626 477.249058 " stroke="url(#349037f545)" stroke-width="9" stroke-miterlimit="4"/><path stroke-linecap="butt" transform="matrix(0.748952, 0, 0, 0.748952, 374.195314, 13.481124)" fill="none" stroke-linejoin="miter" d="M 4.501077 33.749391 L 4.501077 304.862444 C 4.501077 333.042429 27.345485 355.886837 55.52547 355.886837 C 83.705456 355.886837 106.549864 378.731245 106.549864 406.916446 L 106.549864 475.001127 " stroke="url(#2307e7f111)" stroke-width="9" stroke-miterlimit="4"/><g clip-path="url(#cc4c98c178)"><g clip-path="url(#60177b7536)"><path fill="url(#fdd5628501)" d="M 367.453125 16.851562 L 367.453125 37.074219 L 387.675781 37.074219 L 387.675781 16.851562 Z M 367.453125 16.851562 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.748952, 0, 0, 0.748952, 374.195314, 13.481124)" fill="none" stroke-linejoin="round" d="M 4.501077 4.500204 C 11.954195 4.500204 17.999097 10.545105 17.999097 17.998224 C 17.999097 25.456558 11.954195 31.50146 4.501077 31.50146 C -2.957257 31.50146 -9.002159 25.456558 -9.002159 17.998224 C -9.002159 10.545105 -2.957257 4.500204 4.501077 4.500204 " stroke="url(#986825e6f6)" stroke-width="9" stroke-miterlimit="4"/><g clip-path="url(#df22d3fd3e)"><g clip-path="url(#b89295762d)"><path fill="url(#bbfa60a661)" d="M 443.886719 370.917969 L 443.886719 384.398438 L 464.109375 384.398438 L 464.109375 370.917969 Z M 443.886719 370.917969 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.748952, 0, 0, 0.748952, 374.195314, 13.481124)" fill="none" stroke-linejoin="round" d="M 120.053099 477.249058 L 106.549864 495.248157 L 93.051844 477.249058 Z M 120.053099 477.249058 " stroke="url(#7a55b00e03)" stroke-width="9" stroke-miterlimit="4"/><path stroke-linecap="butt" transform="matrix(0.748952, 0, 0, 0.748952, 374.794651, 13.481124)" fill="none" stroke-linejoin="miter" d="M 4.498833 33.749391 L 4.498833 526.640963 " stroke="url(#ee935504a0)" stroke-width="9" stroke-miterlimit="4"/><g clip-path="url(#fcc0a5dd7c)"><g clip-path="url(#9973af2341)"><path fill="url(#4ac78eee5a)" d="M 368.054688 16.851562 L 368.054688 37.074219 L 388.277344 37.074219 L 388.277344 16.851562 Z M 368.054688 16.851562 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.748952, 0, 0, 0.748952, 374.794651, 13.481124)" fill="none" stroke-linejoin="round" d="M 4.498833 4.500204 C 11.957167 4.500204 18.002068 10.545105 18.002068 17.998224 C 18.002068 25.456558 11.957167 31.50146 4.498833 31.50146 C -2.954286 31.50146 -8.999187 25.456558 -8.999187 17.998224 C -8.999187 10.545105 -2.954286 4.500204 4.498833 4.500204 " stroke="url(#9925253c2e)" stroke-width="9" stroke-miterlimit="4"/><g clip-path="url(#16d5fc1e2f)"><g clip-path="url(#b03071fd58)"><path fill="url(#392ae43fcb)" d="M 368.054688 409.59375 L 368.054688 423.074219 L 388.277344 423.074219 L 388.277344 409.59375 Z M 368.054688 409.59375 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.748952, 0, 0, 0.748952, 374.794651, 13.481124)" fill="none" stroke-linejoin="round" d="M 18.002068 528.888895 L 4.498833 546.887993 L -8.999187 528.888895 Z M 18.002068 528.888895 " stroke="url(#bceede4d7d)" stroke-width="9" stroke-miterlimit="4"/><g clip-path="url(#3b197e4dd3)"><g clip-path="url(#04dfb48450)"><path fill="url(#3750b6c48f)" d="M 256.988281 394.59375 L 256.988281 485.039062 L 347.433594 485.039062 L 347.433594 394.59375 Z M 256.988281 394.59375 " fill-rule="nonzero"/></g></g><g clip-path="url(#28473ecb14)"><g clip-path="url(#75eed5a76f)"><path fill="url(#0fe2edd608)" d="M 332.464844 437.6875 L 332.464844 528.132812 L 422.910156 528.132812 L 422.910156 437.6875 Z M 332.464844 437.6875 " fill-rule="nonzero"/></g></g><g clip-path="url(#98d86a3644)"><g clip-path="url(#979a0d1829)"><path fill="url(#77aecc1b5f)" d="M 408.894531 394.59375 L 408.894531 485.039062 L 499.339844 485.039062 L 499.339844 394.59375 Z M 408.894531 394.59375 " fill-rule="nonzero"/></g></g><g clip-path="url(#15e4a64734)"><g clip-path="url(#48014070cd)"><path fill="url(#4d8ab082fa)" d="M 43.664062 90.894531 L 43.664062 286.429688 L 216.914062 286.429688 L 216.914062 90.894531 Z M 43.664062 90.894531 " fill-rule="nonzero"/></g></g><path stroke-linecap="butt" transform="matrix(0.748952, 0, 0, 0.748952, 216.912932, 184.915941)" fill="none" stroke-linejoin="miter" d="M 0.00150949 4.99927 L 83.999042 4.99927 " stroke="url(#004cbd2d54)" stroke-width="10" stroke-miterlimit="4"/><path stroke-linecap="round" transform="matrix(0.748952, 0, 0, 0.748952, 216.912932, 184.915941)" fill="none" stroke-linejoin="round" d="M 116.497559 4.99927 C 116.497559 13.281671 109.779843 19.999388 101.497441 19.999388 C 93.209823 19.999388 86.497323 13.281671 86.497323 4.99927 C 86.497323 -3.283132 93.209823 -10.000848 101.497441 -10.000848 C 109.779843 -10.000848 116.497559 -3.283132 116.497559 4.99927 " stroke="url(#b10bc194e1)" stroke-width="10" stroke-miterlimit="4"/><g clip-path="url(#c0992f7ef3)"><g clip-path="url(#032ffb335e)"><path fill="url(#d734a36ec5)" d="M 307.90625 109.9375 L 307.90625 267.382812 L 448.421875 267.382812 L 448.421875 109.9375 Z M 307.90625 109.9375 " fill-rule="nonzero"/></g></g><g clip-path="url(#af02c642de)"><g clip-path="url(#9e9ac6105d)"><path fill="url(#7cc03b981a)" d="M 0.355469 190.679688 L 0.355469 287.4375 L 86.976562 287.4375 L 86.976562 190.679688 Z M 0.355469 190.679688 " fill-rule="nonzero"/></g></g></svg> \ No newline at end of file diff --git a/site/theme/images/envoy-gateway.svg b/site/theme/images/envoy-gateway.svg new file mode 100644 index 0000000000000..6da2009252218 --- /dev/null +++ b/site/theme/images/envoy-gateway.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="787" zoomAndPan="magnify" viewBox="0 0 590.25 687.000002" height="916" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><clipPath id="cdd502cf3a"><path d="M 0.0546875 403.144531 L 131.4375 403.144531 L 131.4375 549.964844 L 0.0546875 549.964844 Z M 0.0546875 403.144531 " clip-rule="nonzero"/></clipPath><clipPath id="d0c98ed564"><path d="M 75.457031 405.761719 L 121.726562 432.683594 C 127.738281 436.183594 131.4375 442.613281 131.4375 449.566406 L 131.4375 503.542969 C 131.4375 510.496094 127.738281 516.925781 121.726562 520.425781 L 75.457031 547.347656 C 69.453125 550.839844 62.039062 550.839844 56.035156 547.347656 L 9.765625 520.425781 C 3.753906 516.925781 0.0546875 510.496094 0.0546875 503.542969 L 0.0546875 449.566406 C 0.0546875 442.613281 3.753906 436.183594 9.765625 432.683594 L 56.035156 405.761719 C 62.039062 402.269531 69.453125 402.269531 75.457031 405.761719 Z M 75.457031 405.761719 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 0.054505, 400.112745)" gradientUnits="userSpaceOnUse" r="197.023756" cx="0" id="f2ee60f610" cy="3.030029" fx="0" fy="3.030029"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="24f2b65fd0"><path d="M 0.0546875 138.683594 L 131.4375 138.683594 L 131.4375 285.507812 L 0.0546875 285.507812 Z M 0.0546875 138.683594 " clip-rule="nonzero"/></clipPath><clipPath id="92b62c6072"><path d="M 75.457031 141.304688 L 121.726562 168.226562 C 127.738281 171.722656 131.4375 178.152344 131.4375 185.109375 L 131.4375 239.082031 C 131.4375 246.039062 127.738281 252.46875 121.726562 255.964844 L 75.457031 282.886719 C 69.453125 286.378906 62.039062 286.378906 56.035156 282.886719 L 9.765625 255.964844 C 3.753906 252.46875 0.0546875 246.039062 0.0546875 239.082031 L 0.0546875 185.109375 C 0.0546875 178.152344 3.753906 171.722656 9.765625 168.226562 L 56.035156 141.304688 C 62.039062 137.8125 69.453125 137.8125 75.457031 141.304688 Z M 75.457031 141.304688 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 0.054505, 135.654491)" gradientUnits="userSpaceOnUse" r="197.023756" cx="0" id="ca601b7a15" cy="3.030029" fx="0" fy="3.030029"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="27c4d52694"><path d="M 228.484375 3.03125 L 359.867188 3.03125 L 359.867188 149.851562 L 228.484375 149.851562 Z M 228.484375 3.03125 " clip-rule="nonzero"/></clipPath><clipPath id="388b052c84"><path d="M 303.882812 5.648438 L 350.15625 32.570312 C 356.167969 36.070312 359.867188 42.5 359.867188 49.453125 L 359.867188 103.429688 C 359.867188 110.382812 356.167969 116.8125 350.15625 120.3125 L 303.882812 147.234375 C 297.882812 150.726562 290.464844 150.726562 284.464844 147.234375 L 238.191406 120.3125 C 232.179688 116.8125 228.484375 110.382812 228.484375 103.429688 L 228.484375 49.453125 C 228.484375 42.5 232.179688 36.070312 238.191406 32.570312 L 284.464844 5.648438 C 290.464844 2.15625 297.882812 2.15625 303.882812 5.648438 Z M 303.882812 5.648438 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 228.482425, -0.0000998547)" gradientUnits="userSpaceOnUse" r="197.023756" cx="0" id="178c272967" cy="3.030029" fx="0" fy="3.030029"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="2db8b4a595"><path d="M 457.847656 138.683594 L 589.230469 138.683594 L 589.230469 285.507812 L 457.847656 285.507812 Z M 457.847656 138.683594 " clip-rule="nonzero"/></clipPath><clipPath id="75961c6583"><path d="M 533.25 141.304688 L 579.523438 168.226562 C 585.535156 171.722656 589.230469 178.152344 589.230469 185.109375 L 589.230469 239.082031 C 589.230469 246.039062 585.535156 252.46875 579.523438 255.964844 L 533.25 282.886719 C 527.25 286.378906 519.832031 286.378906 513.832031 282.886719 L 467.558594 255.964844 C 461.546875 252.46875 457.847656 246.039062 457.847656 239.082031 L 457.847656 185.109375 C 457.847656 178.152344 461.546875 171.722656 467.558594 168.226562 L 513.832031 141.304688 C 519.832031 137.8125 527.25 137.8125 533.25 141.304688 Z M 533.25 141.304688 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 457.849019, 135.654491)" gradientUnits="userSpaceOnUse" r="197.023756" cx="0" id="9ca3640d96" cy="3.030029" fx="0" fy="3.030029"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="c5efa7c6b1"><path d="M 457.847656 403.144531 L 589.230469 403.144531 L 589.230469 549.964844 L 457.847656 549.964844 Z M 457.847656 403.144531 " clip-rule="nonzero"/></clipPath><clipPath id="ea87a8a9b5"><path d="M 533.25 405.761719 L 579.523438 432.683594 C 585.535156 436.183594 589.230469 442.613281 589.230469 449.566406 L 589.230469 503.542969 C 589.230469 510.496094 585.535156 516.925781 579.523438 520.425781 L 533.25 547.347656 C 527.25 550.839844 519.832031 550.839844 513.832031 547.347656 L 467.558594 520.425781 C 461.546875 516.925781 457.847656 510.496094 457.847656 503.542969 L 457.847656 449.566406 C 457.847656 442.613281 461.546875 436.183594 467.558594 432.683594 L 513.832031 405.761719 C 519.832031 402.269531 527.25 402.269531 533.25 405.761719 Z M 533.25 405.761719 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 457.849019, 400.112745)" gradientUnits="userSpaceOnUse" r="197.023756" cx="0" id="b8669087f2" cy="3.030029" fx="0" fy="3.030029"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="7f43b2fe95"><path d="M 228.484375 535.734375 L 359.867188 535.734375 L 359.867188 682.558594 L 228.484375 682.558594 Z M 228.484375 535.734375 " clip-rule="nonzero"/></clipPath><clipPath id="8b2ffe31ed"><path d="M 303.882812 538.355469 L 350.15625 565.277344 C 356.167969 568.773438 359.867188 575.207031 359.867188 582.160156 L 359.867188 636.132812 C 359.867188 643.089844 356.167969 649.519531 350.15625 653.015625 L 303.882812 679.941406 C 297.882812 683.433594 290.464844 683.433594 284.464844 679.941406 L 238.191406 653.015625 C 232.179688 649.519531 228.484375 643.089844 228.484375 636.132812 L 228.484375 582.160156 C 228.484375 575.207031 232.179688 568.773438 238.191406 565.277344 L 284.464844 538.355469 C 290.464844 534.863281 297.882812 534.863281 303.882812 538.355469 Z M 303.882812 538.355469 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 228.482425, 532.706242)" gradientUnits="userSpaceOnUse" r="197.023756" cx="0" id="d5dc69ab2c" cy="3.030029" fx="0" fy="3.030029"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><linearGradient x1="-1.094028" gradientTransform="matrix(1, 0, 0, 1, 0.0000230781, 0.0000244975)" y1="1.093972" x2="124.302297" gradientUnits="userSpaceOnUse" y2="126.491212" id="840319eb70"><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(22.616577%, 86.157227%, 75.239563%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(22.453308%, 85.871887%, 75.120544%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(22.291565%, 85.588074%, 75.003052%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(22.128296%, 85.302734%, 74.884033%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(21.965027%, 85.018921%, 74.765015%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(21.801758%, 84.735107%, 74.647522%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(21.638489%, 84.449768%, 74.528503%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(21.47522%, 84.165955%, 74.409485%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(21.313477%, 83.880615%, 74.291992%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(21.150208%, 83.596802%, 74.172974%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(20.986938%, 83.312988%, 74.053955%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(20.823669%, 83.027649%, 73.936462%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(20.6604%, 82.743835%, 73.817444%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(20.497131%, 82.458496%, 73.698425%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(20.333862%, 82.174683%, 73.580933%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(20.172119%, 81.890869%, 73.461914%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(20.00885%, 81.60553%, 73.342896%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(19.845581%, 81.321716%, 73.225403%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(19.682312%, 81.036377%, 73.106384%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(19.519043%, 80.752563%, 72.987366%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(19.355774%, 80.46875%, 72.869873%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(19.192505%, 80.183411%, 72.750854%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(19.030762%, 79.899597%, 72.631836%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(18.867493%, 79.614258%, 72.514343%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(18.704224%, 79.330444%, 72.395325%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(18.540955%, 79.046631%, 72.276306%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(18.377686%, 78.761292%, 72.158813%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(18.214417%, 78.477478%, 72.039795%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(18.051147%, 78.192139%, 71.920776%)" offset="0.226563"/><stop stop-opacity="1" stop-color="rgb(17.889404%, 77.908325%, 71.803284%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(17.726135%, 77.624512%, 71.684265%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(17.562866%, 77.339172%, 71.565247%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(17.399597%, 77.055359%, 71.447754%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(17.236328%, 76.77002%, 71.328735%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(17.073059%, 76.486206%, 71.209717%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(16.911316%, 76.202393%, 71.092224%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(16.748047%, 75.917053%, 70.973206%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(16.584778%, 75.63324%, 70.854187%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(16.421509%, 75.3479%, 70.736694%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(16.25824%, 75.064087%, 70.617676%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(16.094971%, 74.780273%, 70.498657%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(15.931702%, 74.494934%, 70.381165%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(15.769958%, 74.211121%, 70.262146%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(15.606689%, 73.925781%, 70.143127%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(15.44342%, 73.641968%, 70.025635%)" offset="0.351562"/><stop stop-opacity="1" stop-color="rgb(15.280151%, 73.358154%, 69.906616%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(15.116882%, 73.072815%, 69.787598%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(14.953613%, 72.789001%, 69.670105%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(14.790344%, 72.503662%, 69.551086%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(14.628601%, 72.219849%, 69.432068%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(14.465332%, 71.936035%, 69.314575%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(14.302063%, 71.650696%, 69.195557%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(14.138794%, 71.366882%, 69.076538%)" offset="0.414063"/><stop stop-opacity="1" stop-color="rgb(13.975525%, 71.081543%, 68.959045%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(13.812256%, 70.797729%, 68.840027%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(13.650513%, 70.513916%, 68.721008%)" offset="0.43146"/><stop stop-opacity="1" stop-color="rgb(13.569641%, 70.372009%, 68.663025%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(13.487244%, 70.228577%, 68.603516%)" offset="0.445313"/><stop stop-opacity="1" stop-color="rgb(13.323975%, 69.944763%, 68.484497%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(13.160706%, 69.659424%, 68.365479%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(12.997437%, 69.37561%, 68.247986%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(12.834167%, 69.091797%, 68.128967%)" offset="0.476563"/><stop stop-opacity="1" stop-color="rgb(12.670898%, 68.806458%, 68.009949%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(12.509155%, 68.522644%, 67.892456%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(12.345886%, 68.237305%, 67.773438%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(12.182617%, 67.953491%, 67.654419%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(12.019348%, 67.669678%, 67.536926%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(11.856079%, 67.384338%, 67.417908%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(11.69281%, 67.100525%, 67.298889%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(11.529541%, 66.815186%, 67.181396%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(11.367798%, 66.531372%, 67.062378%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(11.204529%, 66.247559%, 66.943359%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(11.04126%, 65.962219%, 66.825867%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(10.877991%, 65.678406%, 66.706848%)" offset="0.56854"/><stop stop-opacity="1" stop-color="rgb(10.797119%, 65.536499%, 66.647339%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(10.714722%, 65.393066%, 66.58783%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(10.551453%, 65.109253%, 66.470337%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(10.388184%, 64.825439%, 66.351318%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(10.22644%, 64.5401%, 66.2323%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(10.063171%, 64.256287%, 66.114807%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(9.899902%, 63.970947%, 65.995789%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(9.736633%, 63.687134%, 65.87677%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(9.573364%, 63.40332%, 65.759277%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(9.410095%, 63.117981%, 65.640259%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(9.248352%, 62.834167%, 65.52124%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(9.085083%, 62.548828%, 65.403748%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(8.921814%, 62.265015%, 65.284729%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(8.758545%, 61.981201%, 65.16571%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(8.595276%, 61.695862%, 65.048218%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(8.432007%, 61.412048%, 64.929199%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(8.268738%, 61.126709%, 64.810181%)" offset="0.695312"/><stop stop-opacity="1" stop-color="rgb(8.106995%, 60.842896%, 64.692688%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(7.943726%, 60.559082%, 64.573669%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(7.780457%, 60.273743%, 64.454651%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(7.617188%, 59.989929%, 64.337158%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(7.453918%, 59.70459%, 64.21814%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(7.290649%, 59.420776%, 64.099121%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(7.12738%, 59.136963%, 63.981628%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(6.965637%, 58.851624%, 63.86261%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(6.802368%, 58.56781%, 63.743591%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(6.639099%, 58.282471%, 63.626099%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(6.47583%, 57.998657%, 63.50708%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(6.312561%, 57.714844%, 63.388062%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(6.149292%, 57.429504%, 63.270569%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(5.987549%, 57.145691%, 63.15155%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(5.82428%, 56.860352%, 63.032532%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(5.661011%, 56.576538%, 62.915039%)" offset="0.820313"/><stop stop-opacity="1" stop-color="rgb(5.497742%, 56.292725%, 62.796021%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(5.334473%, 56.007385%, 62.677002%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(5.171204%, 55.723572%, 62.559509%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(5.007935%, 55.438232%, 62.440491%)" offset="0.851563"/><stop stop-opacity="1" stop-color="rgb(4.846191%, 55.154419%, 62.321472%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(4.682922%, 54.870605%, 62.203979%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(4.519653%, 54.585266%, 62.084961%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(4.356384%, 54.301453%, 61.965942%)" offset="0.882813"/><stop stop-opacity="1" stop-color="rgb(4.193115%, 54.016113%, 61.84845%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(4.029846%, 53.7323%, 61.729431%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(3.866577%, 53.448486%, 61.610413%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(3.704834%, 53.163147%, 61.49292%)" offset="0.914063"/><stop stop-opacity="1" stop-color="rgb(3.541565%, 52.879333%, 61.373901%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(3.378296%, 52.593994%, 61.254883%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(3.215027%, 52.310181%, 61.13739%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(3.051758%, 52.026367%, 61.018372%)" offset="0.945313"/><stop stop-opacity="1" stop-color="rgb(2.888489%, 51.741028%, 60.899353%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(2.72522%, 51.457214%, 60.78186%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(2.563477%, 51.171875%, 60.662842%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(2.400208%, 50.888062%, 60.543823%)" offset="0.976563"/><stop stop-opacity="1" stop-color="rgb(2.236938%, 50.604248%, 60.426331%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(2.073669%, 50.318909%, 60.307312%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(1.9104%, 50.035095%, 60.188293%)" offset="1"/></linearGradient><linearGradient x1="44.009461" gradientTransform="matrix(1, 0, 0, 1, 0.0000230781, 0.0000244975)" y1="46.19779" x2="76.009338" gradientUnits="userSpaceOnUse" y2="78.197901" id="e645023d53"><stop stop-opacity="1" stop-color="rgb(15.193176%, 73.204041%, 69.842529%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(15.109253%, 73.059082%, 69.781494%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(14.942932%, 72.769165%, 69.66095%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(14.776611%, 72.477722%, 69.540405%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(14.610291%, 72.187805%, 69.418335%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(14.442444%, 71.897888%, 69.297791%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(14.276123%, 71.607971%, 69.177246%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(14.109802%, 71.316528%, 69.056702%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(13.943481%, 71.026611%, 68.934631%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(13.777161%, 70.736694%, 68.814087%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(13.61084%, 70.445251%, 68.693542%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(13.444519%, 70.155334%, 68.572998%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(13.278198%, 69.865417%, 68.450928%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(13.111877%, 69.5755%, 68.330383%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(12.945557%, 69.284058%, 68.209839%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(12.779236%, 68.994141%, 68.087769%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(12.612915%, 68.704224%, 67.967224%)" offset="0.499998"/><stop stop-opacity="1" stop-color="rgb(12.530518%, 68.559265%, 67.907715%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(12.446594%, 68.414307%, 67.84668%)" offset="0.500002"/><stop stop-opacity="1" stop-color="rgb(12.364197%, 68.269348%, 67.78717%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(12.280273%, 68.122864%, 67.726135%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(12.113953%, 67.832947%, 67.604065%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(11.946106%, 67.54303%, 67.483521%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(11.779785%, 67.251587%, 67.362976%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(11.613464%, 66.96167%, 67.240906%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(11.447144%, 66.671753%, 67.120361%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(11.280823%, 66.381836%, 66.999817%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(11.114502%, 66.090393%, 66.879272%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(10.948181%, 65.800476%, 66.757202%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(10.78186%, 65.510559%, 66.636658%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(10.61554%, 65.220642%, 66.516113%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(10.449219%, 64.929199%, 66.394043%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(10.282898%, 64.639282%, 66.273499%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(10.116577%, 64.349365%, 66.152954%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(9.950256%, 64.059448%, 66.03241%)" offset="1"/></linearGradient><linearGradient x1="-50.407775" gradientTransform="matrix(1, 0, 0, 1, 0.0000108638, 0.00000193725)" y1="76.408131" x2="71.661042" gradientUnits="userSpaceOnUse" y2="198.476053" id="5da4c3836a"><stop stop-opacity="1" stop-color="rgb(20.510864%, 82.481384%, 73.707581%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(20.429993%, 82.341003%, 73.649597%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(20.26825%, 82.060242%, 73.532104%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(20.108032%, 81.77948%, 73.416138%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(19.947815%, 81.500244%, 73.298645%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(19.787598%, 81.219482%, 73.182678%)" offset="0.0348452"/><stop stop-opacity="1" stop-color="rgb(19.706726%, 81.080627%, 73.124695%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(19.625854%, 80.940247%, 73.065186%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(19.465637%, 80.659485%, 72.949219%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(19.30542%, 80.378723%, 72.831726%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(19.145203%, 80.099487%, 72.715759%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(18.984985%, 79.818726%, 72.598267%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(18.823242%, 79.53949%, 72.4823%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(18.663025%, 79.258728%, 72.364807%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(18.502808%, 78.979492%, 72.24884%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(18.34259%, 78.69873%, 72.131348%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(18.180847%, 78.417969%, 72.015381%)" offset="0.117187"/><stop stop-opacity="1" stop-color="rgb(18.02063%, 78.138733%, 71.897888%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(17.860413%, 77.857971%, 71.781921%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(17.700195%, 77.578735%, 71.665955%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(17.538452%, 77.297974%, 71.548462%)" offset="0.148437"/><stop stop-opacity="1" stop-color="rgb(17.378235%, 77.017212%, 71.432495%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(17.218018%, 76.737976%, 71.315002%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(17.0578%, 76.457214%, 71.199036%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(16.896057%, 76.177979%, 71.081543%)" offset="0.179687"/><stop stop-opacity="1" stop-color="rgb(16.73584%, 75.897217%, 70.965576%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(16.575623%, 75.617981%, 70.848083%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(16.415405%, 75.337219%, 70.732117%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(16.255188%, 75.056458%, 70.614624%)" offset="0.210937"/><stop stop-opacity="1" stop-color="rgb(16.093445%, 74.777222%, 70.498657%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(15.933228%, 74.49646%, 70.381165%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(15.77301%, 74.217224%, 70.265198%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(15.612793%, 73.936462%, 70.147705%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(15.45105%, 73.655701%, 70.031738%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(15.290833%, 73.376465%, 69.914246%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(15.130615%, 73.095703%, 69.798279%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(14.970398%, 72.816467%, 69.680786%)" offset="0.273437"/><stop stop-opacity="1" stop-color="rgb(14.808655%, 72.535706%, 69.564819%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(14.648438%, 72.25647%, 69.447327%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(14.48822%, 71.975708%, 69.33136%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(14.328003%, 71.694946%, 69.213867%)" offset="0.304687"/><stop stop-opacity="1" stop-color="rgb(14.16626%, 71.41571%, 69.0979%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(14.006042%, 71.134949%, 68.980408%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(13.845825%, 70.855713%, 68.864441%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(13.685608%, 70.574951%, 68.746948%)" offset="0.335937"/><stop stop-opacity="1" stop-color="rgb(13.525391%, 70.295715%, 68.630981%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(13.363647%, 70.014954%, 68.513489%)" offset="0.351562"/><stop stop-opacity="1" stop-color="rgb(13.20343%, 69.734192%, 68.397522%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(13.043213%, 69.454956%, 68.280029%)" offset="0.367187"/><stop stop-opacity="1" stop-color="rgb(12.882996%, 69.174194%, 68.164062%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(12.721252%, 68.894958%, 68.04657%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(12.561035%, 68.614197%, 67.930603%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(12.400818%, 68.333435%, 67.81311%)" offset="0.398437"/><stop stop-opacity="1" stop-color="rgb(12.240601%, 68.054199%, 67.697144%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(12.078857%, 67.773438%, 67.579651%)" offset="0.414062"/><stop stop-opacity="1" stop-color="rgb(11.91864%, 67.494202%, 67.463684%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(11.758423%, 67.21344%, 67.346191%)" offset="0.429687"/><stop stop-opacity="1" stop-color="rgb(11.598206%, 66.934204%, 67.230225%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(11.436462%, 66.653442%, 67.112732%)" offset="0.445312"/><stop stop-opacity="1" stop-color="rgb(11.276245%, 66.372681%, 66.996765%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(11.116028%, 66.093445%, 66.879272%)" offset="0.460937"/><stop stop-opacity="1" stop-color="rgb(10.955811%, 65.812683%, 66.763306%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(10.795593%, 65.533447%, 66.645813%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(10.63385%, 65.252686%, 66.529846%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(10.473633%, 64.971924%, 66.412354%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(10.313416%, 64.692688%, 66.296387%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(10.153198%, 64.411926%, 66.178894%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(9.991455%, 64.13269%, 66.062927%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(9.831238%, 63.851929%, 65.945435%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(9.671021%, 63.572693%, 65.829468%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(9.510803%, 63.291931%, 65.711975%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(9.34906%, 63.011169%, 65.596008%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(9.188843%, 62.731934%, 65.478516%)" offset="0.554687"/><stop stop-opacity="1" stop-color="rgb(9.028625%, 62.451172%, 65.362549%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(8.868408%, 62.171936%, 65.245056%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(8.706665%, 61.891174%, 65.129089%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(8.546448%, 61.610413%, 65.011597%)" offset="0.585937"/><stop stop-opacity="1" stop-color="rgb(8.38623%, 61.331177%, 64.89563%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(8.226013%, 61.050415%, 64.778137%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(8.065796%, 60.771179%, 64.66217%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(7.904053%, 60.490417%, 64.544678%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(7.743835%, 60.211182%, 64.428711%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(7.583618%, 59.93042%, 64.312744%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(7.423401%, 59.649658%, 64.195251%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(7.261658%, 59.370422%, 64.079285%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(7.10144%, 59.089661%, 63.961792%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(6.941223%, 58.810425%, 63.845825%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(6.781006%, 58.529663%, 63.728333%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(6.619263%, 58.250427%, 63.612366%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(6.459045%, 57.969666%, 63.494873%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(6.298828%, 57.688904%, 63.378906%)" offset="0.695312"/><stop stop-opacity="1" stop-color="rgb(6.138611%, 57.409668%, 63.261414%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(5.976868%, 57.128906%, 63.145447%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(5.81665%, 56.84967%, 63.027954%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(5.656433%, 56.568909%, 62.911987%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(5.496216%, 56.288147%, 62.794495%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(5.335999%, 56.008911%, 62.678528%)" offset="0.742187"/><stop stop-opacity="1" stop-color="rgb(5.174255%, 55.728149%, 62.561035%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(5.014038%, 55.448914%, 62.445068%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(4.853821%, 55.168152%, 62.327576%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(4.693604%, 54.888916%, 62.211609%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(4.53186%, 54.608154%, 62.094116%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(4.371643%, 54.327393%, 61.978149%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(4.211426%, 54.048157%, 61.860657%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(4.051208%, 53.767395%, 61.74469%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(3.889465%, 53.488159%, 61.627197%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(3.729248%, 53.207397%, 61.51123%)" offset="0.820312"/><stop stop-opacity="1" stop-color="rgb(3.569031%, 52.926636%, 61.393738%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(3.408813%, 52.6474%, 61.277771%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(3.248596%, 52.366638%, 61.160278%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(3.086853%, 52.087402%, 61.044312%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(2.926636%, 51.806641%, 60.926819%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(2.766418%, 51.527405%, 60.810852%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(2.606201%, 51.246643%, 60.693359%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(2.444458%, 50.965881%, 60.577393%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(2.284241%, 50.686646%, 60.4599%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(2.124023%, 50.405884%, 60.343933%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(1.963806%, 50.126648%, 60.22644%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(1.802063%, 49.845886%, 60.110474%)" offset="0.914063"/><stop stop-opacity="1" stop-color="rgb(1.641846%, 49.565125%, 59.992981%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(1.481628%, 49.285889%, 59.877014%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(1.321411%, 49.005127%, 59.759521%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(1.159668%, 48.725891%, 59.643555%)" offset="0.945313"/><stop stop-opacity="1" stop-color="rgb(0.999451%, 48.445129%, 59.526062%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(0.839233%, 48.165894%, 59.410095%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(0.679016%, 47.885132%, 59.292603%)" offset="0.965155"/><stop stop-opacity="1" stop-color="rgb(0.59967%, 47.744751%, 59.234619%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(0.518799%, 47.60437%, 59.176636%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(0.357056%, 47.325134%, 59.059143%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(0.196838%, 47.044373%, 58.943176%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(0.0579834%, 46.801758%, 58.842468%)" offset="1"/></linearGradient><linearGradient x1="-69.407819" gradientTransform="matrix(1, 0, 0, 1, 0.0000108638, 0.00000193725)" y1="57.408227" x2="-37.407703" gradientUnits="userSpaceOnUse" y2="89.408109" id="995237a210"><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(22.615051%, 86.152649%, 75.238037%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(22.445679%, 85.858154%, 75.115967%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(22.277832%, 85.565186%, 74.992371%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(22.109985%, 85.270691%, 74.8703%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(21.940613%, 84.977722%, 74.74823%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(21.772766%, 84.683228%, 74.62616%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(21.604919%, 84.390259%, 74.504089%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(21.435547%, 84.095764%, 74.380493%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(21.2677%, 83.802795%, 74.258423%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(21.099854%, 83.508301%, 74.136353%)" offset="0.499998"/><stop stop-opacity="1" stop-color="rgb(21.01593%, 83.361816%, 74.075317%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(20.930481%, 83.215332%, 74.014282%)" offset="0.500002"/><stop stop-opacity="1" stop-color="rgb(20.846558%, 83.068848%, 73.953247%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(20.762634%, 82.920837%, 73.892212%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(20.594788%, 82.627869%, 73.768616%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(20.425415%, 82.333374%, 73.646545%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(20.257568%, 82.038879%, 73.524475%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(20.089722%, 81.745911%, 73.402405%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(19.920349%, 81.451416%, 73.280334%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(19.752502%, 81.158447%, 73.156738%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(19.584656%, 80.863953%, 73.034668%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(19.415283%, 80.570984%, 72.912598%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(19.247437%, 80.276489%, 72.790527%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(19.078064%, 79.983521%, 72.666931%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(18.910217%, 79.689026%, 72.544861%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(18.742371%, 79.396057%, 72.422791%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(18.572998%, 79.101562%, 72.30072%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(18.405151%, 78.808594%, 72.17865%)" offset="1"/></linearGradient><linearGradient x1="11.90589" gradientTransform="matrix(1, 0, 0, 1, -0.00000255696, 0.0000244975)" y1="14.093984" x2="137.302211" gradientUnits="userSpaceOnUse" y2="139.49122" id="4b3066e6fc"><stop stop-opacity="1" stop-color="rgb(20.535278%, 82.525635%, 73.725891%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(20.452881%, 82.382202%, 73.666382%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(20.291138%, 82.098389%, 73.548889%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(20.127869%, 81.813049%, 73.429871%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(19.9646%, 81.529236%, 73.310852%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(19.801331%, 81.245422%, 73.193359%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(19.638062%, 80.960083%, 73.074341%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(19.474792%, 80.67627%, 72.955322%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(19.311523%, 80.39093%, 72.83783%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(19.14978%, 80.107117%, 72.718811%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(18.986511%, 79.823303%, 72.599792%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(18.823242%, 79.537964%, 72.4823%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(18.659973%, 79.25415%, 72.363281%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(18.496704%, 78.968811%, 72.244263%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(18.333435%, 78.684998%, 72.12677%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(18.171692%, 78.401184%, 72.007751%)" offset="0.117187"/><stop stop-opacity="1" stop-color="rgb(18.008423%, 78.115845%, 71.888733%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(17.845154%, 77.832031%, 71.77124%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(17.681885%, 77.546692%, 71.652222%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(17.518616%, 77.262878%, 71.533203%)" offset="0.148437"/><stop stop-opacity="1" stop-color="rgb(17.355347%, 76.979065%, 71.41571%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(17.192078%, 76.693726%, 71.296692%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(17.030334%, 76.409912%, 71.177673%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(16.867065%, 76.124573%, 71.060181%)" offset="0.179687"/><stop stop-opacity="1" stop-color="rgb(16.703796%, 75.840759%, 70.941162%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(16.540527%, 75.556946%, 70.822144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(16.377258%, 75.271606%, 70.704651%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(16.213989%, 74.987793%, 70.585632%)" offset="0.210937"/><stop stop-opacity="1" stop-color="rgb(16.05072%, 74.702454%, 70.466614%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(15.888977%, 74.41864%, 70.349121%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(15.725708%, 74.134827%, 70.230103%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(15.562439%, 73.849487%, 70.111084%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(15.39917%, 73.565674%, 69.993591%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(15.235901%, 73.280334%, 69.874573%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(15.072632%, 72.996521%, 69.755554%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(14.909363%, 72.712708%, 69.638062%)" offset="0.273437"/><stop stop-opacity="1" stop-color="rgb(14.74762%, 72.427368%, 69.519043%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(14.584351%, 72.143555%, 69.400024%)" offset="0.289063"/><stop stop-opacity="1" stop-color="rgb(14.421082%, 71.858215%, 69.282532%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(14.257812%, 71.574402%, 69.163513%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(14.094543%, 71.290588%, 69.044495%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(13.931274%, 71.005249%, 68.927002%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(13.769531%, 70.721436%, 68.807983%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(13.606262%, 70.436096%, 68.688965%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(13.442993%, 70.152283%, 68.571472%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(13.279724%, 69.868469%, 68.452454%)" offset="0.351562"/><stop stop-opacity="1" stop-color="rgb(13.116455%, 69.58313%, 68.333435%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(12.953186%, 69.299316%, 68.215942%)" offset="0.367187"/><stop stop-opacity="1" stop-color="rgb(12.789917%, 69.013977%, 68.096924%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(12.628174%, 68.730164%, 67.977905%)" offset="0.382813"/><stop stop-opacity="1" stop-color="rgb(12.464905%, 68.44635%, 67.860413%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(12.301636%, 68.161011%, 67.741394%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(12.138367%, 67.877197%, 67.622375%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(11.975098%, 67.591858%, 67.504883%)" offset="0.414062"/><stop stop-opacity="1" stop-color="rgb(11.811829%, 67.308044%, 67.385864%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(11.64856%, 67.024231%, 67.266846%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(11.486816%, 66.738892%, 67.149353%)" offset="0.43146"/><stop stop-opacity="1" stop-color="rgb(11.405945%, 66.596985%, 67.089844%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(11.323547%, 66.455078%, 67.030334%)" offset="0.445313"/><stop stop-opacity="1" stop-color="rgb(11.160278%, 66.169739%, 66.911316%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(10.997009%, 65.885925%, 66.793823%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(10.83374%, 65.600586%, 66.674805%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(10.670471%, 65.316772%, 66.555786%)" offset="0.476563"/><stop stop-opacity="1" stop-color="rgb(10.508728%, 65.032959%, 66.438293%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(10.345459%, 64.74762%, 66.319275%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(10.18219%, 64.463806%, 66.200256%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(10.018921%, 64.178467%, 66.082764%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(9.855652%, 63.894653%, 65.963745%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(9.692383%, 63.61084%, 65.844727%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(9.529114%, 63.3255%, 65.727234%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(9.367371%, 63.041687%, 65.608215%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(9.204102%, 62.756348%, 65.489197%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(9.040833%, 62.472534%, 65.371704%)" offset="0.554687"/><stop stop-opacity="1" stop-color="rgb(8.877563%, 62.188721%, 65.252686%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(8.714294%, 61.903381%, 65.133667%)" offset="0.56854"/><stop stop-opacity="1" stop-color="rgb(8.633423%, 61.761475%, 65.075684%)" offset="0.570313"/><stop stop-opacity="1" stop-color="rgb(8.551025%, 61.619568%, 65.016174%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(8.387756%, 61.334229%, 64.897156%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(8.226013%, 61.050415%, 64.778137%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(8.062744%, 60.766602%, 64.660645%)" offset="0.601563"/><stop stop-opacity="1" stop-color="rgb(7.899475%, 60.481262%, 64.541626%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(7.736206%, 60.197449%, 64.422607%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(7.572937%, 59.912109%, 64.305115%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(7.409668%, 59.628296%, 64.186096%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(7.246399%, 59.344482%, 64.067078%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(7.084656%, 59.059143%, 63.949585%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(6.921387%, 58.77533%, 63.830566%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(6.758118%, 58.48999%, 63.711548%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(6.594849%, 58.206177%, 63.594055%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(6.43158%, 57.922363%, 63.475037%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(6.268311%, 57.637024%, 63.356018%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(6.106567%, 57.35321%, 63.238525%)" offset="0.695312"/><stop stop-opacity="1" stop-color="rgb(5.943298%, 57.067871%, 63.119507%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(5.780029%, 56.784058%, 63.000488%)" offset="0.710937"/><stop stop-opacity="1" stop-color="rgb(5.61676%, 56.500244%, 62.882996%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(5.453491%, 56.214905%, 62.763977%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(5.290222%, 55.931091%, 62.644958%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(5.126953%, 55.645752%, 62.527466%)" offset="0.742187"/><stop stop-opacity="1" stop-color="rgb(4.96521%, 55.361938%, 62.408447%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(4.801941%, 55.078125%, 62.289429%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(4.638672%, 54.792786%, 62.171936%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(4.475403%, 54.508972%, 62.052917%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(4.312134%, 54.223633%, 61.933899%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(4.148865%, 53.939819%, 61.816406%)" offset="0.789063"/><stop stop-opacity="1" stop-color="rgb(3.985596%, 53.656006%, 61.697388%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(3.823853%, 53.370667%, 61.578369%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(3.660583%, 53.086853%, 61.460876%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(3.497314%, 52.801514%, 61.341858%)" offset="0.820312"/><stop stop-opacity="1" stop-color="rgb(3.334045%, 52.5177%, 61.222839%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(3.170776%, 52.233887%, 61.105347%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(3.007507%, 51.948547%, 60.986328%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(2.845764%, 51.664734%, 60.86731%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(2.682495%, 51.379395%, 60.749817%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(2.519226%, 51.095581%, 60.630798%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(2.355957%, 50.811768%, 60.51178%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(2.192688%, 50.526428%, 60.394287%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(2.029419%, 50.242615%, 60.275269%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(1.86615%, 49.957275%, 60.15625%)" offset="0.898437"/><stop stop-opacity="1" stop-color="rgb(1.704407%, 49.673462%, 60.038757%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(1.541138%, 49.389648%, 59.919739%)" offset="0.914062"/><stop stop-opacity="1" stop-color="rgb(1.377869%, 49.104309%, 59.80072%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(1.2146%, 48.820496%, 59.683228%)" offset="0.929687"/><stop stop-opacity="1" stop-color="rgb(1.051331%, 48.535156%, 59.564209%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(0.888062%, 48.251343%, 59.44519%)" offset="0.945313"/><stop stop-opacity="1" stop-color="rgb(0.724792%, 47.967529%, 59.327698%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(0.563049%, 47.68219%, 59.208679%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(0.39978%, 47.398376%, 59.089661%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(0.236511%, 47.113037%, 58.972168%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(0.0778198%, 46.835327%, 58.856201%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(0%, 46.699524%, 58.799744%)" offset="1"/></linearGradient><linearGradient x1="-7.094015" gradientTransform="matrix(1, 0, 0, 1, -0.00000255696, 0.0000244975)" y1="-4.906059" x2="24.905867" gradientUnits="userSpaceOnUse" y2="27.094057" id="e5f48d9b04"><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(22.615051%, 86.154175%, 75.238037%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(22.44873%, 85.864258%, 75.117493%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(22.28241%, 85.572815%, 74.996948%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(22.116089%, 85.282898%, 74.874878%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(21.949768%, 84.992981%, 74.754333%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(21.783447%, 84.701538%, 74.633789%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(21.617126%, 84.411621%, 74.511719%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(21.450806%, 84.121704%, 74.391174%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(21.284485%, 83.831787%, 74.27063%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(21.118164%, 83.540344%, 74.150085%)" offset="0.499998"/><stop stop-opacity="1" stop-color="rgb(21.034241%, 83.395386%, 74.08905%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(20.950317%, 83.250427%, 74.028015%)" offset="0.500002"/><stop stop-opacity="1" stop-color="rgb(20.86792%, 83.105469%, 73.968506%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(20.783997%, 82.96051%, 73.907471%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(20.617676%, 82.670593%, 73.786926%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(20.451355%, 82.37915%, 73.664856%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(20.285034%, 82.089233%, 73.544312%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(20.118713%, 81.799316%, 73.423767%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(19.952393%, 81.507874%, 73.303223%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(19.786072%, 81.217957%, 73.181152%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(19.619751%, 80.92804%, 73.060608%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(19.45343%, 80.638123%, 72.940063%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(19.287109%, 80.34668%, 72.819519%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(19.120789%, 80.056763%, 72.697449%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(18.954468%, 79.766846%, 72.576904%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(18.788147%, 79.476929%, 72.45636%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(18.621826%, 79.185486%, 72.33429%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(18.453979%, 78.895569%, 72.213745%)" offset="1"/></linearGradient><linearGradient x1="-3.094026" gradientTransform="matrix(1, 0, 0, 1, 0.0000230781, 0.0000212052)" y1="-0.906041" x2="122.302299" gradientUnits="userSpaceOnUse" y2="124.491199" id="66b35bbf4e"><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(22.621155%, 86.161804%, 75.242615%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(22.460938%, 85.884094%, 75.126648%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(22.297668%, 85.600281%, 75.007629%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(22.134399%, 85.314941%, 74.888611%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(21.97113%, 85.031128%, 74.771118%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(21.809387%, 84.745789%, 74.6521%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(21.646118%, 84.461975%, 74.533081%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(21.482849%, 84.178162%, 74.415588%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(21.31958%, 83.892822%, 74.29657%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(21.156311%, 83.609009%, 74.177551%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(20.993042%, 83.323669%, 74.060059%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(20.829773%, 83.039856%, 73.94104%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(20.66803%, 82.756042%, 73.822021%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(20.504761%, 82.470703%, 73.704529%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(20.341492%, 82.18689%, 73.58551%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(20.178223%, 81.90155%, 73.466492%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(20.014954%, 81.617737%, 73.348999%)" offset="0.148437"/><stop stop-opacity="1" stop-color="rgb(19.851685%, 81.333923%, 73.22998%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(19.688416%, 81.048584%, 73.110962%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(19.526672%, 80.764771%, 72.993469%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(19.363403%, 80.479431%, 72.874451%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(19.200134%, 80.195618%, 72.755432%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(19.036865%, 79.911804%, 72.637939%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(18.873596%, 79.626465%, 72.518921%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(18.710327%, 79.342651%, 72.399902%)" offset="0.210937"/><stop stop-opacity="1" stop-color="rgb(18.547058%, 79.057312%, 72.28241%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(18.385315%, 78.773499%, 72.163391%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(18.222046%, 78.489685%, 72.044373%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(18.058777%, 78.204346%, 71.92688%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(17.895508%, 77.920532%, 71.807861%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(17.732239%, 77.635193%, 71.688843%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(17.56897%, 77.351379%, 71.57135%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(17.407227%, 77.067566%, 71.452332%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(17.243958%, 76.782227%, 71.333313%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(17.080688%, 76.498413%, 71.21582%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(16.917419%, 76.213074%, 71.096802%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(16.75415%, 75.92926%, 70.977783%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(16.590881%, 75.645447%, 70.860291%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(16.427612%, 75.360107%, 70.741272%)" offset="0.320313"/><stop stop-opacity="1" stop-color="rgb(16.265869%, 75.076294%, 70.622253%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(16.1026%, 74.790955%, 70.504761%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(15.939331%, 74.507141%, 70.385742%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(15.776062%, 74.223328%, 70.266724%)" offset="0.351563"/><stop stop-opacity="1" stop-color="rgb(15.612793%, 73.937988%, 70.149231%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(15.449524%, 73.654175%, 70.030212%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(15.286255%, 73.368835%, 69.911194%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(15.124512%, 73.085022%, 69.793701%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(14.961243%, 72.801208%, 69.674683%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(14.797974%, 72.515869%, 69.555664%)" offset="0.398437"/><stop stop-opacity="1" stop-color="rgb(14.634705%, 72.232056%, 69.438171%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(14.471436%, 71.946716%, 69.319153%)" offset="0.414062"/><stop stop-opacity="1" stop-color="rgb(14.308167%, 71.662903%, 69.200134%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(14.146423%, 71.379089%, 69.082642%)" offset="0.429687"/><stop stop-opacity="1" stop-color="rgb(13.983154%, 71.09375%, 68.963623%)" offset="0.43146"/><stop stop-opacity="1" stop-color="rgb(13.902283%, 70.951843%, 68.904114%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(13.819885%, 70.809937%, 68.844604%)" offset="0.445312"/><stop stop-opacity="1" stop-color="rgb(13.656616%, 70.524597%, 68.727112%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(13.493347%, 70.240784%, 68.608093%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(13.330078%, 69.95697%, 68.489075%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(13.166809%, 69.671631%, 68.371582%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(13.005066%, 69.387817%, 68.252563%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(12.841797%, 69.102478%, 68.133545%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(12.678528%, 68.818665%, 68.016052%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(12.515259%, 68.534851%, 67.897034%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(12.35199%, 68.249512%, 67.778015%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(12.188721%, 67.965698%, 67.660522%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(12.025452%, 67.680359%, 67.541504%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(11.863708%, 67.396545%, 67.422485%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(11.700439%, 67.112732%, 67.304993%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(11.53717%, 66.827393%, 67.185974%)" offset="0.554687"/><stop stop-opacity="1" stop-color="rgb(11.373901%, 66.543579%, 67.066956%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(11.210632%, 66.25824%, 66.949463%)" offset="0.56854"/><stop stop-opacity="1" stop-color="rgb(11.129761%, 66.116333%, 66.889954%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(11.047363%, 65.974426%, 66.830444%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(10.884094%, 65.690613%, 66.711426%)" offset="0.585937"/><stop stop-opacity="1" stop-color="rgb(10.722351%, 65.405273%, 66.593933%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(10.559082%, 65.12146%, 66.474915%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(10.395813%, 64.836121%, 66.355896%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(10.232544%, 64.552307%, 66.238403%)" offset="0.617187"/><stop stop-opacity="1" stop-color="rgb(10.069275%, 64.268494%, 66.119385%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(9.906006%, 63.983154%, 66.000366%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(9.744263%, 63.699341%, 65.882874%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(9.580994%, 63.414001%, 65.763855%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(9.417725%, 63.130188%, 65.644836%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(9.254456%, 62.846375%, 65.527344%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(9.091187%, 62.561035%, 65.408325%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(8.927917%, 62.277222%, 65.289307%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(8.764648%, 61.991882%, 65.171814%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(8.602905%, 61.708069%, 65.052795%)" offset="0.695312"/><stop stop-opacity="1" stop-color="rgb(8.439636%, 61.424255%, 64.933777%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(8.276367%, 61.138916%, 64.816284%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(8.113098%, 60.855103%, 64.697266%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(7.949829%, 60.569763%, 64.578247%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(7.78656%, 60.28595%, 64.460754%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(7.623291%, 60.002136%, 64.341736%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(7.461548%, 59.716797%, 64.222717%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(7.298279%, 59.432983%, 64.105225%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(7.13501%, 59.147644%, 63.986206%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(6.971741%, 58.863831%, 63.867188%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(6.808472%, 58.580017%, 63.749695%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(6.645203%, 58.294678%, 63.630676%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(6.483459%, 58.010864%, 63.511658%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(6.32019%, 57.725525%, 63.394165%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(6.156921%, 57.441711%, 63.275146%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(5.993652%, 57.157898%, 63.156128%)" offset="0.820312"/><stop stop-opacity="1" stop-color="rgb(5.830383%, 56.872559%, 63.038635%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(5.667114%, 56.588745%, 62.919617%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(5.503845%, 56.303406%, 62.800598%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(5.342102%, 56.019592%, 62.683105%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(5.178833%, 55.735779%, 62.564087%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(5.015564%, 55.450439%, 62.445068%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(4.852295%, 55.166626%, 62.327576%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(4.689026%, 54.881287%, 62.208557%)" offset="0.882813"/><stop stop-opacity="1" stop-color="rgb(4.525757%, 54.597473%, 62.089539%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(4.362488%, 54.312134%, 61.972046%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(4.200745%, 54.02832%, 61.853027%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(4.037476%, 53.744507%, 61.734009%)" offset="0.914063"/><stop stop-opacity="1" stop-color="rgb(3.874207%, 53.459167%, 61.616516%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(3.710938%, 53.175354%, 61.497498%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(3.547668%, 52.890015%, 61.378479%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(3.384399%, 52.606201%, 61.260986%)" offset="0.945313"/><stop stop-opacity="1" stop-color="rgb(3.22113%, 52.322388%, 61.141968%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(3.059387%, 52.037048%, 61.022949%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(2.896118%, 51.753235%, 60.905457%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(2.732849%, 51.467896%, 60.786438%)" offset="0.976563"/><stop stop-opacity="1" stop-color="rgb(2.56958%, 51.184082%, 60.667419%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(2.406311%, 50.900269%, 60.549927%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(2.243042%, 50.614929%, 60.430908%)" offset="1"/></linearGradient><linearGradient x1="109.302317" gradientTransform="matrix(1, 0, 0, 1, 0.0000230781, 0.0000212052)" y1="111.491123" x2="141.302199" gradientUnits="userSpaceOnUse" y2="143.491238" id="5e344b7f9e"><stop stop-opacity="1" stop-color="rgb(4.325867%, 54.248047%, 61.94458%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(4.241943%, 54.103088%, 61.883545%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(4.075623%, 53.811646%, 61.763%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(3.909302%, 53.521729%, 61.64093%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(3.742981%, 53.231812%, 61.520386%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(3.57666%, 52.940369%, 61.399841%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(3.410339%, 52.650452%, 61.279297%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(3.244019%, 52.360535%, 61.157227%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(3.077698%, 52.070618%, 61.036682%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(2.911377%, 51.779175%, 60.916138%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(2.745056%, 51.489258%, 60.794067%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(2.578735%, 51.199341%, 60.673523%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(2.412415%, 50.909424%, 60.552979%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(2.244568%, 50.617981%, 60.432434%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(2.078247%, 50.328064%, 60.310364%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(1.911926%, 50.038147%, 60.189819%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(1.745605%, 49.746704%, 60.069275%)" offset="0.499998"/><stop stop-opacity="1" stop-color="rgb(1.663208%, 49.601746%, 60.00824%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(1.579285%, 49.456787%, 59.947205%)" offset="0.500002"/><stop stop-opacity="1" stop-color="rgb(1.496887%, 49.311829%, 59.887695%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(1.412964%, 49.16687%, 59.82666%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(1.246643%, 48.876953%, 59.706116%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(1.080322%, 48.58551%, 59.585571%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(0.914001%, 48.295593%, 59.463501%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(0.747681%, 48.005676%, 59.342957%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(0.58136%, 47.715759%, 59.222412%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(0.415039%, 47.424316%, 59.100342%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(0.248718%, 47.134399%, 58.979797%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(0.0823975%, 46.844482%, 58.859253%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(0%, 46.699524%, 58.799744%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(0%, 46.699524%, 58.799744%)" offset="1"/></linearGradient><linearGradient x1="-63.407784" gradientTransform="matrix(1, 0, 0, 1, 0.0000108638, 0.0000210385)" y1="63.408218" x2="58.661023" gradientUnits="userSpaceOnUse" y2="185.476129" id="ae16148129"><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(22.618103%, 86.158752%, 75.241089%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(22.457886%, 85.877991%, 75.123596%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(22.297668%, 85.598755%, 75.007629%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(22.135925%, 85.317993%, 74.890137%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(21.975708%, 85.038757%, 74.77417%)" offset="0.0348452"/><stop stop-opacity="1" stop-color="rgb(21.896362%, 84.898376%, 74.716187%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(21.815491%, 84.757996%, 74.656677%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(21.655273%, 84.47876%, 74.54071%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(21.495056%, 84.197998%, 74.423218%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(21.333313%, 83.917236%, 74.307251%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(21.173096%, 83.638%, 74.189758%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(21.012878%, 83.357239%, 74.073792%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(20.852661%, 83.078003%, 73.956299%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(20.690918%, 82.797241%, 73.840332%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(20.530701%, 82.516479%, 73.722839%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(20.370483%, 82.237244%, 73.606873%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(20.210266%, 81.956482%, 73.48938%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(20.048523%, 81.677246%, 73.373413%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(19.888306%, 81.396484%, 73.25592%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(19.728088%, 81.117249%, 73.139954%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(19.567871%, 80.836487%, 73.022461%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(19.406128%, 80.555725%, 72.906494%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(19.245911%, 80.276489%, 72.789001%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(19.085693%, 79.995728%, 72.673035%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(18.925476%, 79.716492%, 72.555542%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(18.765259%, 79.43573%, 72.439575%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(18.603516%, 79.154968%, 72.322083%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(18.443298%, 78.875732%, 72.206116%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(18.283081%, 78.594971%, 72.088623%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(18.122864%, 78.315735%, 71.972656%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(17.961121%, 78.034973%, 71.855164%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(17.800903%, 77.755737%, 71.739197%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(17.640686%, 77.474976%, 71.621704%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(17.480469%, 77.194214%, 71.505737%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(17.318726%, 76.914978%, 71.388245%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(17.158508%, 76.634216%, 71.272278%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(16.998291%, 76.35498%, 71.154785%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(16.838074%, 76.074219%, 71.038818%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(16.676331%, 75.794983%, 70.921326%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(16.516113%, 75.514221%, 70.805359%)" offset="0.304687"/><stop stop-opacity="1" stop-color="rgb(16.355896%, 75.233459%, 70.687866%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(16.195679%, 74.954224%, 70.571899%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(16.035461%, 74.673462%, 70.454407%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(15.873718%, 74.394226%, 70.33844%)" offset="0.335937"/><stop stop-opacity="1" stop-color="rgb(15.713501%, 74.113464%, 70.220947%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(15.553284%, 73.832703%, 70.10498%)" offset="0.351562"/><stop stop-opacity="1" stop-color="rgb(15.393066%, 73.553467%, 69.987488%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(15.231323%, 73.272705%, 69.871521%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(15.071106%, 72.993469%, 69.754028%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(14.910889%, 72.712708%, 69.638062%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(14.750671%, 72.433472%, 69.520569%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(14.588928%, 72.15271%, 69.404602%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(14.428711%, 71.871948%, 69.287109%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(14.268494%, 71.592712%, 69.171143%)" offset="0.414063"/><stop stop-opacity="1" stop-color="rgb(14.108276%, 71.311951%, 69.055176%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(13.946533%, 71.032715%, 68.937683%)" offset="0.429687"/><stop stop-opacity="1" stop-color="rgb(13.786316%, 70.751953%, 68.821716%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(13.626099%, 70.471191%, 68.704224%)" offset="0.445312"/><stop stop-opacity="1" stop-color="rgb(13.465881%, 70.191956%, 68.588257%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(13.305664%, 69.911194%, 68.470764%)" offset="0.460937"/><stop stop-opacity="1" stop-color="rgb(13.143921%, 69.631958%, 68.354797%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(12.983704%, 69.351196%, 68.237305%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(12.823486%, 69.07196%, 68.121338%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(12.663269%, 68.791199%, 68.003845%)" offset="0.492187"/><stop stop-opacity="1" stop-color="rgb(12.501526%, 68.510437%, 67.887878%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(12.341309%, 68.231201%, 67.770386%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(12.181091%, 67.950439%, 67.654419%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(12.020874%, 67.671204%, 67.536926%)" offset="0.523437"/><stop stop-opacity="1" stop-color="rgb(11.859131%, 67.390442%, 67.420959%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(11.698914%, 67.10968%, 67.303467%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(11.538696%, 66.830444%, 67.1875%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(11.378479%, 66.549683%, 67.070007%)" offset="0.554687"/><stop stop-opacity="1" stop-color="rgb(11.216736%, 66.270447%, 66.954041%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(11.056519%, 65.989685%, 66.836548%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(10.896301%, 65.710449%, 66.720581%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(10.736084%, 65.429688%, 66.603088%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(10.575867%, 65.148926%, 66.487122%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(10.414124%, 64.86969%, 66.369629%)" offset="0.601563"/><stop stop-opacity="1" stop-color="rgb(10.253906%, 64.588928%, 66.253662%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(10.093689%, 64.309692%, 66.136169%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(9.933472%, 64.028931%, 66.020203%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(9.771729%, 63.749695%, 65.90271%)" offset="0.632813"/><stop stop-opacity="1" stop-color="rgb(9.611511%, 63.468933%, 65.786743%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(9.451294%, 63.188171%, 65.66925%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(9.291077%, 62.908936%, 65.553284%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(9.129333%, 62.628174%, 65.435791%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(8.969116%, 62.348938%, 65.319824%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(8.808899%, 62.068176%, 65.202332%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(8.648682%, 61.787415%, 65.086365%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(8.486938%, 61.508179%, 64.968872%)" offset="0.695313"/><stop stop-opacity="1" stop-color="rgb(8.326721%, 61.227417%, 64.852905%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(8.166504%, 60.948181%, 64.735413%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(8.006287%, 60.667419%, 64.619446%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(7.846069%, 60.388184%, 64.501953%)" offset="0.726563"/><stop stop-opacity="1" stop-color="rgb(7.684326%, 60.107422%, 64.385986%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(7.524109%, 59.82666%, 64.268494%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(7.363892%, 59.547424%, 64.152527%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(7.203674%, 59.266663%, 64.035034%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(7.041931%, 58.987427%, 63.919067%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(6.881714%, 58.706665%, 63.801575%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(6.721497%, 58.425903%, 63.685608%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(6.561279%, 58.146667%, 63.568115%)" offset="0.789063"/><stop stop-opacity="1" stop-color="rgb(6.399536%, 57.865906%, 63.452148%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(6.239319%, 57.58667%, 63.334656%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(6.079102%, 57.305908%, 63.218689%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(5.918884%, 57.026672%, 63.101196%)" offset="0.820312"/><stop stop-opacity="1" stop-color="rgb(5.758667%, 56.745911%, 62.985229%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(5.596924%, 56.465149%, 62.867737%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(5.436707%, 56.185913%, 62.75177%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(5.276489%, 55.905151%, 62.634277%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(5.116272%, 55.625916%, 62.518311%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(4.954529%, 55.345154%, 62.400818%)" offset="0.867187"/><stop stop-opacity="1" stop-color="rgb(4.794312%, 55.065918%, 62.284851%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(4.634094%, 54.785156%, 62.167358%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(4.473877%, 54.504395%, 62.051392%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(4.312134%, 54.225159%, 61.933899%)" offset="0.898437"/><stop stop-opacity="1" stop-color="rgb(4.151917%, 53.944397%, 61.817932%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(3.991699%, 53.665161%, 61.701965%)" offset="0.914062"/><stop stop-opacity="1" stop-color="rgb(3.831482%, 53.384399%, 61.584473%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(3.669739%, 53.103638%, 61.468506%)" offset="0.929687"/><stop stop-opacity="1" stop-color="rgb(3.509521%, 52.824402%, 61.351013%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(3.349304%, 52.54364%, 61.235046%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(3.189087%, 52.264404%, 61.117554%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(3.02887%, 51.983643%, 61.001587%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(2.867126%, 51.704407%, 60.884094%)" offset="0.965155"/><stop stop-opacity="1" stop-color="rgb(2.787781%, 51.564026%, 60.826111%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(2.706909%, 51.423645%, 60.768127%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(2.546692%, 51.142883%, 60.650635%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(2.386475%, 50.863647%, 60.534668%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(2.224731%, 50.582886%, 60.417175%)" offset="1"/></linearGradient><linearGradient x1="45.407467" gradientTransform="matrix(1, 0, 0, 1, 0.0000108638, 0.0000210385)" y1="172.222671" x2="77.407593" gradientUnits="userSpaceOnUse" y2="204.222562" id="280b352961"><stop stop-opacity="1" stop-color="rgb(4.377747%, 54.336548%, 61.981201%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(4.292297%, 54.188538%, 61.920166%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(4.124451%, 53.895569%, 61.798096%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(3.956604%, 53.601074%, 61.676025%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(3.787231%, 53.308105%, 61.552429%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(3.619385%, 53.013611%, 61.430359%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(3.451538%, 52.720642%, 61.308289%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(3.282166%, 52.426147%, 61.186218%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(3.114319%, 52.133179%, 61.062622%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(2.944946%, 51.838684%, 60.940552%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(2.7771%, 51.545715%, 60.818481%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(2.609253%, 51.251221%, 60.696411%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(2.43988%, 50.958252%, 60.574341%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(2.272034%, 50.663757%, 60.450745%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(2.104187%, 50.370789%, 60.328674%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(1.934814%, 50.076294%, 60.206604%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(1.766968%, 49.783325%, 60.084534%)" offset="0.499998"/><stop stop-opacity="1" stop-color="rgb(1.683044%, 49.636841%, 60.023499%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(1.599121%, 49.488831%, 59.962463%)" offset="0.500002"/><stop stop-opacity="1" stop-color="rgb(1.515198%, 49.342346%, 59.901428%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(1.429749%, 49.195862%, 59.838867%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(1.261902%, 48.901367%, 59.716797%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(1.094055%, 48.608398%, 59.594727%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(0.924683%, 48.313904%, 59.472656%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(0.756836%, 48.020935%, 59.350586%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(0.588989%, 47.72644%, 59.22699%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(0.419617%, 47.433472%, 59.104919%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(0.25177%, 47.138977%, 58.982849%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(0.0839233%, 46.846008%, 58.860779%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(0%, 46.699524%, 58.799744%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(0%, 46.699524%, 58.799744%)" offset="1"/></linearGradient><linearGradient x1="9.905891" gradientTransform="matrix(1, 0, 0, 1, -0.00000255696, 0.0000212052)" y1="12.093972" x2="135.302212" gradientUnits="userSpaceOnUse" y2="137.491207" id="d69db903c6"><stop stop-opacity="1" stop-color="rgb(20.86792%, 83.105469%, 73.968506%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(20.787048%, 82.963562%, 73.908997%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(20.623779%, 82.678223%, 73.789978%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(20.46051%, 82.394409%, 73.672485%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(20.297241%, 82.10907%, 73.553467%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(20.133972%, 81.825256%, 73.434448%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(19.970703%, 81.541443%, 73.316956%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(19.807434%, 81.256104%, 73.197937%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(19.645691%, 80.97229%, 73.078918%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(19.482422%, 80.686951%, 72.961426%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(19.319153%, 80.403137%, 72.842407%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(19.155884%, 80.119324%, 72.723389%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(18.992615%, 79.833984%, 72.605896%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(18.829346%, 79.550171%, 72.486877%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(18.667603%, 79.264832%, 72.367859%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(18.504333%, 78.981018%, 72.250366%)" offset="0.117187"/><stop stop-opacity="1" stop-color="rgb(18.341064%, 78.697205%, 72.131348%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(18.177795%, 78.411865%, 72.012329%)" offset="0.132813"/><stop stop-opacity="1" stop-color="rgb(18.014526%, 78.128052%, 71.894836%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(17.851257%, 77.842712%, 71.775818%)" offset="0.148437"/><stop stop-opacity="1" stop-color="rgb(17.687988%, 77.558899%, 71.656799%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(17.526245%, 77.275085%, 71.539307%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(17.362976%, 76.989746%, 71.420288%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(17.199707%, 76.705933%, 71.30127%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(17.036438%, 76.420593%, 71.183777%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(16.873169%, 76.13678%, 71.064758%)" offset="0.195313"/><stop stop-opacity="1" stop-color="rgb(16.7099%, 75.852966%, 70.94574%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(16.546631%, 75.567627%, 70.828247%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(16.384888%, 75.283813%, 70.709229%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(16.221619%, 74.998474%, 70.59021%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(16.05835%, 74.714661%, 70.472717%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(15.895081%, 74.430847%, 70.353699%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(15.731812%, 74.145508%, 70.23468%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(15.568542%, 73.861694%, 70.117188%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(15.405273%, 73.576355%, 69.998169%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(15.24353%, 73.292542%, 69.87915%)" offset="0.273437"/><stop stop-opacity="1" stop-color="rgb(15.080261%, 73.008728%, 69.761658%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(14.916992%, 72.723389%, 69.642639%)" offset="0.289063"/><stop stop-opacity="1" stop-color="rgb(14.753723%, 72.439575%, 69.523621%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(14.590454%, 72.154236%, 69.406128%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(14.427185%, 71.870422%, 69.287109%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(14.265442%, 71.586609%, 69.168091%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(14.102173%, 71.30127%, 69.050598%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(13.938904%, 71.017456%, 68.93158%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(13.775635%, 70.732117%, 68.812561%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(13.612366%, 70.448303%, 68.695068%)" offset="0.351562"/><stop stop-opacity="1" stop-color="rgb(13.449097%, 70.16449%, 68.57605%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(13.285828%, 69.87915%, 68.457031%)" offset="0.367187"/><stop stop-opacity="1" stop-color="rgb(13.124084%, 69.595337%, 68.339539%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(12.960815%, 69.309998%, 68.22052%)" offset="0.382813"/><stop stop-opacity="1" stop-color="rgb(12.797546%, 69.026184%, 68.101501%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(12.634277%, 68.742371%, 67.984009%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(12.471008%, 68.457031%, 67.86499%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(12.307739%, 68.173218%, 67.745972%)" offset="0.414062"/><stop stop-opacity="1" stop-color="rgb(12.14447%, 67.887878%, 67.628479%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(11.982727%, 67.604065%, 67.50946%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(11.819458%, 67.320251%, 67.390442%)" offset="0.43146"/><stop stop-opacity="1" stop-color="rgb(11.738586%, 67.178345%, 67.332458%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(11.656189%, 67.034912%, 67.272949%)" offset="0.445312"/><stop stop-opacity="1" stop-color="rgb(11.49292%, 66.751099%, 67.153931%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(11.329651%, 66.465759%, 67.034912%)" offset="0.460937"/><stop stop-opacity="1" stop-color="rgb(11.166382%, 66.181946%, 66.917419%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(11.004639%, 65.898132%, 66.798401%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(10.84137%, 65.612793%, 66.679382%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(10.678101%, 65.328979%, 66.56189%)" offset="0.492187"/><stop stop-opacity="1" stop-color="rgb(10.514832%, 65.04364%, 66.442871%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(10.351562%, 64.759827%, 66.323853%)" offset="0.507813"/><stop stop-opacity="1" stop-color="rgb(10.188293%, 64.476013%, 66.20636%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(10.025024%, 64.190674%, 66.087341%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(9.863281%, 63.90686%, 65.968323%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(9.700012%, 63.621521%, 65.85083%)" offset="0.539063"/><stop stop-opacity="1" stop-color="rgb(9.536743%, 63.337708%, 65.731812%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(9.373474%, 63.053894%, 65.612793%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(9.210205%, 62.768555%, 65.4953%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(9.046936%, 62.484741%, 65.376282%)" offset="0.56854"/><stop stop-opacity="1" stop-color="rgb(8.966064%, 62.342834%, 65.316772%)" offset="0.570313"/><stop stop-opacity="1" stop-color="rgb(8.883667%, 62.199402%, 65.257263%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(8.721924%, 61.915588%, 65.139771%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(8.558655%, 61.631775%, 65.020752%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(8.395386%, 61.346436%, 64.901733%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(8.232117%, 61.062622%, 64.784241%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(8.068848%, 60.777283%, 64.665222%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(7.905579%, 60.493469%, 64.546204%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(7.74231%, 60.209656%, 64.428711%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(7.580566%, 59.924316%, 64.309692%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(7.417297%, 59.640503%, 64.190674%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(7.254028%, 59.355164%, 64.073181%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(7.090759%, 59.07135%, 63.954163%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(6.92749%, 58.787537%, 63.835144%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(6.764221%, 58.502197%, 63.717651%)" offset="0.679687"/><stop stop-opacity="1" stop-color="rgb(6.602478%, 58.218384%, 63.598633%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(6.439209%, 57.933044%, 63.479614%)" offset="0.695313"/><stop stop-opacity="1" stop-color="rgb(6.27594%, 57.649231%, 63.362122%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(6.112671%, 57.365417%, 63.243103%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(5.949402%, 57.080078%, 63.124084%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(5.786133%, 56.796265%, 63.006592%)" offset="0.726563"/><stop stop-opacity="1" stop-color="rgb(5.622864%, 56.510925%, 62.887573%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(5.461121%, 56.227112%, 62.768555%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(5.297852%, 55.943298%, 62.651062%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(5.134583%, 55.657959%, 62.532043%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(4.971313%, 55.374146%, 62.413025%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(4.808044%, 55.088806%, 62.295532%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(4.644775%, 54.804993%, 62.176514%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(4.481506%, 54.521179%, 62.057495%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(4.319763%, 54.23584%, 61.940002%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(4.156494%, 53.952026%, 61.820984%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(3.993225%, 53.666687%, 61.701965%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(3.829956%, 53.382874%, 61.584473%)" offset="0.820312"/><stop stop-opacity="1" stop-color="rgb(3.666687%, 53.09906%, 61.465454%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(3.503418%, 52.813721%, 61.346436%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(3.340149%, 52.529907%, 61.228943%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(3.178406%, 52.244568%, 61.109924%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(3.015137%, 51.960754%, 60.990906%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(2.851868%, 51.676941%, 60.873413%)" offset="0.867187"/><stop stop-opacity="1" stop-color="rgb(2.688599%, 51.391602%, 60.754395%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(2.52533%, 51.107788%, 60.635376%)" offset="0.882813"/><stop stop-opacity="1" stop-color="rgb(2.362061%, 50.822449%, 60.517883%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(2.200317%, 50.538635%, 60.398865%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(2.037048%, 50.254822%, 60.279846%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(1.873779%, 49.969482%, 60.162354%)" offset="0.914063"/><stop stop-opacity="1" stop-color="rgb(1.71051%, 49.685669%, 60.043335%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(1.547241%, 49.40033%, 59.924316%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(1.383972%, 49.116516%, 59.806824%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(1.220703%, 48.832703%, 59.687805%)" offset="0.945313"/><stop stop-opacity="1" stop-color="rgb(1.05896%, 48.547363%, 59.568787%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(0.895691%, 48.26355%, 59.451294%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(0.732422%, 47.97821%, 59.332275%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(0.569153%, 47.694397%, 59.213257%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(0.405884%, 47.410583%, 59.095764%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(0.242615%, 47.125244%, 58.976746%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(0.0808716%, 46.841431%, 58.857727%)" offset="1"/></linearGradient><linearGradient x1="58.198842" gradientTransform="matrix(1, 0, 0, 1, -0.00000255696, 0.0000212052)" y1="60.387275" x2="90.198728" gradientUnits="userSpaceOnUse" y2="92.387394" id="1767aac57c"><stop stop-opacity="1" stop-color="rgb(12.831116%, 69.084167%, 68.125916%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(12.747192%, 68.939209%, 68.06488%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(12.580872%, 68.649292%, 67.944336%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(12.414551%, 68.359375%, 67.823792%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(12.24823%, 68.067932%, 67.703247%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(12.081909%, 67.778015%, 67.581177%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(11.915588%, 67.488098%, 67.460632%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(11.749268%, 67.196655%, 67.340088%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(11.582947%, 66.906738%, 67.218018%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(11.416626%, 66.616821%, 67.097473%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(11.248779%, 66.326904%, 66.976929%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(11.082458%, 66.035461%, 66.856384%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(10.916138%, 65.745544%, 66.734314%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(10.749817%, 65.455627%, 66.61377%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(10.583496%, 65.16571%, 66.493225%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(10.417175%, 64.874268%, 66.371155%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(10.250854%, 64.584351%, 66.25061%)" offset="0.499998"/><stop stop-opacity="1" stop-color="rgb(10.168457%, 64.439392%, 66.191101%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(10.084534%, 64.294434%, 66.130066%)" offset="0.500002"/><stop stop-opacity="1" stop-color="rgb(10.002136%, 64.149475%, 66.070557%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(9.918213%, 64.002991%, 66.009521%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(9.751892%, 63.713074%, 65.887451%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(9.585571%, 63.423157%, 65.766907%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(9.41925%, 63.13324%, 65.646362%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(9.25293%, 62.841797%, 65.525818%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(9.086609%, 62.55188%, 65.403748%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(8.920288%, 62.261963%, 65.283203%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(8.752441%, 61.972046%, 65.162659%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(8.586121%, 61.680603%, 65.040588%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(8.4198%, 61.390686%, 64.920044%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(8.253479%, 61.100769%, 64.7995%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(8.087158%, 60.809326%, 64.678955%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(7.920837%, 60.519409%, 64.556885%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(7.754517%, 60.229492%, 64.43634%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(7.588196%, 59.939575%, 64.315796%)" offset="1"/></linearGradient><clipPath id="fc7bbcdba8"><path d="M 207.554688 245.03125 L 380.792969 245.03125 L 380.792969 440.558594 L 207.554688 440.558594 Z M 207.554688 245.03125 " clip-rule="nonzero"/></clipPath><clipPath id="3ccb8f1fb8"><path d="M 303.882812 247.652344 L 371.082031 286.75 C 377.09375 290.246094 380.792969 296.675781 380.792969 303.632812 L 380.792969 381.957031 C 380.792969 388.910156 377.09375 395.34375 371.082031 398.839844 L 303.882812 437.9375 C 297.882812 441.429688 290.464844 441.429688 284.464844 437.9375 L 217.265625 398.839844 C 211.253906 395.34375 207.554688 388.910156 207.554688 381.957031 L 207.554688 303.632812 C 207.554688 296.675781 211.253906 290.246094 217.265625 286.75 L 284.464844 247.652344 C 290.464844 244.160156 297.882812 244.160156 303.882812 247.652344 Z M 303.882812 247.652344 " clip-rule="nonzero"/></clipPath><linearGradient x1="-8.233998" gradientTransform="matrix(0.676708, 0, 0, 0.676708, 207.555516, 242.001772)" y1="12.712002" x2="264.233967" gradientUnits="userSpaceOnUse" y2="285.178947" id="d9c0917a74"><stop stop-opacity="1" stop-color="rgb(22.698975%, 86.299133%, 75.299072%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(22.610474%, 86.143494%, 75.234985%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(22.433472%, 85.835266%, 75.105286%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(22.254944%, 85.525513%, 74.977112%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(22.077942%, 85.215759%, 74.847412%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(21.90094%, 84.906006%, 74.719238%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(21.723938%, 84.597778%, 74.589539%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(21.546936%, 84.288025%, 74.461365%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(21.368408%, 83.978271%, 74.331665%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(21.191406%, 83.668518%, 74.203491%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(21.014404%, 83.360291%, 74.073792%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(20.837402%, 83.050537%, 73.945618%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(20.658875%, 82.740784%, 73.815918%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(20.481873%, 82.43103%, 73.687744%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(20.304871%, 82.122803%, 73.558044%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(20.127869%, 81.813049%, 73.429871%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(19.950867%, 81.503296%, 73.300171%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(19.772339%, 81.193542%, 73.171997%)" offset="0.132813"/><stop stop-opacity="1" stop-color="rgb(19.595337%, 80.885315%, 73.042297%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(19.418335%, 80.575562%, 72.914124%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(19.241333%, 80.265808%, 72.78595%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(19.062805%, 79.956055%, 72.65625%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(18.885803%, 79.647827%, 72.528076%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(18.708801%, 79.338074%, 72.398376%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(18.531799%, 79.02832%, 72.270203%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(18.354797%, 78.718567%, 72.140503%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(18.17627%, 78.410339%, 72.012329%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(17.999268%, 78.100586%, 71.882629%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(17.822266%, 77.790833%, 71.754456%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(17.645264%, 77.481079%, 71.624756%)" offset="0.226563"/><stop stop-opacity="1" stop-color="rgb(17.466736%, 77.172852%, 71.496582%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(17.289734%, 76.863098%, 71.366882%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(17.112732%, 76.553345%, 71.238708%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(16.93573%, 76.243591%, 71.109009%)" offset="0.257813"/><stop stop-opacity="1" stop-color="rgb(16.758728%, 75.935364%, 70.980835%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(16.5802%, 75.62561%, 70.851135%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(16.403198%, 75.315857%, 70.722961%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(16.226196%, 75.006104%, 70.593262%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(16.049194%, 74.69635%, 70.465088%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(15.870667%, 74.388123%, 70.335388%)" offset="0.304688"/><stop stop-opacity="1" stop-color="rgb(15.693665%, 74.078369%, 70.207214%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(15.516663%, 73.768616%, 70.077515%)" offset="0.320312"/><stop stop-opacity="1" stop-color="rgb(15.339661%, 73.458862%, 69.949341%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(15.162659%, 73.150635%, 69.819641%)" offset="0.335937"/><stop stop-opacity="1" stop-color="rgb(14.984131%, 72.840881%, 69.691467%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(14.807129%, 72.531128%, 69.563293%)" offset="0.351563"/><stop stop-opacity="1" stop-color="rgb(14.630127%, 72.221375%, 69.433594%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(14.453125%, 71.913147%, 69.30542%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(14.274597%, 71.603394%, 69.17572%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(14.097595%, 71.29364%, 69.047546%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(13.920593%, 70.983887%, 68.917847%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(13.743591%, 70.675659%, 68.789673%)" offset="0.398438"/><stop stop-opacity="1" stop-color="rgb(13.566589%, 70.365906%, 68.659973%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(13.388062%, 70.056152%, 68.531799%)" offset="0.414062"/><stop stop-opacity="1" stop-color="rgb(13.21106%, 69.746399%, 68.4021%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(13.034058%, 69.438171%, 68.273926%)" offset="0.429687"/><stop stop-opacity="1" stop-color="rgb(12.857056%, 69.128418%, 68.144226%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(12.678528%, 68.818665%, 68.016052%)" offset="0.445313"/><stop stop-opacity="1" stop-color="rgb(12.501526%, 68.508911%, 67.886353%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(12.324524%, 68.200684%, 67.758179%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(12.147522%, 67.89093%, 67.628479%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(11.97052%, 67.581177%, 67.500305%)" offset="0.469782"/><stop stop-opacity="1" stop-color="rgb(11.882019%, 67.427063%, 67.436218%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(11.791992%, 67.271423%, 67.370605%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(11.61499%, 66.963196%, 67.242432%)" offset="0.492188"/><stop stop-opacity="1" stop-color="rgb(11.437988%, 66.653442%, 67.112732%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(11.260986%, 66.343689%, 66.984558%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(11.082458%, 66.033936%, 66.854858%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(10.905457%, 65.725708%, 66.726685%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(10.728455%, 65.415955%, 66.596985%)" offset="0.530218"/><stop stop-opacity="1" stop-color="rgb(10.639954%, 65.261841%, 66.532898%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(10.551453%, 65.106201%, 66.468811%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(10.372925%, 64.796448%, 66.340637%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(10.195923%, 64.48822%, 66.210938%)" offset="0.554687"/><stop stop-opacity="1" stop-color="rgb(10.018921%, 64.178467%, 66.082764%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(9.841919%, 63.868713%, 65.953064%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(9.664917%, 63.55896%, 65.82489%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(9.486389%, 63.250732%, 65.69519%)" offset="0.585937"/><stop stop-opacity="1" stop-color="rgb(9.309387%, 62.940979%, 65.567017%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(9.132385%, 62.631226%, 65.437317%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(8.955383%, 62.321472%, 65.309143%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(8.776855%, 62.013245%, 65.179443%)" offset="0.617187"/><stop stop-opacity="1" stop-color="rgb(8.599854%, 61.703491%, 65.05127%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(8.422852%, 61.393738%, 64.92157%)" offset="0.632813"/><stop stop-opacity="1" stop-color="rgb(8.24585%, 61.083984%, 64.793396%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(8.068848%, 60.775757%, 64.663696%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(7.89032%, 60.466003%, 64.535522%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(7.713318%, 60.15625%, 64.405823%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(7.536316%, 59.846497%, 64.277649%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(7.359314%, 59.538269%, 64.147949%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(7.180786%, 59.228516%, 64.019775%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(7.003784%, 58.918762%, 63.890076%)" offset="0.695312"/><stop stop-opacity="1" stop-color="rgb(6.826782%, 58.609009%, 63.761902%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(6.64978%, 58.300781%, 63.632202%)" offset="0.710938"/><stop stop-opacity="1" stop-color="rgb(6.472778%, 57.991028%, 63.504028%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(6.29425%, 57.681274%, 63.374329%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(6.117249%, 57.371521%, 63.246155%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(5.940247%, 57.063293%, 63.117981%)" offset="0.742188"/><stop stop-opacity="1" stop-color="rgb(5.763245%, 56.75354%, 62.988281%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(5.584717%, 56.443787%, 62.860107%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(5.407715%, 56.134033%, 62.730408%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(5.230713%, 55.825806%, 62.602234%)" offset="0.773437"/><stop stop-opacity="1" stop-color="rgb(5.053711%, 55.516052%, 62.472534%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(4.876709%, 55.206299%, 62.34436%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(4.698181%, 54.896545%, 62.214661%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(4.521179%, 54.588318%, 62.086487%)" offset="0.804687"/><stop stop-opacity="1" stop-color="rgb(4.344177%, 54.278564%, 61.956787%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(4.167175%, 53.968811%, 61.828613%)" offset="0.820313"/><stop stop-opacity="1" stop-color="rgb(3.988647%, 53.659058%, 61.698914%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(3.811646%, 53.35083%, 61.57074%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(3.634644%, 53.041077%, 61.44104%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(3.457642%, 52.731323%, 61.312866%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(3.28064%, 52.42157%, 61.183167%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(3.102112%, 52.113342%, 61.054993%)" offset="0.867188"/><stop stop-opacity="1" stop-color="rgb(2.92511%, 51.803589%, 60.925293%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(2.748108%, 51.493835%, 60.797119%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(2.571106%, 51.184082%, 60.667419%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(2.392578%, 50.875854%, 60.539246%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(2.215576%, 50.566101%, 60.409546%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(2.038574%, 50.256348%, 60.281372%)" offset="0.914062"/><stop stop-opacity="1" stop-color="rgb(1.861572%, 49.946594%, 60.151672%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(1.68457%, 49.638367%, 60.023499%)" offset="0.929688"/><stop stop-opacity="1" stop-color="rgb(1.506042%, 49.328613%, 59.895325%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(1.329041%, 49.01886%, 59.765625%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(1.152039%, 48.709106%, 59.637451%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(0.975037%, 48.400879%, 59.507751%)" offset="0.960937"/><stop stop-opacity="1" stop-color="rgb(0.796509%, 48.091125%, 59.379578%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(0.619507%, 47.781372%, 59.249878%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(0.442505%, 47.471619%, 59.121704%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(0.265503%, 47.163391%, 58.992004%)" offset="0.992187"/><stop stop-opacity="1" stop-color="rgb(0.088501%, 46.853638%, 58.863831%)" offset="1"/></linearGradient></defs><g clip-path="url(#cdd502cf3a)"><g clip-path="url(#d0c98ed564)"><path fill="url(#f2ee60f610)" d="M 0.0546875 403.144531 L 0.0546875 549.964844 L 131.4375 549.964844 L 131.4375 403.144531 Z M 0.0546875 403.144531 " fill-rule="nonzero"/></g></g><g clip-path="url(#24f2b65fd0)"><g clip-path="url(#92b62c6072)"><path fill="url(#ca601b7a15)" d="M 0.0546875 138.683594 L 0.0546875 285.507812 L 131.4375 285.507812 L 131.4375 138.683594 Z M 0.0546875 138.683594 " fill-rule="nonzero"/></g></g><g clip-path="url(#27c4d52694)"><g clip-path="url(#388b052c84)"><path fill="url(#178c272967)" d="M 228.484375 3.03125 L 228.484375 149.851562 L 359.867188 149.851562 L 359.867188 3.03125 Z M 228.484375 3.03125 " fill-rule="nonzero"/></g></g><g clip-path="url(#2db8b4a595)"><g clip-path="url(#75961c6583)"><path fill="url(#9ca3640d96)" d="M 457.847656 138.683594 L 457.847656 285.507812 L 589.230469 285.507812 L 589.230469 138.683594 Z M 457.847656 138.683594 " fill-rule="nonzero"/></g></g><g clip-path="url(#c5efa7c6b1)"><g clip-path="url(#ea87a8a9b5)"><path fill="url(#b8669087f2)" d="M 457.847656 403.144531 L 457.847656 549.964844 L 589.230469 549.964844 L 589.230469 403.144531 Z M 457.847656 403.144531 " fill-rule="nonzero"/></g></g><g clip-path="url(#7f43b2fe95)"><g clip-path="url(#8b2ffe31ed)"><path fill="url(#d5dc69ab2c)" d="M 228.484375 535.734375 L 228.484375 682.558594 L 359.867188 682.558594 L 359.867188 535.734375 Z M 228.484375 535.734375 " fill-rule="nonzero"/></g></g><path stroke-linecap="butt" transform="matrix(0.74891, 0, 0, 0.74891, 357.339503, 239.006234)" fill="none" stroke-linejoin="miter" d="M 4.001061 138.583748 L 4.001061 54.101576 C 4.001061 26.431148 26.434711 3.997499 54.105139 3.997499 L 104.209217 3.997499 " stroke="url(#840319eb70)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="round" transform="matrix(0.74891, 0, 0, 0.74891, 357.339503, 239.006234)" fill="none" stroke-linejoin="round" d="M 130.205336 3.997499 C 130.205336 10.626926 124.832944 15.999319 118.208732 15.999319 C 111.579304 15.999319 106.206912 10.626926 106.206912 3.997499 C 106.206912 -2.626713 111.579304 -7.999105 118.208732 -7.999105 C 124.832944 -7.999105 130.205336 -2.626713 130.205336 3.997499 " stroke="url(#e645023d53)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="butt" transform="matrix(0.74891, 0, 0, 0.74891, 291.178496, 149.852333)" fill="none" stroke-linejoin="miter" d="M 4.508141 257.628651 L 4.252561 257.628651 C 4.111731 257.628651 4.002197 257.519117 4.002197 257.378287 L 4.002197 30.000913 " stroke="url(#5da4c3836a)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="round" transform="matrix(0.74891, 0, 0, 0.74891, 291.178496, 149.852333)" fill="none" stroke-linejoin="round" d="M 4.002197 3.999577 C 10.626409 3.999577 15.998801 9.37197 15.998801 16.001397 C 15.998801 22.625609 10.626409 27.998001 4.002197 27.998001 C -2.627231 27.998001 -7.999623 22.625609 -7.999623 16.001397 C -7.999623 9.37197 -2.627231 3.999577 4.002197 3.999577 " stroke="url(#995237a210)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="butt" transform="matrix(0.74891, 0, 0, 0.74891, 131.437896, 239.006234)" fill="none" stroke-linejoin="miter" d="M 130.209568 138.583748 L 130.209568 54.101576 C 130.209568 26.431148 107.775919 3.997499 80.105491 3.997499 L 30.001413 3.997499 " stroke="url(#4b3066e6fc)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="round" transform="matrix(0.74891, 0, 0, 0.74891, 131.437896, 239.006234)" fill="none" stroke-linejoin="round" d="M 4.000078 3.997499 C 4.000078 -2.626713 9.37247 -7.999105 16.001898 -7.999105 C 22.62611 -7.999105 27.998502 -2.626713 27.998502 3.997499 C 27.998502 10.626926 22.62611 15.999319 16.001898 15.999319 C 9.37247 15.999319 4.000078 10.626926 4.000078 3.997499 " stroke="url(#e5f48d9b04)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="butt" transform="matrix(0.74891, 0, 0, 0.74891, 357.339503, 342.794432)" fill="none" stroke-linejoin="miter" d="M 4.001061 -0.001954 L 4.001061 84.480218 C 4.001061 112.155862 26.434711 134.584296 54.105139 134.584296 L 104.209217 134.584296 " stroke="url(#66b35bbf4e)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="round" transform="matrix(0.74891, 0, 0, 0.74891, 357.339503, 342.794432)" fill="none" stroke-linejoin="round" d="M 130.205336 134.584296 C 130.205336 141.213723 124.832944 146.586116 118.208732 146.586116 C 111.579304 146.586116 106.206912 141.213723 106.206912 134.584296 C 106.206912 127.960084 111.579304 122.587692 118.208732 122.587692 C 124.832944 122.587692 130.205336 127.960084 130.205336 134.584296 " stroke="url(#5e344b7f9e)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="butt" transform="matrix(0.74891, 0, 0, 0.74891, 291.178496, 339.798793)" fill="none" stroke-linejoin="miter" d="M 4.508141 3.998046 L 4.252561 3.998046 C 4.111731 3.998046 4.002197 4.112796 4.002197 4.253626 L 4.002197 231.631 " stroke="url(#ae16148129)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="round" transform="matrix(0.74891, 0, 0, 0.74891, 291.178496, 339.798793)" fill="none" stroke-linejoin="round" d="M 4.002197 257.632335 C -2.627231 257.632335 -7.999623 252.259943 -7.999623 245.630515 C -7.999623 239.001088 -2.627231 233.628695 4.002197 233.628695 C 10.626409 233.628695 15.998801 239.001088 15.998801 245.630515 C 15.998801 252.259943 10.626409 257.632335 4.002197 257.632335 " stroke="url(#280b352961)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="butt" transform="matrix(0.74891, 0, 0, 0.74891, 131.437896, 342.794432)" fill="none" stroke-linejoin="miter" d="M 130.209568 -0.001954 L 130.209568 84.480218 C 130.209568 112.155862 107.775919 134.584296 80.105491 134.584296 L 30.001413 134.584296 " stroke="url(#d69db903c6)" stroke-width="8" stroke-miterlimit="4"/><path stroke-linecap="round" transform="matrix(0.74891, 0, 0, 0.74891, 131.437896, 342.794432)" fill="none" stroke-linejoin="round" d="M 4.000078 134.584296 C 4.000078 127.960084 9.37247 122.587692 16.001898 122.587692 C 22.62611 122.587692 27.998502 127.960084 27.998502 134.584296 C 27.998502 141.213723 22.62611 146.586116 16.001898 146.586116 C 9.37247 146.586116 4.000078 141.213723 4.000078 134.584296 " stroke="url(#1767aac57c)" stroke-width="8" stroke-miterlimit="4"/><g clip-path="url(#fc7bbcdba8)"><g clip-path="url(#3ccb8f1fb8)"><path fill="url(#d9c0917a74)" d="M 207.554688 245.03125 L 207.554688 440.558594 L 380.792969 440.558594 L 380.792969 245.03125 Z M 207.554688 245.03125 " fill-rule="nonzero"/></g></g></svg> \ No newline at end of file diff --git a/site/theme/images/envoy-graphic.png b/site/theme/images/envoy-graphic.png new file mode 100644 index 0000000000000000000000000000000000000000..90935d1f0bb717c2f5f0031488f79086662bcaad GIT binary patch literal 314041 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%0A$6M2*pQehnE1~8CN6XaR%_}|B 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�wCqW}vASE=&+}_98JZ9< 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 ZIV$q+ifabBKzBIruYq3bK4<C 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 PHsQ=k#0i?s#jF1VO9rlg literal 0 HcmV?d00001 diff --git a/site/theme/images/envoy-horizontal-color.png b/site/theme/images/envoy-horizontal-color.png new file mode 100644 index 0000000000000000000000000000000000000000..5c5b78ebba16296da86d2a13858e5be74cde3a60 GIT binary patch literal 49908 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 Q$J|@vtoCo&sus8Z2l~Yc`2YX_ literal 0 HcmV?d00001 diff --git a/site/theme/images/envoy-horizontal-white.png b/site/theme/images/envoy-horizontal-white.png new file mode 100644 index 0000000000000000000000000000000000000000..914f2ddc6caa38cb726025c5d385af885e9121f3 GIT binary patch literal 42056 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 O%@L+Hzf+9eZv7ASJF_1E literal 0 HcmV?d00001 diff --git a/site/theme/images/envoy-mobile.svg b/site/theme/images/envoy-mobile.svg new file mode 100644 index 0000000000000..6d9776fd7c71c --- /dev/null +++ b/site/theme/images/envoy-mobile.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375" zoomAndPan="magnify" viewBox="0 0 281.25 227.999995" height="304" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><filter x="0%" y="0%" width="100%" height="100%" id="a714c7ce37"><feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" color-interpolation-filters="sRGB"/></filter><clipPath id="865871c20f"><path d="M 0 0.304688 L 143.234375 0.304688 L 143.234375 227.46875 L 0 227.46875 Z M 0 0.304688 " clip-rule="nonzero"/></clipPath><clipPath id="37c96fc353"><path d="M 28.425781 0.304688 L 114.8125 0.304688 C 130.511719 0.304688 143.234375 13.027344 143.234375 28.726562 L 143.234375 199.148438 C 143.234375 214.847656 130.511719 227.574219 114.8125 227.574219 L 28.425781 227.574219 C 12.726562 227.574219 0 214.847656 0 199.148438 L 0 28.726562 C 0 13.027344 12.726562 0.304688 28.425781 0.304688 Z M 28.425781 0.304688 " clip-rule="nonzero"/></clipPath><linearGradient x1="128" gradientTransform="matrix(0.559516, 0, 0, 0.559516, -0.000000000000053149, 0.301653)" y1="0.00274506" x2="128" gradientUnits="userSpaceOnUse" y2="406.002752" id="591104e388"><stop stop-opacity="1" stop-color="rgb(3.500366%, 67.799377%, 99.598694%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(3.846741%, 67.816162%, 99.60022%)" offset="0.00390625"/><stop stop-opacity="1" stop-color="rgb(4.194641%, 67.832947%, 99.601746%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(4.542542%, 67.849731%, 99.603271%)" offset="0.0117187"/><stop stop-opacity="1" stop-color="rgb(4.890442%, 67.868042%, 99.604797%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(5.236816%, 67.884827%, 99.606323%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(5.584717%, 67.901611%, 99.607849%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(5.932617%, 67.918396%, 99.609375%)" offset="0.0273437"/><stop stop-opacity="1" stop-color="rgb(6.280518%, 67.936707%, 99.612427%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(6.626892%, 67.953491%, 99.613953%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(6.974792%, 67.971802%, 99.615479%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(7.321167%, 67.988586%, 99.617004%)" offset="0.0429687"/><stop stop-opacity="1" stop-color="rgb(7.669067%, 68.005371%, 99.61853%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(8.016968%, 68.022156%, 99.620056%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(8.364868%, 68.040466%, 99.621582%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(8.711243%, 68.057251%, 99.623108%)" offset="0.0585937"/><stop stop-opacity="1" stop-color="rgb(9.059143%, 68.074036%, 99.624634%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(9.407043%, 68.09082%, 99.62616%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(9.754944%, 68.109131%, 99.627686%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(10.101318%, 68.125916%, 99.629211%)" offset="0.0742187"/><stop stop-opacity="1" stop-color="rgb(10.449219%, 68.1427%, 99.630737%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(10.797119%, 68.159485%, 99.632263%)" offset="0.0820313"/><stop stop-opacity="1" stop-color="rgb(11.14502%, 68.177795%, 99.633789%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(11.491394%, 68.19458%, 99.635315%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(11.839294%, 68.211365%, 99.636841%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(12.187195%, 68.228149%, 99.638367%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(12.535095%, 68.24646%, 99.639893%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(12.88147%, 68.263245%, 99.641418%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(13.22937%, 68.280029%, 99.642944%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(13.577271%, 68.296814%, 99.64447%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(13.925171%, 68.315125%, 99.645996%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(14.271545%, 68.331909%, 99.647522%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(14.619446%, 68.348694%, 99.649048%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(14.967346%, 68.365479%, 99.650574%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(15.315247%, 68.383789%, 99.6521%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(15.661621%, 68.400574%, 99.653625%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(16.009521%, 68.417358%, 99.655151%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(16.355896%, 68.434143%, 99.656677%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(16.703796%, 68.452454%, 99.658203%)" offset="0.148437"/><stop stop-opacity="1" stop-color="rgb(17.051697%, 68.469238%, 99.659729%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(17.399597%, 68.486023%, 99.661255%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(17.745972%, 68.502808%, 99.662781%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(18.093872%, 68.521118%, 99.664307%)" offset="0.164063"/><stop stop-opacity="1" stop-color="rgb(18.441772%, 68.537903%, 99.665833%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(18.789673%, 68.554688%, 99.667358%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(19.136047%, 68.571472%, 99.668884%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(19.483948%, 68.589783%, 99.67041%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(19.831848%, 68.606567%, 99.671936%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(20.179749%, 68.623352%, 99.673462%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(20.526123%, 68.640137%, 99.674988%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(20.874023%, 68.658447%, 99.67804%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(21.221924%, 68.675232%, 99.679565%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(21.569824%, 68.692017%, 99.681091%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(21.916199%, 68.708801%, 99.682617%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(22.264099%, 68.727112%, 99.684143%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(22.612%, 68.743896%, 99.685669%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(22.9599%, 68.760681%, 99.687195%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(23.306274%, 68.777466%, 99.688721%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(23.654175%, 68.795776%, 99.690247%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(24.002075%, 68.812561%, 99.691772%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(24.349976%, 68.829346%, 99.693298%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(24.69635%, 68.84613%, 99.694824%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(25.04425%, 68.864441%, 99.69635%)" offset="0.242187"/><stop stop-opacity="1" stop-color="rgb(25.390625%, 68.881226%, 99.697876%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(25.738525%, 68.89801%, 99.699402%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(26.086426%, 68.914795%, 99.700928%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(26.434326%, 68.933105%, 99.702454%)" offset="0.257812"/><stop stop-opacity="1" stop-color="rgb(26.780701%, 68.94989%, 99.703979%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(27.128601%, 68.968201%, 99.705505%)" offset="0.265625"/><stop stop-opacity="1" stop-color="rgb(27.476501%, 68.984985%, 99.707031%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(27.824402%, 69.00177%, 99.708557%)" offset="0.273438"/><stop stop-opacity="1" stop-color="rgb(28.170776%, 69.018555%, 99.710083%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(28.518677%, 69.036865%, 99.711609%)" offset="0.28125"/><stop stop-opacity="1" stop-color="rgb(28.866577%, 69.05365%, 99.713135%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(29.214478%, 69.070435%, 99.714661%)" offset="0.289062"/><stop stop-opacity="1" stop-color="rgb(29.560852%, 69.087219%, 99.716187%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(29.908752%, 69.10553%, 99.717712%)" offset="0.296875"/><stop stop-opacity="1" stop-color="rgb(30.256653%, 69.122314%, 99.719238%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(30.604553%, 69.139099%, 99.720764%)" offset="0.304687"/><stop stop-opacity="1" stop-color="rgb(30.950928%, 69.155884%, 99.72229%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(31.298828%, 69.174194%, 99.723816%)" offset="0.3125"/><stop stop-opacity="1" stop-color="rgb(31.646729%, 69.190979%, 99.725342%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(31.994629%, 69.207764%, 99.726868%)" offset="0.320313"/><stop stop-opacity="1" stop-color="rgb(32.341003%, 69.224548%, 99.728394%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(32.688904%, 69.242859%, 99.729919%)" offset="0.328125"/><stop stop-opacity="1" stop-color="rgb(33.036804%, 69.259644%, 99.731445%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(33.384705%, 69.276428%, 99.732971%)" offset="0.335938"/><stop stop-opacity="1" stop-color="rgb(33.731079%, 69.293213%, 99.734497%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(34.078979%, 69.311523%, 99.736023%)" offset="0.34375"/><stop stop-opacity="1" stop-color="rgb(34.42688%, 69.328308%, 99.737549%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(34.77478%, 69.345093%, 99.739075%)" offset="0.351562"/><stop stop-opacity="1" stop-color="rgb(35.121155%, 69.361877%, 99.740601%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(35.469055%, 69.380188%, 99.743652%)" offset="0.359375"/><stop stop-opacity="1" stop-color="rgb(35.81543%, 69.396973%, 99.745178%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(36.16333%, 69.413757%, 99.746704%)" offset="0.367188"/><stop stop-opacity="1" stop-color="rgb(36.51123%, 69.430542%, 99.74823%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(36.859131%, 69.448853%, 99.749756%)" offset="0.375"/><stop stop-opacity="1" stop-color="rgb(37.205505%, 69.465637%, 99.751282%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(37.553406%, 69.482422%, 99.752808%)" offset="0.382812"/><stop stop-opacity="1" stop-color="rgb(37.901306%, 69.499207%, 99.754333%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(38.249207%, 69.517517%, 99.755859%)" offset="0.390625"/><stop stop-opacity="1" stop-color="rgb(38.595581%, 69.534302%, 99.757385%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(38.943481%, 69.551086%, 99.758911%)" offset="0.398437"/><stop stop-opacity="1" stop-color="rgb(39.291382%, 69.567871%, 99.760437%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(39.639282%, 69.586182%, 99.761963%)" offset="0.40625"/><stop stop-opacity="1" stop-color="rgb(39.985657%, 69.602966%, 99.763489%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(40.333557%, 69.619751%, 99.765015%)" offset="0.414063"/><stop stop-opacity="1" stop-color="rgb(40.681458%, 69.636536%, 99.766541%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(41.029358%, 69.654846%, 99.768066%)" offset="0.421875"/><stop stop-opacity="1" stop-color="rgb(41.375732%, 69.671631%, 99.769592%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(41.723633%, 69.688416%, 99.771118%)" offset="0.429688"/><stop stop-opacity="1" stop-color="rgb(42.071533%, 69.7052%, 99.772644%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(42.419434%, 69.723511%, 99.77417%)" offset="0.4375"/><stop stop-opacity="1" stop-color="rgb(42.765808%, 69.740295%, 99.775696%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(43.113708%, 69.75708%, 99.777222%)" offset="0.445312"/><stop stop-opacity="1" stop-color="rgb(43.461609%, 69.773865%, 99.778748%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(43.809509%, 69.792175%, 99.780273%)" offset="0.453125"/><stop stop-opacity="1" stop-color="rgb(44.155884%, 69.80896%, 99.781799%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(44.503784%, 69.825745%, 99.783325%)" offset="0.460938"/><stop stop-opacity="1" stop-color="rgb(44.850159%, 69.842529%, 99.784851%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(45.198059%, 69.86084%, 99.786377%)" offset="0.46875"/><stop stop-opacity="1" stop-color="rgb(45.545959%, 69.877625%, 99.787903%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(45.89386%, 69.894409%, 99.789429%)" offset="0.476562"/><stop stop-opacity="1" stop-color="rgb(46.240234%, 69.911194%, 99.790955%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(46.588135%, 69.929504%, 99.79248%)" offset="0.484375"/><stop stop-opacity="1" stop-color="rgb(46.936035%, 69.946289%, 99.794006%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(47.283936%, 69.9646%, 99.795532%)" offset="0.492187"/><stop stop-opacity="1" stop-color="rgb(47.63031%, 69.981384%, 99.797058%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(47.97821%, 69.998169%, 99.798584%)" offset="0.5"/><stop stop-opacity="1" stop-color="rgb(48.326111%, 70.014954%, 99.80011%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(48.674011%, 70.033264%, 99.801636%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(49.020386%, 70.050049%, 99.803162%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(49.368286%, 70.066833%, 99.804688%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(49.716187%, 70.083618%, 99.806213%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(50.064087%, 70.101929%, 99.809265%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(50.410461%, 70.118713%, 99.810791%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(50.758362%, 70.135498%, 99.812317%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(51.106262%, 70.152283%, 99.813843%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(51.454163%, 70.170593%, 99.815369%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(51.800537%, 70.187378%, 99.816895%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(52.148438%, 70.204163%, 99.81842%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(52.496338%, 70.220947%, 99.819946%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(52.844238%, 70.239258%, 99.821472%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(53.190613%, 70.256042%, 99.822998%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(53.538513%, 70.272827%, 99.824524%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(53.884888%, 70.289612%, 99.82605%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(54.232788%, 70.307922%, 99.827576%)" offset="0.570313"/><stop stop-opacity="1" stop-color="rgb(54.580688%, 70.324707%, 99.829102%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(54.928589%, 70.341492%, 99.830627%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(55.274963%, 70.358276%, 99.832153%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(55.622864%, 70.376587%, 99.833679%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(55.970764%, 70.393372%, 99.835205%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(56.318665%, 70.410156%, 99.836731%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(56.665039%, 70.426941%, 99.838257%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(57.012939%, 70.445251%, 99.839783%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(57.36084%, 70.462036%, 99.841309%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(57.70874%, 70.478821%, 99.842834%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(58.055115%, 70.495605%, 99.84436%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(58.403015%, 70.513916%, 99.845886%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(58.750916%, 70.530701%, 99.847412%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.098816%, 70.547485%, 99.848938%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.44519%, 70.56427%, 99.850464%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(59.793091%, 70.582581%, 99.85199%)" offset="0.632812"/><stop stop-opacity="1" stop-color="rgb(60.140991%, 70.599365%, 99.853516%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(60.488892%, 70.61615%, 99.855042%)" offset="0.640625"/><stop stop-opacity="1" stop-color="rgb(60.835266%, 70.632935%, 99.856567%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(61.183167%, 70.651245%, 99.858093%)" offset="0.648438"/><stop stop-opacity="1" stop-color="rgb(61.531067%, 70.66803%, 99.859619%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(61.878967%, 70.684814%, 99.861145%)" offset="0.65625"/><stop stop-opacity="1" stop-color="rgb(62.225342%, 70.701599%, 99.862671%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(62.573242%, 70.71991%, 99.864197%)" offset="0.664062"/><stop stop-opacity="1" stop-color="rgb(62.921143%, 70.736694%, 99.865723%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(63.269043%, 70.753479%, 99.867249%)" offset="0.671875"/><stop stop-opacity="1" stop-color="rgb(63.615417%, 70.770264%, 99.868774%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(63.963318%, 70.788574%, 99.8703%)" offset="0.679688"/><stop stop-opacity="1" stop-color="rgb(64.309692%, 70.805359%, 99.871826%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(64.657593%, 70.822144%, 99.873352%)" offset="0.6875"/><stop stop-opacity="1" stop-color="rgb(65.005493%, 70.838928%, 99.874878%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(65.353394%, 70.857239%, 99.87793%)" offset="0.695312"/><stop stop-opacity="1" stop-color="rgb(65.699768%, 70.874023%, 99.879456%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(66.047668%, 70.890808%, 99.880981%)" offset="0.703125"/><stop stop-opacity="1" stop-color="rgb(66.395569%, 70.907593%, 99.882507%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(66.743469%, 70.925903%, 99.884033%)" offset="0.710937"/><stop stop-opacity="1" stop-color="rgb(67.089844%, 70.942688%, 99.885559%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(67.437744%, 70.960999%, 99.887085%)" offset="0.71875"/><stop stop-opacity="1" stop-color="rgb(67.785645%, 70.977783%, 99.888611%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(68.133545%, 70.994568%, 99.890137%)" offset="0.726562"/><stop stop-opacity="1" stop-color="rgb(68.479919%, 71.011353%, 99.891663%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(68.82782%, 71.029663%, 99.893188%)" offset="0.734375"/><stop stop-opacity="1" stop-color="rgb(69.17572%, 71.046448%, 99.894714%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(69.523621%, 71.063232%, 99.89624%)" offset="0.742187"/><stop stop-opacity="1" stop-color="rgb(69.869995%, 71.080017%, 99.897766%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(70.217896%, 71.098328%, 99.899292%)" offset="0.75"/><stop stop-opacity="1" stop-color="rgb(70.565796%, 71.115112%, 99.900818%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(70.913696%, 71.131897%, 99.902344%)" offset="0.757813"/><stop stop-opacity="1" stop-color="rgb(71.260071%, 71.148682%, 99.90387%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(71.607971%, 71.166992%, 99.905396%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(71.955872%, 71.183777%, 99.906921%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(72.303772%, 71.200562%, 99.908447%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(72.650146%, 71.217346%, 99.909973%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(72.998047%, 71.235657%, 99.911499%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(73.344421%, 71.252441%, 99.913025%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(73.692322%, 71.269226%, 99.914551%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(74.040222%, 71.286011%, 99.916077%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(74.388123%, 71.304321%, 99.917603%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(74.734497%, 71.321106%, 99.919128%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(75.082397%, 71.337891%, 99.920654%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(75.430298%, 71.354675%, 99.92218%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(75.778198%, 71.372986%, 99.923706%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(76.124573%, 71.389771%, 99.925232%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(76.472473%, 71.406555%, 99.926758%)" offset="0.820312"/><stop stop-opacity="1" stop-color="rgb(76.820374%, 71.42334%, 99.928284%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(77.168274%, 71.44165%, 99.92981%)" offset="0.828125"/><stop stop-opacity="1" stop-color="rgb(77.514648%, 71.458435%, 99.931335%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(77.862549%, 71.47522%, 99.932861%)" offset="0.835938"/><stop stop-opacity="1" stop-color="rgb(78.210449%, 71.492004%, 99.934387%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(78.55835%, 71.510315%, 99.935913%)" offset="0.84375"/><stop stop-opacity="1" stop-color="rgb(78.904724%, 71.5271%, 99.937439%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(79.252625%, 71.543884%, 99.938965%)" offset="0.851562"/><stop stop-opacity="1" stop-color="rgb(79.600525%, 71.560669%, 99.940491%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(79.948425%, 71.578979%, 99.943542%)" offset="0.859375"/><stop stop-opacity="1" stop-color="rgb(80.2948%, 71.595764%, 99.945068%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(80.6427%, 71.612549%, 99.946594%)" offset="0.867187"/><stop stop-opacity="1" stop-color="rgb(80.990601%, 71.629333%, 99.94812%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(81.338501%, 71.647644%, 99.949646%)" offset="0.875"/><stop stop-opacity="1" stop-color="rgb(81.684875%, 71.664429%, 99.951172%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(82.032776%, 71.681213%, 99.952698%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(82.37915%, 71.697998%, 99.954224%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(82.727051%, 71.716309%, 99.95575%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(83.074951%, 71.733093%, 99.957275%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(83.422852%, 71.749878%, 99.958801%)" offset="0.898437"/><stop stop-opacity="1" stop-color="rgb(83.769226%, 71.766663%, 99.960327%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(84.117126%, 71.784973%, 99.961853%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(84.465027%, 71.801758%, 99.963379%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(84.812927%, 71.818542%, 99.964905%)" offset="0.914062"/><stop stop-opacity="1" stop-color="rgb(85.159302%, 71.835327%, 99.966431%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(85.507202%, 71.853638%, 99.967957%)" offset="0.921875"/><stop stop-opacity="1" stop-color="rgb(85.855103%, 71.870422%, 99.969482%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(86.203003%, 71.887207%, 99.971008%)" offset="0.929687"/><stop stop-opacity="1" stop-color="rgb(86.549377%, 71.903992%, 99.972534%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(86.897278%, 71.922302%, 99.97406%)" offset="0.9375"/><stop stop-opacity="1" stop-color="rgb(87.245178%, 71.939087%, 99.975586%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(87.593079%, 71.957397%, 99.977112%)" offset="0.945313"/><stop stop-opacity="1" stop-color="rgb(87.939453%, 71.974182%, 99.978638%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(88.287354%, 71.990967%, 99.980164%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(88.635254%, 72.007751%, 99.981689%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(88.983154%, 72.026062%, 99.983215%)" offset="0.960938"/><stop stop-opacity="1" stop-color="rgb(89.329529%, 72.042847%, 99.984741%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(89.677429%, 72.059631%, 99.986267%)" offset="0.96875"/><stop stop-opacity="1" stop-color="rgb(90.02533%, 72.076416%, 99.987793%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(90.37323%, 72.094727%, 99.989319%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(90.719604%, 72.111511%, 99.990845%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(91.067505%, 72.128296%, 99.992371%)" offset="0.984375"/><stop stop-opacity="1" stop-color="rgb(91.415405%, 72.145081%, 99.993896%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(91.763306%, 72.163391%, 99.995422%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(92.10968%, 72.180176%, 99.996948%)" offset="0.996094"/><stop stop-opacity="1" stop-color="rgb(92.457581%, 72.19696%, 99.998474%)" offset="1"/></linearGradient><mask id="2d32ffc917"><g filter="url(#a714c7ce37)"><rect x="-28.125" width="337.5" fill="#000000" y="-22.8" height="273.599994" fill-opacity="0.66"/></g></mask><clipPath id="45c9183046"><path d="M 0.402344 0.792969 L 120.324219 0.792969 L 120.324219 77.386719 L 0.402344 77.386719 Z M 0.402344 0.792969 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.336889, 0, 0, 1.336889, -0.000000000000003553, 0.000000000000005329)" gradientUnits="userSpaceOnUse" r="122.181429" cx="0" id="58176765ed" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="37702d240b"><path d="M 105 55 L 118 55 L 118 74 L 105 74 Z M 105 55 " clip-rule="nonzero"/></clipPath><clipPath id="72edf76aab"><path d="M 105.3125 55.738281 L 117.28125 64.714844 L 105.3125 73.691406 Z M 105.3125 55.738281 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 12.606611, 9.946838)" gradientUnits="userSpaceOnUse" r="122.181429" cx="0" id="f15740efaf" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="7bf3034468"><path d="M 102 52 L 120.324219 52 L 120.324219 77 L 102 77 Z M 102 52 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.336889, 0, 0, 1.336889, -0.000000000000003553, 0.000000000000005329)" gradientUnits="userSpaceOnUse" r="122.181429" cx="0" id="7cc0dfbd76" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="050ed56d81"><rect x="0" width="121" y="0" height="78"/></clipPath><clipPath id="77c25183ea"><path d="M 71.617188 63.980469 L 160.605469 63.980469 L 160.605469 163.898438 L 71.617188 163.898438 Z M 71.617188 63.980469 " clip-rule="nonzero"/></clipPath><clipPath id="65a5a7d7d8"><path d="M 121.929688 65.550781 L 154.789062 84.664062 C 158.390625 86.761719 160.605469 90.617188 160.605469 94.785156 L 160.605469 133.09375 C 160.605469 137.261719 158.390625 141.117188 154.789062 143.210938 L 121.929688 162.328125 C 118.335938 164.421875 113.890625 164.421875 110.292969 162.328125 L 77.4375 143.210938 C 73.835938 141.117188 71.617188 137.261719 71.617188 133.09375 L 71.617188 94.785156 C 71.617188 90.617188 73.835938 86.761719 77.4375 84.664062 L 110.292969 65.550781 C 113.890625 63.457031 118.335938 63.457031 121.929688 65.550781 Z M 121.929688 65.550781 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 71.618092, 62.163668)" gradientUnits="userSpaceOnUse" r="133.800836" cx="0" id="4b744c92a9" cy="1.815922" fx="0" fy="1.815922"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><mask id="8bf84c9c6e"><g filter="url(#a714c7ce37)"><rect x="-28.125" width="337.5" fill="#000000" y="-22.8" height="273.599994" fill-opacity="0.66"/></g></mask><clipPath id="a85e81db61"><path d="M 0.402344 0.292969 L 107.636719 0.292969 L 107.636719 92.445312 L 0.402344 92.445312 Z M 0.402344 0.292969 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.336889, 0, 0, 1.336889, -0.000000000000003553, -0.000000000000001776)" gradientUnits="userSpaceOnUse" r="119.788557" cx="0" id="90c507309f" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="4d2fef7ce9"><path d="M 92 3 L 105 3 L 105 22 L 92 22 Z M 92 3 " clip-rule="nonzero"/></clipPath><clipPath id="340c396b68"><path d="M 92.1875 3.382812 L 104.152344 12.359375 L 92.1875 21.335938 Z M 92.1875 3.382812 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 12.606611, 9.367216)" gradientUnits="userSpaceOnUse" r="119.788557" cx="0" id="f06b0105a7" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="270fe531c8"><path d="M 89 0.292969 L 107.636719 0.292969 L 107.636719 25 L 89 25 Z M 89 0.292969 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.336889, 0, 0, 1.336889, -0.000000000000003553, -0.000000000000001776)" gradientUnits="userSpaceOnUse" r="119.788557" cx="0" id="347a29e485" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="f1b943196b"><rect x="0" width="108" y="0" height="93"/></clipPath><mask id="29f4cf36af"><g filter="url(#a714c7ce37)"><rect x="-28.125" width="337.5" fill="#000000" y="-22.8" height="273.599994" fill-opacity="0.66"/></g></mask><clipPath id="80140adcbf"><path d="M 0.5 9 L 73 9 L 73 16 L 0.5 16 Z M 0.5 9 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.336889, 0, 0, 1.336889, 0.000000000000043521, 0.000000000000005329)" gradientUnits="userSpaceOnUse" r="110.813988" cx="-11.968085" id="2d8e01fe4a" cy="-11.968085" fx="-11.968085" fy="-11.968085"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="79a86a0fcd"><path d="M 71 3 L 84 3 L 84 22 L 71 22 Z M 71 3 " clip-rule="nonzero"/></clipPath><clipPath id="2daad5e47a"><path d="M 71.410156 3.960938 L 83.378906 12.9375 L 71.410156 21.914062 Z M 71.410156 3.960938 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 3.606611, 9.946838)" gradientUnits="userSpaceOnUse" r="110.813988" cx="-11.968085" id="93ef56d451" cy="-11.968085" fx="-11.968085" fy="-11.968085"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="28bfed1f89"><path d="M 68 0.792969 L 86.671875 0.792969 L 86.671875 24.96875 L 68 24.96875 Z M 68 0.792969 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.336889, 0, 0, 1.336889, 0.000000000000043521, 0.000000000000005329)" gradientUnits="userSpaceOnUse" r="110.813988" cx="-11.968085" id="21795af705" cy="-11.968085" fx="-11.968085" fy="-11.968085"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="c7b2760f81"><rect x="0" width="87" y="0" height="25"/></clipPath></defs><g clip-path="url(#865871c20f)"><g clip-path="url(#37c96fc353)"><path fill="url(#591104e388)" d="M 0 0.304688 L 0 227.46875 L 143.234375 227.46875 L 143.234375 0.304688 Z M 0 0.304688 " fill-rule="nonzero"/></g></g><g mask="url(#2d32ffc917)"><g transform="matrix(1, 0, 0, 1, 148, 101)"><g clip-path="url(#050ed56d81)"><g clip-path="url(#45c9183046)"><path stroke-linecap="butt" transform="matrix(0.748005, 0, 0, 0.748005, 12.606611, 9.946838)" fill="none" stroke-linejoin="miter" d="M -0.00152759 3.998183 L 8.792695 3.998183 C 13.64414 3.998183 17.581695 7.935738 17.581695 12.792405 L 17.581695 38.611073 C 17.581695 47.786518 21.226807 56.591185 27.718029 63.082407 C 34.209252 69.57363 43.008696 73.218741 52.189363 73.218741 L 121.937366 73.218741 " stroke="url(#58176765ed)" stroke-width="8" stroke-miterlimit="4"/></g><g clip-path="url(#37702d240b)"><g clip-path="url(#72edf76aab)"><path fill="url(#f15740efaf)" d="M 105.3125 55.738281 L 105.3125 73.691406 L 117.28125 73.691406 L 117.28125 55.738281 Z M 105.3125 55.738281 " fill-rule="nonzero"/></g></g><g clip-path="url(#7bf3034468)"><path stroke-linecap="round" transform="matrix(0.748005, 0, 0, 0.748005, 12.606611, 9.946838)" fill="none" stroke-linejoin="round" d="M 123.937478 61.218074 L 139.938367 73.218741 L 123.937478 85.219408 Z M 123.937478 61.218074 " stroke="url(#7cc0dfbd76)" stroke-width="8" stroke-miterlimit="4"/></g></g></g></g><g clip-path="url(#77c25183ea)"><g clip-path="url(#65a5a7d7d8)"><path fill="url(#4b744c92a9)" d="M 71.617188 63.980469 L 71.617188 163.898438 L 160.605469 163.898438 L 160.605469 63.980469 Z M 71.617188 63.980469 " fill-rule="nonzero"/></g></g><g mask="url(#8bf84c9c6e)"><g transform="matrix(1, 0, 0, 1, 148, 34)"><g clip-path="url(#f1b943196b)"><g clip-path="url(#a85e81db61)"><path stroke-linecap="butt" transform="matrix(0.748005, 0, 0, 0.748005, 12.606611, 9.367216)" fill="none" stroke-linejoin="miter" d="M -0.00152759 94.344633 L 23.999807 94.344633 C 37.253807 94.344633 48.001141 83.602521 48.001141 70.348521 L 48.001141 32.194963 C 48.001141 16.622296 60.623253 4.000184 76.19592 4.000184 L 104.390699 4.000184 " stroke="url(#90c507309f)" stroke-width="8" stroke-miterlimit="4"/></g><g clip-path="url(#4d2fef7ce9)"><g clip-path="url(#340c396b68)"><path fill="url(#f06b0105a7)" d="M 92.1875 3.382812 L 92.1875 21.335938 L 104.152344 21.335938 L 104.152344 3.382812 Z M 92.1875 3.382812 " fill-rule="nonzero"/></g></g><g clip-path="url(#270fe531c8)"><path stroke-linecap="round" transform="matrix(0.748005, 0, 0, 0.748005, 12.606611, 9.367216)" fill="none" stroke-linejoin="round" d="M 106.39081 -8.000483 L 122.386478 4.000184 L 106.39081 16.000852 Z M 106.39081 -8.000483 " stroke="url(#347a29e485)" stroke-width="8" stroke-miterlimit="4"/></g></g></g></g><g mask="url(#29f4cf36af)"><g transform="matrix(1, 0, 0, 1, 157, 101)"><g clip-path="url(#c7b2760f81)"><g clip-path="url(#80140adcbf)"><path stroke-linecap="butt" transform="matrix(0.748005, 0, 0, 0.748005, 3.606611, 9.946838)" fill="none" stroke-linejoin="miter" d="M -0.00152752 3.998183 L 88.645698 3.998183 " stroke="url(#2d8e01fe4a)" stroke-width="8" stroke-miterlimit="4"/></g><g clip-path="url(#79a86a0fcd)"><g clip-path="url(#2daad5e47a)"><path fill="url(#93ef56d451)" d="M 71.410156 3.960938 L 71.410156 21.914062 L 83.378906 21.914062 L 83.378906 3.960938 Z M 71.410156 3.960938 " fill-rule="nonzero"/></g></g><g clip-path="url(#28bfed1f89)"><path stroke-linecap="round" transform="matrix(0.748005, 0, 0, 0.748005, 3.606611, 9.946838)" fill="none" stroke-linejoin="round" d="M 90.64581 -8.002484 L 106.646699 3.998183 L 90.64581 15.99885 Z M 90.64581 -8.002484 " stroke="url(#21795af705)" stroke-width="8" stroke-miterlimit="4"/></g></g></g></g></svg> \ No newline at end of file diff --git a/site/theme/images/envoy-proxy.svg b/site/theme/images/envoy-proxy.svg new file mode 100644 index 0000000000000..1fc2851367b09 --- /dev/null +++ b/site/theme/images/envoy-proxy.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="654" zoomAndPan="magnify" viewBox="0 0 490.5 821.249992" height="1095" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><filter x="0%" y="0%" width="100%" height="100%" id="0096b5f2c3"><feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" color-interpolation-filters="sRGB"/></filter><clipPath id="d25fb30aaf"><path d="M 53 1 L 327 1 L 327 820.457031 L 53 820.457031 Z M 53 1 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.00000113341, 0.0000015)" gradientUnits="userSpaceOnUse" r="777.833079" cx="0" id="69676b7505" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="e4efbcd3bf"><path d="M 229 33 L 271 33 L 271 75 L 229 75 Z M 229 33 " clip-rule="nonzero"/></clipPath><clipPath id="59d50967c5"><path d="M 249.890625 33.757812 C 261.0625 33.757812 270.121094 42.816406 270.121094 53.988281 C 270.121094 65.160156 261.0625 74.21875 249.890625 74.21875 C 238.71875 74.21875 229.664062 65.160156 229.664062 53.988281 C 229.664062 42.816406 238.71875 33.757812 249.890625 33.757812 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 123.472738, 27.016055)" gradientUnits="userSpaceOnUse" r="777.833079" cx="0" id="c99eb70dc8" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.00000113341, 0.0000015)" gradientUnits="userSpaceOnUse" r="777.833079" cx="0" id="3aac0d4fab" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="70a04a760f"><path d="M 109 759 L 151 759 L 151 787 L 109 787 Z M 109 759 " clip-rule="nonzero"/></clipPath><clipPath id="0b77372b91"><path d="M 150.445312 759.652344 L 130.214844 786.625 L 109.988281 759.652344 Z M 150.445312 759.652344 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 123.472738, 27.016055)" gradientUnits="userSpaceOnUse" r="777.833079" cx="0" id="32c769034b" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.00000113341, 0.0000015)" gradientUnits="userSpaceOnUse" r="777.833079" cx="0" id="dd955deda6" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><mask id="a5cc300403"><g filter="url(#0096b5f2c3)"><rect x="-49.05" width="588.6" fill="#000000" y="-82.124999" height="985.49999" fill-opacity="0.66"/></g></mask><clipPath id="6bfa55f029"><path d="M 0.714844 0.894531 L 271.398438 0.894531 L 271.398438 599.804688 L 0.714844 599.804688 Z M 0.714844 0.894531 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.000000000000003553, -0.000000000000005995)" gradientUnits="userSpaceOnUse" r="640.867458" cx="0" id="c830bea31a" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="5054b9a415"><path d="M 223 7 L 265 7 L 265 49 L 223 49 Z M 223 7 " clip-rule="nonzero"/></clipPath><clipPath id="79451b750a"><path d="M 244.210938 7.757812 C 255.382812 7.757812 264.4375 16.816406 264.4375 27.988281 C 264.4375 39.160156 255.382812 48.21875 244.210938 48.21875 C 233.039062 48.21875 223.980469 39.160156 223.980469 27.988281 C 223.980469 16.816406 233.039062 7.757812 244.210938 7.757812 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 20.972504, 1.016054)" gradientUnits="userSpaceOnUse" r="640.867458" cx="0" id="e520407ae6" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="8578dad095"><path d="M 217 1 L 271.398438 1 L 271.398438 55 L 217 55 Z M 217 1 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.000000000000003553, -0.000000000000005995)" gradientUnits="userSpaceOnUse" r="640.867458" cx="0" id="58f7ded358" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="16cbaa1d5c"><path d="M 7 565 L 48 565 L 48 593 L 7 593 Z M 7 565 " clip-rule="nonzero"/></clipPath><clipPath id="c674220434"><path d="M 47.945312 565.480469 L 27.714844 592.453125 L 7.484375 565.480469 Z M 47.945312 565.480469 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 20.972504, 1.016054)" gradientUnits="userSpaceOnUse" r="640.867458" cx="0" id="fe0c75a6f8" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="4aa249b411"><path d="M 0.714844 558 L 55 558 L 55 599.804688 L 0.714844 599.804688 Z M 0.714844 558 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.000000000000003553, -0.000000000000005995)" gradientUnits="userSpaceOnUse" r="640.867458" cx="0" id="3b39351133" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="b146011d1f"><rect x="0" width="272" y="0" height="600"/></clipPath><clipPath id="1ec121e7d9"><path d="M 0 180 L 490 180 L 490 720 L 0 720 Z M 0 180 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, 0.0000015, 0.0000322647)" gradientUnits="userSpaceOnUse" r="644.309477" cx="0" id="615d44ea3a" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="fbcbb80b0f"><path d="M 13 212 L 54 212 L 54 254 L 13 254 Z M 13 212 " clip-rule="nonzero"/></clipPath><clipPath id="24eb0bf6a2"><path d="M 33.714844 212.941406 C 44.886719 212.941406 53.945312 222 53.945312 233.171875 C 53.945312 244.34375 44.886719 253.398438 33.714844 253.398438 C 22.542969 253.398438 13.484375 244.34375 13.484375 233.171875 C 13.484375 222 22.542969 212.941406 33.714844 212.941406 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 26.972505, 206.198452)" gradientUnits="userSpaceOnUse" r="644.309477" cx="0" id="187b24982b" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, 0.0000015, 0.0000322647)" gradientUnits="userSpaceOnUse" r="644.309477" cx="0" id="14ddbb71df" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="a900214b60"><path d="M 435 647 L 477 647 L 477 674 L 435 674 Z M 435 647 " clip-rule="nonzero"/></clipPath><clipPath id="a786d02482"><path d="M 476.296875 647.015625 L 456.066406 673.988281 L 435.835938 647.015625 Z M 476.296875 647.015625 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 26.972505, 206.198452)" gradientUnits="userSpaceOnUse" r="644.309477" cx="0" id="80b50f4185" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, 0.0000015, 0.0000322647)" gradientUnits="userSpaceOnUse" r="644.309477" cx="0" id="e43cf11649" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><mask id="b3a2bd8084"><g filter="url(#0096b5f2c3)"><rect x="-49.05" width="588.6" fill="#000000" y="-82.124999" height="985.49999" fill-opacity="0.53"/></g></mask><clipPath id="9c36044a6f"><path d="M 0.0195312 0.476562 L 267.828125 0.476562 L 267.828125 669.632812 L 0.0195312 669.632812 Z M 0.0195312 0.476562 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.000000000000010658, -0.000000000000003775)" gradientUnits="userSpaceOnUse" r="706.126653" cx="0" id="5791a55de4" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="afe4241221"><path d="M 219 7 L 261 7 L 261 48 L 219 48 Z M 219 7 " clip-rule="nonzero"/></clipPath><clipPath id="86da93f386"><path d="M 240.066406 7.261719 C 251.238281 7.261719 260.296875 16.320312 260.296875 27.492188 C 260.296875 38.664062 251.238281 47.722656 240.066406 47.722656 C 228.894531 47.722656 219.835938 38.664062 219.835938 27.492188 C 219.835938 16.320312 228.894531 7.261719 240.066406 7.261719 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 20.405744, 0.519651)" gradientUnits="userSpaceOnUse" r="706.126653" cx="0" id="e0e6f8e385" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="2859abfabe"><path d="M 213 0.476562 L 267.828125 0.476562 L 267.828125 55 L 213 55 Z M 213 0.476562 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.000000000000010658, -0.000000000000003775)" gradientUnits="userSpaceOnUse" r="706.126653" cx="0" id="5ad5db4a9f" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="4f0c339320"><path d="M 101 635 L 143 635 L 143 663 L 101 663 Z M 101 635 " clip-rule="nonzero"/></clipPath><clipPath id="246a31725a"><path d="M 142.082031 635.652344 L 121.855469 662.625 L 101.625 635.652344 Z M 142.082031 635.652344 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 20.405744, 0.519651)" gradientUnits="userSpaceOnUse" r="706.126653" cx="0" id="27deeb70e2" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="b0402951c6"><path d="M 94 628 L 149 628 L 149 669.632812 L 94 669.632812 Z M 94 628 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1.334693, 0, 0, 1.334693, -0.000000000000010658, -0.000000000000003775)" gradientUnits="userSpaceOnUse" r="706.126653" cx="0" id="5048d837dc" cy="0" fx="0" fy="0"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient><clipPath id="51470b2254"><rect x="0" width="268" y="0" height="670"/></clipPath><clipPath id="bf2f094872"><path d="M 103.445312 207.050781 L 387.765625 207.050781 L 387.765625 531.832031 L 103.445312 531.832031 Z M 103.445312 207.050781 " clip-rule="nonzero"/></clipPath><clipPath id="8535f8bb5c"><path d="M 255.320312 209.667969 L 378.050781 281.078125 C 384.066406 284.574219 387.765625 291.007812 387.765625 297.96875 L 387.765625 440.910156 C 387.765625 447.871094 384.066406 454.304688 378.050781 457.800781 L 255.320312 529.210938 C 249.316406 532.703125 241.894531 532.703125 235.890625 529.210938 L 113.160156 457.800781 C 107.144531 454.304688 103.445312 447.871094 103.445312 440.910156 L 103.445312 297.96875 C 103.445312 291.007812 107.144531 284.574219 113.160156 281.078125 L 235.890625 209.667969 C 241.894531 206.175781 249.316406 206.175781 255.320312 209.667969 Z M 255.320312 209.667969 " clip-rule="nonzero"/></clipPath><radialGradient gradientTransform="matrix(1, 0, 0, 1, 103.445836, 204.017325)" gradientUnits="userSpaceOnUse" r="431.648303" cx="0" id="d4ea21bb4a" cy="3.031995" fx="0" fy="3.031995"><stop stop-opacity="1" stop-color="rgb(86.131287%, 22.698975%, 65.58075%)" offset="0"/><stop stop-opacity="1" stop-color="rgb(85.881042%, 22.698975%, 65.701294%)" offset="0.0078125"/><stop stop-opacity="1" stop-color="rgb(85.713196%, 22.698975%, 65.783691%)" offset="0.0117188"/><stop stop-opacity="1" stop-color="rgb(85.546875%, 22.698975%, 65.864563%)" offset="0.015625"/><stop stop-opacity="1" stop-color="rgb(85.379028%, 22.698975%, 65.945435%)" offset="0.0195312"/><stop stop-opacity="1" stop-color="rgb(85.212708%, 22.698975%, 66.026306%)" offset="0.0234375"/><stop stop-opacity="1" stop-color="rgb(85.044861%, 22.698975%, 66.108704%)" offset="0.0273438"/><stop stop-opacity="1" stop-color="rgb(84.87854%, 22.698975%, 66.189575%)" offset="0.03125"/><stop stop-opacity="1" stop-color="rgb(84.710693%, 22.698975%, 66.270447%)" offset="0.0351562"/><stop stop-opacity="1" stop-color="rgb(84.542847%, 22.698975%, 66.351318%)" offset="0.0390625"/><stop stop-opacity="1" stop-color="rgb(84.376526%, 22.698975%, 66.433716%)" offset="0.0429688"/><stop stop-opacity="1" stop-color="rgb(84.208679%, 22.698975%, 66.514587%)" offset="0.046875"/><stop stop-opacity="1" stop-color="rgb(84.042358%, 22.698975%, 66.595459%)" offset="0.0507812"/><stop stop-opacity="1" stop-color="rgb(83.874512%, 22.698975%, 66.676331%)" offset="0.0546875"/><stop stop-opacity="1" stop-color="rgb(83.708191%, 22.698975%, 66.758728%)" offset="0.0585938"/><stop stop-opacity="1" stop-color="rgb(83.540344%, 22.698975%, 66.8396%)" offset="0.0625"/><stop stop-opacity="1" stop-color="rgb(83.372498%, 22.698975%, 66.920471%)" offset="0.0664062"/><stop stop-opacity="1" stop-color="rgb(83.206177%, 22.698975%, 67.001343%)" offset="0.0703125"/><stop stop-opacity="1" stop-color="rgb(83.03833%, 22.698975%, 67.08374%)" offset="0.0742188"/><stop stop-opacity="1" stop-color="rgb(82.872009%, 22.698975%, 67.164612%)" offset="0.078125"/><stop stop-opacity="1" stop-color="rgb(82.704163%, 22.698975%, 67.245483%)" offset="0.0820312"/><stop stop-opacity="1" stop-color="rgb(82.537842%, 22.698975%, 67.326355%)" offset="0.0859375"/><stop stop-opacity="1" stop-color="rgb(82.369995%, 22.698975%, 67.408752%)" offset="0.0898438"/><stop stop-opacity="1" stop-color="rgb(82.202148%, 22.698975%, 67.489624%)" offset="0.09375"/><stop stop-opacity="1" stop-color="rgb(82.035828%, 22.698975%, 67.570496%)" offset="0.0976562"/><stop stop-opacity="1" stop-color="rgb(81.867981%, 22.698975%, 67.651367%)" offset="0.101562"/><stop stop-opacity="1" stop-color="rgb(81.70166%, 22.698975%, 67.733765%)" offset="0.105469"/><stop stop-opacity="1" stop-color="rgb(81.533813%, 22.698975%, 67.814636%)" offset="0.109375"/><stop stop-opacity="1" stop-color="rgb(81.367493%, 22.698975%, 67.895508%)" offset="0.113281"/><stop stop-opacity="1" stop-color="rgb(81.199646%, 22.698975%, 67.976379%)" offset="0.117188"/><stop stop-opacity="1" stop-color="rgb(81.031799%, 22.698975%, 68.058777%)" offset="0.121094"/><stop stop-opacity="1" stop-color="rgb(80.865479%, 22.698975%, 68.139648%)" offset="0.125"/><stop stop-opacity="1" stop-color="rgb(80.697632%, 22.698975%, 68.22052%)" offset="0.128906"/><stop stop-opacity="1" stop-color="rgb(80.531311%, 22.698975%, 68.301392%)" offset="0.132812"/><stop stop-opacity="1" stop-color="rgb(80.363464%, 22.698975%, 68.383789%)" offset="0.136719"/><stop stop-opacity="1" stop-color="rgb(80.197144%, 22.698975%, 68.464661%)" offset="0.140625"/><stop stop-opacity="1" stop-color="rgb(80.029297%, 22.698975%, 68.545532%)" offset="0.144531"/><stop stop-opacity="1" stop-color="rgb(79.86145%, 22.698975%, 68.626404%)" offset="0.148438"/><stop stop-opacity="1" stop-color="rgb(79.695129%, 22.698975%, 68.708801%)" offset="0.152344"/><stop stop-opacity="1" stop-color="rgb(79.527283%, 22.698975%, 68.789673%)" offset="0.15625"/><stop stop-opacity="1" stop-color="rgb(79.360962%, 22.698975%, 68.870544%)" offset="0.160156"/><stop stop-opacity="1" stop-color="rgb(79.193115%, 22.698975%, 68.951416%)" offset="0.164062"/><stop stop-opacity="1" stop-color="rgb(79.026794%, 22.698975%, 69.032288%)" offset="0.167969"/><stop stop-opacity="1" stop-color="rgb(78.858948%, 22.698975%, 69.114685%)" offset="0.171875"/><stop stop-opacity="1" stop-color="rgb(78.692627%, 22.698975%, 69.195557%)" offset="0.175781"/><stop stop-opacity="1" stop-color="rgb(78.52478%, 22.698975%, 69.276428%)" offset="0.179688"/><stop stop-opacity="1" stop-color="rgb(78.356934%, 22.698975%, 69.3573%)" offset="0.183594"/><stop stop-opacity="1" stop-color="rgb(78.190613%, 22.698975%, 69.439697%)" offset="0.1875"/><stop stop-opacity="1" stop-color="rgb(78.022766%, 22.698975%, 69.520569%)" offset="0.191406"/><stop stop-opacity="1" stop-color="rgb(77.856445%, 22.698975%, 69.60144%)" offset="0.195312"/><stop stop-opacity="1" stop-color="rgb(77.688599%, 22.698975%, 69.682312%)" offset="0.199219"/><stop stop-opacity="1" stop-color="rgb(77.522278%, 22.698975%, 69.764709%)" offset="0.203125"/><stop stop-opacity="1" stop-color="rgb(77.354431%, 22.698975%, 69.845581%)" offset="0.207031"/><stop stop-opacity="1" stop-color="rgb(77.186584%, 22.698975%, 69.926453%)" offset="0.210938"/><stop stop-opacity="1" stop-color="rgb(77.020264%, 22.698975%, 70.007324%)" offset="0.214844"/><stop stop-opacity="1" stop-color="rgb(76.852417%, 22.698975%, 70.089722%)" offset="0.21875"/><stop stop-opacity="1" stop-color="rgb(76.686096%, 22.698975%, 70.170593%)" offset="0.222656"/><stop stop-opacity="1" stop-color="rgb(76.51825%, 22.698975%, 70.251465%)" offset="0.226562"/><stop stop-opacity="1" stop-color="rgb(76.351929%, 22.698975%, 70.332336%)" offset="0.230469"/><stop stop-opacity="1" stop-color="rgb(76.184082%, 22.698975%, 70.414734%)" offset="0.234375"/><stop stop-opacity="1" stop-color="rgb(76.016235%, 22.698975%, 70.495605%)" offset="0.238281"/><stop stop-opacity="1" stop-color="rgb(75.849915%, 22.698975%, 70.576477%)" offset="0.242188"/><stop stop-opacity="1" stop-color="rgb(75.682068%, 22.698975%, 70.657349%)" offset="0.246094"/><stop stop-opacity="1" stop-color="rgb(75.515747%, 22.698975%, 70.739746%)" offset="0.25"/><stop stop-opacity="1" stop-color="rgb(75.263977%, 22.698975%, 70.861816%)" offset="0.253906"/><stop stop-opacity="1" stop-color="rgb(74.92981%, 22.698975%, 71.02356%)" offset="0.261719"/><stop stop-opacity="1" stop-color="rgb(74.595642%, 22.698975%, 71.186829%)" offset="0.269531"/><stop stop-opacity="1" stop-color="rgb(74.261475%, 22.698975%, 71.348572%)" offset="0.277344"/><stop stop-opacity="1" stop-color="rgb(73.927307%, 22.698975%, 71.511841%)" offset="0.285156"/><stop stop-opacity="1" stop-color="rgb(73.591614%, 22.698975%, 71.673584%)" offset="0.292969"/><stop stop-opacity="1" stop-color="rgb(73.257446%, 22.698975%, 71.836853%)" offset="0.300781"/><stop stop-opacity="1" stop-color="rgb(72.923279%, 22.698975%, 71.998596%)" offset="0.308594"/><stop stop-opacity="1" stop-color="rgb(72.589111%, 22.698975%, 72.161865%)" offset="0.316406"/><stop stop-opacity="1" stop-color="rgb(72.254944%, 22.698975%, 72.323608%)" offset="0.324219"/><stop stop-opacity="1" stop-color="rgb(71.920776%, 22.698975%, 72.486877%)" offset="0.332031"/><stop stop-opacity="1" stop-color="rgb(71.586609%, 22.698975%, 72.648621%)" offset="0.339844"/><stop stop-opacity="1" stop-color="rgb(71.252441%, 22.698975%, 72.81189%)" offset="0.347656"/><stop stop-opacity="1" stop-color="rgb(70.916748%, 22.698975%, 72.973633%)" offset="0.355469"/><stop stop-opacity="1" stop-color="rgb(70.582581%, 22.698975%, 73.136902%)" offset="0.363281"/><stop stop-opacity="1" stop-color="rgb(70.248413%, 22.698975%, 73.298645%)" offset="0.371094"/><stop stop-opacity="1" stop-color="rgb(69.914246%, 22.698975%, 73.461914%)" offset="0.378906"/><stop stop-opacity="1" stop-color="rgb(69.580078%, 22.698975%, 73.623657%)" offset="0.386719"/><stop stop-opacity="1" stop-color="rgb(69.245911%, 22.698975%, 73.786926%)" offset="0.394531"/><stop stop-opacity="1" stop-color="rgb(68.911743%, 22.698975%, 73.948669%)" offset="0.402344"/><stop stop-opacity="1" stop-color="rgb(68.57605%, 22.698975%, 74.111938%)" offset="0.410156"/><stop stop-opacity="1" stop-color="rgb(68.241882%, 22.698975%, 74.273682%)" offset="0.417969"/><stop stop-opacity="1" stop-color="rgb(67.907715%, 22.698975%, 74.436951%)" offset="0.425781"/><stop stop-opacity="1" stop-color="rgb(67.573547%, 22.698975%, 74.598694%)" offset="0.433594"/><stop stop-opacity="1" stop-color="rgb(67.23938%, 22.698975%, 74.761963%)" offset="0.441406"/><stop stop-opacity="1" stop-color="rgb(66.905212%, 22.698975%, 74.923706%)" offset="0.449219"/><stop stop-opacity="1" stop-color="rgb(66.571045%, 22.698975%, 75.086975%)" offset="0.457031"/><stop stop-opacity="1" stop-color="rgb(66.235352%, 22.698975%, 75.248718%)" offset="0.464844"/><stop stop-opacity="1" stop-color="rgb(65.901184%, 22.698975%, 75.411987%)" offset="0.472656"/><stop stop-opacity="1" stop-color="rgb(65.567017%, 22.698975%, 75.57373%)" offset="0.480469"/><stop stop-opacity="1" stop-color="rgb(65.232849%, 22.698975%, 75.737%)" offset="0.488281"/><stop stop-opacity="1" stop-color="rgb(64.898682%, 22.698975%, 75.898743%)" offset="0.496094"/><stop stop-opacity="1" stop-color="rgb(64.648438%, 22.698975%, 76.020813%)" offset="0.503906"/><stop stop-opacity="1" stop-color="rgb(64.480591%, 22.698975%, 76.101685%)" offset="0.507812"/><stop stop-opacity="1" stop-color="rgb(64.31427%, 22.698975%, 76.182556%)" offset="0.511719"/><stop stop-opacity="1" stop-color="rgb(64.146423%, 22.698975%, 76.264954%)" offset="0.515625"/><stop stop-opacity="1" stop-color="rgb(63.980103%, 22.698975%, 76.345825%)" offset="0.519531"/><stop stop-opacity="1" stop-color="rgb(63.812256%, 22.698975%, 76.426697%)" offset="0.523438"/><stop stop-opacity="1" stop-color="rgb(63.644409%, 22.698975%, 76.507568%)" offset="0.527344"/><stop stop-opacity="1" stop-color="rgb(63.478088%, 22.698975%, 76.589966%)" offset="0.53125"/><stop stop-opacity="1" stop-color="rgb(63.310242%, 22.698975%, 76.670837%)" offset="0.535156"/><stop stop-opacity="1" stop-color="rgb(63.143921%, 22.698975%, 76.751709%)" offset="0.539062"/><stop stop-opacity="1" stop-color="rgb(62.976074%, 22.698975%, 76.832581%)" offset="0.542969"/><stop stop-opacity="1" stop-color="rgb(62.809753%, 22.698975%, 76.914978%)" offset="0.546875"/><stop stop-opacity="1" stop-color="rgb(62.641907%, 22.698975%, 76.99585%)" offset="0.550781"/><stop stop-opacity="1" stop-color="rgb(62.47406%, 22.698975%, 77.076721%)" offset="0.554688"/><stop stop-opacity="1" stop-color="rgb(62.307739%, 22.698975%, 77.157593%)" offset="0.558594"/><stop stop-opacity="1" stop-color="rgb(62.139893%, 22.698975%, 77.23999%)" offset="0.5625"/><stop stop-opacity="1" stop-color="rgb(61.973572%, 22.698975%, 77.320862%)" offset="0.566406"/><stop stop-opacity="1" stop-color="rgb(61.805725%, 22.698975%, 77.401733%)" offset="0.570312"/><stop stop-opacity="1" stop-color="rgb(61.639404%, 22.698975%, 77.482605%)" offset="0.574219"/><stop stop-opacity="1" stop-color="rgb(61.471558%, 22.698975%, 77.565002%)" offset="0.578125"/><stop stop-opacity="1" stop-color="rgb(61.303711%, 22.698975%, 77.645874%)" offset="0.582031"/><stop stop-opacity="1" stop-color="rgb(61.13739%, 22.698975%, 77.726746%)" offset="0.585938"/><stop stop-opacity="1" stop-color="rgb(60.969543%, 22.698975%, 77.807617%)" offset="0.589844"/><stop stop-opacity="1" stop-color="rgb(60.803223%, 22.698975%, 77.890015%)" offset="0.59375"/><stop stop-opacity="1" stop-color="rgb(60.635376%, 22.698975%, 77.970886%)" offset="0.597656"/><stop stop-opacity="1" stop-color="rgb(60.469055%, 22.698975%, 78.051758%)" offset="0.601562"/><stop stop-opacity="1" stop-color="rgb(60.301208%, 22.698975%, 78.132629%)" offset="0.605469"/><stop stop-opacity="1" stop-color="rgb(60.133362%, 22.698975%, 78.215027%)" offset="0.609375"/><stop stop-opacity="1" stop-color="rgb(59.967041%, 22.698975%, 78.295898%)" offset="0.613281"/><stop stop-opacity="1" stop-color="rgb(59.799194%, 22.698975%, 78.37677%)" offset="0.617188"/><stop stop-opacity="1" stop-color="rgb(59.632874%, 22.698975%, 78.457642%)" offset="0.621094"/><stop stop-opacity="1" stop-color="rgb(59.465027%, 22.698975%, 78.540039%)" offset="0.625"/><stop stop-opacity="1" stop-color="rgb(59.214783%, 22.698975%, 78.662109%)" offset="0.628906"/><stop stop-opacity="1" stop-color="rgb(58.879089%, 22.698975%, 78.823853%)" offset="0.636719"/><stop stop-opacity="1" stop-color="rgb(58.544922%, 22.698975%, 78.987122%)" offset="0.644531"/><stop stop-opacity="1" stop-color="rgb(58.210754%, 22.698975%, 79.148865%)" offset="0.652344"/><stop stop-opacity="1" stop-color="rgb(57.876587%, 22.698975%, 79.310608%)" offset="0.660156"/><stop stop-opacity="1" stop-color="rgb(57.542419%, 22.698975%, 79.473877%)" offset="0.667969"/><stop stop-opacity="1" stop-color="rgb(57.208252%, 22.698975%, 79.63562%)" offset="0.675781"/><stop stop-opacity="1" stop-color="rgb(56.874084%, 22.698975%, 79.798889%)" offset="0.683594"/><stop stop-opacity="1" stop-color="rgb(56.539917%, 22.698975%, 79.960632%)" offset="0.691406"/><stop stop-opacity="1" stop-color="rgb(56.204224%, 22.698975%, 80.123901%)" offset="0.699219"/><stop stop-opacity="1" stop-color="rgb(55.870056%, 22.698975%, 80.285645%)" offset="0.707031"/><stop stop-opacity="1" stop-color="rgb(55.535889%, 22.698975%, 80.448914%)" offset="0.714844"/><stop stop-opacity="1" stop-color="rgb(55.201721%, 22.698975%, 80.610657%)" offset="0.722656"/><stop stop-opacity="1" stop-color="rgb(54.867554%, 22.698975%, 80.773926%)" offset="0.730469"/><stop stop-opacity="1" stop-color="rgb(54.533386%, 22.698975%, 80.935669%)" offset="0.738281"/><stop stop-opacity="1" stop-color="rgb(54.199219%, 22.698975%, 81.098938%)" offset="0.746094"/><stop stop-opacity="1" stop-color="rgb(53.947449%, 22.698975%, 81.221008%)" offset="0.753906"/><stop stop-opacity="1" stop-color="rgb(53.781128%, 22.698975%, 81.30188%)" offset="0.757812"/><stop stop-opacity="1" stop-color="rgb(53.613281%, 22.698975%, 81.382751%)" offset="0.761719"/><stop stop-opacity="1" stop-color="rgb(53.44696%, 22.698975%, 81.463623%)" offset="0.765625"/><stop stop-opacity="1" stop-color="rgb(53.279114%, 22.698975%, 81.546021%)" offset="0.769531"/><stop stop-opacity="1" stop-color="rgb(53.112793%, 22.698975%, 81.626892%)" offset="0.773438"/><stop stop-opacity="1" stop-color="rgb(52.944946%, 22.698975%, 81.707764%)" offset="0.777344"/><stop stop-opacity="1" stop-color="rgb(52.7771%, 22.698975%, 81.788635%)" offset="0.78125"/><stop stop-opacity="1" stop-color="rgb(52.610779%, 22.698975%, 81.871033%)" offset="0.785156"/><stop stop-opacity="1" stop-color="rgb(52.442932%, 22.698975%, 81.951904%)" offset="0.789062"/><stop stop-opacity="1" stop-color="rgb(52.276611%, 22.698975%, 82.032776%)" offset="0.792969"/><stop stop-opacity="1" stop-color="rgb(52.108765%, 22.698975%, 82.113647%)" offset="0.796875"/><stop stop-opacity="1" stop-color="rgb(51.942444%, 22.698975%, 82.196045%)" offset="0.800781"/><stop stop-opacity="1" stop-color="rgb(51.774597%, 22.698975%, 82.276917%)" offset="0.804688"/><stop stop-opacity="1" stop-color="rgb(51.60675%, 22.698975%, 82.357788%)" offset="0.808594"/><stop stop-opacity="1" stop-color="rgb(51.44043%, 22.698975%, 82.43866%)" offset="0.8125"/><stop stop-opacity="1" stop-color="rgb(51.18866%, 22.698975%, 82.56073%)" offset="0.816406"/><stop stop-opacity="1" stop-color="rgb(50.854492%, 22.698975%, 82.723999%)" offset="0.824219"/><stop stop-opacity="1" stop-color="rgb(50.520325%, 22.698975%, 82.885742%)" offset="0.832031"/><stop stop-opacity="1" stop-color="rgb(50.186157%, 22.698975%, 83.049011%)" offset="0.839844"/><stop stop-opacity="1" stop-color="rgb(49.85199%, 22.698975%, 83.210754%)" offset="0.847656"/><stop stop-opacity="1" stop-color="rgb(49.517822%, 22.698975%, 83.374023%)" offset="0.855469"/><stop stop-opacity="1" stop-color="rgb(49.183655%, 22.698975%, 83.535767%)" offset="0.863281"/><stop stop-opacity="1" stop-color="rgb(48.847961%, 22.698975%, 83.699036%)" offset="0.871094"/><stop stop-opacity="1" stop-color="rgb(48.597717%, 22.698975%, 83.821106%)" offset="0.878906"/><stop stop-opacity="1" stop-color="rgb(48.431396%, 22.698975%, 83.901978%)" offset="0.882812"/><stop stop-opacity="1" stop-color="rgb(48.26355%, 22.698975%, 83.982849%)" offset="0.886719"/><stop stop-opacity="1" stop-color="rgb(48.097229%, 22.698975%, 84.063721%)" offset="0.890625"/><stop stop-opacity="1" stop-color="rgb(47.929382%, 22.698975%, 84.146118%)" offset="0.894531"/><stop stop-opacity="1" stop-color="rgb(47.761536%, 22.698975%, 84.22699%)" offset="0.898438"/><stop stop-opacity="1" stop-color="rgb(47.595215%, 22.698975%, 84.307861%)" offset="0.902344"/><stop stop-opacity="1" stop-color="rgb(47.427368%, 22.698975%, 84.388733%)" offset="0.90625"/><stop stop-opacity="1" stop-color="rgb(47.177124%, 22.698975%, 84.510803%)" offset="0.910156"/><stop stop-opacity="1" stop-color="rgb(46.842957%, 22.698975%, 84.674072%)" offset="0.917969"/><stop stop-opacity="1" stop-color="rgb(46.507263%, 22.698975%, 84.835815%)" offset="0.925781"/><stop stop-opacity="1" stop-color="rgb(46.173096%, 22.698975%, 84.999084%)" offset="0.933594"/><stop stop-opacity="1" stop-color="rgb(45.922852%, 22.698975%, 85.121155%)" offset="0.941406"/><stop stop-opacity="1" stop-color="rgb(45.756531%, 22.698975%, 85.202026%)" offset="0.945312"/><stop stop-opacity="1" stop-color="rgb(45.588684%, 22.698975%, 85.282898%)" offset="0.949219"/><stop stop-opacity="1" stop-color="rgb(45.420837%, 22.698975%, 85.36377%)" offset="0.953125"/><stop stop-opacity="1" stop-color="rgb(45.170593%, 22.698975%, 85.48584%)" offset="0.957031"/><stop stop-opacity="1" stop-color="rgb(44.836426%, 22.698975%, 85.649109%)" offset="0.964844"/><stop stop-opacity="1" stop-color="rgb(44.586182%, 22.698975%, 85.771179%)" offset="0.972656"/><stop stop-opacity="1" stop-color="rgb(44.418335%, 22.698975%, 85.852051%)" offset="0.976562"/><stop stop-opacity="1" stop-color="rgb(44.168091%, 22.698975%, 85.974121%)" offset="0.980469"/><stop stop-opacity="1" stop-color="rgb(43.916321%, 22.698975%, 86.096191%)" offset="0.988281"/><stop stop-opacity="1" stop-color="rgb(43.666077%, 22.698975%, 86.218262%)" offset="0.992188"/><stop stop-opacity="1" stop-color="rgb(43.499756%, 22.698975%, 86.299133%)" offset="1"/></radialGradient></defs><g clip-path="url(#d25fb30aaf)"><path stroke-linecap="butt" transform="matrix(0.749236, 0, 0, 0.749236, 123.472739, 27.016054)" fill="none" stroke-linejoin="miter" d="M 168.729011 67.500461 L 168.729011 630.626015 C 168.729011 674.733433 132.973849 710.488595 88.866431 710.488595 C 44.759013 710.488595 8.998637 746.243757 8.998637 790.356388 L 8.998637 973.339608 " stroke="url(#69676b7505)" stroke-width="18" stroke-miterlimit="4"/></g><g clip-path="url(#e4efbcd3bf)"><g clip-path="url(#59d50967c5)"><path fill="url(#c99eb70dc8)" d="M 229.664062 33.757812 L 229.664062 74.21875 L 270.121094 74.21875 L 270.121094 33.757812 Z M 229.664062 33.757812 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 123.472739, 27.016054)" fill="none" stroke-linejoin="round" d="M 168.729011 8.998175 C 183.640029 8.998175 195.730466 21.088613 195.730466 35.999631 C 195.730466 50.91065 183.640029 63.001087 168.729011 63.001087 C 153.817992 63.001087 141.732768 50.91065 141.732768 35.999631 C 141.732768 21.088613 153.817992 8.998175 168.729011 8.998175 " stroke="url(#3aac0d4fab)" stroke-width="18" stroke-miterlimit="4"/><g clip-path="url(#70a04a760f)"><g clip-path="url(#0b77372b91)"><path fill="url(#32c769034b)" d="M 109.988281 759.652344 L 109.988281 786.625 L 150.445312 786.625 L 150.445312 759.652344 Z M 109.988281 759.652344 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 123.472739, 27.016054)" fill="none" stroke-linejoin="round" d="M 36.000093 977.844196 L 8.998637 1013.844399 L -17.997605 977.844196 Z M 36.000093 977.844196 " stroke="url(#dd955deda6)" stroke-width="18" stroke-miterlimit="4"/><g mask="url(#a5cc300403)"><g transform="matrix(1, 0, 0, 1, 6, 26)"><g clip-path="url(#b146011d1f)"><g clip-path="url(#6bfa55f029)"><path stroke-linecap="butt" transform="matrix(0.749236, 0, 0, 0.749236, 20.972504, 1.016054)" fill="none" stroke-linejoin="miter" d="M 297.954673 67.500461 L 297.954673 436.026799 C 297.954673 502.850058 243.779711 557.02502 176.951238 557.02502 L 104.929977 557.02502 C 79.487401 557.02502 55.087553 567.134274 37.095271 585.121341 C 19.108204 603.113622 8.998951 627.51347 8.998951 652.956047 L 8.998951 748.887074 " stroke="url(#c830bea31a)" stroke-width="18" stroke-miterlimit="4"/></g><g clip-path="url(#5054b9a415)"><g clip-path="url(#79451b750a)"><path fill="url(#e520407ae6)" d="M 223.980469 7.757812 L 223.980469 48.21875 L 264.4375 48.21875 L 264.4375 7.757812 Z M 223.980469 7.757812 " fill-rule="nonzero"/></g></g><g clip-path="url(#8578dad095)"><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 20.972504, 1.016054)" fill="none" stroke-linejoin="round" d="M 297.954673 8.998175 C 312.865692 8.998175 324.950915 21.088613 324.950915 35.999631 C 324.950915 50.91065 312.865692 63.001087 297.954673 63.001087 C 283.043655 63.001087 270.953217 50.91065 270.953217 35.999631 C 270.953217 21.088613 283.043655 8.998175 297.954673 8.998175 " stroke="url(#58f7ded358)" stroke-width="18" stroke-miterlimit="4"/></g><g clip-path="url(#16cbaa1d5c)"><g clip-path="url(#c674220434)"><path fill="url(#fe0c75a6f8)" d="M 7.484375 565.480469 L 7.484375 592.453125 L 47.945312 592.453125 L 47.945312 565.480469 Z M 7.484375 565.480469 " fill-rule="nonzero"/></g></g><g clip-path="url(#4aa249b411)"><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 20.972504, 1.016054)" fill="none" stroke-linejoin="round" d="M 36.000406 753.386448 L 8.998951 789.386651 L -18.002505 753.386448 Z M 36.000406 753.386448 " stroke="url(#3b39351133)" stroke-width="18" stroke-miterlimit="4"/></g></g></g></g><g clip-path="url(#1ec121e7d9)"><path stroke-linecap="butt" transform="matrix(0.749236, 0, 0, 0.749236, 26.972504, 206.198428)" fill="none" stroke-linejoin="miter" d="M 8.998951 67.502089 L 8.998951 103.043491 C 8.998951 122.67807 24.916202 138.590108 44.545567 138.590108 L 203.003811 138.590108 C 225.688371 138.590108 247.439689 147.599282 263.482067 163.641661 C 279.519232 179.678826 288.528407 201.430144 288.528407 224.114703 C 288.528407 246.794049 297.537582 268.550581 313.579961 284.587746 C 329.617126 300.624911 351.368443 309.639299 374.053003 309.639299 L 451.710212 309.639299 C 518.533471 309.639299 572.708433 363.809048 572.708433 430.63752 L 572.708433 583.856054 " stroke="url(#615d44ea3a)" stroke-width="18" stroke-miterlimit="4"/></g><g clip-path="url(#fbcbb80b0f)"><g clip-path="url(#24eb0bf6a2)"><path fill="url(#187b24982b)" d="M 13.484375 212.941406 L 13.484375 253.398438 L 53.945312 253.398438 L 53.945312 212.941406 Z M 13.484375 212.941406 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 26.972504, 206.198428)" fill="none" stroke-linejoin="round" d="M 8.998951 8.999803 C 23.909969 8.999803 36.000406 21.090241 36.000406 36.001259 C 36.000406 50.912277 23.909969 62.997501 8.998951 62.997501 C -5.912068 62.997501 -18.002505 50.912277 -18.002505 36.001259 C -18.002505 21.090241 -5.912068 8.999803 8.998951 8.999803 " stroke="url(#14ddbb71df)" stroke-width="18" stroke-miterlimit="4"/><g clip-path="url(#a900214b60)"><g clip-path="url(#a786d02482)"><path fill="url(#80b50f4185)" d="M 435.835938 647.015625 L 435.835938 673.988281 L 476.296875 673.988281 L 476.296875 647.015625 Z M 435.835938 647.015625 " fill-rule="nonzero"/></g></g><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 26.972504, 206.198428)" fill="none" stroke-linejoin="round" d="M 599.709889 588.355428 L 572.708433 624.355631 L 545.706977 588.355428 Z M 599.709889 588.355428 " stroke="url(#e43cf11649)" stroke-width="18" stroke-miterlimit="4"/><g mask="url(#b3a2bd8084)"><g transform="matrix(1, 0, 0, 1, 216, 124)"><g clip-path="url(#51470b2254)"><g clip-path="url(#9c36044a6f)"><path stroke-linecap="butt" transform="matrix(0.749236, 0, 0, 0.749236, 20.405744, 0.519651)" fill="none" stroke-linejoin="miter" d="M 293.179449 67.500873 L 293.179449 157.550911 C 293.179449 207.289063 252.862349 247.606163 203.129411 247.606163 L 129.997644 247.606163 C 63.174385 247.606163 8.999423 301.781125 8.999423 368.604384 L 8.999423 603.713604 C 8.999423 638.618942 37.293862 666.913381 72.1992 666.913381 C 107.104539 666.913381 135.404192 695.213034 135.404192 730.118373 L 135.404192 843.202284 " stroke="url(#5791a55de4)" stroke-width="18" stroke-miterlimit="4"/></g><g clip-path="url(#afe4241221)"><g clip-path="url(#86da93f386)"><path fill="url(#e0e6f8e385)" d="M 219.835938 7.261719 L 219.835938 47.722656 L 260.296875 47.722656 L 260.296875 7.261719 Z M 219.835938 7.261719 " fill-rule="nonzero"/></g></g><g clip-path="url(#2859abfabe)"><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 20.405744, 0.519651)" fill="none" stroke-linejoin="round" d="M 293.179449 8.998588 C 308.090467 8.998588 320.180905 21.089026 320.180905 36.000044 C 320.180905 50.911062 308.090467 63.0015 293.179449 63.0015 C 278.26843 63.0015 266.177993 50.911062 266.177993 36.000044 C 266.177993 21.089026 278.26843 8.998588 293.179449 8.998588 " stroke="url(#5ad5db4a9f)" stroke-width="18" stroke-miterlimit="4"/></g><g clip-path="url(#4f0c339320)"><g clip-path="url(#246a31725a)"><path fill="url(#27deeb70e2)" d="M 101.625 635.652344 L 101.625 662.625 L 142.082031 662.625 L 142.082031 635.652344 Z M 101.625 635.652344 " fill-rule="nonzero"/></g></g><g clip-path="url(#b0402951c6)"><path stroke-linecap="round" transform="matrix(0.749236, 0, 0, 0.749236, 20.405744, 0.519651)" fill="none" stroke-linejoin="round" d="M 162.400434 847.706871 L 135.404192 883.707075 L 108.402736 847.706871 Z M 162.400434 847.706871 " stroke="url(#5048d837dc)" stroke-width="18" stroke-miterlimit="4"/></g></g></g></g><g clip-path="url(#bf2f094872)"><g clip-path="url(#8535f8bb5c)"><path fill="url(#d4ea21bb4a)" d="M 103.445312 207.050781 L 103.445312 531.832031 L 387.765625 531.832031 L 387.765625 207.050781 Z M 103.445312 207.050781 " fill-rule="nonzero"/></g></g></svg> \ No newline at end of file diff --git a/site/theme/index.html b/site/theme/index.html index 26fd6b88b4554..0247653eb7f25 100644 --- a/site/theme/index.html +++ b/site/theme/index.html @@ -1,150 +1,44 @@ -{% extends "home.html" %} - -{% block page_content %} -<div id="home"> - - <section id="hero" - class="home-section bg-purple text-center"> - <div class="container"> - {% for hero in HOME.hero %} - <div class="hero-information"> - <h3><img src="{{ hero.image }}" - alt="{{ hero.alt }}"></h3> - <p class="headline text-white text-uppercase font-xl font-light"> - {{ hero.headline }} - </p> - </div> - {% endfor %} - <div class="action-btns text-center"> - <a href="https://www.envoyproxy.io/docs/envoy/latest/start/start" - class="btn-legacy btn-primary">Get Started</a> - <a href="https://github.com/envoyproxy/envoy/releases" - class="btn-legacy btn-secondary">Download</a> - </div> - </div> - - <div> - <span class="envoy-version-number" - href=""> - Envoy <strong>{{ LATEST_VERSION }}</strong> is now available - </span> - <br /> - <a href="https://www.envoyproxy.io/docs/envoy/v{{ LATEST_VERSION }}/version_history/current" - class="font-big font-light text-white">Read the changelog</a> - </div> - </section> - - <section id="created-by" - class="home-section padding-top-60 bg-white"> - <div class="container"> - <h3 class="heading-big text-uppercase text-purple text-center">Created By</h3> - <div class="row"> - <div class=""> - <div class="company"> - <img alt="Lyft" - src="/images/logos/lyft.svg"> - </div> - </div> - </div> - </div> - </section> - - <section id="used-by" - class="home-section bg-white"> - <div class="container"> - <h3 class="heading-big text-uppercase text-purple text-center">Used By</h3> - <div class="row"> - {% for company in COMPANIES %} - <div class="col-xs-6 col-sm-3"> - <div class="company"> - <img alt="{{ company.name }}" - src="{{ company.logo }}"> - </div> - </div> - {% endfor %} - </div> - </div> - </section> - - <section id="why-envoy" - class="home-section bg-white"> - <div class="container"> - <h3 class="heading-big text-uppercase text-purple text-center">Why Envoy?</h3> - <div class="row"> - <div class="col-sm-12"> - {% for reason in WHY %} - <p class="font-big font-light no-margin-top"> - {{ reason }} - </p> - {% endfor %} - </div> - </div> - </div> - </section> - - <section id="features" - class="home-section bg-white"> - <div class="container"> - <h3 class="heading-big text-uppercase text-purple text-center">Features</h3> - <div class="row"> - {% for feature in FEATURES %} - <div class="col-sm-6"> - <div class="feature"> - <strong class="heading-small text-uppercase text-purple">{{ feature.name }}</strong> - <p class="text-dark-gray"> - {{ feature.description }} - </p> - </div> - </div> - {% endfor %} - </div> - </div> - </section> - - <section id="quote" - class="home-section bg-white"> - <div class="container"> - {% for quote in QUOTES %} - <div class="quote bg-purple text-center"> - <p class="text-white font-big font-light italicize"> - "{{ quote.text }}" - </p> - <p class="text-white"> - <strong>{{ quote.author }}</strong> - <span>{{ quote.role }}</span> - </p> - </div> - {% endfor %} - </div> - </section> - - <section id="ready-to-roll" - class="home-section padding-bottom-120 bg-white"> - <div class="container"> - <h3 class="heading-big text-uppercase text-purple text-center">Ready to roll?</h3> - <div class="action-btns text-center"> - <a href="https://www.envoyproxy.io/docs/envoy/latest/" - class="btn-legacy btn-primary">Get Started</a> - <a href="https://www.envoyproxy.io/docs/envoy/latest/start/install" - class="btn-legacy btn-secondary">Download</a> - </div> - </div> - </section> - - <section id="cloud-native-computing" - class="home-section padding-top-60 padding-bottom-60 bg-gray"> - <div class="container text-center"> - <img class="responsive" - width="300" - alt="cloud-native computing" - src="/images/logos/cloud-native-computing.svg"> - <p class="font-big font-light"> - We are a - <a href="https://www.cncf.io">Cloud Native Computing Foundation</a> - graduated project. +{% extends "base.html" %} +{% import 'macros/general.html' as general %} +{% import 'macros/project.html' as project %} + +{% block banner %} +<header id="page-header" role="banner"> + <div class="container"> + <hgroup class="text"> + <h1> + Manage traffic, <span class="pink-font">everywhere</span> + </h1> + <p class="subheading"> + Connect your applications and APIs with scale and resiliency using Envoy. </p> - </div> - </section> - -</div> -{% endblock page_content %} + <p> + The Envoy project provides solutions to control, secure, and observe API and application traffic. + </p> + </hgroup> + <hgroup class="logo"> + <img src="/theme/images/envoy-graphic.png" alt=""> + </hgroup> + </div> +</header> +{% endblock banner %} + +{% block content %} +<section class="projects"> + <header> + <h2>Envoy <span class="pink-font">projects</span></h2> + </header> + <div class="content flex-center"> + {% block projects %} + {% for project_data in PROJECTS.values() | sort(attribute="project.weight") %} + {{ project.feature(project_data.project, loop.index0 % 2) }} + {% endfor %} + {% endblock %} + </div> +</section> + +{{ general.quote_section(PROJECTS["envoy"].quotes[:1]) }} + +{{ project.adopters(PROJECTS["envoy"].adopters) }} + +{% endblock %} diff --git a/site/theme/js/BUILD b/site/theme/js/BUILD index 7d64dd50fd0c4..06b1a49a8ba92 100644 --- a/site/theme/js/BUILD +++ b/site/theme/js/BUILD @@ -2,8 +2,17 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_filegroup", "pkg_files") load("@rules_pkg//pkg:pkg.bzl", "pkg_tar") pkg_files( - name = "js", - srcs = ["@com_github_twbs_bootstrap//:dist/js/bootstrap.bundle.min.js"], + name = "js_files", + srcs = glob(["**/*js"]), prefix = "theme/js", + strip_prefix = "", + visibility = ["//visibility:public"], +) + +pkg_filegroup( + name = "js", + srcs = [ + ":js_files", + ], visibility = ["//visibility:public"], ) diff --git a/site/theme/js/stars.js b/site/theme/js/stars.js new file mode 100644 index 0000000000000..79e615f01618d --- /dev/null +++ b/site/theme/js/stars.js @@ -0,0 +1,42 @@ +document.addEventListener('DOMContentLoaded', function () { + const CACHE_DURATION = 3600 * 1000; // 1 hour in milliseconds + const projects = document.querySelectorAll('[id^="github-stars-"]'); + + projects.forEach((element) => { + const repo = element.id.replace('github-stars-', 'envoyproxy/'); + const cacheKey = `github-stars-${repo}`; + const cacheTimestampKey = `${cacheKey}-timestamp`; + const cachedStars = localStorage.getItem(cacheKey); + const cachedTimestamp = localStorage.getItem(cacheTimestampKey); + + // Check if cache is valid + if (cachedStars && cachedStars !== "undefined" && cachedTimestamp && Date.now() - cachedTimestamp < CACHE_DURATION) { + console.log(`Using cached data for ${repo}: ${cachedStars}`); + element.textContent = cachedStars; // Use cached data + } else { + // Fetch from GitHub API + const apiUrl = `https://api.github.com/repos/${repo}`; + console.log(`Fetching data from GitHub API for ${repo}`); + fetch(apiUrl) + .then(response => { + console.log(`Received response for ${repo}:`, response); + return response.json(); + }) + .then(data => { + console.log(`Parsed data for ${repo}:`, data); + const stars = data.stargazers_count; + element.textContent = stars; + + // Cache the data if it is not undefined + if (stars !== undefined) { + localStorage.setItem(cacheKey, stars); + localStorage.setItem(cacheTimestampKey, Date.now()); + } + }) + .catch(error => { + console.error(`Error fetching stars for ${repo}:`, error); + element.textContent = 'Error'; // Fallback in case of error + }); + } + }); +}); diff --git a/site/theme/js/toggle-releases.js b/site/theme/js/toggle-releases.js new file mode 100644 index 0000000000000..4012ccfb69f6c --- /dev/null +++ b/site/theme/js/toggle-releases.js @@ -0,0 +1,12 @@ +function toggleReleases(element) { + const container = element.closest('.version-group'); + const hiddenReleases = container.querySelectorAll('.hidden-release'); + const button = element.querySelector('.toggle-releases'); + const isHidden = hiddenReleases[0].style.display === 'none'; + + hiddenReleases.forEach(release => { + release.style.display = isHidden ? 'block' : 'none'; + }); + + button.classList.toggle('open'); +} diff --git a/site/theme/templates/BUILD b/site/theme/templates/BUILD index 2a0c5771e2d30..a6432d6d81519 100644 --- a/site/theme/templates/BUILD +++ b/site/theme/templates/BUILD @@ -2,7 +2,8 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_files") pkg_files( name = "templates", - srcs = glob(["*html"]), + srcs = glob(["**/*html"]), prefix = "theme/templates/extra", + strip_prefix = "", visibility = ["//visibility:public"], ) diff --git a/site/theme/templates/base.html b/site/theme/templates/base.html new file mode 100644 index 0000000000000..61f3a0671211d --- /dev/null +++ b/site/theme/templates/base.html @@ -0,0 +1,53 @@ +<!DOCTYPE html> +<html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock html_lang %}"> + <head> + {% block head %} + <title> + {%- block title %}{{ SITENAME | escape }}{% if active_page %} - {{ active_page | escape }}{% endif %}{% endblock title -%} + + {% block meta %} + + + + {% endblock meta %} + {% block atomic %} + {% include 'atomic.html' %} + {% endblock atomic %} + {% block assets %} + {% block fonts %} + + {% endblock fonts %} + {% block css %} + {% assets 'envoy_css' %} + + {% endassets %} + {% endblock css %} + {% block favicon %} + {% endblock favicon %} + {% block js %} + {% endblock js %} + {% endblock assets %} + {% endblock head %} + + + {% block navbar %} + {% include 'components/navbar.html' %} + {% endblock %} +
+ {% block banner %} + {% endblock %} + {% block content %} + {% endblock %} +
+ {% block footer %} + {% include 'components/footer.html' %} + {% endblock %} + {% block js_post %} + + + {% endblock js_post %} + + diff --git a/site/theme/templates/components/footer.html b/site/theme/templates/components/footer.html new file mode 100644 index 0000000000000..df6e69c221cbb --- /dev/null +++ b/site/theme/templates/components/footer.html @@ -0,0 +1,29 @@ +{% import 'macros/page.html' as page %} + +
+ +
diff --git a/site/theme/templates/components/navbar.html b/site/theme/templates/components/navbar.html new file mode 100644 index 0000000000000..8bf5bddb72978 --- /dev/null +++ b/site/theme/templates/components/navbar.html @@ -0,0 +1,81 @@ + diff --git a/site/theme/templates/default.html b/site/theme/templates/default.html deleted file mode 100644 index 0a8b57df80567..0000000000000 --- a/site/theme/templates/default.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "base.html" %} - -{% block js_post %} - -{% endblock js_post %} diff --git a/site/theme/templates/docs.html b/site/theme/templates/docs.html new file mode 100644 index 0000000000000..6e7624e22afd7 --- /dev/null +++ b/site/theme/templates/docs.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} +{% import 'macros/project.html' as project %} + +{% block banner %} +
+

Envoy documentation

+ +
+{% endblock %} + +{% block content %} +{{ page.content }} +{{ project.docs(SITE["versions"], SITE["pages"][page.slug], PROJECTS[page.id].project ) }} +{% endblock %} diff --git a/site/theme/templates/features.html b/site/theme/templates/features.html new file mode 100644 index 0000000000000..30ba3fdfeaa3a --- /dev/null +++ b/site/theme/templates/features.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% import 'macros/feature.html' as feature %} +{% set body_class = "features" %} + +{% block banner %} +{{ feature.heading(page.title, SITE["pages"][page.slug]) }} +{% endblock %} + +{% block content %} +{{ feature.content(SITE["pages"][page.slug], SITE[SITE["pages"][page.slug]["data"]]) }} +{% endblock %} diff --git a/site/theme/templates/footer.html b/site/theme/templates/footer.html deleted file mode 100644 index 5315a9934e74b..0000000000000 --- a/site/theme/templates/footer.html +++ /dev/null @@ -1,14 +0,0 @@ -
- {% with show_logo='no' %} - {% include 'nav.html' %} - {% endwith %} -
-
-

- {{ NOW.strftime('%Y') }} © Envoy Project Authors. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. - For a list of trademarks of The Linux Foundation, please see our Trademark Usage page: - https://www.linuxfoundation.org/trademark-usage -

-
-
-
diff --git a/site/theme/templates/macros/feature.html b/site/theme/templates/macros/feature.html new file mode 100644 index 0000000000000..40812332fd1ad --- /dev/null +++ b/site/theme/templates/macros/feature.html @@ -0,0 +1,61 @@ +{% macro group(grouped) %} +
+ {% for member in grouped %} + + {% endfor %} +
+{% endmacro %} + +{% macro section(id, title, grouped) %} +
+
+ +

{{ title }}

+
+ {{ group(grouped) }} +
+{% endmacro %} + +{% macro heading(title, page) %} +
+

{{ title }}

+ +
+{% endmacro %} + +{% macro content(page, data) %} +{% for id, title in page.sections.items() %} +{{ section(id, title, data | selectattr(page.match_on, "equalto", id)) }} +{% endfor %} +{% endmacro %} diff --git a/site/theme/templates/macros/general.html b/site/theme/templates/macros/general.html new file mode 100644 index 0000000000000..3234528a94741 --- /dev/null +++ b/site/theme/templates/macros/general.html @@ -0,0 +1,77 @@ + + +{% macro quote(quote, author, author_title) %} +
+

{{ quote.text }}

+
+ + {{ quote['author'] }} +
{{ quote.role }}
+
+
+ +{% endmacro %} + + +{% macro quote_section(quotes) %} +
+ {% for quote_data in quotes %} + {{ quote(quote_data) }} + {% endfor %} +
+{% endmacro %} + + +{% macro link(link, text, class="") %} + + {{ text }} + +{% endmacro %} + + +{% macro link_list(links, title="", class="quick-links") %} +{% if title %} +

{{ title }}

+{% endif %} +
    + {% for text, url in links.items() %} +
  • + {{ link(url, text) }} +
  • + {% endfor %} +
+{% endmacro %} + + +{% macro button(text, url) %} +{{ link(url, text, "btn") }} +{% endmacro %} + + +{% macro github_icon() %} + +{% endmacro %} + +{% macro star_icon() %} + + + + +{% endmacro %} + +{% macro slack_icon() %} + + + + + + + + + + +{% endmacro %} diff --git a/site/theme/templates/macros/page.html b/site/theme/templates/macros/page.html new file mode 100644 index 0000000000000..c9d70333e08ef --- /dev/null +++ b/site/theme/templates/macros/page.html @@ -0,0 +1,59 @@ +{% import 'macros/general.html' as general %} + + +{% macro footer_links() %} +

Quick Links

+ +{% endmacro %} + + +{% macro footer_socials(socials) %} +{{ general.link_list(socials, "Social media") }} +{% endmacro %} + + +{% macro footer_projects(projects) %} +{% set project_dict = {} %} +{% for project in projects.values() | sort(attribute="project.weight") %} +{% set _ = project_dict.update({project.project.short_name: "/" + project.project.id}) %} +{% endfor %} +{{ general.link_list(project_dict, "Envoy Projects") }} +{% endmacro %} + + +{% macro footer_slack() %} +

+ Join us on + + + + + + + + + Slack +

+
+ + +
+
+
+{% endmacro %} + + +{% macro footer_ip() %} +

+ 2025 © Envoy project authors. All rights reserved.
+ The Linux Foundation has registered trademarks and uses trademarks. +

+

+ For a list of trademarks of The Linux Foundation, please see our Trademark Usage page. +

+{% endmacro %} diff --git a/site/theme/templates/macros/project.html b/site/theme/templates/macros/project.html new file mode 100644 index 0000000000000..214255defaaa3 --- /dev/null +++ b/site/theme/templates/macros/project.html @@ -0,0 +1,292 @@ +{% import 'macros/general.html' as general %} + + + +{% macro render_quote(quote) %} +
+
+
+ {{ quote.content | safe }} +
+
+ {% if quote.author_image %} +
+ {{ quote.author_name }} +
+ {% endif %} +
+

{{ quote.author_name }}

+ {% if quote.author_title %} +

{{ quote.author_title }}

+ {% endif %} +
+
+
+
+{% endmacro %} + + +{% macro quotes_section(section_class, heading, quotes) %} +
+ {% if heading %} +
+

{{ heading }}

+
+ {% endif %} +
+ {% if quotes is sequence and quotes|length > 1 %} +
+ {% for quote in quotes %} + {{ render_quote(quote) }} + {% endfor %} +
+ {% else %} + {{ render_quote(quotes[0] if quotes is sequence else quotes) }} + {% endif %} +
+ +{% endmacro %} + + + +{% macro feature(project, order_mod_2) %} +
+
+
+ {{ project.name }} +
+
+
+
+

{{ project.name }}

+ +
+ {{ project.description | safe }} +
+ + Learn more + +
+
+
+{%- endmacro %} + + + + +{% macro project_links(project) %} + +{% endmacro %} + + +{% macro project_link_buttons(project) %} +{{ general.button("View on GitHub", "https://github.com/envoyproxy/" + project["github"] + project.get("github_path", "")) }} +{{ general.button("Documentation", project.docs ) }} +{% endmacro %} + + +{% macro github(project, class="") %} + + {{ general.github_icon() }} + {% if project.show_stars %} + {{ general.star_icon() }} + Loading... + {% else %} + View on GitHub + {% endif %} + +{% endmacro %} + + + + +{% macro render_project_header(project) %} + +{% endmacro %} + + + +{% macro capabilities_section(section_class, heading, capabilities) %} +
+
+

{{ heading }}

+
+
+
+ {% for capability in capabilities %} +
+

+ {{ capability.icon }} + {{ capability.title }} +

+

{{ capability.description }}

+
+ {% endfor %} +
+
+
+{% endmacro %} + + + + +{% macro adopters(companies) -%} +
+
+

Used By

+
+
+
+ {% for company in companies %} +
+
+ {{ company.name }} +
+ +
+ {% endfor %} +
+
+
+{%- endmacro %} + + +{% macro docs_release_links(name, github_url, docs_url) %} + +{% endmacro %} + + +{% macro docs_version(version, release, docs_base_url, latest=False) %} +{% if latest %} + +{% set docs_url %} +{{ docs_base_url }}{% if version != "Latest" %}v{% endif %}{{ release }}/ +{% endset %} +
  • +
    + v{{ version }} + {{ release }} + {% if stable %}Stable{% endif %} +
    +
    + {{ docs_release_links(release, "https://github.com/envoyproxy/envoy/releases/tag/v" + release, docs_url) }} +
    +
  • +{% else %} + +{% endif %} +{% endmacro %} + + +{% macro docs_version_expand(releases) %} +{% if releases | length > 1 %} +
  • +
    + Previous releases +
  • +{% else %} +
  • No previous releases
  • +{% endif %} +{% endmacro %} + + +{% macro docs_grid(project, versions, docs_base_url, stable) %} +
      + {% for version_group in versions %} +
    • +
        + {% for release in version_group.releases %} + {% if loop.first %} + {{ docs_version(version_group.version, release, docs_base_url, True) }} + {{ docs_version_expand(version_group.releases) }} + {% else %} + {{ docs_version(version_group.version, release, docs_base_url) }} + {% endif %} + {% endfor %} +
      +
    • + {% endfor %} +
    +{% endmacro %} + + +{% macro docs_version_section(project, page, id, section, versions, stable) -%} +
    +
    + +

    {{ section.title }}

    +

    {{ section.description }}

    +
    + {{ docs_grid(project, versions, page.docs_base_url, stable) }} +
    +{% endmacro %} + + +{% macro docs(versions, page, project) -%} +{% for id, section in page.sections.items() %} +{% if id == "latest" %} +{{ docs_version_section(project, page, id, section, (versions | selectattr("title", "equalto", "Stable versions") | first).versions[:1], true) }} +{% elif id == "stable" %} +{{ docs_version_section(project, page, id, section, (versions | selectattr("title", "equalto", section.title) | first).versions[1:], true) }} +{% else %} +{{ docs_version_section(project, page, id, section, (versions | selectattr("title", "equalto", section.title) | first).versions, false) }} +{% endif %} +{% endfor %} +{% endmacro %} diff --git a/site/theme/templates/nav.html b/site/theme/templates/nav.html deleted file mode 100644 index 982950164dfde..0000000000000 --- a/site/theme/templates/nav.html +++ /dev/null @@ -1,21 +0,0 @@ -
    - -
    - -
    -
    diff --git a/site/theme/templates/project.html b/site/theme/templates/project.html new file mode 100644 index 0000000000000..02c7324eaefbe --- /dev/null +++ b/site/theme/templates/project.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} +{% import 'macros/general.html' as general %} +{% import 'macros/project.html' as project %} +{% set body_class = "project-page" %} + +{% block content %} + +{{ project.render_project_header(PROJECTS[page.id].project) }} + +
    +
    +

    About

    +
    +
    +
    + {{ page.content }} +
    +
    +
    + +{% if PROJECTS[page.id].project.capabilities %} +{{ project.capabilities_section('section-purple', 'Capabilities', PROJECTS[page.id].project.capabilities) }} +{% endif %} + +{% if PROJECTS[page.id].quotes %} +{{ general.quote_section(PROJECTS[page.id].quotes) }} +{% endif %} + +{% if PROJECTS[page.id].adopters %} + +{{ PROJECTS[page.id].adopters }} + +{{ project.adopters(PROJECTS[page.id].adopters) }} +{% endif %} + +{% endblock %} diff --git a/versions.bzl b/versions.bzl index b41dcefcb9cf8..e343264c68971 100644 --- a/versions.bzl +++ b/versions.bzl @@ -32,10 +32,10 @@ VERSIONS = { "envoy_toolshed": { "type": "github_archive", "repo": "envoyproxy/toolshed", - "version": "0.2.3", - "sha256": "4727b896c51fccaeda1210ef8b2da567b1964e3f4f888f6e0d2bdabd63cd61bc", - "urls": ["https://github.com/{repo}/archive/bazel-v{version}.tar.gz"], + "version": "69811f5334a92c6c89730e79f08c0d9575195ee6", + "sha256": "7f687ed9bb8211b0277c6c3abb3f454daf0240dd2aa99948b08c4b819416a407", + "urls": ["https://github.com/{repo}/archive/{version}.tar.gz"], "patch_args": ["-p1"], - "strip_prefix": "toolshed-bazel-v{version}/bazel", + "strip_prefix": "toolshed-{version}/bazel", }, }