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 @@

- 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 0000000000000..90935d1f0bb71 Binary files /dev/null and b/site/theme/images/envoy-graphic.png differ diff --git a/site/theme/images/envoy-horizontal-color.png b/site/theme/images/envoy-horizontal-color.png new file mode 100644 index 0000000000000..5c5b78ebba162 Binary files /dev/null and b/site/theme/images/envoy-horizontal-color.png differ diff --git a/site/theme/images/envoy-horizontal-white.png b/site/theme/images/envoy-horizontal-white.png new file mode 100644 index 0000000000000..914f2ddc6caa3 Binary files /dev/null and b/site/theme/images/envoy-horizontal-white.png differ 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 @@ - 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 %} +
+
+ + {% if member.type %} + {{ member.type | upper }} + {% endif %} +

{{ member.name }}

+ + {{ member.description }} + +
+
+ {% if member.learn_more %} + + {% if member.cta %} + {{ member.cta }} + {% else %} + Learn more + {% endif %} + + {% endif %} +
+
+ {% 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 }}

+ + +{% 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 %} + +{% 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) %} + +{% 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", }, }